/* ====================================================
   Arun Jalota — Portfolio
   Forked from the visual language of akashrmalhotra.netlify.app
   ==================================================== */

/* ── Loading screen ──────────────────────────────── */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #06080a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity .8s ease, visibility .8s;
  font-family: "Geist", system-ui, sans-serif;
  overflow: hidden;
}
.loading-screen.done { opacity: 0; visibility: hidden; pointer-events: none; }

.loading-screen::before {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  background: #22d3ee;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
  animation: loadOrb 6s linear infinite;
}
@keyframes loadOrb {
  0% { transform: translate(-40vw, -10vh); }
  50% { transform: translate(40vw, 10vh); }
  100% { transform: translate(-40vw, -10vh); }
}

.loading-counter {
  position: absolute;
  top: 40px; right: 40px;
  font-size: 14px;
  letter-spacing: 4px;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}
.loading-counter b {
  font-size: 14px;
  font-weight: 700;
  color: var(--accentColor);
  margin-right: 4px;
}

.loading-name {
  position: relative;
  z-index: 2;
  display: flex;
  gap: .08em;
  font-size: clamp(48px, 10vw, 140px);
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1;
}
.loading-name span {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: loadLetter .9s cubic-bezier(.2,.7,.3,1) forwards;
}
.loading-name span.italic {
  font-style: italic;
  font-family: "Instrument Serif", serif;
  font-weight: 300;
  color: var(--accentColor);
}
@keyframes loadLetter {
  to { opacity: 1; transform: translateY(0); }
}

.loading-sub {
  position: relative;
  z-index: 2;
  margin-top: 30px;
  font-size: 12px;
  letter-spacing: 6px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  opacity: 0;
  animation: loadLetter .8s ease forwards;
  animation-delay: 1.2s;
}

.loading-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accentColor), var(--accentColor));
  width: 0%;
  box-shadow: 0 0 18px var(--accentColor);
  transition: width .25s linear;
}

/* hide app while loading */
body.loading #root .header,
body.loading #root .icons-section,
body.loading #root .nav-fade { opacity: 0; }
body #root .header,
body #root .icons-section,
body #root .nav-fade { transition: opacity .6s; }

/* ── Scroll reveal ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s cubic-bezier(.2,.7,.3,1), transform .9s cubic-bezier(.2,.7,.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* hero text reveal */
.hero-line {
  display: inline-block;
  overflow: hidden;
}
.hero-line > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s cubic-bezier(.2,.7,.3,1);
  transition-delay: var(--d, 0s);
}
body.app-ready .hero-line > span {
  transform: translateY(0);
}


:root {
  --backgroundColor: #0a0a0c;
  --accentColor: #5eead4;
  --accentGlow: #22d3ee;
  --accentDeep: #14b8a6;
  --textColor: #eae5ec;
  --mutedColor: #adacac;
  --cWidth: calc(100% - 40px);
  --cMaxWidth: 1500px;
  --vh: 100vh;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--backgroundColor);
  color: var(--textColor);
  font-family: "Inter", "Geist", system-ui, -apple-system, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: default;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

