/* ============================================================
   REJUVENATE AGENCY — ink & electric chartreuse
   ============================================================ */

:root {
  --ink: #0b0f0b;
  --ink-2: #10150f;
  --ink-3: #161d13;
  --cream: #f1eee3;
  --cream-2: #e8e4d3;
  --lime: #c9f73f;
  --lime-soft: rgba(201, 247, 63, 0.14);
  --muted: #99a18c;
  --muted-ink: #5d6253;
  --line: rgba(241, 238, 227, 0.1);
  --line-ink: rgba(11, 15, 11, 0.12);

  --font-display: "Clash Display", "Avenir Next", sans-serif;
  --font-body: "Satoshi", "Helvetica Neue", sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --font-mono: "Fragment Mono", "SF Mono", monospace;

  --nav-h: 84px;
  --radius: 28px;
  --pad: clamp(1.25rem, 4vw, 4rem);
}

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

html { scroll-behavior: auto; overflow-anchor: none; }

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

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

.container { width: min(1280px, 100% - 2 * var(--pad)); margin-inline: auto; }

/* ---------- grain ---------- */
.grain {
  /* oversized + transform-jittered so the noise "boils" like film grain
     (translate never exceeds the 32px bleed, so edges stay covered) */
  position: fixed; inset: -32px; z-index: 9990; pointer-events: none;
  opacity: 0.07;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="160" height="160"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="2" stitchTiles="stitch"/><feColorMatrix type="saturate" values="0"/></filter><rect width="160" height="160" filter="url(%23n)"/></svg>');
  will-change: transform;
  animation: grainJitter 0.9s steps(1) infinite;
}
@keyframes grainJitter {
  0%    { transform: translate(0, 0); }
  12.5% { transform: translate(-12px, 8px); }
  25%   { transform: translate(7px, -14px); }
  37.5% { transform: translate(-9px, -5px); }
  50%   { transform: translate(13px, 11px); }
  62.5% { transform: translate(-5px, 13px); }
  75%   { transform: translate(10px, -7px); }
  87.5% { transform: translate(-14px, -12px); }
  100%  { transform: translate(0, 0); }
}

/* ---------- custom cursor ---------- */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--lime);
  mix-blend-mode: difference;
  transform: translate(-100px, -100px);
  opacity: 0; /* revealed on first real mousemove */
}
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }
/* the lime difference-dot turns blue-violet on the cream menu — hide it there */
body.menu-open .cursor { opacity: 0 !important; }

/* ---------- brand mark ---------- */
.brand-mark {
  display: block;
  width: 22px;
  height: auto;
  object-fit: contain;
  flex: 0 0 auto;
}
.brand-mark--nav { width: 20px; height: 25px; }
.brand-mark--xs {
  width: 10px; height: 13px;
  display: inline-block;
  vertical-align: -0.12em;
  margin-right: 0.25rem;
}
.brand-mark--loader { width: 46px; height: 58px; }
.brand-mark--spin { animation: spin 16s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 9995;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.preloader-inner { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; }
.preloader .brand-mark--loader { animation: spin 2.4s linear infinite; }
.preloader-count {
  font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.25em;
  color: var(--muted);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  letter-spacing: 0.01em; line-height: 1;
  padding: 1.15rem 1.9rem; border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  will-change: transform;
}
.btn span { display: inline-block; }
.btn:disabled {
  cursor: wait;
  opacity: 0.72;
  pointer-events: none;
}
.btn--lime { background: var(--lime); color: var(--ink); }
.btn--lime:hover { background: var(--cream); }
.btn--ghost { border: 1px solid var(--line); color: var(--cream); }
.btn--ghost:hover { border-color: var(--lime); color: var(--lime); }
.btn--sm { padding: 0.8rem 1.4rem; font-size: 0.9rem; }
.btn--xl { padding: 1.5rem 2.8rem; font-size: clamp(1.05rem, 2vw, 1.3rem); }

/* ---------- eyebrow ---------- */
.eyebrow {
  font-family: var(--font-mono); font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.24em;
  color: var(--lime);
  display: flex; align-items: center; gap: 0.6rem;
}
.eyebrow--ink { color: var(--ink); opacity: 0.75; }

/* ---------- headings ---------- */
h1, h2, h3 {
  font-family: var(--font-display); font-weight: 600;
  letter-spacing: -0.02em; line-height: 1.02;
}
.accent {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  letter-spacing: 0; color: var(--lime);
}
.accent--ink { color: var(--ink); }

.section-head { margin-bottom: clamp(3rem, 7vw, 5.5rem); max-width: 60rem; }
.section-head h2, .problem-title, .faq-head h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.6rem); margin-top: 1.1rem;
}

