/* WaitWhatWeb — dark cinematic agency site */
:root {
  --bg: #0A0A0A;
  --bg-elev: #111111;
  --bg-card: #131313;
  --ink: #EDEDED;
  --ink-dim: #8A8A8A;
  --ink-mute: #545454;
  --rule: #1F1F1F;
  --rule-strong: #2A2A2A;
  --accent: #C8FF3D;
  --accent-ink: #0A0A0A;
  --maxw: 1440px;
  --pad: 32px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-power: cubic-bezier(0.7, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Geist', -apple-system, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body { min-height: 100vh; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; }

::selection { background: var(--accent); color: var(--accent-ink); }

.mono { font-family: 'Geist Mono', ui-monospace, monospace; font-feature-settings: "ss01"; }
.display {
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.92;
}

/* Custom cursor — liquid glass */
.cursor-dot, .cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  top: 0;
  left: 0;
  border-radius: 999px;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: #fff;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width .25s var(--ease), height .25s var(--ease), background .25s var(--ease);
}
.cursor-ring {
  width: 38px; height: 38px;
  transform: translate(-50%, -50%);
  /* refraction backdrop filter — distorts what's underneath */
  -webkit-backdrop-filter: blur(6px) saturate(160%) brightness(1.05) url(#cursor-refract);
          backdrop-filter: blur(6px) saturate(160%) brightness(1.05) url(#cursor-refract);
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,0.18), rgba(255,255,255,0.04) 35%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.45),
    inset 0 -1px 0 rgba(0,0,0,0.30),
    inset 0 0 0 1px rgba(255,255,255,0.06),
    0 4px 20px rgba(0,0,0,0.18);
  overflow: hidden;
  transition:
    width .35s cubic-bezier(0.22,1,0.36,1),
    height .35s cubic-bezier(0.22,1,0.36,1),
    border-color .3s var(--ease),
    background .3s var(--ease);
}

/* glass top gloss highlight */
.cursor-ring-glass {
  position: absolute;
  top: 0; left: 0; right: 0; height: 55%;
  background: linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0));
  border-radius: 999px 999px 50% 50% / 999px 999px 100% 100%;
  pointer-events: none;
}
/* sharp specular dot */
.cursor-ring-spec {
  position: absolute;
  top: 18%; left: 22%;
  width: 32%; height: 22%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.75), rgba(255,255,255,0) 70%);
  filter: blur(0.5px);
  pointer-events: none;
}
/* faint inner rim */
.cursor-ring-rim {
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.10);
  pointer-events: none;
}

body.cursor-hover .cursor-dot { width: 0; height: 0; }
body.cursor-hover .cursor-ring {
  width: 64px; height: 64px;
  background:
    radial-gradient(circle at 30% 28%, rgba(200,255,61,0.30), rgba(200,255,61,0.10) 40%, rgba(200,255,61,0.04) 100%);
  border-color: rgba(200,255,61,0.55);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.4),
    inset 0 -1px 0 rgba(0,0,0,0.35),
    0 4px 24px rgba(200,255,61,0.18);
}
body.cursor-text .cursor-dot { width: 2px; height: 24px; border-radius: 0; }
body.cursor-text .cursor-ring { opacity: 0; }