::selection { background: var(--accentColor); color: #000; }

.section-container {
  width: 1300px;
  max-width: calc(100% - 80px);
  margin: auto;
}
@media only screen and (max-width: 1400px) {
  .section-container { width: 1100px; max-width: calc(100% - 80px); }
}
@media only screen and (max-width: 900px) {
  .section-container { width: 500px; max-width: var(--cWidth); }
}

/* ── Header / Navbar ─────────────────────────────── */
.header {
  display: flex;
  max-width: var(--cMaxWidth);
  width: var(--cWidth);
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  box-sizing: border-box;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: 9999;
}
.navbar-title {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.4px;
  font-family: "Geist", system-ui, sans-serif;
}
.navbar-connect {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: 500;
  display: none;
  color: var(--mutedColor);
  transition: color .25s;
}
.navbar-connect:hover { color: var(--accentColor); }
.header ul {
  display: flex;
  gap: 56px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  letter-spacing: 1.5px;
  font-weight: 600;
}
.header ul a { color: var(--textColor); }
@media (min-width: 900px) {
  .navbar-connect { display: block; }
}

/* hover-link slide effect */
.hover-link {
  position: relative;
  display: flex;
  text-wrap: nowrap;
  overflow: hidden;
  height: 1em;
}
.hover-in { position: relative; transition: .3s; }
.hover-in > .hover-ghost {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
}
.hover-link:hover .hover-in {
  transform: translateY(-100%);
  color: var(--accentColor);
}

/* ── Background glows (fixed, parallax-y) ────────── */
.bg-circle {
  position: fixed;
  width: 360px;
  height: 360px;
  background-color: var(--accentGlow);
  filter: blur(80px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.bg-circle.bg-circle-1 {
  top: -120px; left: -120px;
  box-shadow: inset -60px 40px 50px rgba(0,180,180,.55);
  animation: orbit1 18s linear infinite;
  opacity: .55;
}
.bg-circle.bg-circle-2 {
  top: 50%; right: -160px;
  box-shadow: inset 50px 40px 50px rgba(0,180,180,.55);
  animation: orbit2 22s linear infinite;
  opacity: .45;
}
.bg-circle.bg-circle-3 {
  bottom: -220px; left: 40%;
  width: 500px; height: 500px;
  background-color: #0d9488;
  filter: blur(120px);
  opacity: .35;
  animation: orbit3 30s linear infinite;
}
@keyframes orbit1 { to { transform: rotate(360deg) translateX(20px) rotate(-360deg); } }
@keyframes orbit2 { to { transform: rotate(-360deg) translateY(20px) rotate(360deg); } }
@keyframes orbit3 { to { transform: rotate(360deg); } }

/* ── Landing / Hero ──────────────────────────────── */
.landing-section {
  width: 100%;
  max-width: var(--cMaxWidth);
  margin: auto;
  position: relative;
  height: 100vh;
  min-height: 720px;
}
.landing-container {
  width: var(--cWidth);
  margin: auto;
  height: 100%;
  position: relative;
  max-width: var(--cMaxWidth);
}
.landing-intro {
  position: absolute;
  z-index: 9;
  top: 50%;
  right: 66%;
  transform: translateY(-50%);
}
.landing-intro h2 {
  margin: 0 0 8px 0;
  color: var(--accentColor);
  font-size: 25px;
  font-weight: 300;
  letter-spacing: 2px;
}
.landing-intro h1 {
  margin: 0;
  letter-spacing: 2px;
  font-size: 60px;
  line-height: 55px;
  font-weight: 600;
  font-family: "Geist", system-ui, sans-serif;
  white-space: nowrap;
}
.landing-intro h1 span {
  font-weight: 200;
  font-style: italic;
  font-family: "Instrument Serif", "Geist", serif;
  letter-spacing: 1px;
}
.landing-info {
  position: absolute;
  z-index: 9;
  top: 51%;
  left: 66%;
  transform: translateY(-50%);
}
.landing-info h3 {
  font-size: 35px;
  letter-spacing: 2px;
  font-weight: 300;
  color: var(--accentColor);
  margin: 0;
}
.landing-info h2 {
  margin: 0 0 0 20px;
  font-family: "Geist", system-ui, sans-serif;
  font-weight: 600;
  font-size: 65px;
  line-height: 62px;
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.landing-info-h2 {
  color: var(--accentDeep) !important;
  font-size: 75px !important;
  width: 120%;
  margin: 0 !important;
  position: relative;
  margin-left: -5px !important;
  overflow: hidden;
  line-height: 78px !important;
}
.landing-info-h2 .word-stack { position: relative; display: inline-block; }
.landing-info-h2 .word-back { position: absolute; top: 100%; left: 0; opacity: .35; }

.landing-cta {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11;
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--mutedColor);
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: 500;
  text-transform: uppercase;
  animation: bob 2.4s ease-in-out infinite;
}
.landing-cta .line {
  width: 1px;
  height: 30px;
  background: linear-gradient(180deg, transparent, var(--accentColor));
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 6px); }
}

/* Avatar / 3D character mount */
.character {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 540px;
  height: 540px;
  z-index: 3;
  pointer-events: none;
}
.character canvas { display: block; }

@media (max-width: 1024px) {
  .character { width: 360px; height: 360px; top: 40%; }
  .landing-intro { top: 14%; left: 0; right: auto; transform: none; }
  .landing-info  { top: auto; bottom: 80px; left: 50%; transform: translateX(-50%); text-align: center; }
  .landing-info h2 { justify-content: center; }
  .landing-intro h1 { font-size: 44px; line-height: 44px; }
  .landing-info h3 { font-size: 22px; }
  .landing-info h2 { font-size: 40px; line-height: 42px; }
  .landing-info-h2 { font-size: 48px !important; line-height: 52px !important; }
}

/* ── About ───────────────────────────────────────── */
.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  position: relative;
  height: 80vh;
  min-height: 600px;
  max-width: 1920px;
  width: var(--cWidth);
  margin: auto;
  padding: 0;
}