/* split-text mask safety: give descenders room */
.split-line { padding-bottom: 0.08em; margin-bottom: -0.08em; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding-inline: var(--pad);
  /* transform is GSAP-owned — never transition it here */
  transition: background 0.35s ease, border-color 0.35s ease;
}
.nav--scrolled {
  background: color-mix(in srgb, var(--ink) 82%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-logo { display: flex; align-items: center; gap: 0.6rem; }
.nav-logo .brand-mark { transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.45s ease; }
.nav-logo:hover .brand-mark { transform: rotate(8deg) scale(1.08); }
.nav-wordmark {
  font-family: var(--font-display); font-weight: 600; font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.nav-wordmark sup { font-size: 0.55em; color: var(--lime); }

/* nav is a 3-zone grid: menu toggle / centered wordmark / chat link */
.nav { display: grid; grid-template-columns: 1fr auto 1fr; }
.nav-logo { justify-self: center; }
.nav-chat { justify-self: end; }
.nav-menu-toggle { justify-self: start; }

/* colors flip to ink while the cream menu is open */
.nav .nav-menu-toggle, .nav .nav-logo, .nav .nav-chat {
  color: var(--cream);
  transition: color 0.45s ease;
}
body.menu-open .nav .nav-menu-toggle,
body.menu-open .nav .nav-logo,
body.menu-open .nav .nav-chat { color: var(--ink); }
body.menu-open .nav--scrolled { background: transparent; border-bottom-color: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
body.menu-open .nav-wordmark sup { color: var(--ink); }
body.menu-open .nav-logo .brand-mark { filter: brightness(0) saturate(100%); }

.nav-menu-toggle {
  display: flex; align-items: center; gap: 0.7rem;
  height: 44px; cursor: pointer;
}
.nav-menu-icon { position: relative; width: 22px; height: 12px; display: block; }
.nav-menu-icon span {
  position: absolute; left: 0; right: 0; height: 2px;
  background: currentColor; border-radius: 2px;
  transition: transform 0.35s ease, top 0.35s ease;
}
.nav-menu-icon span:nth-child(1) { top: 1px; }
.nav-menu-icon span:nth-child(2) { top: 9px; }
.nav-menu-toggle.is-open .nav-menu-icon span:nth-child(1) { top: 5px; transform: rotate(45deg); }
.nav-menu-toggle.is-open .nav-menu-icon span:nth-child(2) { top: 5px; transform: rotate(-45deg); }
/* hover (closed state only): the two bars shear in from opposite ends */
.nav-menu-toggle:not(.is-open):hover .nav-menu-icon span:nth-child(1) { transform: scaleX(0.55); transform-origin: left center; }
.nav-menu-toggle:not(.is-open):hover .nav-menu-icon span:nth-child(2) { transform: scaleX(0.55); transform-origin: right center; }
.nav-menu-label {
  position: relative; overflow: hidden; display: block;
  font-size: 0.95rem; font-weight: 500; height: 1.3em; line-height: 1.3;
}
.nav-menu-label em {
  font-style: normal; display: block;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav-menu-toggle.is-open .nav-menu-label em { transform: translateY(-100%); }

.nav-chat { font-size: 0.95rem; font-weight: 500; }
.nav-chat span {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nav-chat:hover span { transform: translateX(5px); }

/* ---------- menu overlay (cream, walking people behind the links) ---------- */
.menu {
  position: fixed; inset: 0; z-index: 8500;
  background: var(--cream);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: calc(var(--nav-h) + 1rem) var(--pad) 2rem;
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
  overflow: hidden;
}
.menu-walk {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  /* below the in-flow links but above the menu background, so the links'
     mix-blend-mode sees the video as its backdrop (no stacking-context isolation) */
  z-index: -1;
}
.menu-links {
  display: flex; flex-direction: column; align-items: center; gap: 0;
  text-align: center;
}
.menu-links a {
  display: block;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.6rem, 8.5vh, 6rem); line-height: 1.12;
  letter-spacing: -0.02em;
  /* cream + difference: reads as ink on the cream video, flips bright where
     the walking figures pass behind the glyphs */
  color: var(--cream); mix-blend-mode: difference;
  /* hover transition lives on the <a>; GSAP only ever animates the inner span */
  filter: blur(0px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
              filter 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.menu-links a > span { display: block; position: relative; }
/* hovering one link melts the others out of focus; the hovered one stays sharp */
.menu-links:has(a:hover) a:not(:hover) { opacity: 0.2; filter: blur(10px); }
.menu-contact {
  margin-top: clamp(1.5rem, 5vh, 3.5rem); text-align: center;
  /* blend on the container: GSAP leaves a transform here, which would isolate
     blended children from the video backdrop — the element's own blend still works */
  mix-blend-mode: difference;
}
.menu-contact-label {
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.05rem; color: var(--cream); opacity: 0.75;
}
.menu-contact-mail {
  display: inline-block; margin-top: 0.4rem;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.2rem, 2.6vw, 1.8rem);
  color: var(--cream);
  border-bottom: 2px solid var(--cream);
  transition: opacity 0.25s ease;
}
.menu-contact-mail:hover { opacity: 0.7; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 4rem) 0 6rem;
  overflow: clip;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }

/* cinematic scroll-scrub layer (frames drawn by js when assets exist) */
.hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; transition: opacity 0.9s ease;
}
.hero-vignette {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.9s ease;
  background:
    linear-gradient(to bottom, rgba(8, 11, 8, 0.55), transparent 22%, transparent 72%, var(--ink, #0b0f0b) 100%),
    linear-gradient(100deg, rgba(8, 11, 8, 0.82) 0%, rgba(8, 11, 8, 0.45) 42%, transparent 68%);
}
.hero--cinema .hero-canvas, .hero--cinema .hero-vignette { opacity: 1; }
.hero--cinema .hero-grid { opacity: 0.18; }
.hero--cinema .hero-glow { opacity: 0.5; }

.hero-outro {
  position: absolute; inset: 0; z-index: 1;
  display: grid; place-content: center; text-align: center;
  opacity: 0; visibility: hidden; pointer-events: none;
  padding: 0 var(--pad);
}
.hero-outro-kicker {
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--lime); margin-bottom: 1.2rem;
}
.hero-outro-line {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.2rem, 5.4vw, 4.6rem); line-height: 1.04;
  max-width: 18ch; margin: 0 auto;
}
.hero-grid {
  position: absolute; inset: 0;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 35%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 35%, black 30%, transparent 75%);
  opacity: 0.6;
}
/* the pattern lives on a ::before and drifts one full tile, then loops —
   the radial mask stays put on the parent so only the lines move */
.hero-grid::before {
  content: ""; position: absolute; inset: -72px 0 0 -72px;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  animation: gridDrift 18s linear infinite;
}
@keyframes gridDrift { to { transform: translate(72px, 72px); } }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); }
.hero-glow--1 {
  width: 560px; height: 560px; left: -180px; top: -120px;
  background: radial-gradient(circle, rgba(201, 247, 63, 0.22), transparent 65%);
}
.hero-glow--2 {
  width: 640px; height: 640px; right: -220px; bottom: -200px;
  background: radial-gradient(circle, rgba(201, 247, 63, 0.12), transparent 65%);
}

/* slow conic light sweep — a faint searchlight wheeling over the ink void */
.hero-aurora {
  position: absolute; left: 50%; top: 50%;
  width: 150vmax; height: 150vmax;
  margin: -75vmax 0 0 -75vmax;
  border-radius: 50%;
  background: conic-gradient(from 10deg,
    transparent 0deg,
    rgba(201, 247, 63, 0.07) 55deg,
    transparent 115deg,
    rgba(241, 238, 227, 0.045) 180deg,
    transparent 240deg,
    rgba(201, 247, 63, 0.055) 305deg,
    transparent 360deg);
  animation: auroraSpin 45s linear infinite;
}
@keyframes auroraSpin { to { transform: rotate(360deg); } }

/* floating lime dust motes (spans injected by js, GSAP-driven) */
.hero-dust { position: absolute; inset: 0; overflow: hidden; }
.hero-dust span {
  position: absolute; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 10px 1px rgba(201, 247, 63, 0.5);
  opacity: 0;
}

/* centered editorial stack — staggered giant lines + side notes */
.hero-stack { position: relative; text-align: center; }
.hero-title {
  font-size: clamp(3rem, 9vw, 8.6rem);
  line-height: 0.97;
  text-transform: uppercase;
  display: flex; flex-direction: column;
}
.hero-line { display: block; overflow: hidden; padding-bottom: 0.06em; margin-bottom: -0.06em; }
.hero-line-in { display: block; will-change: transform; }
.hero-line--push { transform: translateX(clamp(1rem, 6vw, 6rem)); }
.hero-line--pull { transform: translateX(clamp(-7rem, -7vw, -1rem)); }
.hero-title .accent { font-size: 1.05em; text-transform: none; }

.hero-note {
  position: absolute; top: 50%;
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.08em;
  line-height: 1.6; color: var(--muted); text-align: left;
}
.hero-note--left { left: 0; transform: translateY(-130%); }
.hero-note--right { right: 0; transform: translateY(90%); text-align: right; }
.hero-note strong { color: var(--cream); }
.hero-note .brand-mark--xs { vertical-align: -0.1em; }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  width: 1px; height: 56px; overflow: hidden; background: var(--line);
}
.hero-scroll span {
  position: absolute; inset: 0; background: var(--lime);
  animation: scrollHint 1.8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
@keyframes scrollHint {
  0% { transform: translateY(-100%); }
  60%, 100% { transform: translateY(100%); }
}

/* ============================================================
   HERO — broadcast layer
   HUD corner readouts, glitch type, scanlines, in-frame ticker
   ============================================================ */
.hero { padding-bottom: 10rem; }
.hero-scroll { bottom: 5.4rem; }

/* faint CRT scanlines crawling over the whole frame */
.hero-scanlines {
  position: absolute; inset: -8px 0 0;
  pointer-events: none;
  background: repeating-linear-gradient(to bottom,
    rgba(241, 238, 227, 0.045) 0 1px, transparent 1px 4px);
  animation: scanRoll 0.9s linear infinite;
}
@keyframes scanRoll { to { transform: translateY(8px); } }

/* terminal readouts pinned to the four corners of the frame */
.hero-hud { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-hud-item {
  position: absolute;
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
}
.hero-hud-item--tl { top: calc(var(--nav-h) + 1.4rem); left: var(--pad); }
.hero-hud-item--tr { top: calc(var(--nav-h) + 1.4rem); right: var(--pad); }
.hero-hud-item--bl { bottom: 5.6rem; left: var(--pad); }
.hero-hud-item--br { bottom: 5.6rem; right: var(--pad); }
.hud-dot {
  display: inline-block; width: 0.55em; height: 0.55em; border-radius: 50%;
  background: var(--lime); box-shadow: 0 0 8px rgba(201, 247, 63, 0.8);
  animation: hudBlink 1.4s steps(2, jump-none) infinite;
}
@keyframes hudBlink { 50% { opacity: 0.15; } }

/* hollow display line — stroke only, no fill */
.glitch--outline {
  color: transparent;
  -webkit-text-stroke: 0.032em var(--cream);
}

/* slice glitch: two clipped echoes snap sideways while the base jitters.
   Dormant until JS stamps .is-glitching on for ~0.4s bursts. */
.glitch { position: relative; display: inline-block; }
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute; left: 0; top: 0; width: 100%;
  opacity: 0; pointer-events: none;
  -webkit-text-stroke: 0;
}
.glitch::before { color: var(--lime); }
.glitch::after { color: var(--cream); }
.is-glitching { animation: glitchBase 0.38s steps(2, jump-none) both; }
.is-glitching::before {
  opacity: 0.85;
  clip-path: polygon(0 10%, 100% 10%, 100% 38%, 0 38%);
  animation: glitchEchoA 0.38s steps(3, jump-none) both;
}
.is-glitching::after {
  opacity: 0.85;
  clip-path: polygon(0 56%, 100% 56%, 100% 88%, 0 88%);
  animation: glitchEchoB 0.38s steps(3, jump-none) both;
}
@keyframes glitchBase {
  0% { transform: translateX(0); }
  35% { transform: translateX(-0.012em); }
  65% { transform: translateX(0.014em); }
  100% { transform: translateX(0); }
}
@keyframes glitchEchoA {
  0% { transform: translateX(0.045em); }
  45% { transform: translateX(-0.05em); }
  100% { transform: translateX(0.018em); }
}
@keyframes glitchEchoB {
  0% { transform: translateX(-0.045em); }
  45% { transform: translateX(0.05em); }
  100% { transform: translateX(-0.018em); }
}

.hero-cta {
  margin-top: clamp(2.2rem, 4vw, 3.2rem);
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

@media (max-width: 880px) {
  .hero-hud-item { font-size: 0.6rem; letter-spacing: 0.12em; }
  .hero-hud-item--bl, .hero-hud-item--br { display: none; }
  .glitch--outline { -webkit-text-stroke-width: 0.026em; }
}

/* ============================================================
   MARQUEE (lime strip)
   ============================================================ */
.marquee {
  background: var(--lime); color: var(--ink);
  transform: rotate(-1.4deg) scale(1.02);
  padding: 1rem 0; overflow: hidden;
  position: relative; z-index: 2;
}
.marquee-inner {
  display: flex; width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-inner span {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  text-transform: uppercase; letter-spacing: 0.04em;
  white-space: nowrap;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* hero variant: rides the bottom edge of the hero frame, dead level */
.marquee--hero {
  position: absolute; left: 0; right: 0; bottom: 0;
  transform: none;
}

/* ============================================================
   STATS
   ============================================================ */
.stats { padding: clamp(5rem, 10vw, 9rem) 0 clamp(4rem, 8vw, 7rem); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}
.stat { border-top: 1px solid var(--line); padding-top: 1.6rem; }
.stat-num {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(3rem, 5.5vw, 5rem); line-height: 1; color: var(--lime);
  font-variant-numeric: tabular-nums;
}
.stat-fix { color: var(--cream); }
.stat-label { margin-top: 0.9rem; font-size: 0.95rem; color: var(--muted); max-width: 16rem; }

/* ============================================================
   PROBLEM (cream)
   ============================================================ */
.problem {
  background: var(--cream); color: var(--ink);
  padding: clamp(6rem, 12vw, 10rem) 0;
  border-radius: var(--radius) var(--radius) 0 0;
}
.problem-title { max-width: 22ch; margin-top: 1.1rem; }
.problem-grid {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.problem-card {
  background: var(--cream-2); border: 1px solid var(--line-ink);
  border-radius: 22px; padding: 2rem 1.8rem;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}
.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(11, 15, 11, 0.12);
}
.problem-stat {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(3rem, 5vw, 4.2rem); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.problem-fact { margin-top: 0.9rem; font-weight: 700; font-size: 1.05rem; line-height: 1.4; }
.problem-note { margin-top: 0.6rem; color: var(--muted-ink); font-size: 0.95rem; }
.problem-bridge {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
}
.problem-arrow { color: var(--ink); opacity: 0.5; }

/* ============================================================
   SERVICES — sticky stack
   ============================================================ */
.services {
  background: var(--ink);
  padding: clamp(6rem, 12vw, 10rem) 0 clamp(7rem, 12vw, 11rem);
  border-radius: var(--radius) var(--radius) 0 0;
  margin-top: -1.75rem; /* overlap the cream section's bottom */
  position: relative; z-index: 2;
}
.stack { display: flex; flex-direction: column; gap: 2.5rem; }
.service-card {
  --mx: 50%; --my: 50%;
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem + var(--i) * 1.4rem);
  z-index: calc(var(--i) + 1); /* later cards always cover earlier ones */
  background: linear-gradient(150deg, var(--ink-3), var(--ink-2) 70%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3.5rem);
  min-height: 420px;
  display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  overflow: clip;
  will-change: transform;
}
.service-card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(620px circle at var(--mx) var(--my), rgba(201, 247, 63, 0.09), transparent 45%);
  opacity: 0; transition: opacity 0.35s ease;
}
.service-card:hover::after { opacity: 1; }
/* darkening shade driven by GSAP (--shade) as the next card stacks on top —
   keeps the card itself opaque so text never bleeds through */
.service-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 3;
  background: var(--ink); border-radius: inherit;
  opacity: var(--shade, 0);
}

.service-meta { display: flex; flex-direction: column; justify-content: space-between; gap: 2rem; }
.service-num {
  font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.2em;
  color: var(--lime);
  border: 1px solid var(--line); border-radius: 999px;
  width: fit-content; padding: 0.5rem 1rem;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; align-content: flex-end; }
.service-tags span {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  border: 1px solid var(--line); border-radius: 999px; padding: 0.4rem 0.8rem;
}
.service-body { align-self: center; position: relative; z-index: 1; max-width: 34rem; }
.service-body h3 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
.service-body p { margin-top: 1.1rem; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.15rem); }
.service-ghost {
  position: absolute; right: clamp(1rem, 3vw, 3rem); bottom: -2.2rem;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(8rem, 16vw, 14rem); line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 247, 63, 0.16);
  pointer-events: none; user-select: none;
}