/* light mode: invert highlight tone */
body.mode-light .cursor-ring {
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,0.55), rgba(255,255,255,0.20) 35%, rgba(255,255,255,0.05) 100%);
  border-color: rgba(10,10,10,0.20);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    inset 0 -1px 0 rgba(10,10,10,0.10),
    0 4px 18px rgba(10,10,10,0.10);
}
body.mode-light .cursor-ring-glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0));
}
body.mode-light .cursor-ring-spec {
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.95), rgba(255,255,255,0) 70%);
}
body.mode-light .cursor-dot { background: #0a0a0a; }
body.mode-light.cursor-hover .cursor-ring {
  background:
    radial-gradient(circle at 30% 28%, rgba(200,255,61,0.55), rgba(200,255,61,0.18) 45%, rgba(200,255,61,0.06) 100%);
  border-color: rgba(120,180,30,0.7);
}

@media (max-width: 900px) { .cursor-dot, .cursor-ring { display: none; } }

/* Layout */
.shell { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.section { position: relative; padding: 140px 0; }
.section-hd { display: flex; justify-content: space-between; align-items: flex-end; gap: 48px; margin-bottom: 80px; }
.section-eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-dim);
  display: flex; align-items: center; gap: 12px;
}
.section-eyebrow::before {
  content: ""; width: 8px; height: 8px;
  background: var(--accent); border-radius: 999px;
  box-shadow: 0 0 12px var(--accent);
}
.section-title {
  font-size: clamp(44px, 6.4vw, 96px);
  letter-spacing: -0.04em;
  line-height: 0.95;
  font-weight: 500;
  max-width: 900px;
}

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px var(--pad);
  display: flex; justify-content: space-between; align-items: center;
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,10,0.72);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom-color: var(--rule);
}
.nav-logo {
  font-family: 'Geist', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.03em;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo .dot {
  width: 8px; height: 8px; background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 16px var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.nav-links { display: flex; gap: 4px; }
.nav-link {
  padding: 10px 16px;
  font-size: 14px;
  color: var(--ink-dim);
  border-radius: 999px;
  transition: color .3s var(--ease), background .3s var(--ease);
  position: relative;
}
.nav-link:hover { color: var(--ink); background: var(--rule); }
.nav-cta {
  padding: 10px 18px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: background .3s var(--ease), color .3s var(--ease);
  display: flex; align-items: center; gap: 8px;
}
.nav-cta:hover { background: var(--accent); }
.nav-cta .arrow { transition: transform .3s var(--ease); }
.nav-cta:hover .arrow { transform: translate(3px, -3px); }

@media (max-width: 768px) {
  .nav-links { display: none; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: #DCFF66; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--rule-strong);
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(255,255,255,.04); }
.btn .arrow {
  width: 16px; height: 16px;
  transition: transform .4s var(--ease);
}
.btn:hover .arrow { transform: translate(2px, -2px); }

/* Hero */
.hero {
  min-height: 100vh;
  padding: 120px var(--pad) 60px;
  position: relative;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.55;
}
.hero-noise {
  position: absolute; inset: -50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.13 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.55;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, transparent 0%, rgba(10,10,10,0.4) 60%, var(--bg) 100%);
  pointer-events: none;
}
.hero-top {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 24px;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
  padding-top: 100px;
}
.hero-top .col { display: flex; flex-direction: column; gap: 6px; max-width: 240px; }
.hero-top .label { color: var(--ink-mute); }
.hero-top .val { color: var(--ink); }

.hero-main { position: relative; z-index: 2; }
.hero-headline {
  font-size: clamp(56px, 11vw, 184px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.9;
  margin-bottom: 0;
}
.hero-headline .accent-word {
  color: var(--accent);
  font-style: italic;
  font-family: 'Instrument Serif', 'Geist', serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.hero-headline .line { display: block; overflow: hidden; }
.hero-headline .line-inner { display: inline-block; }

.hero-foot {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  padding-top: 60px;
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--ink-dim);
  max-width: 460px;
  line-height: 1.45;
}
.hero-ctas { display: flex; gap: 12px; }

@media (max-width: 768px) {
  .hero-foot { grid-template-columns: 1fr; }
  .hero-ctas { flex-wrap: wrap; }
  .hero-top .col:nth-child(3) { display: none; }
}

/* Marquee strip */
.marquee {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 28px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 60px;
  animation: scroll-x 40s linear infinite;
  align-items: center;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 60px;
  font-family: 'Geist Mono', monospace;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ink-dim);
  text-transform: uppercase;
}
.marquee-item .star {
  color: var(--accent);
  font-size: 14px;
  display: inline-block;
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.about-eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-dim);
}
.about-statement {
  font-size: clamp(28px, 3.4vw, 48px);
  letter-spacing: -0.025em;
  line-height: 1.15;
  font-weight: 400;
}
.about-statement em {
  font-style: italic;
  font-family: 'Pixelify Sans', monospace;
  font-weight: 400;
  color: var(--accent);
}
.about-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 36px; }
.pill {
  padding: 8px 14px;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: var(--ink-dim);
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.pill:hover { border-color: var(--accent); color: var(--accent); }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } }

/* Services */
.services-list {
  border-top: 1px solid var(--rule);
}
.service {
  border-bottom: 1px solid var(--rule);
  padding: 36px 0;
  display: grid;
  grid-template-columns: 80px 1.2fr 1fr 60px;
  gap: 32px;
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: padding .5s var(--ease), background .5s var(--ease);
}
.service::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(200,255,61,0.04) 50%, transparent 100%);
  opacity: 0; transition: opacity .5s var(--ease);
}
.service:hover { padding: 56px 24px; }
.service:hover::before { opacity: 1; }
.service-num {
  font-family: 'Geist Mono', monospace;
  font-size: 13px;
  color: var(--ink-mute);
}
.service-name {
  font-size: clamp(28px, 3.4vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1;
  font-weight: 500;
  transition: color .4s var(--ease), transform .5s var(--ease);
}
.service:hover .service-name { color: var(--accent); }
.service-desc { color: var(--ink-dim); font-size: 15px; line-height: 1.5; max-width: 360px; }
.service-arrow {
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid var(--rule-strong);
  display: flex; align-items: center; justify-content: center;
  justify-self: end;
  transition: background .4s var(--ease), border-color .4s var(--ease), transform .5s var(--ease);
}
.service:hover .service-arrow { background: var(--accent); border-color: var(--accent); transform: rotate(-45deg); }
.service:hover .service-arrow svg { stroke: var(--accent-ink); }
.service-arrow svg { stroke: var(--ink); transition: stroke .4s var(--ease); }
@media (max-width: 768px) {
  .service { grid-template-columns: 40px 1fr 44px; gap: 16px; padding: 24px 0; }
  .service:hover { padding: 28px 0; }
  .service-desc { display: none; }
}

/* Principles */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.principle {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 36px 28px;
  min-height: 280px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: background .5s var(--ease);
}
.principle:hover { background: var(--bg-elev); }
.principle::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .6s var(--ease);
}
.principle:hover::after { transform: scaleX(1); }
.principle-num {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
}
.principle-icon {
  width: 64px; height: 64px;
  margin: 24px 0;
  color: var(--accent);
  transition: transform .6s var(--ease);
}
.principle:hover .principle-icon { transform: rotate(45deg) scale(1.05); }
.principle-name {
  font-size: 28px;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin-bottom: 8px;
}
.principle-desc {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.5;
}
@media (max-width: 1100px) { .principles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .principles-grid { grid-template-columns: 1fr; } }

/* Selected Work */
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.work-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--bg-elev);
  cursor: pointer;
  transition: transform .6s var(--ease);
}
.work-card .visual {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.work-card .visual-inner {
  position: absolute; inset: 0;
  transition: transform .8s var(--ease-power), filter .6s var(--ease);
}
.work-card:hover .visual-inner { transform: scale(1.05); filter: brightness(0.85); }
.work-card .visual-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .4s var(--ease);
  z-index: 2;
}
.work-card:hover .visual-overlay { opacity: 1; }
.view-btn {
  padding: 14px 22px;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  display: flex; align-items: center; gap: 8px;
  transform: translateY(20px);
  transition: transform .5s var(--ease);
}
.work-card:hover .view-btn { transform: translateY(0); }