/* Photo column */
.about-photo-wrap {
  position: relative;
  flex-shrink: 0;
}
.about-photo-glow {
  position: absolute;
  inset: -24px;
  border-radius: 22px;
  background: radial-gradient(ellipse at center, var(--accentColor) 0%, transparent 70%);
  opacity: 0.18;
  filter: blur(28px);
  pointer-events: none;
}
.about-photo {
  display: block;
  width: 260px;
  height: 340px;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  border: 1.5px solid rgba(94,234,212,0.25);
  box-shadow: 0 0 0 1px rgba(94,234,212,0.08), 0 24px 60px rgba(0,0,0,0.5);
  position: relative;
  z-index: 1;
}

/* Text column */
.about-me { padding: 0; width: 46%; }
.about-me h3 {
  font-size: 25px;
  text-transform: uppercase;
  letter-spacing: 7px;
  font-weight: 400;
  color: var(--accentColor);
  margin: 0 0 24px;
}
.about-me p {
  font-size: 1.9vw;
  line-height: 2.3vw;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0;
}
.about-me p .accent { color: var(--accentColor); }
.about-me p .quiet { opacity: .35; }

@media (max-width: 1024px) {
  .about-section {
    flex-direction: column;
    justify-content: center;
    height: auto;
    padding: 80px 0;
    min-height: 0;
    gap: 40px;
  }
  .about-me { width: 100%; }
  .about-me p { font-size: 28px; line-height: 34px; }
  .about-photo { width: 200px; height: 260px; }
}
@media (max-width: 600px) {
  .about-photo { width: 160px; height: 210px; }
}

/* ── What I Do ───────────────────────────────────── */
.whatIDO {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 100vh;
  width: var(--cWidth);
  max-width: 1920px;
  margin: auto;
  z-index: 9;
  padding: 100px 0;
}
.what-box {
  width: 50%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 9;
}
.what-title {
  font-size: calc(4vw + 25px);
  line-height: calc(4vw + 20px);
  font-weight: 600;
  margin: 0 18% 100px 0;
  font-family: "Geist", system-ui, sans-serif;
}
.hat-h2 { font-style: italic; font-family: "Instrument Serif", "Geist", serif; font-weight: 300; }
.do-h2 { color: var(--accentColor); }

.what-box-in {
  flex-direction: column;
  height: 500px;
  margin-left: 50px;
  position: relative;
  display: flex;
}
.what-content {
  width: 450px;
  height: 33%;
  min-height: 50%;
  transition: .5s;
  position: relative;
  padding: 50px;
  cursor: pointer;
}
.what-content:hover, .what-content.active {
  min-height: 67%;
  padding: 40px 50px;
}
.what-content:hover ~ .what-content,
.what-box-in:hover .what-content:not(:hover),
.what-content.sibling {
  min-height: 33%;
  padding: 10px 50px;
}
.what-content h3 {
  font-size: 32px;
  letter-spacing: 1px;
  margin: 0 0 6px;
  font-family: "Geist", system-ui, sans-serif;
  font-weight: 600;
}
.what-content h4 {
  font-weight: 300;
  letter-spacing: 1px;
  margin: 0 0 18px;
  font-size: 14px;
  opacity: .35;
}
.what-content p {
  font-size: 14px;
  line-height: 19px;
  font-weight: 300;
  letter-spacing: .5px;
  margin: 0 0 18px;
}
.what-content h5 {
  font-weight: 300;
  opacity: .5;
  font-size: 12px;
  letter-spacing: 1px;
  margin: 0 0 8px;
  font-family: "Geist", system-ui, sans-serif;
  text-transform: uppercase;
}
.what-tags-row { display: flex; gap: 5px; flex-wrap: wrap; }
.what-tag {
  font-size: 13px;
  font-weight: 400;
  padding: 3px 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 30px;
}
.what-content-inner {
  height: 100%;
  overflow: hidden;
  opacity: 0;
  animation: whatFlicker .5s 1 forwards;
  animation-delay: .25s;
}
@keyframes whatFlicker {
  0%, 25%, 35%, 60% { opacity: 0; }
  30%, 50%, 40%, 100% { opacity: 1; }
}
/* corner ticks */
.what-content::before,
.what-content::after,
.what-corner::before,
.what-corner::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  border: 3px solid #fff;
}
.what-content::before { top: -2px; left: -2px; border-right: none; border-bottom: none; }
.what-corner::before  { top: -2px; right: -2px; border-left: none; border-bottom: none; }
.what-content::after  { bottom: -2px; left: -2px; border-top: none; border-right: none; }
.what-corner::after   { bottom: -2px; right: -2px; border-left: none; border-top: none; }
.what-corner { position: absolute; inset: 0; pointer-events: none; }

