/* ═══════════════════════════════════════════════════════════
   MONOLITH® | styles
   Dark, type-driven, acid-accented. No frameworks. All love.
   ═══════════════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --bg: #0b0b0c;
  --bg-2: #101013;
  --ink: #f2f1ec;
  --muted: rgba(242, 241, 236, 0.55);
  --faint: rgba(242, 241, 236, 0.32);
  --acid: #d8ff3e;
  --acid-dim: rgba(216, 255, 62, 0.14);
  --line: rgba(242, 241, 236, 0.12);
  --line-strong: rgba(242, 241, 236, 0.22);

  --display: 'Clash Display', 'Space Grotesk', system-ui, sans-serif;
  --body: 'Inter', system-ui, -apple-system, sans-serif;
  --serif: 'Playfair Display', Georgia, serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  --radius: 22px;

  --nav-h: 76px;
}

/* ── Reset / base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  overflow-x: clip;
}

::selection { background: var(--acid); color: #0b0b0c; }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
img, svg { display: block; }

:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 200;
  background: var(--acid); color: #0b0b0c; padding: 10px 18px;
  border-radius: 999px; font-weight: 600; transition: top 0.3s var(--ease-out);
}
.skip-link:focus { top: 16px; }

/* ── Grain overlay ──────────────────────────────────────── */
.grain {
  position: fixed; inset: -50%; z-index: 90;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 0.9s steps(4) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 3%); }
  50% { transform: translate(3%, -2%); }
  75% { transform: translate(-3%, -3%); }
  100% { transform: translate(2%, 2%); }
}

/* ── Scroll progress ────────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  z-index: 120; pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--acid), #9dff5e);
}

/* ── Preloader ──────────────────────────────────────────── */
.preloader {
  position: fixed; inset: 0; z-index: 150;
  background: var(--bg);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  transition: transform 0.9s var(--ease), visibility 0s 0.9s;
}
.preloader.is-done { transform: translateY(-101%); visibility: hidden; }

.preloader__inner { text-align: center; }

.preloader__title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(56px, 13vw, 150px);
  letter-spacing: -0.04em; line-height: 1;
  display: flex; justify-content: center; align-items: flex-start;
  text-transform: uppercase;
}
.pl-letter {
  display: inline-block;
  opacity: 0; transform: translateY(112%);
  animation: letter-rise 0.8s var(--ease) forwards;
}
.pl-letter--reg { color: var(--acid); font-size: 0.48em; margin-top: 0.14em; }
@keyframes letter-rise { to { opacity: 1; transform: translateY(0); } }

.preloader__status {
  margin-top: clamp(16px, 3vh, 28px);
  font-size: 13px; font-weight: 500; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--muted);
  min-height: 20px;
}
.preloader__status span { display: inline-block; }

.preloader__star {
  position: absolute; top: 11%; left: 13%;
  color: var(--acid); font-size: clamp(20px, 3vw, 32px);
  animation: spin-slow 7s linear infinite;
}

.preloader__bottom {
  position: absolute; left: 0; right: 0; bottom: clamp(24px, 5vh, 46px);
  display: flex; justify-content: space-between; align-items: flex-end;
  padding: 0 clamp(20px, 4vw, 48px);
}
.preloader__note {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--faint); padding-bottom: 10px;
}
.preloader__count {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(48px, 6.5vw, 88px); line-height: 1;
  letter-spacing: -0.03em; color: var(--ink);
  display: flex; align-items: baseline; gap: 8px;
  font-variant-numeric: tabular-nums;
}
.preloader__count em { font-style: normal; font-size: 0.32em; color: var(--faint); letter-spacing: 0.12em; }

.preloader__bar {
  position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: var(--line);
}
.preloader__bar span {
  display: block; height: 100%; width: 0%;
  background: var(--acid);
  transition: width 0.15s linear;
}

.preloader__flash {
  position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background: radial-gradient(60% 60% at 50% 55%, rgba(216, 255, 62, 0.35), transparent 70%);
}
.preloader.is-done .preloader__flash { animation: preflash 0.75s var(--ease) forwards; }
@keyframes preflash {
  0% { opacity: 0; }
  30% { opacity: 1; }
  100% { opacity: 0; }
}

/* ── Cursor ─────────────────────────────────────────────── */
.cursor { display: none; }
@media (hover: hover) and (pointer: fine) {
  .cursor { display: block; position: fixed; top: 0; left: 0; z-index: 200; pointer-events: none; }
  .cursor__dot {
    position: fixed; width: 6px; height: 6px; border-radius: 50%;
    background: var(--acid); transform: translate(-50%, -50%);
  }
  .cursor__ring {
    position: fixed; width: 34px; height: 34px; border-radius: 50%;
    border: 1px solid rgba(242, 241, 236, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out),
                border-color 0.35s var(--ease-out), background 0.35s var(--ease-out);
  }
  .cursor.is-hover .cursor__ring {
    width: 64px; height: 64px;
    border-color: transparent; background: rgba(216, 255, 62, 0.12);
  }
  .cursor.is-hidden { opacity: 0; }
}