.work-meta {
  padding: 24px 4px 0;
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 24px;
}
.work-title {
  font-size: 22px;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.work-cat {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.work-year { font-family: 'Geist Mono', monospace; font-size: 12px; color: var(--ink-mute); }

.work-card.span-7 { grid-column: span 7; }
.work-card.span-5 { grid-column: span 5; }
.work-card.span-6 { grid-column: span 6; }
.work-card.span-12 { grid-column: span 12; }
.work-card.span-4 { grid-column: span 4; }
.work-card.span-8 { grid-column: span 8; }

@media (max-width: 900px) {
  .work-card.span-7, .work-card.span-5, .work-card.span-6, .work-card.span-4, .work-card.span-8, .work-card.span-12 {
    grid-column: span 12;
  }
}

/* Process */
.process { padding: 140px 0; background: var(--bg); position: relative; }
.process-headline {
  font-size: clamp(72px, 12vw, 220px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.85;
  display: flex; flex-wrap: wrap; align-items: baseline;
  gap: clamp(16px, 3vw, 60px);
  margin-bottom: 80px;
}
.process-headline .step {
  display: inline-flex;
  align-items: baseline;
  position: relative;
  cursor: default;
}
.process-headline .step .num {
  font-family: 'Geist Mono', monospace;
  font-size: 0.18em;
  color: var(--ink-mute);
  margin-right: 8px;
  vertical-align: super;
  letter-spacing: 0.04em;
}
.process-headline .step .word {
  display: inline-block;
  transition: color .4s var(--ease), transform .6s var(--ease);
}
.process-headline .step:hover .word { color: var(--accent); transform: translateY(-6px); }
.process-headline .arrow {
  display: inline-block;
  font-size: 0.6em;
  color: var(--ink-mute);
  transform: translateY(-0.05em);
}

.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid var(--rule);
  padding-top: 40px;
}
.process-step {
  display: flex; flex-direction: column; gap: 16px;
}
.process-step .step-num {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.08em;
}
.process-step .step-title {
  font-size: 22px;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.process-step .step-desc {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.5;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }

/* FAQ */
.faq-list {
  border-top: 1px solid var(--rule);
}
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 28px 0;
  cursor: pointer;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -0.02em;
  font-weight: 500;
  transition: color .3s var(--ease);
}
.faq-item:hover .faq-q { color: var(--accent); }
.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 999px;
  border: 1px solid var(--rule-strong);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.faq-item:hover .faq-toggle { border-color: var(--accent); }
.faq-toggle::before, .faq-toggle::after {
  content: ""; position: absolute;
  background: var(--ink);
  transition: transform .4s var(--ease), background .3s var(--ease);
}
.faq-toggle::before { width: 12px; height: 1px; }
.faq-toggle::after { width: 1px; height: 12px; }
.faq-item.open .faq-toggle::after { transform: rotate(90deg); }
.faq-item.open .faq-toggle { background: var(--accent); border-color: var(--accent); }
.faq-item.open .faq-toggle::before, .faq-item.open .faq-toggle::after { background: var(--accent-ink); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease), padding-top .5s var(--ease), opacity .4s var(--ease);
  opacity: 0;
  font-size: 16px;
  color: var(--ink-dim);
  line-height: 1.55;
  max-width: 720px;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding-top: 20px;
  opacity: 1;
}

/* CTA */
.cta {
  padding: 180px 0 140px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(200,255,61,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-dim);
  margin-bottom: 36px;
  display: inline-flex; align-items: center; gap: 12px;
}
.cta-eyebrow::before {
  content: ""; width: 8px; height: 8px;
  background: var(--accent); border-radius: 999px;
  box-shadow: 0 0 12px var(--accent);
}
.cta-headline {
  font-size: clamp(56px, 10vw, 160px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.92;
  margin-bottom: 32px;
  position: relative;
}
.cta-headline em {
  font-style: italic;
  font-family: 'Pixelify Sans', monospace;
  font-weight: 400;
  color: var(--accent);
}
.cta-sub {
  font-size: 18px;
  color: var(--ink-dim);
  margin-bottom: 48px;
}
.cta-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.footer {
  border-top: 1px solid var(--rule);
  padding: 80px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 80px;
}
.footer-brand {
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.9;
}
.footer-brand .dot { color: var(--accent); }
.footer-col h4 {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  font-weight: 500;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--ink-dim);
  font-size: 15px;
  transition: color .3s var(--ease);
  display: inline-flex; align-items: center; gap: 8px;
}
.footer-col a:hover { color: var(--ink); }
.footer-col a .ext { opacity: 0; transition: opacity .3s var(--ease), transform .3s var(--ease); }
.footer-col a:hover .ext { opacity: 1; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-mask { overflow: hidden; }
.reveal-mask > * { display: block; transform: translateY(110%); transition: transform 1s var(--ease); }
.reveal-mask.in > * { transform: translateY(0); }
.reveal-d-1 { transition-delay: .08s; }
.reveal-d-2 { transition-delay: .16s; }
.reveal-d-3 { transition-delay: .24s; }
.reveal-d-4 { transition-delay: .32s; }

/* Scroll-driven big text */
.scroll-bigtext {
  font-size: clamp(120px, 22vw, 380px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.85;
  white-space: nowrap;
  position: relative;
  color: transparent;
  -webkit-text-stroke: 1px var(--ink-mute);
  user-select: none;
}


/* ============ Trusted Clients ============ */
.tc-section { padding-bottom: 80px; }
.tc-sub {
  max-width: 640px;
  margin-top: 28px;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.55;
  color: var(--ink-dim);
  letter-spacing: -0.005em;
}

.tc-rows {
  margin: 64px 0 56px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.tc-row {
  overflow: hidden;
  width: 100%;
}

.tc-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: tc-scroll linear infinite;
  will-change: transform;
}
.tc-row-rev .tc-track { animation-direction: reverse; }

.tc-row:hover .tc-track { animation-play-state: paused; }

@keyframes tc-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-33.3333%, 0, 0); }
}