/* ============================================================
   PROCESS — horizontal pin (cream)
   ============================================================ */
.process {
  background: var(--cream); color: var(--ink);
  border-radius: var(--radius) var(--radius) 0 0;
  margin-top: -1.75rem;
  position: relative; z-index: 3;
  overflow: clip;
}
.process-track {
  display: flex; align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  height: 100vh;
  padding: 0 clamp(1.5rem, 6vw, 6rem);
  width: max-content;
}
.process-panel {
  width: min(620px, 82vw);
  flex-shrink: 0;
  background: var(--cream-2);
  border: 1px solid var(--line-ink);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3.2rem);
  position: relative; overflow: clip;
  min-height: min(460px, 62vh);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.process-panel--intro {
  background: none; border: 0; min-height: 0;
  justify-content: center; width: min(560px, 86vw);
}
.process-panel--intro h2 { font-size: clamp(2.6rem, 5vw, 4.4rem); margin-top: 1.2rem; max-width: 14ch; }
.process-hint {
  margin-top: 2rem; font-family: var(--font-mono); font-size: 0.8rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-ink);
}
.process-chip {
  position: absolute; top: clamp(1.5rem, 3vw, 2.4rem); left: clamp(1.5rem, 3vw, 2.4rem);
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--lime); color: var(--ink);
  padding: 0.45rem 0.9rem; border-radius: 999px;
}
.process-ghost {
  position: absolute; top: -2.4rem; right: 0.5rem;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(9rem, 14vw, 13rem); line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(11, 15, 11, 0.14);
  user-select: none;
}
.process-panel h3 { font-size: clamp(2rem, 3.4vw, 2.9rem); position: relative; }
.process-panel p { margin-top: 1rem; color: var(--muted-ink); max-width: 30rem; font-size: 1.05rem; position: relative; }
.process-progress {
  position: absolute; left: 50%; bottom: 2.2rem; transform: translateX(-50%);
  width: min(360px, 60vw); height: 2px; background: var(--line-ink);
  border-radius: 2px; overflow: hidden;
}
.process-progress span {
  display: block; height: 100%; background: var(--ink);
  transform: scaleX(0); transform-origin: left center;
}