/* dashed border accents */
.what-vline {
  position: absolute;
  top: 0; bottom: 0; width: 0; left: 50%;
  border-left: 2px dashed rgba(255,255,255,.22);
  opacity: .8;
}
.what-vline.right { left: auto; right: -2px; }
.what-vline.left  { left: -2px; }
.what-hline {
  position: absolute;
  left: 0; right: 0;
  border-top: 2px dashed rgba(255,255,255,.22);
  opacity: .8;
}
.what-hline.top    { top: -2px; }
.what-hline.bottom { bottom: -2px; }

.what-arrow {
  position: absolute;
  bottom: 20px; right: 20px;
  width: 30px; height: 30px;
  border: 1px solid #fff;
}
.what-arrow::before {
  content: "";
  position: absolute;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transition: .5s;
  width: 10px; height: 10px;
}
.what-content:hover .what-arrow::before,
.what-content.active .what-arrow::before {
  transform: translate(-50%, -20%) rotate(-225deg);
}

@media (max-width: 1024px) {
  .whatIDO { flex-direction: column; }
  .what-box { width: 100%; }
  .what-title { margin: 0 0 40px; font-size: 64px; line-height: 60px; }
  .what-box-in { margin-left: 0; height: 520px; width: 100%; max-width: 500px; }
  .what-content { width: 100%; padding: 30px; }
  .what-content:hover, .what-content.active { padding: 20px 30px; }
  .what-content:hover ~ .what-content,
  .what-box-in:hover .what-content:not(:hover),
  .what-content.sibling { padding: 6px 30px; }
}