/* ── Nav ────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 56px);
  transition: transform 0.5s var(--ease), background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.is-hidden { transform: translateY(-100%); }
.nav.is-scrolled {
  background: rgba(11, 11, 12, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}

.nav__logo {
  font-family: var(--display); font-weight: 700; font-size: 21px;
  letter-spacing: -0.01em;
}
.nav__logo sup { color: var(--acid); font-size: 0.5em; }

.nav__links {
  display: flex; gap: clamp(20px, 3vw, 44px);
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav__links a {
  font-size: 13.5px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
  position: relative; padding: 6px 2px;
  transition: color 0.3s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--acid);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__links a.is-active { color: var(--ink); }
.nav__links a.is-active::after { transform: scaleX(1); }

.nav__cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 600; letter-spacing: 0.06em;
  border: 1px solid var(--line-strong); border-radius: 999px;
  padding: 11px 20px;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s;
}
.nav__cta svg { width: 12px; height: 12px; transition: transform 0.35s var(--ease); }
.nav__cta:hover { background: var(--acid); color: #0b0b0c; border-color: var(--acid); }
.nav__cta:hover svg { transform: rotate(45deg); }
.nav__cta.is-active { border-color: var(--acid); color: var(--acid); }

.nav__burger { display: none; flex-direction: column; gap: 6px; padding: 10px; }
.nav__burger span {
  width: 26px; height: 2px; background: var(--ink);
  transition: transform 0.4s var(--ease), opacity 0.3s;
}
body.menu-open .nav__burger span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ── Mobile menu ────────────────────────────────────────── */
.menu {
  position: fixed; inset: 0; z-index: 95;
  background: var(--bg);
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 8vw;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.8s var(--ease);
}
body.menu-open .menu { clip-path: inset(0 0 0% 0); }
.menu nav a {
  display: block;
  font-family: var(--display); font-size: clamp(40px, 11vw, 72px);
  font-weight: 600; letter-spacing: -0.03em; line-height: 1.15;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s;
  transition-delay: calc(0.08s + var(--i) * 0.06s);
}
body.menu-open .menu nav a { opacity: 1; transform: translateY(0); }
.menu nav a:hover { color: var(--acid); }
.menu__foot {
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 13px; color: var(--muted);
}