.tc-cell {
  flex: 0 0 auto;
  border: 1px solid var(--rule);
  background: #161616;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: border-color 360ms var(--ease), background 360ms var(--ease), transform 360ms var(--ease);
}
.tc-cell:hover {
  border-color: var(--rule-strong);
  background: #1c1c1c;
}
.tc-cell img {
  display: block;
  width: auto;
  height: auto;
  max-height: unset;
  object-fit: contain;
  filter: grayscale(1) brightness(0.92) contrast(1.05);
  opacity: 0.62;
  transition: filter 360ms var(--ease), opacity 360ms var(--ease);
}
.tc-cell:hover img {
  filter: grayscale(0) brightness(1) contrast(1);
  opacity: 1;
}

body.type-serif .tc-cell { /* nothing — logos render the same */ }

/* light mode adjustments */
:root[style*="F5F2EC"] .tc-cell,
.type-light .tc-cell { /* hook for future light theme override */ }

.tc-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.tc-foot .mono {
  font-family: 'Geist Mono', monospace;
}
.tc-foot-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--rule-strong);
  padding-bottom: 4px;
  transition: color 280ms var(--ease), border-color 280ms var(--ease);
}
.tc-foot-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

@media (max-width: 720px) {
  .tc-cell { padding: 8px; }
  .tc-rows { margin: 44px 0 36px; }
  .tc-foot { flex-direction: column; gap: 12px; align-items: flex-start; }
}

.tc-many {
  font-family: var(--display-family, 'Geist', sans-serif);
  font-size: clamp(28px, 3.6vw, 56px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink-dim);
  margin: 8px 0 48px;
}
.tc-many::after {
  content: " →";
  color: var(--accent);
}
@media (max-width: 720px) {
  .tc-many { margin: 4px 0 32px; }
}

/* Logo image swaps */
.nav-logo img {
  display: block;
  height: 22px;
  width: auto;
}
.nav-logo .dot { display: none; }
.footer-logo-img {
  display: block;
  height: 100px;
  width: auto;
}
@media (max-width: 720px) {
  .nav-logo img { height: 18px; }
  .footer-logo-img { height: 40px; }
}





/* ============ Nav v2 — glass pill with light sweep ============ */
.nav-v2 {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 40px;
  pointer-events: none;
}
.nav-v2 > * { pointer-events: auto; }
.nav-side {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: color 240ms var(--ease);
}
.nav-side:hover { color: var(--accent); }
.nav-side-l { justify-self: start; }
.nav-side-r { justify-self: end; }

.nav-pill {
  position: relative;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 9px 14px 9px 9px;
  min-width: 380px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 35%, rgba(255,255,255,0.02) 100%),
    rgba(20,20,20,0.55);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(28px) saturate(180%);
          backdrop-filter: blur(28px) saturate(180%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -1px 0 rgba(0,0,0,0.4),
    0 8px 32px rgba(0,0,0,0.45);
  overflow: hidden;
}
.nav-pill-gloss {
  position: absolute; top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0));
  pointer-events: none;
}
.nav-pill::after {
  /* light sweep */
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -40%;
  width: 40%;
  background: linear-gradient(110deg,
    transparent 0%,
    rgba(255,255,255,0.06) 25%,
    rgba(255,255,255,0.30) 50%,
    rgba(255,255,255,0.06) 75%,
    transparent 100%);
  filter: blur(2px);
  pointer-events: none;
  animation: pill-sweep 5.5s cubic-bezier(0.65,0,0.35,1) infinite;
}
@keyframes pill-sweep {
  0%   { left: -45%; }
  60%  { left: 110%; }
  100% { left: 110%; }
}