/* ============================================================
   RESULTS
   ============================================================ */
.results {
  background: var(--ink);
  padding: clamp(6rem, 12vw, 10rem) 0;
  border-radius: var(--radius) var(--radius) 0 0;
  margin-top: -1.75rem;
  position: relative; z-index: 4;
}
.results-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.work-samples {
  margin-bottom: clamp(3rem, 7vw, 5rem);
}
.work-samples-intro {
  max-width: 52rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.work-samples-intro h3 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 13ch;
}
.work-samples-intro p {
  margin-top: 1rem;
  max-width: 42rem;
  color: var(--muted);
}
.work-samples-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.work-sample-card {
  overflow: hidden;
  background: linear-gradient(160deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease;
}
.work-sample-card:hover { transform: translateY(-8px); border-color: rgba(201, 247, 63, 0.35); }
.work-video-frame {
  aspect-ratio: 16 / 9;
  background: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.work-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-card-copy {
  padding: 1.35rem 1.35rem 1.45rem;
}
.work-card-copy span {
  display: block;
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.work-card-copy h4 {
  margin-top: 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.05;
}
.work-card-copy p {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.98rem;
}
.result-card {
  background: linear-gradient(160deg, var(--ink-3), var(--ink-2));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.2rem 2rem;
  display: flex; flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease;
}
.result-card:hover { transform: translateY(-8px); border-color: rgba(201, 247, 63, 0.35); }
.result-metric {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.8rem, 4.5vw, 3.8rem); line-height: 1; color: var(--lime);
}
.result-metric span { font-size: 0.4em; color: var(--muted); }
.result-metric-label {
  margin-top: 0.5rem; font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}
.result-quote { margin-top: 1.6rem; font-size: 1.02rem; color: var(--cream); flex: 1; }
.result-person { margin-top: 1.8rem; display: flex; align-items: center; gap: 0.9rem; }
.result-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
  background: var(--lime); color: var(--ink);
  font-family: var(--font-mono); font-size: 0.72rem;
}
.result-person div { display: flex; flex-direction: column; line-height: 1.35; }
.result-person strong { font-size: 0.95rem; }
.result-person span:last-child { font-size: 0.85rem; color: var(--muted); }
.result-person div span { color: var(--muted); font-size: 0.85rem; }

/* ============================================================
   INDUSTRIES — outline marquees
   ============================================================ */
.industries { background: var(--ink); padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 7vw, 6rem); overflow: hidden; }
.industries-label {
  text-align: center; font-family: var(--font-mono); font-size: 0.75rem;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 2.2rem;
}
.ind-marquee { overflow: hidden; }
.ind-inner {
  display: flex; width: max-content;
  animation: marquee 36s linear infinite;
}
.ind-marquee--reverse .ind-inner { animation-direction: reverse; animation-duration: 42s; }
.ind-inner span {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(3rem, 7vw, 5.5rem); line-height: 1.25;
  text-transform: uppercase; white-space: nowrap;
  color: transparent; -webkit-text-stroke: 1px rgba(241, 238, 227, 0.35);
}
.ind-inner--lime span { -webkit-text-stroke: 1px rgba(201, 247, 63, 0.45); }