/* ── Shared reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .split-title .tl__in { transform: none; transition: none; }
  .pl-letter { opacity: 1; transform: none; animation: none; }
  .strip__track, .talk__track, .hero__marquee-track, .bento__ticker-track, .faq__ticker-track { animation: none; }
  .strip__track span:hover { transform: none; }
  .strip__track i, .talk__track i, .hero__marquee-track i, .faq__ticker-track i { animation: none; }
  .faq__list::before { animation: none; transform: rotate(9deg); }
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 4vh) clamp(20px, 4vw, 56px) 0;
  position: relative; overflow: hidden;
}

.hero__orbs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: 0.5;
  will-change: transform;
}
.orb--1 { width: 46vw; height: 46vw; background: radial-gradient(circle at 30% 30%, rgba(216,255,62,0.32), transparent 65%); top: -12%; right: -8%; }
.orb--2 { width: 38vw; height: 38vw; background: radial-gradient(circle at 60% 40%, rgba(124,77,255,0.30), transparent 65%); bottom: -14%; left: -10%; }
.orb--3 { width: 22vw; height: 22vw; background: radial-gradient(circle at 50% 50%, rgba(255,92,57,0.18), transparent 65%); bottom: 22%; right: 22%; }

.hero__eyebrow {
  position: relative; z-index: 1;
  font-size: 13px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: clamp(20px, 4vh, 44px);
  display: flex; align-items: center; gap: 14px;
}
.hero__eyebrow::before {
  content: ""; width: 34px; height: 1px; background: var(--acid);
}

.hero__title {
  position: relative; z-index: 1;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(46px, 12vw, 200px);
  line-height: 0.94;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: 0.04em; margin-bottom: -0.04em; }
.hero__title .line__inner { display: block; transform: translateY(112%); }
.hero.is-loaded .line__inner { animation: line-rise 1.1s var(--ease) forwards; }
.hero.is-loaded .line:nth-child(2) .line__inner { animation-delay: 0.12s; }
@keyframes line-rise { to { transform: translateY(0); } }

.hero__title em {
  font-family: var(--serif);
  font-style: italic; font-weight: 500;
  text-transform: none;
  color: var(--acid);
  letter-spacing: -0.02em;
  position: relative;
}
.hero__title em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0.06em;
  height: 0.06em; background: var(--acid); opacity: 0.5;
  transform: scaleX(0); transform-origin: left;
  animation: underline-in 0.9s var(--ease) 0.9s forwards;
}
@keyframes underline-in { to { transform: scaleX(1); } }

.hero__row {
  position: relative; z-index: 1;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 32px;
  margin-top: clamp(28px, 6vh, 64px);
  max-width: 1200px;
}
.hero__sub {
  max-width: 560px; color: var(--muted);
  font-size: clamp(16px, 1.6vw, 21px); line-height: 1.55;
}
.hero__sub-acid { color: var(--acid); }

.hero__meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; letter-spacing: 0.06em; color: var(--muted);
  white-space: nowrap;
}
.hero__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--acid);
  box-shadow: 0 0 0 0 rgba(216, 255, 62, 0.5);
  animation: pulse-dot 2.2s infinite;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(216, 255, 62, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(216, 255, 62, 0); }
  100% { box-shadow: 0 0 0 0 rgba(216, 255, 62, 0); }
}

.hero__scroll {
  position: absolute; z-index: 1;
  right: clamp(20px, 4vw, 56px); bottom: 96px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--faint);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px; height: 64px; background: var(--line-strong);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ""; position: absolute; left: 0; top: -40%;
  width: 100%; height: 40%;
  background: var(--acid);
  animation: scroll-tick 1.8s var(--ease) infinite;
}
@keyframes scroll-tick {
  0% { top: -40%; } 60%, 100% { top: 110%; }
}

.hero__marquee {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  border-top: 1px solid var(--line);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.hero__marquee-track {
  display: flex; gap: 28px; align-items: center;
  width: max-content;
  padding: 16px 0;
  animation: marquee 26s linear infinite;
  will-change: transform;
}
.hero__marquee-track span {
  font-family: var(--display); font-size: 13px;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted);
  white-space: nowrap;
}
.hero__marquee-track i {
  font-style: normal; color: var(--acid); font-size: 9px;
  display: inline-block;
  animation: spin-slow 9s linear infinite;
}

/* ── Marquee strip (double row) ─────────────────────────── */
.strip { background: var(--bg-2); overflow: hidden; border-block: 1px solid var(--line); }
.strip__row { overflow: hidden; padding: clamp(12px, 2.2vh, 22px) 0; }
.strip__row + .strip__row { border-top: 1px solid var(--line); }
.strip__track {
  display: flex; gap: 64px; align-items: center;
  width: max-content;
  animation: marquee 34s linear infinite;
  will-change: transform;
}
.strip__track--b { animation-direction: reverse; animation-duration: 46s; }
.strip__track span {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(32px, 4.8vw, 68px);
  letter-spacing: -0.02em; text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink);
  transition: color 0.35s, -webkit-text-stroke-color 0.35s, transform 0.35s var(--ease);
}
.strip__track span.o {
  color: transparent;
  -webkit-text-stroke: 1px var(--line-strong);
}
.strip__track span:hover {
  color: var(--acid);
  -webkit-text-stroke-color: transparent;
  transform: translateY(-3px);
}
.strip__track i {
  font-style: normal; color: var(--acid); font-size: 14px;
  display: inline-block;
  animation: spin-slow 10s linear infinite;
}
.strip:hover .strip__track { animation-play-state: paused; }

@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes spin-slow { to { transform: rotate(360deg); } }

/* ── Section labels / shared headings ───────────────────── */
.bento__label, .manifesto__label, .work__label, .process__label,
.quotes__label, .faq__label {
  font-size: 13px; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--acid);
  margin-bottom: clamp(20px, 4vh, 36px);
  display: flex; align-items: center; gap: 14px;
}
.bento__label::before, .manifesto__label::before, .work__label::before,
.process__label::before, .quotes__label::before, .faq__label::before {
  content: ""; width: 34px; height: 1px; background: var(--acid);
}

/* ── Manifesto ──────────────────────────────────────────── */
.manifesto {
  padding: clamp(90px, 16vh, 170px) clamp(20px, 6vw, 96px);
  max-width: 1500px; margin: 0 auto;
}
.manifesto__text {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(30px, 5.2vw, 74px);
  line-height: 1.18;
  letter-spacing: -0.025em;
}
.manifesto__text .w {
  display: inline-block;
  opacity: 0.13;
  transition: opacity 0.25s linear;
}
.manifesto__text .w.is-lit { opacity: 1; }
.manifesto__text .w.is-acid { color: var(--acid); }
.manifesto__sig {
  margin-top: clamp(28px, 5vh, 48px);
  display: flex; justify-content: flex-end;
  font-size: 13.5px; letter-spacing: 0.1em; color: var(--faint);
  text-transform: uppercase;
}

/* ── Bento ──────────────────────────────────────────────── */
.bento {
  padding: clamp(60px, 10vh, 110px) clamp(20px, 6vw, 96px);
  max-width: 1600px; margin: 0 auto;
}
.bento__title {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(38px, 6.4vw, 96px);
  line-height: 1; letter-spacing: -0.035em;
  text-transform: uppercase;
  margin-bottom: clamp(36px, 7vh, 72px);
}

.bento__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 210px;
  gap: 16px;
}
.bento__card {
  position: relative;
  grid-column: span 2;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  min-width: 0;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
  transform-style: preserve-3d;
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: border-color 0.4s, box-shadow 0.4s;
}
.bento__card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.7);
}
.bento__card--lg { grid-column: span 4; grid-row: span 2; }
.bento__card--wide { grid-column: span 4; }