/* ── Career ──────────────────────────────────────── */
.career-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin: auto;
  margin-bottom: 150px;
  padding: 120px 0;
}
.career-section h2 {
  font-size: 70px;
  line-height: 70px;
  font-weight: 400;
  text-align: center;
  background: linear-gradient(0deg, #0d9488, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 50px 0 90px;
  font-family: "Geist", system-ui, sans-serif;
}
.career-section h2 > span {
  font-family: "Instrument Serif", "Geist", serif;
  font-weight: 300;
  font-style: italic;
}
.career-info {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  width: 100%;
}
.career-info-box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  gap: 50px;
}
.career-info-box p {
  width: 40%;
  font-size: 18px;
  font-weight: 300;
  line-height: 26px;
  margin: 0;
  color: var(--mutedColor);
}
.career-info-in {
  display: flex;
  width: 40%;
  justify-content: space-between;
  gap: 50px;
}
.career-info h3 {
  font-size: 48px;
  margin: 0;
  font-weight: 500;
  line-height: 45px;
  font-family: "Geist", system-ui, sans-serif;
}
.career-info h4 {
  font-size: 30px;
  line-height: 32px;
  letter-spacing: .8px;
  font-weight: 500;
  margin: 0;
  font-family: "Geist", system-ui, sans-serif;
}
.career-info h5 {
  font-weight: 400;
  letter-spacing: .7px;
  font-size: 18px;
  text-transform: capitalize;
  margin: 8px 0;
  color: var(--accentColor);
}
.career-timeline {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background-image: linear-gradient(to top,
    #14b8a6 20%,
    var(--accentColor) 50%,
    transparent 95%);
}
.career-dot {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  background-color: #14b8a6;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: timeline 1.6s ease-in-out infinite;
}
@keyframes timeline {
  0%, 100% { box-shadow: 0 0 5px 2px #67e8f9, 0 0 15px 5px #5eead4, 0 0 90px 18px #a5f3fc; }
  50%      { box-shadow: 0 0 5px 2px #67e8f9; }
}
@media (max-width: 900px) {
  .career-info-box { flex-direction: column; gap: 10px; }
  .career-info-in, .career-info-box p { width: 100%; padding-left: 30px; }
  .career-timeline { left: 8px; }
  .career-section h2 { font-size: 48px; line-height: 48px; }
  .career-info h3 { font-size: 36px; }
  .career-info h4 { font-size: 24px; line-height: 28px; }
}

/* ── Work ────────────────────────────────────────── */
.work-section {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}
.work-section h2 {
  font-size: 70px;
  font-weight: 500;
  margin: 0 0 50px;
  font-family: "Geist", system-ui, sans-serif;
}
.work-section h2 > span {
  color: var(--accentColor);
  font-style: italic;
  font-family: "Instrument Serif", "Geist", serif;
  font-weight: 300;
}
.carousel-wrapper { position: relative; width: 100%; }
.carousel-track-container {
  overflow: hidden;
  width: 100%;
  border-top: 1px solid #363636;
  border-bottom: 1px solid #363636;
}
.carousel-track {
  display: flex;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
}
.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
  padding: 50px 0;
}
.carousel-content {
  display: flex;
  align-items: center;
  gap: 60px;
}
.carousel-info {
  flex: 1;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.carousel-number h3 {
  font-size: 60px;
  line-height: 1;
  margin: 0;
  font-weight: 600;
  opacity: .3;
  font-family: "Geist", system-ui, sans-serif;
}
.carousel-details { display: flex; flex-direction: column; gap: 8px; }
.carousel-details h4 {
  font-size: 28px;
  font-weight: 500;
  margin: 0;
  font-family: "Geist", system-ui, sans-serif;
}
.carousel-category {
  font-weight: 300;
  color: var(--mutedColor);
  margin: 0;
  font-size: 16px;
}
.carousel-tools { margin-top: 16px; }
.tools-label {
  font-size: 12px;
  font-weight: 400;
  opacity: .6;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.carousel-tools p {
  font-weight: 300;
  color: var(--mutedColor);
  margin: 6px 0 0;
  font-size: 15px;
}
.carousel-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.work-image-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 16/10;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f1f2a, #1a3a3a 60%, #1d4a4a);
  border: 1px solid rgba(94,234,212,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Geist", system-ui, sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 4px;
  color: rgba(255,255,255,.85);
  text-shadow: 0 4px 30px rgba(0,0,0,.4);
  transition: transform .4s;
}
.work-image-card:hover { transform: translateY(-4px); }
.work-image-card .gradient-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(94,234,212,.25), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(34,211,238,.18), transparent 50%);
}
.work-image-card .grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: .8;
}
.work-image-card .label { position: relative; z-index: 2; }
.work-image-card .link-pill {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: var(--backgroundColor);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  box-shadow: 0 0 10px rgba(255,255,255,.5), inset 0 0 10px #393939;
  opacity: 0;
  transition: opacity .3s, transform .3s;
  z-index: 3;
  color: var(--textColor);
}
.work-image-card:hover .link-pill { opacity: 1; transform: scale(1.05); }

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--textColor);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  transition: all .3s;
  backdrop-filter: blur(8px);
}
.carousel-arrow:hover {
  background: rgba(94,234,212,.15);
  border-color: var(--accentColor);
  color: var(--accentColor);
  box-shadow: 0 0 20px rgba(94,234,212,.2);
}
.carousel-arrow-left { left: -70px; }
.carousel-arrow-right { right: -70px; }
@media (max-width: 1600px) {
  .carousel-arrow-left { left: -56px; }
  .carousel-arrow-right { right: -56px; }
}
@media (max-width: 1100px) {
  .carousel-content { flex-direction: column; gap: 30px; }
  .carousel-info { width: 100%; }
  .carousel-image-wrapper { width: 100%; }
  .work-image-card { max-width: 100%; }
  .carousel-arrow-left  { left: 10px; }
  .carousel-arrow-right { right: 10px; }
}
@media (max-width: 700px) {
  .work-section h2 { font-size: 44px; }
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 35px;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  background: transparent;
  cursor: pointer;
  transition: all .3s;
  padding: 0;
}
.carousel-dot:hover {
  border-color: var(--accentColor);
  background: rgba(94,234,212,.2);
}
.carousel-dot.active {
  background: var(--accentColor);
  border-color: var(--accentColor);
  box-shadow: 0 0 8px rgba(94,234,212,.5);
}

/* ── Tech badges ─────────────────────────────────── */
.techstack {
  padding: 80px 0 40px;
  max-width: 1300px;
  margin: auto;
  width: var(--cWidth);
}
.techstack h2 {
  font-size: 70px;
  font-weight: 500;
  margin: 0 0 50px;
  font-family: "Geist", system-ui, sans-serif;
}
.techstack h2 > span {
  color: var(--accentColor);
  font-style: italic;
  font-family: "Instrument Serif", "Geist", serif;
  font-weight: 300;
}
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.tech-pill-rich {
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  padding: 22px 22px 24px;
  border-radius: 14px;
  font-family: "Geist", system-ui, sans-serif;
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), border-color .35s, box-shadow .35s;
  cursor: default;
}
.tech-pill-rich::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(94,234,212,.18), transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.tech-pill-rich:hover { transform: translateY(-3px); border-color: var(--accentColor); box-shadow: 0 14px 40px rgba(94,234,212,.12); }
.tech-pill-rich:hover::before { opacity: 1; }
.tech-pill-rich .tech-name {
  font-size: 18px; font-weight: 600; letter-spacing: .3px;
  margin-bottom: 6px;
}
.tech-pill-rich .tech-note {
  font-size: 13px; line-height: 18px; color: var(--mutedColor); font-weight: 300;
}
.tech-pill-rich:hover .tech-name { color: var(--accentColor); }
@media (max-width: 700px) {
  .techstack h2 { font-size: 44px; }
}