/* ============================================================
   BIG CTA
   ============================================================ */
.cta {
  position: relative; background: var(--ink);
  padding: clamp(8rem, 16vw, 14rem) 0;
  overflow: clip; text-align: center;
}
.cta-glow {
  position: absolute; left: 50%; top: 50%;
  width: min(900px, 120vw); aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201, 247, 63, 0.16), transparent 60%);
  filter: blur(60px); pointer-events: none;
}
.brand-mark--cta {
  position: absolute; width: 44px; height: 56px;
  top: 18%; right: 16%; opacity: 0.8;
}
.cta-inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: 1.4rem; }
.cta-title { font-size: clamp(3rem, 9vw, 8rem); line-height: 1; max-width: 12ch; }
.cta-sub { max-width: 36rem; color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.2rem); }
.cta .btn--xl { margin-top: 0.8rem; }
.cta-note {
  font-family: var(--font-mono); font-size: 0.75rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
}

/* ============================================================
   FAQ (cream)
   ============================================================ */
.faq {
  background: var(--cream); color: var(--ink);
  padding: clamp(6rem, 12vw, 10rem) 0;
  border-radius: var(--radius) var(--radius) 0 0;
}
.faq-layout {
  display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 6vw, 6rem); align-items: start;
}
.faq-head { position: sticky; top: calc(var(--nav-h) + 2rem); }
.faq-head h2 { margin-top: 1.1rem; }
.faq-item { border-top: 1px solid var(--line-ink); }
.faq-item:last-child { border-bottom: 1px solid var(--line-ink); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; text-align: left;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  padding: 1.5rem 0;
}
.faq-q i {
  position: relative; width: 18px; height: 18px; flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.faq-q i::before, .faq-q i::after {
  content: ""; position: absolute; background: var(--ink); border-radius: 2px;
}
.faq-q i::before { left: 0; right: 0; top: 8px; height: 2px; }
.faq-q i::after { top: 0; bottom: 0; left: 8px; width: 2px; }
.faq-item.is-open .faq-q i { transform: rotate(135deg); }
.faq-a { height: 0; overflow: hidden; }
.faq-a p { padding-bottom: 1.6rem; color: var(--muted-ink); max-width: 36rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  padding: clamp(4rem, 8vw, 7rem) 0 2rem;
  border-radius: var(--radius) var(--radius) 0 0;
  margin-top: -1.75rem; position: relative; z-index: 4;
}
.footer-wordmark {
  display: inline-flex; align-items: center; gap: clamp(0.7rem, 2vw, 1.5rem);
  width: fit-content; max-width: 100%;
}
.footer-wordmark > span {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.4rem, 9.4vw, 8.4rem); line-height: 1;
  letter-spacing: -0.01em;
  color: transparent; -webkit-text-stroke: 1.5px rgba(241, 238, 227, 0.4);
  transition: color 0.4s ease, -webkit-text-stroke-color 0.4s ease;
}
.footer-wordmark:hover > span { color: var(--lime); -webkit-text-stroke-color: transparent; }
.footer-wordmark:hover .brand-mark--footer { transform: translateY(-0.06em) rotate(4deg); }
.brand-mark--footer {
  width: clamp(2rem, 5.6vw, 5rem);
  height: clamp(2.5rem, 6.9vw, 6.2rem);
  transition: transform 0.4s ease;
}
.footer-wordmark sup { font-size: 0.18em; vertical-align: 2.2em; }
.footer-grid {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid; grid-template-columns: 1fr 1fr 1.6fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 3rem; border-bottom: 1px solid var(--line);
}
.footer-col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col-title {
  font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--lime);
  margin-bottom: 0.5rem;
}
.footer-col a { color: var(--muted); transition: color 0.2s ease; width: fit-content; }
.footer-col a:hover { color: var(--cream); }
.footer-blurb { color: var(--muted); max-width: 26rem; }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem;
  padding-top: 1.6rem;
  font-family: var(--font-mono); font-size: 0.74rem; color: var(--muted);
}
.footer-bottom a:hover { color: var(--cream); }