.bento__num {
  position: absolute; top: 22px; right: 26px;
  font-family: var(--display); font-size: 13px;
  letter-spacing: 0.14em; color: var(--faint);
}
.bento__copy h3 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(25px, 2.2vw, 34px); letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.bento__copy p { color: var(--muted); font-size: 15.5px; max-width: 46ch; }

.bento__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.bento__tags li {
  font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 12px;
  transition: border-color 0.3s, color 0.3s;
}
.bento__card:hover .bento__tags li { border-color: var(--line-strong); color: var(--ink); }

/* bento ring decoration (card 01) */
.bento__ring {
  position: absolute; right: -70px; top: -70px;
  width: 280px; height: 280px; border-radius: 50%;
  border: 1px dashed rgba(242, 241, 236, 0.16);
  animation: ring-spin 22s linear infinite;
  pointer-events: none;
}
.bento__ring::after {
  content: ""; position: absolute; top: 34px; left: 34px;
  width: 10px; height: 10px; border-radius: 50%; background: var(--acid);
}
@keyframes ring-spin { to { transform: rotate(360deg); } }

/* bento code lines (card 02) */
.bento__code { display: flex; flex-direction: column; gap: 8px; margin: 18px 0; }
.bento__code-line { display: flex; gap: 6px; }
.bento__code-line i {
  height: 6px; border-radius: 3px; background: var(--line-strong);
  animation: code-blip 1.6s ease-in-out infinite alternate;
}
.bento__code-line:nth-child(1) i:nth-child(1) { width: 40%; background: var(--acid); opacity: 0.75; }
.bento__code-line:nth-child(1) i:nth-child(2) { width: 24%; }
.bento__code-line:nth-child(1) i:nth-child(3) { width: 18%; animation-delay: 0.3s; }
.bento__code-line:nth-child(1) i:nth-child(4) { width: 10%; animation-delay: 0.6s; }
.bento__code-line:nth-child(2) i:nth-child(1) { width: 30%; }
.bento__code-line:nth-child(2) i:nth-child(2) { width: 22%; animation-delay: 0.4s; }
.bento__code-line:nth-child(2) i:nth-child(3) { width: 14%; animation-delay: 0.7s; }
.bento__code-line:nth-child(3) i:nth-child(1) { width: 46%; animation-delay: 0.2s; }
.bento__code-line:nth-child(3) i:nth-child(2) { width: 20%; animation-delay: 0.5s; }
.bento__code-line:nth-child(3) i:nth-child(3) { width: 16%; animation-delay: 0.8s; }
.bento__code-line:nth-child(3) i:nth-child(4) { width: 9%; animation-delay: 1s; }
.bento__code-line:nth-child(3) i:nth-child(5) { width: 12%; animation-delay: 1.2s; }
@keyframes code-blip { from { opacity: 0.35; } to { opacity: 1; } }

/* bento orb (card 03) */
.bento__orb {
  position: absolute; right: -40px; bottom: -60px;
  width: 200px; height: 200px; pointer-events: none;
}
.bento__orb span {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, rgba(216,255,62,0.55), transparent 30%);
  animation: orb-spin 3.4s linear infinite;
  filter: blur(1px);
}
.bento__orb::before {
  content: ""; position: absolute; inset: 26px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(216,255,62,0.5), rgba(124,77,255,0.25) 60%, transparent);
  filter: blur(14px);
  animation: orb-breathe 4s ease-in-out infinite alternate;
}
@keyframes orb-spin { to { transform: rotate(360deg); } }
@keyframes orb-breathe { from { transform: scale(0.85); opacity: 0.7; } to { transform: scale(1.1); opacity: 1; } }