.nav-burger {
  position: relative;
  width: 38px; height: 38px;
  border-radius: 999px;
  background: linear-gradient(180deg, #353535, #1c1c1c);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px;
  cursor: pointer;
  transition: transform 240ms var(--ease);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.nav-burger:hover { transform: scale(1.05); }
.nav-burger span { display: block; width: 14px; height: 1.5px; background: var(--ink); }
.nav-mark {
  display: flex; align-items: center; padding: 0 10px;
  text-decoration: none; flex: 1; justify-content: center;
}
.nav-mark img {
  display: block; height: 22px; width: auto;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.5));
  transition: opacity 240ms var(--ease);
}
.nav-mark:hover img { opacity: 0.85; }
.nav-dot {
  position: relative;
  width: 38px; height: 38px;
  border-radius: 999px;
  background: linear-gradient(180deg, #353535, #1c1c1c);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.nav-dot::after {
  content: "";
  position: absolute; inset: 12px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(200,255,61,0.6);
  animation: dot-pulse 2.4s var(--ease) infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

/* ============ Bottom-sheet drawer ============ */
.nav-sheet { position: fixed; inset: 0; z-index: 90; pointer-events: none; }
.nav-sheet.open { pointer-events: auto; }
.nav-sheet-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  -webkit-backdrop-filter: blur(0); backdrop-filter: blur(0);
  transition: background 360ms var(--ease), backdrop-filter 360ms var(--ease);
}
.nav-sheet.open .nav-sheet-backdrop {
  background: rgba(0,0,0,0.55);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.nav-sheet-panel {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 18px 24px 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    rgba(15,15,15,0.85);
  border-top: 1px solid rgba(255,255,255,0.10);
  border-radius: 28px 28px 0 0;
  -webkit-backdrop-filter: blur(36px) saturate(180%);
          backdrop-filter: blur(36px) saturate(180%);
  transform: translateY(100%);
  transition: transform 480ms cubic-bezier(0.22,1,0.36,1);
  box-shadow: 0 -20px 60px rgba(0,0,0,0.5);
  max-height: 70vh; overflow-y: auto;
}
.nav-sheet.open .nav-sheet-panel { transform: translateY(0); }
.nav-sheet-handle {
  width: 44px; height: 4px; border-radius: 4px;
  background: rgba(255,255,255,0.18);
  margin: 0 auto 22px;
}
.nav-sheet-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 4px;
}
.nav-sheet-link {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 18px 22px;
  font-family: var(--display-family, 'Geist', sans-serif);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500; letter-spacing: -0.025em;
  color: var(--ink); text-decoration: none;
  border-radius: 14px;
  transition: background 240ms var(--ease), color 240ms var(--ease);
}
.nav-sheet-link:hover { background: rgba(255,255,255,0.06); color: var(--accent); }
.nav-sheet-link .i {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; font-weight: 400; letter-spacing: 0.1em;
  color: var(--ink-mute);
}
.nav-sheet-link.nav-sheet-cta { color: var(--accent); }
.nav-sheet-link.nav-sheet-cta .i { color: var(--accent); }
.nav-sheet-foot {
  max-width: 1200px; margin: 22px auto 0;
  padding: 18px 22px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between;
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-mute);
}

/* ============ Hero v2 ============ */
.hero-v2 {
  min-height: 100vh;
  background: var(--bg);
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

/* interactive blobs background */
.hero-bg-blobs { position: absolute; inset: 0; pointer-events: none; }
.hero-blobs-stage { position: absolute; inset: 0; pointer-events: auto; }
.hero-blobs-grid { display: none !important; }
.hero-blobs-goo { display: none !important; }
.hero-blob { display: none !important; }
.hero-blob-lime {
  background: var(--accent);
  box-shadow: 0 0 80px rgba(200,255,61,0.4);
}
.hero-blob-white {
  background: rgba(255,255,255,0.85);
}
.hero-ripples { position: absolute; inset: 0; pointer-events: none; }
.hero-ripple {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  transform: translate(-50%, -50%);
  animation: ripple-out 1100ms cubic-bezier(0.22,1,0.36,1) forwards;
  pointer-events: none;
}
@keyframes ripple-out {
  0%   { width: 8px; height: 8px; opacity: 1; }
  100% { width: 280px; height: 280px; opacity: 0; }
}
.hero-blobs-noise {
  position: absolute; inset: 0;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  pointer-events: none;
}

/* Pixel tagline */
.hero-pixel-tag {
  position: relative;
  font-family: 'Pixelify Sans', monospace;
  font-weight: 500;
  font-size: clamp(20px, 2.6vw, 36px);
  letter-spacing: 0.06em;
  line-height: 1.35;
  color: var(--ink);
  text-align: center;
  margin: 0 auto;
  max-width: 80vw;
  text-transform: uppercase;
  z-index: 2;
}
.hero-pixel-line { display: block; white-space: nowrap; }
.hero-pixel-tag span { display: inline-block; min-width: 0.55em; transition: color 240ms var(--ease); }
.hero-pixel-tag span:not(.settled) { color: var(--ink-dim); }

/* Gooey wordmark */
.goo-wrap {
  position: relative;
  margin: auto 0 0;
  width: 100%;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.goo-stage {
  filter: url(#goo-filter);
  position: relative;
  width: 100%;
  display: flex; align-items: center; justify-content: center;
  min-height: clamp(160px, 22vw, 320px);
}
.goo-text {
  font-family: 'Rubik Spray Paint', system-ui, sans-serif;
  font-weight: 400;
  color: var(--ink);
  font-size: clamp(120px, 18vw, 280px);
  line-height: 0.85;
  letter-spacing: -0.045em;
  text-align: center;
  user-select: none; -webkit-user-select: none;
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.goo-line { display: block; }
.goo-line-mobile { display: none; }
.goo-line-desktop { display: block; }
.goo-blob {
  position: absolute; top: 0; left: 0;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: opacity 320ms var(--ease), width 360ms var(--ease), height 360ms var(--ease);
  z-index: 2;
}
.goo-wrap.active .goo-blob { opacity: 1; }
.goo-wrap:not(.active) .goo-blob { width: 0; height: 0; }

.hero-down {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  color: var(--ink); text-decoration: none;
  animation: hero-down-bob 2.2s var(--ease) infinite;
  display: flex; z-index: 2;
}
.hero-down:hover { color: var(--accent); }
@keyframes hero-down-bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 6px); }
}

/* ============ Process v2 (interactive stepper) ============ */
.process-v2 .pv-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 56px 0 28px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.process-v2 .pv-rail::before {
  /* base track */
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0; height: 1px;
  background: var(--rule);
}
.process-v2 .pv-progress {
  position: absolute;
  top: -2px; left: 0; height: 3px;
  background: var(--accent);
  transition: width 600ms cubic-bezier(0.22,1,0.36,1);
  box-shadow: 0 0 12px rgba(200,255,61,0.5);
}
.pv-node {
  position: relative;
  background: transparent;
  border: 0;
  padding: 18px 16px 10px;
  text-align: left;
  cursor: pointer;
  display: flex; flex-direction: column; gap: 6px;
  color: var(--ink-dim);
  transition: color 240ms var(--ease);
  border-right: 1px solid var(--rule);
}
.pv-node:last-child { border-right: 0; }
.pv-node:hover { color: var(--ink); }
.pv-node-dot {
  position: absolute;
  top: -34px; left: 16px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--rule);
  transition: all 320ms var(--ease);
}
.pv-node.is-done .pv-node-dot { background: var(--accent); border-color: var(--accent); }
.pv-node.is-active .pv-node-dot {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.4);
  box-shadow: 0 0 0 6px rgba(200,255,61,0.15);
}
.pv-node-num {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em;
  color: var(--ink-mute);
}
.pv-node-title {
  font-family: var(--display-family, 'Geist', sans-serif);
  font-weight: 500;
  font-size: clamp(16px, 1.5vw, 20px);
  letter-spacing: -0.02em;
  transition: color 240ms var(--ease);
}
.pv-node.is-active .pv-node-title { color: var(--ink); }