/* ============================================================
   SERVICES + PRICING ADDITIONS
   ============================================================ */
.btn--ink { background: var(--ink); color: var(--cream); }
.btn--ink:hover { background: var(--lime); color: var(--ink); }
.btn--ghost-ink { border: 1px solid var(--line-ink); color: var(--ink); }
.btn--ghost-ink:hover { background: var(--ink); border-color: var(--ink); color: var(--cream); }

.page-hero,
.checkout-hero {
  position: relative;
  min-height: 82svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 5rem) 0 clamp(5rem, 10vw, 9rem);
  overflow: clip;
}
.page-hero-grid,
.checkout-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
}
.page-title {
  font-size: clamp(3.3rem, 8.8vw, 8.2rem);
  line-height: 0.96;
  text-transform: uppercase;
  max-width: 11ch;
}
.page-title .accent { text-transform: none; }
.page-hero-card {
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
  color: var(--muted);
}
.page-hero-card-label {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1rem;
}
.page-hero-card .btn { margin-top: 1.4rem; }

.pricing-teaser {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(6rem, 12vw, 10rem) 0;
  border-radius: var(--radius) var(--radius) 0 0;
  margin-top: -1.75rem;
  position: relative;
  z-index: 3;
}
.pricing-teaser-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: clamp(3rem, 7vw, 5.5rem);
}
.pricing-teaser-head h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  margin-top: 1rem;
}
.pricing-teaser-head p:last-child {
  color: var(--muted-ink);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  max-width: 34rem;
}
.package-strip,
.pricing-ledger {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
}
.package-card {
  position: relative;
  overflow: clip;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(155deg, var(--ink-3), var(--ink-2));
  color: var(--cream);
  padding: clamp(1.5rem, 3vw, 2rem);
  min-height: 350px;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease;
}
.pricing-teaser .package-card {
  background: var(--ink);
  box-shadow: 0 24px 60px rgba(11, 15, 11, 0.08);
}
.package-card:hover {
  transform: translateY(-7px);
  border-color: rgba(201, 247, 63, 0.34);
}
.package-card--featured {
  border-color: rgba(201, 247, 63, 0.48);
  box-shadow: inset 0 0 0 1px rgba(201, 247, 63, 0.12);
}
.package-card--tall { min-height: 590px; }
.package-badge {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--lime);
  color: var(--ink);
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
}
.package-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
/* inside the topline the badge flows inline (kicker · badge · num) instead of
   absolutely overlapping the number chip in the card corner */