/* ── Contact / Footer ────────────────────────────── */
.contact-section {
  margin: 100px auto 0;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
}
.contact-section h3 {
  font-size: 60px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 60px;
  font-family: "Geist", system-ui, sans-serif;
}
.contact-flex {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.contact-flex h4 {
  font-weight: 500;
  margin: 0;
  opacity: .6;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
}
.contact-box { display: flex; flex-direction: column; min-width: 240px; }
.contact-flex p { margin: 10px 0 24px; font-size: 16px; font-weight: 300; line-height: 22px; }
a.contact-social {
  font-size: 22px;
  border-bottom: 1px solid #444;
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Geist", system-ui, sans-serif;
  font-weight: 500;
  transition: color .25s, padding-left .25s, border-color .25s;
}
a.contact-social:hover {
  color: var(--accentColor);
  padding-left: 8px;
  border-color: var(--accentColor);
}
a.contact-social .arrow { transition: transform .25s; }
a.contact-social:hover .arrow { transform: translate(4px, -4px); }
.contact-box h2 {
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 18px;
  line-height: 28px;
}
.contact-box h2 > span {
  color: var(--accentColor);
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
}
.contact-box h5 {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  gap: 8px;
  opacity: .5;
  align-items: center;
  margin: 0;
  letter-spacing: 1px;
}
@media (max-width: 900px) {
  .contact-section h3 { font-size: 40px; }
  .contact-flex { flex-direction: column; }
}

/* ── Social rail ─────────────────────────────────── */
.icons-section {
  position: fixed;
  max-width: var(--cMaxWidth);
  width: var(--cWidth);
  bottom: 0;
  z-index: 99;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.social-icons {
  position: absolute;
  left: -10px;
  bottom: 30px;
  display: none;
  flex-direction: column;
  gap: 18px;
  pointer-events: auto;
}
.social-icons a {
  font-size: 24px;
  color: var(--textColor);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .3s, transform .3s;
}
.social-icons a:hover { color: var(--accentColor); transform: scale(1.15); }
.resume-button {
  position: absolute;
  right: -8px;
  bottom: 40px;
  display: flex;
  gap: 8px;
  text-wrap: nowrap;
  letter-spacing: 4px;
  font-size: 13px;
  line-height: 13px;
  font-weight: 700;
  color: var(--mutedColor);
  transform-origin: right bottom;
  transform: rotate(-90deg) translateY(-100%);
  pointer-events: auto;
  align-items: center;
  transition: color .35s;
}
.resume-button:hover { color: var(--accentColor); }
.builder-tag { letter-spacing: 5px !important; font-size: 11px !important; }

/* ── LAB · smart AI tools ─────────────────────────── */
.lab {
  padding: 100px 0 80px;
  max-width: 1300px;
  width: var(--cWidth);
  margin: 0 auto;
}
.lab-title {
  font-family: "Geist", system-ui, sans-serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.05;
  margin: 0 0 48px;
  max-width: 900px;
  color: rgba(255,255,255,.95);
}
.lab-title .accent {
  color: var(--accentColor);
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 300;
}
.lab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) { .lab-grid { grid-template-columns: 1fr; } }
.lab-card {
  position: relative;
  padding: 36px;
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(255,255,255,.035), rgba(255,255,255,.005));
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.lab-card::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 280px; height: 280px;
  background: var(--accentColor);
  filter: blur(120px);
  opacity: .08;
  pointer-events: none;
}
.lab-card:hover { border-color: rgba(94,234,212,.35); }
.lab-card-head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.lab-card h3 {
  font-family: "Geist", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -.01em;
  margin: 0;
  color: #fff;
}
.lab-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 5px 10px;
  border-radius: 5px;
  background: rgba(94,234,212,.15);
  color: var(--accentColor);
  border: 1px solid rgba(94,234,212,.35);
}
.lab-tag.alt {
  background: rgba(34,211,238,.15);
  border-color: rgba(34,211,238,.35);
}
.lab-sub {
  position: relative;
  font-size: 14px;
  color: var(--mutedColor);
  margin: 0 0 24px;
  line-height: 1.65;
}
.lab-seeds {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.lab-seed {
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--mutedColor);
  cursor: pointer;
  font-family: inherit;
  transition: color .25s, border-color .25s, background .25s;
}
.lab-seed:hover {
  color: var(--accentColor);
  border-color: rgba(94,234,212,.4);
  background: rgba(94,234,212,.06);
}
.lab-input {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}
.lab-input input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.lab-input input:focus {
  border-color: var(--accentColor);
  box-shadow: 0 0 0 4px rgba(94,234,212,.1);
}
.lab-input button {
  width: 52px;
  border-radius: 12px;
  background: var(--accentColor);
  border: none;
  color: #06080a;
  font-weight: 800;
  font-size: 20px;
  cursor: pointer;
  transition: transform .18s, opacity .2s;
}
.lab-input button:hover:not(:disabled) { transform: scale(1.06); }
.lab-input button:disabled { opacity: .45; cursor: not-allowed; }
.lab-reply {
  background: rgba(94,234,212,.06);
  border: 1px solid rgba(94,234,212,.18);
  border-radius: 12px;
  padding: 18px 22px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.88);
  min-height: 90px;
  white-space: pre-wrap;
}
.lab-dots { display: inline-flex; gap: 7px; align-items: center; height: 100%; }
.lab-dots i {
  display: block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accentColor);
  animation: labBlink 1.2s ease-in-out infinite;
}
.lab-dots i:nth-child(2) { animation-delay: .15s; }
.lab-dots i:nth-child(3) { animation-delay: .3s; }
@keyframes labBlink {
  0%, 60%, 100% { opacity: .25; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}
.build-roll {
  width: 100%;
  padding: 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(94,234,212,.18), rgba(34,211,238,.06));
  border: 1px solid rgba(94,234,212,.3);
  color: var(--accentColor);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  margin-bottom: 16px;
  transition: background .25s, letter-spacing .25s, transform .15s;
}
.build-roll:hover:not(:disabled) {
  background: linear-gradient(135deg, rgba(94,234,212,.32), rgba(34,211,238,.12));
  letter-spacing: 4px;
}
.build-roll:disabled { opacity: .5; cursor: not-allowed; }
.build-idea {
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 22px;
  font-family: "Geist Mono", "JetBrains Mono", ui-monospace, monospace;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,.92);
  white-space: pre-wrap;
  margin: 0;
  max-height: 240px;
  overflow: auto;
}
.resume-button .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accentColor);
  box-shadow: 0 0 10px var(--accentColor);
}
@media (min-width: 900px) {
  .social-icons { display: flex; }
}