.pv-panel {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  padding: 44px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.pv-panel-l { display: flex; flex-direction: column; gap: 16px; }
.pv-panel-num {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute);
}
.pv-panel-title {
  font-family: var(--display-family, 'Geist', sans-serif);
  font-weight: 500;
  font-size: clamp(40px, 5.4vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0;
  animation: pv-fade 520ms var(--ease);
}
.pv-panel-desc {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  color: var(--ink-dim);
  max-width: 48ch;
  margin: 0;
  animation: pv-fade 520ms var(--ease) 80ms backwards;
}
.pv-panel-meta {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
  margin-top: 8px;
}
.pv-panel-r {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column;
  gap: 14px;
}
.pv-panel-r li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--rule);
  font-size: 15px;
  color: var(--ink);
  animation: pv-slide 520ms var(--ease) backwards;
}
.pv-panel-r li:last-child { border-bottom: 1px solid var(--rule); }
.pv-bul-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 9px;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(200,255,61,0.6);
}
@keyframes pv-fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pv-slide {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}
.pv-foot {
  margin-top: 18px;
  display: flex; justify-content: space-between;
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-mute);
}

/* ============ Fluid Glass WAITWHAT — SVG lighting blobs ============ */
.fg-wrap {
  position: relative;
  margin: auto 0 0;
  width: 100%;
  min-height: clamp(220px, 28vw, 420px);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}

.fg-liquid-stage {
  position: relative;
  z-index: 2;
  filter: url(#fg-glass-blob);
  -webkit-filter: url(#fg-glass-blob);
  /* generous padding because the height map bleeds outside the glyphs */
  padding: 60px 50px;
}

.fg-liquid-text {
  font-family: 'Rubik Spray Paint', system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(120px, 19vw, 300px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-align: center;
  user-select: none; -webkit-user-select: none;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  /* color doesn't show — only the alpha is used as a height map.
     We pick a dim-ish color so any unfiltered fallback isn't blinding white. */
  color: #1a1a1a;
}
.fg-liquid-text .goo-line { display: block; }
.fg-liquid-text .goo-line-mobile { display: none; }
.fg-liquid-text .goo-line-desktop { display: block; }

@media (max-width: 720px) {
  .fg-liquid-text {
    font-size: clamp(120px, 32vw, 240px);
    line-height: 0.82;
    letter-spacing: -0.05em;
  }
  .fg-liquid-text .goo-line-desktop { display: none; }
  .fg-liquid-text .goo-line-mobile { display: block; }
  .fg-liquid-stage { padding: 40px 24px; }
}


/* ============ Team ============ */
.tm-section { padding-bottom: 100px; }
.tm-sub {
  max-width: 620px;
  margin-top: 24px;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.55;
  color: var(--ink-dim);
}

.tm-grid {
  margin: 64px 0 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  perspective: 1200px;
}

.tm-card {
  --rx: 0deg;
  --ry: 0deg;
  --mx: 50%;
  --my: 50%;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform 280ms cubic-bezier(0.22,1,0.36,1);
  will-change: transform;
}
.tm-card-inner {
  position: relative;
  background: #131313;
  border: 1px solid var(--rule);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 280ms var(--ease), background 280ms var(--ease), box-shadow 280ms var(--ease);
}
.tm-card:hover .tm-card-inner {
  border-color: rgba(200,255,61,0.4);
  background: #161616;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.4),
    0 0 0 1px rgba(200,255,61,0.18) inset;
}
.tm-card:hover .tm-card-inner::after {
  /* lime mouse-position glow on hover */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(280px circle at var(--mx) var(--my), rgba(200,255,61,0.18), transparent 60%);
  pointer-events: none;
  z-index: 3;
}

.tm-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #0e2a30;
}
.tm-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.85) brightness(0.95) contrast(1.05);
  transition: filter 480ms var(--ease), transform 600ms var(--ease);
  transform: scale(1.02);
}
.tm-card:hover .tm-photo img {
  filter: grayscale(0) brightness(1) contrast(1);
  transform: scale(1.06);
}
.tm-photo-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(200,255,61,0) 0%, rgba(200,255,61,0) 60%, rgba(200,255,61,0.15) 100%);
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 480ms var(--ease);
  pointer-events: none;
}
.tm-card:hover .tm-photo-glow { opacity: 1; }
.tm-photo-grain {
  position: absolute; inset: 0;
  opacity: 0.08; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  pointer-events: none;
}