/* bento swatches (card 04) */
.bento__swatches { display: flex; gap: 8px; margin-top: 18px; }
.bento__swatches i {
  width: 34px; height: 34px; border-radius: 10px;
  transition: transform 0.4s var(--ease);
}
.bento__card:hover .bento__swatches i { transform: translateY(-4px) rotate(-4deg); }
.bento__swatches i:nth-child(1) { background: var(--acid); }
.bento__swatches i:nth-child(2) { background: #7c4dff; }
.bento__swatches i:nth-child(3) { background: #ff5c39; }
.bento__swatches i:nth-child(4) { background: #2dd4bf; }
.bento__swatches i:nth-child(5) { background: var(--ink); }

/* bento ticker (card 05) */
.bento__ticker {
  margin-top: 20px; border-top: 1px solid var(--line); overflow: hidden;
  position: relative; height: 38px; min-width: 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.bento__ticker-track {
  position: absolute; left: 0; top: 14px;
  display: flex; gap: 18px; align-items: center;
  width: max-content;
  animation: marquee 16s linear infinite;
}
.bento__ticker-track span {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
}
.bento__ticker-track i { font-style: normal; color: var(--acid); }

/* ── Work / horizontal scroll ───────────────────────────── */
.work { position: relative; }
.work__pin { position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center; }
.work__head { padding: 0 clamp(20px, 6vw, 96px); }
.work__title {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(48px, 6.8vw, 104px);
  line-height: 1; letter-spacing: -0.035em; text-transform: uppercase;
}
.work__title em { font-family: var(--serif); font-style: italic; text-transform: none; color: var(--acid); }

.work__track {
  display: flex; gap: clamp(18px, 2.4vw, 36px);
  padding: clamp(36px, 6vh, 64px) clamp(20px, 6vw, 96px);
  width: max-content;
  will-change: transform;
}
.work__card {
  width: clamp(300px, 30vw, 480px);
  flex-shrink: 0;
}
.work__media {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}
.work__card:hover .work__media { transform: scale(0.97) rotate(-1deg); filter: brightness(1.14) saturate(1.1); }
.work__media-art { position: absolute; inset: 0; }

.work__meta {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 4px 0; gap: 12px;
}
.work__meta h3 { font-family: var(--display); font-size: 23px; letter-spacing: -0.01em; }
.work__meta p { font-size: 13px; color: var(--muted); }
.work__year { font-size: 12.5px; letter-spacing: 0.1em; color: var(--faint); }
.work__arrow {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid; place-items: center; font-size: 18px;
  transition: background 0.35s var(--ease), color 0.35s, transform 0.35s var(--ease);
}
.work__card:hover .work__arrow { background: var(--acid); color: #0b0b0c; transform: rotate(-45deg); }

/* pure-CSS artwork for each project */
.work__media--helix { background: linear-gradient(160deg, #0d1526 0%, #16284a 55%, #1d3a6e 100%); }
.work__media--helix .work__media-art {
  background:
    radial-gradient(120% 90% at 20% 15%, rgba(120, 180, 255, 0.5), transparent 50%),
    radial-gradient(100% 80% at 85% 90%, rgba(216, 255, 62, 0.28), transparent 55%);
}
.work__media--helix::after {
  content: "HELIX"; position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(44px, 6vw, 88px); letter-spacing: -0.04em;
  color: transparent; -webkit-text-stroke: 1px rgba(242, 241, 236, 0.55);
  transform: rotate(-8deg);
}
.work__media--nocturne { background: linear-gradient(180deg, #1a1219 0%, #2b1526 100%); }
.work__media--nocturne .work__media-art {
  background:
    radial-gradient(60% 40% at 70% 25%, rgba(255, 92, 57, 0.5), transparent 60%),
    radial-gradient(70% 50% at 25% 80%, rgba(124, 77, 255, 0.4), transparent 60%);
}
.work__media--nocturne::after {
  content: "NOCTURNE"; position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(34px, 5vw, 64px); color: var(--ink);
  letter-spacing: 0.02em;
}
.work__media--pulse { background: linear-gradient(180deg, #071c18 0%, #0b2e26 100%); }
.work__media--pulse .work__media-art { display: grid; place-items: center; }
.work__media--pulse .work__media-art::before {
  content: ""; width: 55%; aspect-ratio: 1; border-radius: 50%;
  border: 1px solid rgba(216, 255, 62, 0.7);
  box-shadow: 0 0 0 24px rgba(216, 255, 62, 0.08), 0 0 0 48px rgba(216, 255, 62, 0.05);
  animation: pulse-ring 2.6s var(--ease) infinite;
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(216,255,62,0.35), 0 0 0 0 rgba(216,255,62,0.18); }
  100% { box-shadow: 0 0 0 34px rgba(216,255,62,0), 0 0 0 68px rgba(216,255,62,0); }
}
.work__media--terra { background: linear-gradient(180deg, #06231a 0%, #0d4d33 70%, #145c3b 100%); }
.work__media--terra .work__media-art { position: absolute; inset: auto -10% -18% -10%; height: 55%; }
.work__media--terra .work__media-art::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(216, 255, 62, 0.75), rgba(45, 212, 191, 0.55));
  clip-path: polygon(0 100%, 0 55%, 18% 40%, 34% 62%, 52% 20%, 68% 48%, 84% 30%, 100% 52%, 100% 100%);
  animation: terra-wave 6s ease-in-out infinite alternate;
}
@keyframes terra-wave {
  from { clip-path: polygon(0 100%, 0 55%, 18% 40%, 34% 62%, 52% 20%, 68% 48%, 84% 30%, 100% 52%, 100% 100%); }
  to { clip-path: polygon(0 100%, 0 48%, 18% 62%, 34% 36%, 52% 52%, 68% 22%, 84% 50%, 100% 34%, 100% 100%); }
}
.work__media--terra::after {
  content: "+38% cleaner grids"; position: absolute; left: 18px; bottom: 14px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #0b0b0c; background: var(--acid); border-radius: 999px; padding: 6px 12px;
  font-weight: 600;
}

.work__hint {
  position: absolute; bottom: 24px; right: clamp(20px, 6vw, 96px);
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--faint); display: flex; align-items: center; gap: 10px;
}
.work__hint i { width: 40px; height: 1px; background: var(--line-strong); position: relative; overflow: hidden; }
.work__hint i::after { content: ""; position: absolute; inset: 0; background: var(--acid); animation: hint-slide 2s var(--ease) infinite; }
@keyframes hint-slide { 0% { transform: translateX(-100%); } 60%, 100% { transform: translateX(100%); } }

/* ── Stats ──────────────────────────────────────────────── */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: var(--bg-2);
}
.stats__item {
  padding: clamp(44px, 7vh, 80px) 24px;
  text-align: center;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px;
}
.stats__item:last-child { border-right: 0; }
.stats__value {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(54px, 7vw, 104px); line-height: 1;
  letter-spacing: -0.04em;
  color: var(--acid);
  font-variant-numeric: tabular-nums;
  transition: color 0.4s;
}
.stats__item:hover .stats__value { color: var(--ink); }
.stats__label {
  font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
}

/* ── Process ────────────────────────────────────────────── */
.process { padding: clamp(90px, 15vh, 160px) clamp(20px, 6vw, 96px); max-width: 1500px; margin: 0 auto; }
.process__title {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(48px, 6.8vw, 104px);
  line-height: 1; letter-spacing: -0.035em; text-transform: uppercase;
  margin-bottom: clamp(48px, 8vh, 90px);
}
.process__title em { font-family: var(--serif); font-style: italic; text-transform: none; color: var(--acid); }

.process__list { border-top: 1px solid var(--line); }
.process__step {
  display: grid; grid-template-columns: 120px 1fr;
  gap: clamp(20px, 4vw, 64px);
  padding: clamp(26px, 4.5vh, 44px) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background 0.4s;
}
.process__step::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--acid);
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.5s var(--ease);
}
.process__step:hover::before { transform: scaleY(1); }
.process__step-num {
  font-family: var(--display); font-size: 16px; font-weight: 600;
  letter-spacing: 0.14em; color: var(--faint);
  padding-top: 6px;
}
.process__step h3 {
  font-family: var(--display); font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 600; letter-spacing: -0.02em;
  margin-bottom: 8px;
  transition: transform 0.5s var(--ease), color 0.3s;
}
.process__step:hover h3 { transform: translateX(14px); color: var(--acid); }
.process__step p { color: var(--muted); max-width: 56ch; }

/* ── Quotes ─────────────────────────────────────────────── */
.quotes {
  padding: clamp(90px, 15vh, 160px) clamp(20px, 6vw, 96px);
  max-width: 1200px; margin: 0 auto; text-align: center;
}
.quotes__label { justify-content: center; }
.quotes__label::before, .quotes__label::after { content: ""; }
.quotes__stage { position: relative; min-height: 260px; }
.quotes__slide {
  position: absolute; inset: 0;
  opacity: 0; transform: translateY(20px) scale(0.985);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  pointer-events: none;
  display: flex; flex-direction: column; justify-content: center; gap: 28px;
}
.quotes__slide.is-active { opacity: 1; transform: none; pointer-events: auto; }
.quotes__slide blockquote {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.25; letter-spacing: -0.02em;
  max-width: 24em; margin: 0 auto;
}
.quotes__slide blockquote::before {
  content: "“"; display: block;
  font-family: var(--serif); font-size: 72px; line-height: 0.4;
  color: var(--acid); margin-bottom: 26px;
}
.quotes__slide figcaption { font-size: 13.5px; letter-spacing: 0.12em; color: var(--muted); text-transform: uppercase; }
.quotes__slide figcaption span { display: block; color: var(--faint); margin-top: 4px; }

.quotes__nav { display: flex; justify-content: center; gap: 10px; margin-top: 48px; }
.quotes__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--line-strong);
  transition: background 0.3s, transform 0.3s var(--ease);
}
.quotes__dot.is-active { background: var(--acid); transform: scale(1.4); }
.quotes__dot:hover { background: var(--muted); }

/* ── FAQ ────────────────────────────────────────────────── */
.faq {
  padding: clamp(90px, 15vh, 160px) clamp(20px, 6vw, 96px);
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 0.92fr 1.5fr; gap: clamp(80px, 14vw, 300px);
}
.faq__side { display: flex; flex-direction: column; align-items: flex-start; min-width: 0; }
.faq__title {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(46px, 6vw, 92px);
  line-height: 1; letter-spacing: -0.035em; text-transform: uppercase;
}
.faq__intro {
  color: var(--muted); font-size: 16px; line-height: 1.6;
  margin: 28px 0 44px; max-width: 34ch;
}

/* "ask us anything" dashed card */
.faq__ask {
  display: flex; align-items: center; gap: 16px;
  border: 1px dashed var(--line-strong); border-radius: 18px;
  padding: 16px 20px; margin-bottom: 42px;
  transition: border-color 0.4s, background 0.4s;
  will-change: transform;
}
.faq__ask:hover { border-color: var(--acid); background: var(--acid-dim); }
.faq__ask-icon {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  background: var(--acid); color: #0b0b0c;
  font-family: var(--display); font-weight: 700; font-size: 26px;
  display: grid; place-items: center; line-height: 1;
  transition: transform 0.5s var(--ease);
}
.faq__ask:hover .faq__ask-icon { transform: rotate(14deg) scale(1.08); }
.faq__ask-text {
  display: flex; flex-direction: column;
  font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--faint); line-height: 1.4;
}
.faq__ask-text em {
  font-style: normal; font-family: var(--display);
  font-size: 19px; letter-spacing: -0.01em; text-transform: none;
  color: var(--ink); margin-top: 2px;
  transition: color 0.3s;
}
.faq__ask:hover .faq__ask-text em { color: var(--acid); }
.faq__ask-arrow {
  margin-left: auto; font-size: 20px; color: var(--faint);
  transition: transform 0.4s var(--ease), color 0.3s;
}
.faq__ask:hover .faq__ask-arrow { transform: translateX(6px); color: var(--acid); }

/* mini ticker under the ask card */
.faq__ticker {
  width: 100%; min-width: 0;
  position: relative; height: 24px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.faq__ticker-track {
  position: absolute; left: 0; top: 0;
  display: flex; gap: 26px; align-items: center;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.faq__ticker-track span {
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--faint); white-space: nowrap;
}
.faq__ticker-track i {
  font-style: normal; color: var(--acid); font-size: 10px;
  display: inline-block;
  animation: spin-slow 8s linear infinite;
}

/* list */
.faq__list {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  padding-left: clamp(40px, 5vw, 80px);
  position: relative; min-width: 0;
}
.faq__list::before {
  content: "?"; position: absolute; top: -26px; right: -8px;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(120px, 15vw, 240px); line-height: 1;
  color: transparent; -webkit-text-stroke: 1px var(--line-strong);
  opacity: 0.4; pointer-events: none; user-select: none;
  transform: rotate(9deg);
  animation: ghost-float 9s ease-in-out infinite alternate;
}
@keyframes ghost-float {
  from { transform: rotate(9deg) translateY(0); }
  to { transform: rotate(4deg) translateY(16px); }
}
.faq__item {
  border-bottom: 1px solid var(--line);
  transition: background 0.4s;
}
.faq__item.is-open {
  background: linear-gradient(90deg, rgba(216, 255, 62, 0.055), transparent 65%);
}
.faq__q {
  width: 100%; display: flex; align-items: center; gap: 24px;
  padding: 26px 8px;
  font-family: var(--display); font-weight: 500;
  font-size: clamp(19px, 2vw, 26px); letter-spacing: -0.01em;
  text-align: left;
  transition: color 0.3s;
}
.faq__q-num {
  flex-shrink: 0; min-width: 30px;
  font-family: var(--body); font-size: 13px; font-weight: 600;
  letter-spacing: 0.12em; font-variant-numeric: tabular-nums;
  color: var(--faint);
  transition: color 0.3s, transform 0.4s var(--ease);
}
.faq__q:hover .faq__q-num { color: var(--acid); transform: translateY(-2px); }
.faq__item.is-open .faq__q-num { color: var(--acid); }
.faq__q-text { transition: transform 0.4s var(--ease), color 0.3s; }
.faq__q:hover .faq__q-text { transform: translateX(8px); }
.faq__item.is-open .faq__q-text { color: var(--acid); }
.faq__q i {
  flex-shrink: 0; width: 32px; height: 32px; position: relative; margin-left: auto;
  border: 1px solid var(--line-strong); border-radius: 50%;
  transition: transform 0.45s var(--ease), background 0.3s, border-color 0.3s;
}
.faq__q i::before, .faq__q i::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}
.faq__q i::before { width: 10px; height: 1.5px; }
.faq__q i::after { width: 1.5px; height: 10px; transition: transform 0.45s var(--ease); }
.faq__q[aria-expanded="true"] i { background: var(--acid); border-color: var(--acid); color: #0b0b0c; transform: rotate(180deg); }
.faq__q[aria-expanded="true"] i::after { transform: translate(-50%, -50%) scaleY(0); }

.faq__a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease);
}
.faq__a-inner { overflow: hidden; }
.faq__a p {
  margin: 0 8px 28px 58px;
  padding-left: 18px;
  border-left: 2px solid var(--acid-dim);
  color: var(--muted); max-width: 58ch;
  transition: border-color 0.4s;
}
.faq__item.is-open .faq__a p { border-left-color: var(--acid); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }

/* ── Giant "Let's talk" marquee ─────────────────────────── */
.talk {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  padding: clamp(28px, 4.5vh, 52px) 0;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.talk__track {
  display: flex; gap: 56px; align-items: center;
  width: max-content;
  animation: marquee 30s linear infinite;
  will-change: transform;
}
.talk__track span {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(52px, 9.5vw, 156px);
  letter-spacing: -0.045em; text-transform: uppercase;
  white-space: nowrap; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--line-strong);
  transition: color 0.5s var(--ease), -webkit-text-stroke-color 0.5s var(--ease);
}
.talk__track i {
  font-style: normal; color: var(--acid); font-size: clamp(18px, 2vw, 28px);
  display: inline-block;
  animation: spin-slow 12s linear infinite;
}
.talk:hover .talk__track { animation-play-state: paused; }
.talk:hover .talk__track span { color: var(--acid); -webkit-text-stroke-color: transparent; }

/* ── Split-line title reveal ────────────────────────────── */
.split-title .tl { display: block; overflow: hidden; }
.split-title .tl__in {
  display: block;
  transform: translateY(112%);
  transition: transform 1.05s var(--ease);
}
.split-title.is-split .tl__in { transform: translateY(0); }

/* ── Section anchor offset under fixed nav ──────────────── */
section[id] { scroll-margin-top: calc(var(--nav-h) + 12px); }

/* ── CTA ────────────────────────────────────────────────── */
.cta {
  padding: clamp(110px, 20vh, 220px) clamp(20px, 6vw, 96px);
  text-align: center; position: relative; overflow: hidden;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 70% at 50% 100%, rgba(216, 255, 62, 0.10), transparent 70%);
  pointer-events: none;
}
.cta__eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 24px;
}
.cta__title {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(44px, 10.5vw, 168px);
  line-height: 0.96; letter-spacing: -0.045em; text-transform: uppercase;
  margin-bottom: clamp(40px, 7vh, 64px);
}
.cta__title em { font-family: var(--serif); font-style: italic; text-transform: none; color: var(--acid); }