.package-topline .package-badge { position: static; margin-left: auto; white-space: nowrap; }
.package-kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  max-width: 16rem;
}
.package-price {
  margin-top: 1.4rem;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.8vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--cream);
}
.package-price span {
  font-size: 0.36em;
  color: var(--muted);
  letter-spacing: 0;
}
.package-setup {
  margin-top: 0.45rem;
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.package-copy {
  margin-top: 1.4rem;
  color: var(--muted);
  max-width: 30rem;
}
.package-link {
  margin-top: auto;
  padding-top: 1.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--lime);
  width: fit-content;
}
.package-link span,
.individual-card a span {
  display: inline-block;
  transition: transform 0.25s ease;
}
.package-link:hover span,
.individual-card a:hover span { transform: translateX(5px); }
.pricing-teaser-actions {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.packages-section {
  background: var(--ink);
  padding: clamp(6rem, 12vw, 10rem) 0;
  border-radius: var(--radius) var(--radius) 0 0;
  margin-top: -1.75rem;
  position: relative;
  z-index: 2;
}
.offer-list {
  list-style: none;
  margin: 1.5rem 0 1.8rem;
  display: grid;
  gap: 0.8rem;
  color: var(--muted);
}
.offer-list li {
  position: relative;
  padding-left: 1.45rem;
}
.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--lime);
}
.pricing-ledger .btn { margin-top: auto; width: fit-content; }
.pricing-note {
  margin-top: 2rem;
  color: var(--muted);
  max-width: 52rem;
}

.individual-section {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(6rem, 12vw, 10rem) 0;
  border-radius: var(--radius) var(--radius) 0 0;
  margin-top: -1.75rem;
  position: relative;
  z-index: 3;
}
.individual-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-ink);
  border: 1px solid var(--line-ink);
}
.individual-card {
  background: var(--cream);
  min-height: 360px;
  padding: clamp(1.4rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  transition: background 0.25s ease, color 0.25s ease;
}
.individual-card:hover {
  background: var(--ink);
  color: var(--cream);
}
.individual-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--muted-ink);
}
.individual-card:hover .individual-num { color: var(--lime); }
.individual-card h3 {
  margin-top: auto;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}
.individual-price {
  margin-top: 0.9rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
}
.individual-price span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-ink);
}
.individual-card:hover .individual-price span { color: var(--muted); }
.individual-card p:not(.individual-num):not(.individual-price) {
  margin-top: 0.9rem;
  color: var(--muted-ink);
}
.individual-card:hover p:not(.individual-num):not(.individual-price) { color: var(--muted); }
.individual-card a {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: inherit;
  width: fit-content;
}

.content-section { z-index: 4; }
.content-section .section-head p {
  margin-top: 1.4rem;
  color: var(--muted);
  max-width: 46rem;
}

.compare-section {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(6rem, 12vw, 10rem) 0;
  border-radius: var(--radius) var(--radius) 0 0;
  margin-top: -1.75rem;
  position: relative;
  z-index: 4;
}
.compare-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.compare-copy h2 {
  margin-top: 1rem;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}
.compare-table {
  border-top: 1px solid var(--line);
}
.compare-table div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.7fr);
  gap: 1.4rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}
.compare-table span { color: var(--muted); }
.compare-table strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--lime);
}
.faq--services { margin-top: -1.75rem; position: relative; z-index: 5; }
.cta--services { margin-top: -1.75rem; position: relative; z-index: 6; }

/* ============================================================
   CHECKOUT
   ============================================================ */
.checkout-hero { min-height: 70svh; }
.checkout-hero-grid { align-items: center; }
.checkout-hero-copy {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  max-width: 32rem;
}
.checkout-shell {
  background: var(--cream);
  color: var(--ink);
  padding: clamp(5rem, 10vw, 8rem) 0;
  border-radius: var(--radius) var(--radius) 0 0;
  margin-top: -1.75rem;
  position: relative;
  z-index: 2;
}
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.checkout-form {
  background: var(--cream-2);
  border: 1px solid var(--line-ink);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 4vw, 2.4rem);
}
.hidden-field { display: none; }
.checkout-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.checkout-progress-step {
  border: 1px solid var(--line-ink);
  border-radius: 999px;
  padding: 0.8rem 1rem;
  color: var(--muted-ink);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}