.tm-meta {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 2;
}
.tm-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
}
.tm-tag { color: var(--accent); }
.tm-name {
  font-family: var(--display-family, 'Geist', sans-serif);
  font-weight: 500;
  font-size: clamp(28px, 2.6vw, 36px);
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
}
.tm-role {
  font-size: 14px;
  color: var(--ink-dim);
  letter-spacing: -0.005em;
}

.tm-corner {
  position: absolute;
  top: 12px; right: 14px;
  z-index: 5;
  width: 26px; height: 26px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--ink);
  transition: transform 320ms var(--ease), background 320ms var(--ease);
}
.tm-card:hover .tm-corner {
  background: var(--accent);
  color: var(--accent-ink);
  transform: rotate(45deg);
}

.tm-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.tm-foot-link {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--rule-strong);
  padding-bottom: 4px;
  transition: color 280ms var(--ease), border-color 280ms var(--ease);
}
.tm-foot-link:hover { color: var(--accent); border-color: var(--accent); }

@media (max-width: 1000px) {
  .tm-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 720px) {
  .tm-grid { grid-template-columns: 1fr 1fr; gap: 12px; margin: 44px 0 36px; }
  .tm-meta { padding: 14px 16px 18px; }
  .tm-name { font-size: clamp(20px, 5vw, 26px); }
  .tm-role { font-size: 12px; }
  .tm-meta-row { font-size: 9px; }
  .tm-corner { width: 22px; height: 22px; font-size: 12px; top: 8px; right: 10px; }
  .tm-foot { flex-direction: column; gap: 12px; align-items: flex-start; }
  /* disable 3D tilt on mobile (touch) */
  .tm-card { transform: none !important; }
}


/* ============ Mobile responsive (master pass) ============ */

/* Tablet ≤ 1000px */
@media (max-width: 1000px) {
  :root { --pad: 24px; }
  .section { padding: 96px 0; }
  .section-title { font-size: clamp(36px, 5.5vw, 56px) !important; }
  .work-grid { gap: 18px; }
}