/* ── Custom cursor ───────────────────────────────── */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99998;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform, width, height;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--accentColor);
  box-shadow: 0 0 12px var(--accentColor);
  transition: width .2s, height .2s, opacity .2s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(94,234,212,.6);
  transition: width .25s, height .25s, border-color .25s, opacity .2s;
}
body.cursor-hover .cursor-ring { width: 60px; height: 60px; border-color: var(--accentColor); }
body.cursor-hover .cursor-dot { width: 10px; height: 10px; }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ── Now-playing status pill ─────────────────────── */
.now-pill {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(94,234,212,.08);
  border: 1px solid rgba(94,234,212,.3);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accentColor);
  font-weight: 500;
  z-index: 12;
  backdrop-filter: blur(8px);
}
.now-pill .pulse {
  position: relative;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accentColor);
}
.now-pill .pulse::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--accentColor);
  opacity: .5;
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(.6); opacity: .6; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* ── Marquee divider ─────────────────────────────── */
.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 28px 0;
  margin: 80px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 60px;
  animation: marquee 35s linear infinite;
  font-family: "Geist", system-ui, sans-serif;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  align-items: center;
}
.marquee-track span { display: inline-block; }
.marquee-track .accent { color: var(--accentColor); font-style: italic; font-family: "Instrument Serif", serif; font-weight: 300; }
.marquee-track .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accentColor); display: inline-block; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Stats strip ─────────────────────────────────── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1300px;
  width: var(--cWidth);
  margin: 0 auto 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat .num {
  font-size: 56px;
  font-weight: 600;
  font-family: "Geist", system-ui, sans-serif;
  line-height: 1;
  background: linear-gradient(180deg, #fff 30%, #0d9488);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat .num .plus { color: var(--accentColor); -webkit-text-fill-color: var(--accentColor); }
.stat .label {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--mutedColor);
  font-weight: 500;
}
@media (max-width: 800px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat .num { font-size: 42px; }
}

/* ── Section eyebrow numbers ─────────────────────── */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accentColor);
  font-weight: 500;
  margin-bottom: 24px;
  font-family: "Geist", system-ui, sans-serif;
}
.section-eyebrow .num {
  font-weight: 700;
  color: var(--mutedColor);
}
.section-eyebrow .bar {
  flex: 0 0 60px;
  height: 1px;
  background: var(--accentColor);
}

/* magnetic-ish lift */
.magnetic { transition: transform .25s cubic-bezier(.2,.7,.3,1); }
.magnetic:hover { transform: translateY(-2px); }