.cta__btn {
  display: inline-flex; align-items: center; gap: 16px;
  font-family: var(--display); font-weight: 600;
  font-size: clamp(18px, 1.8vw, 25px); letter-spacing: 0.02em;
  background: var(--acid); color: #0b0b0c;
  border-radius: 999px; padding: 24px 46px;
  transition: box-shadow 0.4s, transform 0.4s var(--ease-out);
  box-shadow: 0 0 0 0 rgba(216, 255, 62, 0.35);
  will-change: transform;
}
.cta__btn:hover { box-shadow: 0 0 60px 6px rgba(216, 255, 62, 0.35); }
.cta__note { margin-top: 26px; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--line);
  padding: clamp(48px, 8vh, 90px) clamp(20px, 6vw, 96px) 28px;
  overflow: hidden;
}
.footer__giant {
  display: block; text-align: center;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(72px, 17vw, 268px);
  line-height: 1; letter-spacing: -0.05em; text-transform: uppercase;
  color: transparent; -webkit-text-stroke: 1px var(--line-strong);
  transition: color 0.6s var(--ease), -webkit-text-stroke-color 0.6s;
  white-space: nowrap; user-select: none;
}
.footer__giant:hover { color: var(--acid); -webkit-text-stroke-color: transparent; }

.footer__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; padding: clamp(44px, 7vh, 80px) 0;
  border-bottom: 1px solid var(--line);
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 10px;
}
.footer__col a, .footer__col span {
  font-size: 15.5px; color: var(--muted); width: fit-content;
  transition: color 0.3s, transform 0.3s var(--ease);
}
.footer__col a:hover { color: var(--acid); transform: translateX(4px); }
.footer__time {
  font-family: var(--display); font-size: 30px; font-weight: 600;
  color: var(--ink) !important; letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}