.checkout-progress-step span { color: inherit; }
.checkout-progress-step.is-active,
.checkout-progress-step.is-complete {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}
.checkout-step[hidden],
.checkout-success[hidden] { display: none; }
.checkout-step-head h2,
.checkout-success h2 {
  margin-top: 0.8rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 16ch;
}
.checkout-step-head p:last-child,
.checkout-success p {
  margin-top: 1rem;
  color: var(--muted-ink);
  max-width: 44rem;
}
.checkout-offer-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}
.checkout-offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border: 1px solid var(--line-ink);
  border-radius: 20px;
  padding: 1.2rem;
  background: var(--cream);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.checkout-offer-card:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 15, 11, 0.28);
}
.checkout-offer-card.is-selected {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}
.checkout-offer-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.checkout-offer-type {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-ink);
}
.checkout-offer-card.is-selected .checkout-offer-type,
.checkout-offer-card.is-selected small { color: var(--muted); }
.checkout-offer-card strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.15;
}
.checkout-offer-card > span:not(.checkout-offer-type) {
  color: inherit;
  font-weight: 700;
}
.checkout-offer-card small { color: var(--muted-ink); }
.field-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.field-grid label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-ink);
}
.field-grid label:last-child { grid-column: 1 / -1; }
.field-grid input,
.field-grid select,
.field-grid textarea {
  width: 100%;
  border: 1px solid var(--line-ink);
  border-radius: 16px;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  padding: 1rem;
  outline: none;
}
.field-grid textarea { resize: vertical; min-height: 132px; }
.field-grid input:focus,
.field-grid select:focus,
.field-grid textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(11, 15, 11, 0.08);
}
.checkout-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.checkout-secondary-link,
.mailto-fallback {
  color: var(--muted-ink);
  border-bottom: 1px solid currentColor;
  width: fit-content;
  cursor: pointer;
}
.checkout-secondary-link:hover,
.mailto-fallback:hover { color: var(--ink); }
.checkout-submit-status {
  min-height: 1.35rem;
  margin-top: 1rem;
  color: var(--muted-ink);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.review-box {
  margin-top: 2rem;
  display: grid;
  border: 1px solid var(--line-ink);
  border-radius: 22px;
  overflow: hidden;
}
.review-box div {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--line-ink);
  background: var(--cream);
}
.review-box div:last-child { border-bottom: 0; }
.review-box span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-ink);
}
.review-box strong { font-family: var(--font-display); }
.mailto-fallback { display: inline-block; margin-top: 1.5rem; }
.checkout-summary {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}
.summary-card {
  margin-top: 1rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 1.6rem;
}
.summary-card > span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
}
.summary-card h2 {
  margin-top: 0.7rem;
  font-size: clamp(2rem, 4vw, 3rem);
}
.summary-card p {
  margin-top: 1rem;
  color: var(--muted);
}
.summary-card p[data-summary-price] {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.5rem;
}
.summary-card p[data-summary-initial] {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.summary-card small {
  display: block;
  margin-top: 0.2rem;
  color: var(--lime);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.summary-card hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 1.3rem 0;
}
.summary-card code {
  display: block;
  margin-top: 0.4rem;
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  overflow-wrap: anywhere;
}
.summary-note { font-size: 0.95rem; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

/* ============================================================
   REVEAL DEFAULTS (JS adds motion; keep visible if JS fails)
   ============================================================ */
.js [data-reveal] { opacity: 0; transform: translateY(36px); }
.js .hero-note, .js .hero-scroll, .js .hero-hud-item, .js .hero-cta, .js .marquee--hero { opacity: 0; }
.js .hero-line-in { transform: translateY(115%); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero-note {
    position: static; transform: none;
    display: inline-block; margin: 1.6rem 1.2rem 0; text-align: center;
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .work-samples-grid { grid-template-columns: 1fr; max-width: 720px; }
  .results-grid { grid-template-columns: 1fr; max-width: 620px; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-head { position: static; margin-bottom: 1rem; }
  .page-hero-grid,
  .checkout-hero-grid,
  .pricing-teaser-head,
  .compare-grid,
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
  .individual-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 880px) {
  .nav-chat { display: none; }
  .service-card { grid-template-columns: 1fr; min-height: 0; gap: 1.5rem; }
  .service-meta { flex-direction: row; align-items: center; }
  .service-tags { display: none; }
  .service-ghost { font-size: 7rem; bottom: -1.4rem; }
  .problem-grid { grid-template-columns: 1fr; }
  /* horizontal process falls back to vertical */
  .process { padding: clamp(5rem, 10vw, 8rem) 0; }
  .process-track {
    flex-direction: column; align-items: stretch; height: auto;
    width: auto; padding: 0 var(--pad); gap: 1.5rem;
  }
  .process-panel { width: 100%; min-height: 0; padding-top: 5.5rem; }
  .process-panel--intro { width: 100%; padding-top: 0; margin-bottom: 1rem; }
  .process-hint { display: none; }
  .process-progress { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .package-strip,
  .pricing-ledger,
  .checkout-offer-grid { grid-template-columns: 1fr; }
  .package-card,
  .package-card--tall { min-height: 0; }
  .compare-table div,
  .review-box div { grid-template-columns: 1fr; gap: 0.35rem; }
  .field-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  :root { --nav-h: 68px; }
  .hero { padding-top: calc(var(--nav-h) + 3rem); }
  .hero-line--push, .hero-line--pull { transform: none; }
  .stats-grid { grid-template-columns: 1fr; }
  .btn--xl { padding: 1.25rem 2rem; }
  .page-hero,
  .checkout-hero { min-height: 72svh; padding-top: calc(var(--nav-h) + 4rem); }
  .individual-grid { grid-template-columns: 1fr; }
  .checkout-progress { grid-template-columns: 1fr; }
  .checkout-actions { align-items: stretch; flex-direction: column-reverse; }
  .checkout-actions .btn { width: 100%; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js [data-reveal],
  .js .hero-note, .js .hero-scroll,
  .js .hero-hud-item, .js .hero-cta, .js .marquee--hero { opacity: 1; transform: none; }
  .js .hero-line-in { transform: none; }
  .preloader { display: none; }
}