/* ── 1. Page progress bar ──────────────────────── */
.page-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--accentColor), #fff);
  box-shadow: 0 0 12px var(--accentColor);
  z-index: 99997; transition: width .15s linear;
}

/* ── 2. Section dot indicator (right rail) ─────── */
.section-rail {
  position: fixed; right: 24px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 14px; z-index: 50;
  pointer-events: none;
}
.section-rail a {
  width: 28px; height: 8px; display: flex; align-items: center; justify-content: flex-end;
  pointer-events: auto;
}
.section-rail a::after {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.25);
  transition: all .3s;
}
.section-rail a:hover::after { background: var(--accentColor); }
.section-rail a.active::after {
  width: 24px; border-radius: 4px; background: var(--accentColor);
  box-shadow: 0 0 12px var(--accentColor);
}
@media (max-width: 900px) { .section-rail { display: none; } }

/* ── 3. Scramble text on hero focus word ───────── */
.scramble { display: inline-block; }

/* ── 4. Spotlight that follows cursor ──────────── */
.spotlight {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  background: radial-gradient(360px circle at var(--sx, 50%) var(--sy, 50%),
    rgba(94,234,212,.06), transparent 60%);
  transition: background .1s;
}

/* ── 5. KBD command palette hint ───────────────── */
.kbd-hint {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 60;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(10,10,12,.7);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--mutedColor); font-weight: 500;
  font-family: "Geist", system-ui, sans-serif;
  opacity: 0; animation: kbdFade 1s 2s forwards;
  cursor: pointer;
  transition: color .25s, border-color .25s;
}
.kbd-hint:hover { color: var(--accentColor); border-color: var(--accentColor); }
.kbd-hint kbd {
  font-family: "Geist", monospace;
  font-size: 10px; font-weight: 600;
  padding: 2px 6px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 4px;
  color: #fff;
}
@keyframes kbdFade { to { opacity: 1; } }

/* ── 6. Command palette ───────────────────────── */
.palette-backdrop {
  position: fixed; inset: 0; z-index: 99996;
  background: rgba(0,0,0,.6); backdrop-filter: blur(8px);
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 14vh;
  opacity: 0; pointer-events: none;
  transition: opacity .2s;
}
.palette-backdrop.open { opacity: 1; pointer-events: auto; }
.palette {
  width: min(560px, 90vw);
  background: #0e1316;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.6), 0 0 0 1px rgba(94,234,212,.1);
  font-family: "Geist", system-ui, sans-serif;
}
.palette input {
  width: 100%; padding: 18px 22px;
  background: transparent;
  border: none; border-bottom: 1px solid rgba(255,255,255,.08);
  color: var(--textColor); font-size: 16px;
  outline: none;
  font-family: inherit;
}
.palette ul { list-style: none; margin: 0; padding: 8px 0; max-height: 50vh; overflow: auto; }
.palette li {
  padding: 12px 22px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  font-size: 14px; cursor: pointer; transition: background .15s;
}
.palette li:hover, .palette li.active { background: rgba(94,234,212,.08); color: var(--accentColor); }
.palette li .meta { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; opacity: .5; }

/* ── 7. Featured-project pin (over hero work card) ── */
.work-image-card .pin {
  position: absolute; top: 14px; left: 14px;
  font-size: 10px; letter-spacing: 2px; font-weight: 700;
  padding: 4px 10px; border-radius: 50px;
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(94,234,212,.4);
  color: var(--accentColor);
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  z-index: 3;
}

/* ── 8. Constellation background canvas ─────────── */
#constellation {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .55;
}

/* ── 9. Quote / philosophy strip ───────────────── */
.philosophy {
  max-width: 1100px;
  width: var(--cWidth);
  margin: 100px auto;
  padding: 80px 0;
  text-align: left;
  position: relative;
}
.philosophy-quote {
  font-family: "Instrument Serif", serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.15;
  font-weight: 400;
  font-style: italic;
  margin: 0;
}
.philosophy-quote .accent { color: var(--accentColor); }
.philosophy-sig {
  margin-top: 30px;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--mutedColor);
}

/* ── 10. Easter-egg signature line ────────────── */
.signature {
  position: fixed; bottom: 8px; right: 16px;
  font-size: 10px; letter-spacing: 2px;
  color: rgba(255,255,255,.18);
  font-family: "Geist", monospace; z-index: 30;
  pointer-events: none;
}
.nav-fade {
  position: fixed;
  top: 0;
  width: 100%;
  height: 130px;
  background: linear-gradient(0deg, transparent, var(--backgroundColor) 70%);
  pointer-events: none;
  z-index: 12;
  left: 0;
}