.footer__status { display: flex; align-items: center; gap: 8px; }
.footer__status i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--acid);
  animation: pulse-dot 2.2s infinite;
}

.footer__bar {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  padding-top: 26px;
  font-size: 12px; letter-spacing: 0.08em; color: var(--faint);
}
.footer__bar a:hover { color: var(--acid); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1080px) {
  .bento__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 230px; }
  .bento__card { grid-column: span 1; }
  .bento__card--lg, .bento__card--wide { grid-column: span 2; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2) { border-right: 0; }
  .stats__item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .faq { grid-template-columns: 1fr; }
  .faq__title { position: static; margin-bottom: 24px; }
  .faq__list { border-left: 0; padding-left: 0; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .hero { justify-content: flex-start; padding-top: calc(var(--nav-h) + 6vh); padding-bottom: 120px; }
  .hero__row { flex-direction: column; align-items: flex-start; }
  .hero__scroll { display: none; }
  .process__step { grid-template-columns: 1fr; gap: 10px; }
  .process__step-num { padding-top: 0; }
  .quotes__stage { min-height: clamp(340px, 58vh, 480px); }
  .stats__value { font-size: 54px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .work__card { width: 78vw; }
  .menu__foot { flex-wrap: wrap; }
}

@media (max-width: 420px) {
  .hero__title { font-size: clamp(38px, 13vw, 50px); }
  .hero__sub { font-size: 15.5px; }
  .strip__track { gap: 40px; }
  .talk__track { gap: 36px; }
  .footer__giant { font-size: 19vw; }
  .cta__title { font-size: clamp(34px, 11vw, 44px); }
  .bento__title { font-size: clamp(34px, 10.5vw, 42px); }
  .faq__list::before { display: none; }
}

@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr; }
  .stats__item { border-right: 0; border-bottom: 1px solid var(--line); }
  .stats__item:last-child { border-bottom: 0; }
  .bento__grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento__card { min-height: 250px; }
  .bento__card--lg, .bento__card--wide { grid-column: span 1; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}