/* Mobile ≤ 720px */
@media (max-width: 720px) {
  :root { --pad: 16px; }
  html { scroll-padding-top: 72px; }
  body { font-size: 15px; }

  /* ---- Universal ---- */
  .shell { padding: 0 16px !important; max-width: 100%; }
  .section { padding: 64px 0 !important; }
  .section-hd { flex-direction: column; align-items: flex-start; gap: 18px !important; margin-bottom: 36px !important; }
  .section-title { font-size: clamp(32px, 8vw, 44px) !important; line-height: 1.0 !important; }
  .section-eyebrow { font-size: 10px !important; letter-spacing: 0.1em !important; }

  /* ---- Cursor: hide on touch ---- */
  .cursor-dot, .cursor-ring { display: none !important; }
  body { cursor: auto !important; }

  /* ---- Nav ---- */
  .nav-v2 { padding: 12px 16px; }
  .nav-side { font-size: 10px; letter-spacing: 0.12em; }
  .nav-pill { gap: 10px; padding: 5px 10px 5px 5px; min-width: 0; }
  .nav-burger, .nav-dot { width: 32px; height: 32px; }
  .nav-burger span { width: 12px; }
  .nav-mark { padding: 0 6px; }
  .nav-mark img { height: 16px; }
  .nav-dot::after { inset: 10px; }
  .nav-sheet-grid { grid-template-columns: 1fr; }
  .nav-sheet-link { padding: 14px 18px; font-size: 22px; }

  /* ---- Hero ---- */
  .hero-v2 {
    min-height: 92vh;
    padding: 96px 16px 70px;
    justify-content: space-between;
  }
  .hero-pixel-tag {
    font-size: clamp(13px, 4.2vw, 18px) !important;
    margin-top: 16px;
    max-width: 92vw;
    letter-spacing: 0.04em !important;
  }
  .hero-pixel-line { white-space: normal; }
  .fg-wrap { min-height: 50vw; }
  .fg-liquid-stage { padding: 30px 16px; }
  .fg-liquid-text { line-height: 0.82 !important; letter-spacing: -0.04em !important; }
  .fg-liquid-text .goo-line-desktop { display: none; }
  .fg-liquid-text .goo-line-mobile { display: block; }
  .fg-liquid-text { font-size: clamp(110px, 32vw, 220px) !important; }
  .hero-down { bottom: 18px; }
  .hero-down svg { width: 24px; height: 24px; }

  /* ---- Marquee ---- */
  .marquee { padding: 18px 0; }
  .marquee-item { font-size: 14px !important; gap: 32px !important; }
  .marquee-track { gap: 32px !important; }

  /* ---- Trusted Clients ---- */
  .tc-section { padding-bottom: 56px; }
  .tc-sub { font-size: 14px; margin-top: 16px; }
  .tc-rows { margin: 36px 0 32px; gap: 12px; }
  .tc-cell { padding: 8px; }
  .tc-cell img { transform: scale(0.7); transform-origin: center; }
  .tc-many { font-size: clamp(24px, 7vw, 36px); margin: 4px 0 28px; }
  .tc-foot { flex-direction: column; gap: 12px; align-items: flex-start; }

  /* ---- About ---- */
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-statement { font-size: clamp(20px, 5.5vw, 28px) !important; line-height: 1.2 !important; }
  .about-pills { gap: 6px; margin-top: 24px; }
  .pill { font-size: 11px; padding: 6px 10px; }

  /* ---- Services ---- */
  .services-list { gap: 0; }
  .service {
    padding: 22px 0 !important;
    grid-template-columns: 44px 1fr !important;
    grid-template-rows: auto auto !important;
    gap: 4px 12px !important;
    align-items: start !important;
  }
  .service:hover { padding: 22px 0 !important; }
  .service::before { display: none; }
  .service-num { font-size: 10px !important; grid-column: 1 / 2 !important; grid-row: 1 / 2 !important; padding-top: 4px; }
  .service-name {
    grid-column: 2 / 3 !important; grid-row: 1 / 2 !important;
    font-size: clamp(22px, 6.5vw, 28px) !important;
    line-height: 1.05 !important;
  }
  .service-desc {
    grid-column: 2 / 3 !important; grid-row: 2 / 3 !important;
    font-size: 13.5px !important;
    line-height: 1.45 !important;
    max-width: none !important;
    margin-top: 4px !important;
    display: block !important;
  }
  .service-arrow { display: none !important; }

  /* ---- Principles ---- */
  .principles-grid { grid-template-columns: 1fr 1fr; }
  .principle { padding: 24px 18px; min-height: 200px; }
  .principle-icon { width: 36px; height: 36px; margin: 14px 0; }
  .principle-name { font-size: 18px; }
  .principle-desc { font-size: 12px; }

  /* ---- Work grid ---- */
  .work-grid { gap: 18px; }
  .work-card { grid-column: span 12 !important; }
  .work-title { font-size: 18px; }
  .work-cat, .work-year { font-size: 11px; }
  .work-meta { padding-top: 16px; gap: 12px; }

  /* ---- Team ---- */
  .tm-section { padding-bottom: 64px; }
  .tm-sub { font-size: 14px; margin-top: 16px; }
  .tm-grid { grid-template-columns: 1fr 1fr; gap: 12px; margin: 36px 0 28px; }
  .tm-meta { padding: 12px 14px 16px; }
  .tm-name { font-size: 18px !important; }
  .tm-role { font-size: 11px; }
  .tm-meta-row { font-size: 9px; margin-bottom: 4px; }
  .tm-tag, .tm-years { font-size: 9px; }
  .tm-corner { width: 22px; height: 22px; font-size: 12px; top: 8px; right: 10px; }
  .tm-foot { flex-direction: column; gap: 12px; align-items: flex-start; font-size: 11px; }
  .tm-card { transform: none !important; }
  .tm-card-inner { border-radius: 10px; }
  .tm-card:hover .tm-card-inner::after { display: none; }
  .tm-photo img { filter: grayscale(0.4) brightness(1) contrast(1) !important; }

  /* ---- Process v2 ---- */
  .process-v2 .pv-rail {
    grid-template-columns: repeat(4, 1fr);
    margin: 28px 0 16px;
    padding-top: 22px;
  }
  .pv-node { padding: 8px 4px 4px; gap: 4px; border-right-width: 1px; }
  .pv-node-num { font-size: 9px; letter-spacing: 0.08em; }
  .pv-node-title { font-size: 11px; line-height: 1.05; }
  .pv-node-dot { left: 4px; top: -26px; width: 9px; height: 9px; }
  .pv-panel {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 0;
  }
  .pv-panel-title { font-size: clamp(36px, 10vw, 56px) !important; }
  .pv-panel-desc { font-size: 14px; }
  .pv-panel-r li { font-size: 13.5px; padding: 12px 0; }
  .pv-bul-dot { width: 5px; height: 5px; margin-top: 7px; }
  .pv-foot { font-size: 10px; }

  /* ---- FAQ ---- */
  .faq-list { border-top: 1px solid var(--rule); }
  .faq-item { padding: 18px 0; }
  .faq-q { font-size: clamp(16px, 4.6vw, 20px) !important; gap: 16px; }
  .faq-toggle { width: 26px; height: 26px; flex-shrink: 0; }
  .faq-a { font-size: 13.5px; line-height: 1.5; }

  /* ---- CTA ---- */
  .cta { padding: 72px 0 56px !important; }
  .cta-headline { font-size: clamp(36px, 11vw, 64px) !important; line-height: 0.96 !important; }
  .cta-sub { font-size: 15px; margin-bottom: 32px; }
  .cta-ctas { flex-direction: column; gap: 10px; }
  .cta-ctas .btn { width: 100%; justify-content: center; }
  .btn { padding: 14px 22px; font-size: 14px; }

  /* ---- Footer ---- */
  .footer { padding: 48px 0 24px; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }
  .footer-brand { grid-column: span 1; }
  .footer-logo-img { height: 100px !important; }
  .footer-col h4 { font-size: 10px; margin-bottom: 12px; }
  .footer-col a { font-size: 13px; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; font-size: 10px; }

  /* ---- Reveal: prevent unhydrated content stuck invisible if IO somehow fails ---- */
  /* (no change, just safety) */

  /* ---- Disable expensive blur filters on really small screens for perf ---- */
  .nav-pill::after { animation-duration: 7.5s; }
}

/* Ultra-small ≤ 380px */
@media (max-width: 380px) {
  :root { --pad: 14px; }
  .shell { padding: 0 14px !important; }
  .hero-pixel-tag { font-size: 12px !important; }
  .fg-liquid-text { font-size: 32vw !important; }
  .section-title { font-size: 28px !important; }
  .section { padding: 56px 0 !important; }
  .nav-pill { gap: 8px; padding: 4px 8px 4px 4px; }
  .nav-burger, .nav-dot { width: 28px; height: 28px; }
  .nav-mark img { height: 14px; }
  .tm-grid { gap: 10px; }
  .tm-name { font-size: 16px !important; }
}

/* Touch device: remove cursor effects always */
@media (hover: none) and (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none !important; }
  .tm-card { transform: none !important; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
