/* =========================================================
   VIBE SHIFT STUDIO — shared design tokens & primitives
   Motion-first social creative studio.
   ========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap");

:root {
  /* Palette — from brand guidelines */
  --ink:    #17133B;   /* Deep Navy */
  --ink-2:  #221E4A;   /* one notch up for cards on ink */
  --ink-3:  #2B2756;
  --teal:   #086E81;   /* Deep Teal */
  --lime:   #AFFC40;   /* Electric Lime */
  --aqua:   #53C5AF;   /* Medium Aquamarine */
  --chalk:  #F8F7F3;   /* White Chalk */
  --chalk-2:#EFEDE6;
  --pen:    #444441;   /* body on light */
  --pen-2:  #6B6A65;   /* muted on light */
  --white:  #FBFAF7;  /* Tinted off-white (toward chalk + ink) */
  --line:   rgba(23,19,59,0.10);
  --line-dark: rgba(255,255,255,0.10);

  /* Typography */
  --display: "Ubuntu", "Clash Display", system-ui, sans-serif;
  --body:    "Inter", "Instrument Sans", system-ui, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, monospace;

  /* Radii */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 36px;
  --r-pill: 999px;

  /* Spacing */
  --pad: clamp(20px, 4vw, 56px);
  --gap: 16px;

  /* Easing */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--chalk); }
body {
  font-family: var(--body);
  color: var(--pen);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

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

/* ============ LAYOUT ============ */
.shell {
  max-width: 1440px;
  margin: 0 auto;
  padding: 12px;
}
.bleed { padding: 0 var(--pad); }

/* ============ TYPE PRIMITIVES ============ */
.display {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.95;
  color: var(--ink);
}
.h-xxl { font-size: clamp(56px, 9vw, 132px); }
.h-xl  { font-size: clamp(44px, 6.5vw, 96px); }
.h-l   { font-size: clamp(36px, 4.5vw, 64px); }
.h-m   { font-size: clamp(26px, 3vw, 40px); }
.h-s   { font-size: clamp(20px, 2vw, 26px); }

.eyebrow {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pen-2);
}
.eyebrow.on-ink { color: rgba(255,255,255,0.55); }
.eyebrow .dot { display:inline-block; width:7px; height:7px; border-radius:50%; background: var(--lime); margin-right: 8px; vertical-align: middle; }

.lead {
  font-family: var(--body);
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--pen-2);
  line-height: 1.6;
  max-width: 56ch;
}
.lead.on-ink { color: rgba(255,255,255,0.62); }

.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-weight: 600; font-size: 14px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  transition: transform .25s var(--ease), background .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--lime); color: var(--ink); }
.btn-primary:hover { background: #BCFF55; }
.btn-ink { background: var(--ink); color: var(--white); }
.btn-ink:hover { background: var(--ink-2); }
.btn-aqua { background: var(--aqua); color: var(--ink); }
.btn-ghost-ink { background: transparent; color: var(--ink); border: 1.5px solid rgba(23,19,59,0.2); }
.btn-ghost-light { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.2); }
.btn .arrow {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--ink); color: var(--lime);
  display: inline-grid; place-items: center; font-size: 12px;
  transition: transform .3s var(--ease);
}
.btn:hover .arrow { transform: translate(2px, -2px) rotate(0deg); }
.btn-primary .arrow { background: var(--ink); color: var(--lime); }
.btn-ink .arrow { background: var(--lime); color: var(--ink); }

/* ============ NAV ============ */
.nav-wrap {
  position: sticky; top: 12px; z-index: 60;
  padding: 0 var(--pad);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--ink); color: var(--white);
  padding: 10px 12px 10px 22px;
  border-radius: var(--r-pill);
  box-shadow: 0 14px 40px -16px rgba(23,19,59,0.5);
}
.nav-logo {
  font-family: var(--display); font-weight: 700; font-size: 16px;
  letter-spacing: -0.02em; display: inline-flex; align-items: center; gap: 10px;
  white-space: nowrap;
}
.nav-logo .mark {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--lime); display: inline-block; position: relative; flex-shrink: 0;
  box-shadow: inset -3px -3px 0 0 var(--ink);
}
.nav-logo .accent { color: var(--lime); }
.nav-logo-text { display: inline; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.72);
  padding: 9px 14px; border-radius: var(--r-pill);
  transition: all .2s var(--ease);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-links a.active { color: var(--ink); background: var(--lime); }
.nav-cta {
  background: var(--lime); color: var(--ink) !important;
  padding: 10px 16px !important; font-weight: 600 !important;
  display: inline-flex; align-items: center; gap: 8px;
}
.nav-cta:hover { background: #BCFF55 !important; }

/* Hamburger button — hidden on desktop */
.nav-toggle {
  display: none;
  background: transparent; border: 0; padding: 12px;
  cursor: pointer;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  position: relative; z-index: 102;
}
.nav-toggle-bar {
  display: block; width: 22px; height: 2px;
  background: var(--chalk);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
  transform-origin: center;
}

/* Mobile nav drawer */
@media (max-width: 820px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--ink);
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    padding: 96px clamp(28px, 6vw, 56px) clamp(28px, 6vw, 56px);
    transform: translateY(-100%);
    transition: transform .4s var(--ease-out);
    z-index: 101;
    overflow-y: auto;
  }
  .nav-wrap.menu-open .nav-links {
    transform: translateY(0);
  }

  .nav-links a {
    font-family: var(--display); font-weight: 700;
    font-size: clamp(28px, 7vw, 44px); letter-spacing: -0.025em;
    line-height: 1;
    color: var(--chalk);
    padding: 20px 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(248,247,243,0.1);
    display: flex; justify-content: space-between; align-items: center;
  }
  .nav-links a:hover { background: transparent; color: var(--lime); }
  .nav-links a::after {
    content: "→";
    font-family: var(--display);
    color: rgba(248,247,243,0.4);
    font-size: 0.7em;
    transition: color .2s var(--ease), transform .2s var(--ease);
  }
  .nav-links a:hover::after { color: var(--lime); transform: translateX(4px); }

  /* CTA inside drawer: full-width lime pill */
  .nav-links a.nav-cta {
    margin-top: 24px;
    background: var(--lime) !important;
    color: var(--ink) !important;
    border: 0;
    border-radius: var(--r-pill);
    justify-content: center;
    padding: 18px 24px !important;
    font-family: var(--display); font-weight: 700;
    font-size: 18px !important;
  }
  .nav-links a.nav-cta::after { content: none; }

  /* Hamburger → X animation when open */
  .nav-wrap.menu-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-wrap.menu-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }
  .nav-wrap.menu-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  body.menu-locked { overflow: hidden; }
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink); color: var(--white);
  border-radius: 0;
  padding: clamp(40px, 6vw, 80px) clamp(28px, 5vw, 64px);
  margin-top: 32px;
  position: relative; overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  position: relative; z-index: 2;
}
.footer h4 {
  font-family: var(--body); font-weight: 600;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.78); font-size: 14px; }
.footer-col a:hover { color: var(--lime); }
.footer-brand .display { color: var(--white); font-size: clamp(36px, 4.8vw, 64px); line-height: 1; white-space: nowrap; }
.footer-brand .display .accent { color: var(--lime); }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 14px; margin-top: 18px; max-width: 32ch; }
.footer-bottom {
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 12px; color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  position: relative; z-index: 2;
}
.footer-bottom .links { display: flex; gap: 18px; }
.footer-bottom a:hover { color: var(--lime); }
.footer-orb {
  position: absolute; right: -120px; bottom: -160px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--teal), transparent 60%);
  opacity: 0.6; z-index: 1;
}
@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============ SECTION SCAFFOLD ============ */
.section {
  padding: clamp(56px, 8vw, 120px) var(--pad);
  position: relative;
}
.section-head { max-width: 920px; margin-bottom: 48px; }
.section-head .eyebrow { margin-bottom: 16px; display: inline-flex; align-items: center; }

/* ============ CARDS & TILES ============ */
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  border: 1px solid var(--line);
}
.card.on-ink {
  background: var(--ink-2);
  border-color: var(--line-dark);
  color: var(--white);
}

/* ============ MARQUEE ============ */
/* ============ STICKERS / BADGES ============ */
.sticker {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lime); color: var(--ink);
  font-family: var(--body); font-weight: 600;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--ink);
  transform: rotate(-3deg);
  white-space: nowrap;
}
.sticker.aqua { background: var(--aqua); }
.sticker.ink { background: var(--ink); color: var(--lime); border-color: var(--lime); }
.sticker.chalk { background: var(--chalk); border-color: var(--ink); color: var(--ink); }

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  font-size: 12px; font-weight: 500;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--pen);
}
.chip.on-ink { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); }
.chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--aqua); }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.stagger.in > * { opacity: 1; transform: translateY(0); }
.stagger.in > *:nth-child(1) { transition-delay: 0.04s; }
.stagger.in > *:nth-child(2) { transition-delay: 0.10s; }
.stagger.in > *:nth-child(3) { transition-delay: 0.16s; }
.stagger.in > *:nth-child(4) { transition-delay: 0.22s; }
.stagger.in > *:nth-child(5) { transition-delay: 0.28s; }
.stagger.in > *:nth-child(6) { transition-delay: 0.34s; }

/* ============ MEDIA PLACEHOLDERS ============ */
.media {
  position: relative; overflow: hidden;
  border-radius: var(--r-md);
  background:
    repeating-linear-gradient(135deg, rgba(23,19,59,0.06) 0 1px, transparent 1px 12px),
    var(--chalk-2);
  color: var(--pen-2);
}
.media.dark {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 12px),
    var(--ink-2);
  color: rgba(255,255,255,0.6);
}
.media .label {
  position: absolute; bottom: 14px; left: 14px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.5); color: var(--white);
  padding: 4px 8px; border-radius: 6px;
}
.media.dark .label { background: rgba(0,0,0,0.6); }

/* arrow link */
.arrow-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 14px; color: var(--ink);
  transition: gap .2s var(--ease);
}
.arrow-link:hover { gap: 14px; }
.arrow-link .arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--ink); color: var(--lime);
  display: grid; place-items: center; font-size: 12px;
}
.arrow-link.on-ink { color: var(--white); }
.arrow-link.on-ink .arrow { background: var(--lime); color: var(--ink); }

/* utility */
.row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.spacer-l { height: 80px; }
.spacer-m { height: 48px; }

/* ============ ACCESSIBILITY ============ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* selection highlight */
.highlight-lime { background: var(--lime); padding: 0 0.18em; border-radius: 4px; color: var(--ink); }
.highlight-aqua { background: var(--aqua); padding: 0 0.18em; border-radius: 4px; color: var(--ink); }
.underline-lime { text-decoration: underline; text-decoration-color: var(--lime); text-decoration-thickness: 6px; text-underline-offset: 6px; }

/* tap targets */
button, a, .btn { -webkit-tap-highlight-color: transparent; }

/* =========================================================
   HOMEPAGE — bento hero & rich sections
   ========================================================= */

/* ---- HERO ---- */
.hero {
  padding: clamp(40px, 5vw, 72px) var(--pad) 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.hero-claim {
  background: var(--lime);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 56px);
  position: relative;
  overflow: hidden;
  grid-row: span 2;
  display: flex; flex-direction: column;
  min-height: clamp(420px, 60vh, 720px);
}
.hero-claim h1 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(40px, 5.5vw, 96px);
  letter-spacing: -0.035em; line-height: 1.05;
  color: var(--ink);
  margin-top: 4px;
  position: relative;
}
.hero-claim h1 .ink-pill {
  display: inline-block;
  background: var(--ink); color: var(--lime);
  padding: 0 0.18em; border-radius: 18px;
  transform: rotate(-1.5deg);
  margin: 0 0.06em;
}
.hero-claim h1 .strike {
  position: relative; display: inline-block;
}
.hero-claim h1 .strike::after {
  content: ""; position: absolute; left: -2%; right: -2%;
  top: 52%; height: 6px;
  background: var(--ink); transform: rotate(-2deg);
}
.hero-claim h1 em {
  font-style: italic; font-weight: 500;
  font-family: var(--display);
}
.hero-claim .sticker-wrap {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: clamp(20px, 3vw, 32px);
}
.hero-claim .hero-foot {
  margin-top: auto; padding-top: 32px;
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.hero-claim .hero-foot p {
  max-width: 36ch; color: var(--ink);
  font-size: clamp(15px, 1.3vw, 17px); line-height: 1.55;
  font-weight: 500;
}
.hero-claim .hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* showreel tile */
.hero-reel {
  background: var(--ink);
  border-radius: var(--r-xl);
  position: relative; overflow: hidden;
  min-height: 280px;
  color: var(--white);
  grid-row: span 2;
  cursor: pointer;
}
.hero-reel .reel-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  background: var(--ink);
}
/* Soft gradients so the overlay copy stays readable over any frame */
.hero-reel .reel-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(23,19,59,0.55) 0%, rgba(23,19,59,0) 30%),
    linear-gradient(0deg, rgba(23,19,59,0.7) 0%, rgba(23,19,59,0) 40%);
  pointer-events: none;
  z-index: 2;
  transition: opacity .4s var(--ease);
}
.hero-reel[data-state="playing"] .reel-overlay { opacity: 0; }
.hero-reel .reel-meta {
  position: absolute; top: 18px; left: 22px; right: 22px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
.hero-reel .reel-meta .rec { display: inline-flex; align-items: center; gap: 8px; }
.hero-reel .reel-meta .rec .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(175,252,64,0.18); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.hero-reel .reel-title {
  position: absolute; bottom: 22px; left: 22px; right: 22px;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1; letter-spacing: -0.02em;
  color: var(--white);
}
.hero-reel .reel-title small {
  display: block; font-family: var(--body); font-weight: 500;
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 8px;
}
/* Sound toggle: small floating chip, top-right */
.hero-reel .reel-sound {
  position: absolute; top: 16px; right: 16px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(23,19,59,0.65);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--chalk);
  display: grid; place-items: center;
  cursor: pointer;
  z-index: 3;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.hero-reel .reel-sound:hover { background: var(--ink); transform: scale(1.05); }
.hero-reel .reel-sound svg { width: 16px; height: 16px; }
.hero-reel .reel-sound[data-state="playing"] svg line { display: none; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-claim { grid-row: auto; min-height: 480px; }
}

/* ---- TRUSTED BY (proof statement + scrolling logos) ---- */
.trusted {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--r-xl);
  margin: 32px var(--pad) 0;
  padding: clamp(48px, 6vw, 80px) 0 clamp(40px, 5vw, 64px);
  display: flex; flex-direction: column; gap: clamp(32px, 4vw, 56px);
  overflow: hidden;
  position: relative;
}
.trusted-head {
  padding: 0 clamp(24px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 18px clamp(24px, 4vw, 48px);
  row-gap: 14px;
}
.trusted-kicker {
  grid-column: 1 / -1;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(248,247,243,0.55);
  display: inline-flex; align-items: center; gap: 10px;
}
.trusted-kicker .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(175,252,64,0.18); }
.trusted-claim {
  margin: 0;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(28px, 3.4vw, 48px); letter-spacing: -0.025em; line-height: 1;
  color: var(--white);
}
.trusted-claim .num { color: var(--lime); font-style: normal; }
.trusted-link {
  justify-self: end;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--lime); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border: 1px solid rgba(248,247,243,0.18); border-radius: var(--r-pill);
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.trusted-link:hover { background: rgba(175,252,64,0.08); border-color: rgba(175,252,64,0.6); }

.trusted-marquee {
  width: 100%; overflow: hidden;
  border-top: 1px solid rgba(248,247,243,0.12);
  padding-top: clamp(24px, 3vw, 40px);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.trusted-track {
  display: flex; align-items: center; gap: clamp(56px, 7vw, 96px);
  white-space: nowrap;
  width: max-content;
  animation: trustedScroll 42s linear infinite;
}
.trusted-track:hover { animation-play-state: paused; }
.trusted-logo {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(22px, 2.6vw, 36px); letter-spacing: -0.025em; line-height: 1;
  color: rgba(248,247,243,0.72); transition: color .25s var(--ease);
  text-decoration: none;
  flex-shrink: 0;
}
.trusted-logo:hover { color: var(--lime); }
@keyframes trustedScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .trusted-track { animation: none; }
}
@media (max-width: 700px) {
  .trusted-head { grid-template-columns: 1fr; }
  .trusted-link { justify-self: start; }
}

/* ---- SERVICES BENTO ---- */
.services {
  background: var(--chalk-2);
  border-radius: var(--r-xl);
  margin: 32px var(--pad) 0;
  padding: clamp(48px, 7vw, 96px) clamp(28px, 5vw, 64px);
}
.services-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px; flex-wrap: wrap; margin-bottom: 40px;
}
.services-head h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(34px, 4.5vw, 64px); letter-spacing: -0.025em; line-height: 1;
  color: var(--ink); max-width: 18ch;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 16px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }
.svc {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 22px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  min-height: 240px;
}
.svc:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px -22px rgba(0, 0, 0, 0.22);
}
.svc h3 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(18px, 1.7vw, 24px); letter-spacing: -0.018em;
  line-height: 1.08; color: var(--ink);
}
.svc p { font-size: 13px; color: var(--pen-2); line-height: 1.55; margin-top: 8px; max-width: 36ch; }
.svc .num {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--pen-2);
}
.svc .more {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ink); color: var(--lime);
  display: grid; place-items: center; font-size: 13px;
  transition: transform .3s var(--ease);
}
.svc:hover .more { transform: translate(2px, -2px); }
/* Tile palette — six equally-sized cards, varied colours for rhythm */
.svc-1 { background: var(--ink); color: var(--white); border-color: transparent; }
.svc-1 h3 { color: var(--white); }
.svc-1 p { color: rgba(255,255,255,0.65); }
.svc-1 .num { color: rgba(255,255,255,0.45); }
.svc-1 .more { background: var(--lime); color: var(--ink); }
.svc-2 { background: var(--lime); border-color: transparent; }
.svc-3 { background: var(--white); }
.svc-4 { background: var(--aqua); border-color: transparent; }
.svc-5 { background: var(--white); }
.svc-6 { background: var(--chalk-2); }

/* tile decoration */
.svc .glyph {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(23,19,59,0.06);
  display: grid; place-items: center; margin-bottom: 24px;
}
.svc-1 .glyph { background: rgba(175,252,64,0.18); }
.svc-2 .glyph { background: rgba(23,19,59,0.12); }
.svc-4 .glyph { background: rgba(23,19,59,0.14); }
.svc .glyph svg { width: 22px; height: 22px; color: var(--ink); }
.svc-1 .glyph svg { color: var(--lime); }

@media (max-width: 920px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-1, .svc-2, .svc-3, .svc-4, .svc-5 { grid-column: span 1; }
  .svc-6 { grid-column: span 2; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .svc-1, .svc-2, .svc-3, .svc-4, .svc-5, .svc-6 { grid-column: span 1; }
}

/* ---- WORK BENTO ---- */
.work-section {
  padding: clamp(72px, 9vw, 120px) var(--pad);
}
.work-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; margin-bottom: 40px; }
.work-head h2 {
  font-family: var(--display); font-weight: 700; font-size: clamp(40px, 5.5vw, 80px);
  letter-spacing: -0.028em; line-height: 0.98; color: var(--ink); max-width: 14ch;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}
.work-card {
  border-radius: var(--r-lg); overflow: hidden;
  position: relative; cursor: pointer;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px; color: var(--white);
  isolation: isolate;
  transition: transform .35s var(--ease);
}
.work-card:hover { transform: translateY(-3px); }
.work-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--ink-2);
}
.work-card .img-fill {
  position: absolute; inset: 0; z-index: -1;
}
.work-card .img-fill::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(23,19,59,0.85) 100%);
}
.work-card .img-fill .label {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.4); padding: 4px 8px; border-radius: 6px;
}
.work-card .meta-top {
  position: absolute; top: 16px; left: 16px; right: 16px;
  display: flex; justify-content: space-between; align-items: flex-start;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.work-card .meta-top .pill {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 10px; border-radius: var(--r-pill); backdrop-filter: blur(8px);
}
.work-card h3 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(20px, 2.4vw, 32px); letter-spacing: -0.02em; line-height: 1.05;
  margin-bottom: 10px;
}
.work-card .tags { display: flex; gap: 8px; flex-wrap: wrap; font-size: 11px; opacity: 0.75; line-height: 1.4; }
.work-card .arrow-corner {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--lime); color: var(--ink);
  display: grid; place-items: center; font-size: 13px;
  transition: transform .3s var(--ease);
}
.work-card:hover .arrow-corner { transform: translate(2px, -2px); }

/* Specific tile colors */
.work-1 .img-fill { background:
  radial-gradient(circle at 25% 25%, rgba(175,252,64,0.35), transparent 60%),
  radial-gradient(circle at 80% 70%, rgba(83,197,175,0.25), transparent 55%),
  #0E0B2A; }
.work-2 .img-fill { background:
  radial-gradient(circle at 70% 30%, rgba(8,110,129,0.7), transparent 60%),
  radial-gradient(circle at 20% 80%, rgba(175,252,64,0.2), transparent 50%),
  #0c2745; }
.work-3 .img-fill { background:
  radial-gradient(circle at 30% 70%, rgba(175,252,64,0.25), transparent 60%),
  linear-gradient(135deg, #0a2e15 0%, #07401e 100%); }
.work-4 .img-fill { background:
  linear-gradient(135deg, #3d1a4a 0%, #2a0e36 100%); }
.work-5 .img-fill { background:
  linear-gradient(160deg, #1a3a6b 0%, #0c1d3b 100%); }
/* Huel Launch tile — typographic gradient (no source image available) */
.work-launch .img-fill {
  background:
    radial-gradient(circle at 80% 20%, rgba(175,252,64,0.32), transparent 55%),
    radial-gradient(circle at 15% 85%, rgba(83,197,175,0.22), transparent 55%),
    linear-gradient(135deg, var(--ink) 0%, #221E4A 100%);
}
/* grid spans — row 1: 7+5, row 2: 3+3+3+3 */
.work-a { grid-column: span 7; grid-row: span 2; }
.work-b { grid-column: span 5; grid-row: span 2; }
.work-c { grid-column: span 3; grid-row: span 2; }
.work-d { grid-column: span 3; grid-row: span 2; }
.work-e { grid-column: span 3; grid-row: span 2; }
.work-f { grid-column: span 3; grid-row: span 2; }

@media (max-width: 920px) {
  .work-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 200px; }
  .work-a, .work-b { grid-column: span 6; }
  .work-c, .work-d, .work-e, .work-f { grid-column: span 3; }
}
@media (max-width: 600px) {
  .work-grid { grid-template-columns: 1fr; }
  .work-a, .work-b, .work-c, .work-d, .work-e, .work-f { grid-column: span 1; }
}

/* ---- METHOD ---- */
.method-section {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--r-xl);
  margin: 32px var(--pad) 0;
  padding: clamp(56px, 8vw, 120px) clamp(28px, 5vw, 64px);
  position: relative; overflow: hidden;
}
.method-head { max-width: 720px; margin-bottom: 56px; position: relative; z-index: 2; }
.method-head .eyebrow { color: rgba(255,255,255,0.45); display: inline-flex; align-items: center; margin-bottom: 16px; }
.method-head h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(36px, 5vw, 72px); letter-spacing: -0.028em; line-height: 1;
  color: var(--white);
}
.method-head h2 em { font-style: normal; color: var(--lime); }
.method-list {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; position: relative; z-index: 2;
}
.method-step {
  /* Cursor-tracked spotlight + glowing border, brand-tinted hue (lime → teal) */
  --mx: 50%;
  --my: 50%;
  --hue: 75;          /* lime by default */
  --glow-size: 320px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative; overflow: hidden;
  transition: background .25s var(--ease), border-color .25s var(--ease);
  isolation: isolate;
}
.method-step:hover {
  background: rgba(175,252,64,0.05);
  border-color: rgba(175,252,64,0.2);
}
/* Inner spotlight fill — soft brand-hued radial that follows the cursor */
.method-step::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    var(--glow-size) circle at var(--mx) var(--my),
    hsl(var(--hue) 90% 60% / 0.16),
    transparent 60%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s var(--ease);
  z-index: 1;
}
/* Glowing border — gradient + mask-composite trick so only the 1px border lights up */
.method-step::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(
    calc(var(--glow-size) * 0.7) circle at var(--mx) var(--my),
    hsl(var(--hue) 95% 65% / 0.85),
    transparent 55%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s var(--ease);
  z-index: 2;
}
.method-step:hover::before,
.method-step:hover::after { opacity: 1; }
/* Keep the existing content (num / h4 / p / timing) above the glow layers */
.method-step > * { position: relative; z-index: 3; }

@media (prefers-reduced-motion: reduce) {
  .method-step::before, .method-step::after { transition: none; }
}
.method-step .num {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(40px, 4vw, 64px); letter-spacing: -0.03em;
  line-height: 1; color: var(--lime);
  margin-bottom: 32px;
}
.method-step h4 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(20px, 1.8vw, 24px); letter-spacing: -0.015em;
  color: var(--white); margin-bottom: 10px;
}
.method-step p {
  font-size: 14px; line-height: 1.55;
  color: rgba(255,255,255,0.65); max-width: 28ch;
}
.method-step .timing {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  margin-top: 16px; padding-top: 14px;
  border-top: 1px dashed rgba(255,255,255,0.15);
}
.method-orb {
  position: absolute; top: -120px; right: -120px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(83,197,175,0.35), transparent 60%);
  z-index: 1;
}
@media (max-width: 900px) { .method-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .method-list { grid-template-columns: 1fr; } }

/* ---- TESTIMONIALS (dark section, polished cards) ---- */
.testi {
  background: var(--ink);
  color: var(--chalk);
  border-radius: var(--r-xl);
  margin: 32px var(--pad) 0;
  padding: clamp(64px, 8vw, 120px) clamp(28px, 5vw, 64px);
}
.testi-head { max-width: 720px; margin-bottom: clamp(48px, 6vw, 72px); }
.testi-eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(248,247,243,0.55);
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.testi-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(175,252,64,0.18);
}
.testi-title {
  margin: 0;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(28px, 3.6vw, 48px); letter-spacing: -0.025em; line-height: 1.05;
  color: var(--chalk);
  max-width: 22ch;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.testi-card {
  margin: 0;
  background: rgba(248,247,243,0.04);
  border: 1px solid rgba(248,247,243,0.1);
  border-radius: var(--r-lg);
  padding: clamp(32px, 4vw, 48px);
  display: flex; flex-direction: column;
  position: relative;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.testi-card:hover {
  background: rgba(248,247,243,0.06);
  border-color: rgba(175,252,64,0.25);
}
.testi-quote-mark {
  width: 28px; height: 28px;
  color: var(--lime);
  margin-bottom: clamp(24px, 3vw, 32px);
  flex-shrink: 0;
}
.testi-card blockquote {
  margin: 0;
  font-family: var(--display); font-weight: 500;
  font-size: clamp(20px, 2vw, 26px); letter-spacing: -0.015em; line-height: 1.35;
  color: var(--chalk);
  flex: 1;
}
.testi-card blockquote em {
  font-style: italic; font-weight: 500;
  color: var(--lime);
}
.testi-card figcaption {
  display: flex; align-items: center; gap: 14px;
  margin-top: clamp(32px, 4vw, 48px);
  padding-top: clamp(20px, 2.5vw, 28px);
  border-top: 1px solid rgba(248,247,243,0.1);
}
.testi-avatar {
  flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--lime); color: var(--ink);
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: 18px;
  letter-spacing: -0.02em;
}
.testi-meta { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.testi-name {
  font-family: var(--display); font-weight: 700; font-size: 16px;
  color: var(--chalk); letter-spacing: -0.01em; line-height: 1;
}
.testi-role {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(248,247,243,0.55);
}

@media (max-width: 820px) {
  .testi-grid { grid-template-columns: 1fr; }
}

/* ---- STUDIO INTRO (homepage: single-column editorial teaser, no portrait) ---- */
.studio-intro {
  padding: clamp(72px, 9vw, 120px) var(--pad);
  max-width: 1080px;
  margin: 0 auto;
}
.studio-intro-meta {
  display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap;
  gap: 12px 24px;
  padding-bottom: 20px;
  margin-bottom: clamp(32px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--pen-2);
}
.studio-intro-kicker { display: inline-flex; align-items: center; gap: 10px; }
.studio-intro-kicker .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(175,252,64,0.18);
}
.studio-intro-handle { color: var(--pen-2); }
.studio-intro-headline {
  margin: 0 0 clamp(32px, 4vw, 56px);
  font-family: var(--display); font-weight: 700;
  font-size: clamp(56px, 8vw, 128px); letter-spacing: -0.04em; line-height: 0.92;
  color: var(--ink);
  max-width: 14ch;
}
.studio-intro-headline em {
  font-style: italic; font-weight: 500;
  color: var(--teal);
}
.studio-intro-body {
  max-width: 64ch;
  margin-bottom: clamp(28px, 3.5vw, 40px);
}
.studio-intro-body p {
  font-size: clamp(16px, 1.4vw, 19px); line-height: 1.65;
  color: var(--pen);
  margin: 0 0 18px;
}
.studio-intro-body p:last-child { margin-bottom: 0; }
.studio-intro-body p strong { color: var(--ink); font-weight: 600; }
.studio-intro-skills {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.studio-intro-skills .chip {
  background: var(--chalk-2);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
}
.studio-intro-cta {
  display: flex; gap: 12px; flex-wrap: wrap;
}

/* ---- FAQ ---- */
.faq-section {
  padding: clamp(72px, 9vw, 120px) var(--pad);
  background: var(--chalk-2);
  border-radius: var(--r-xl);
  margin: 32px var(--pad) 0;
}
.faq-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; }
.faq-head h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(36px, 5vw, 72px); letter-spacing: -0.028em; line-height: 0.98;
  color: var(--ink); margin-bottom: 24px;
}
.faq-head p { color: var(--pen-2); font-size: 15px; line-height: 1.65; max-width: 30ch; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border-radius: var(--r-md);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: background .2s var(--ease);
}
.faq-item:hover { background: #fffefa; }
.faq-q {
  width: 100%; text-align: left;
  padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--display); font-weight: 700; font-size: clamp(16px, 1.6vw, 20px);
  letter-spacing: -0.01em; color: var(--ink);
}
.faq-q .toggle {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--chalk-2); display: grid; place-items: center;
  flex-shrink: 0; transition: transform .35s var(--ease), background .2s var(--ease);
}
.faq-q .toggle::before { content: "+"; font-family: var(--body); font-weight: 500; font-size: 18px; color: var(--ink); }
.faq-item.open .toggle { transform: rotate(45deg); background: var(--lime); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s var(--ease), padding .25s var(--ease);
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 420px; padding-bottom: 22px; }
.faq-a p { color: var(--pen); font-size: 14.5px; line-height: 1.65; max-width: 60ch; }

@media (max-width: 820px) { .faq-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---- BIG CTA ---- */
.cta-section {
  background: var(--lime);
  color: var(--ink);
  border-radius: var(--r-xl);
  margin: 32px var(--pad);
  padding: clamp(56px, 9vw, 120px) clamp(28px, 5vw, 80px);
  position: relative; overflow: hidden;
  text-align: center;
}
.cta-section h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(48px, 8vw, 132px); letter-spacing: -0.035em; line-height: 1.05;
  color: var(--ink); max-width: 16ch; margin-left: auto; margin-right: auto;
  position: relative; z-index: 2;
}
.cta-section h2 em { font-style: italic; font-weight: 500; }
.cta-section h2.cta-h2--small {
  font-size: clamp(36px, 5.5vw, 84px); letter-spacing: -0.03em; line-height: 1.02;
}
.cta-section p {
  margin: 24px auto 0; max-width: 56ch;
  font-size: clamp(15px, 1.3vw, 18px); color: var(--ink);
  font-weight: 500; line-height: 1.55; position: relative; z-index: 2;
}
.cta-actions { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; position: relative; z-index: 2; }
.cta-section .deco {
  position: absolute; top: 40px; right: 40px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink); opacity: 0.55;
}
.cta-section .blob {
  position: absolute; right: -120px; top: -120px;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(8,110,129,0.4), transparent 65%);
  z-index: 1;
}

/* ---- WORK PAGE ---- */
.page-hero {
  padding: clamp(56px, 7vw, 100px) var(--pad) clamp(40px, 6vw, 64px);
}
.page-hero h1 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(56px, 9vw, 144px); letter-spacing: -0.035em; line-height: 1.05;
  color: var(--ink); max-width: 14ch;
}
.page-hero h1 em { font-style: italic; color: var(--teal); font-weight: 500; }
.page-hero h1 .lime-pill { background: var(--lime); padding: 0 0.12em; border-radius: 14px; display: inline-block; transform: rotate(-1deg); }
.page-hero .lead { margin-top: 28px; }
.page-hero-meta { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; margin-bottom: 24px; }
.breadcrumb { display: flex; gap: 10px; align-items: center; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--pen-2); }
.breadcrumb a { color: var(--pen-2); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep::before { content: "/"; opacity: 0.4; margin: 0 4px; }

/* ---- CASE STUDY ---- */
.case-hero {
  background: var(--ink); color: var(--white);
  border-radius: var(--r-xl); margin: 24px var(--pad) 0;
  padding: clamp(56px, 8vw, 100px) clamp(32px, 5vw, 72px);
  position: relative; overflow: hidden;
}
.case-hero .eyebrow { color: rgba(255,255,255,0.6); }
.case-hero h1 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(48px, 8vw, 132px); letter-spacing: -0.035em; line-height: 0.92;
  color: var(--white); max-width: 13ch; margin-top: 18px;
}
.case-hero h1 em { font-style: italic; color: var(--lime); font-weight: 500; }
.case-hero-meta { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 56px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.12); }
.case-hero-meta .label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.case-hero-meta .val { font-family: var(--display); font-weight: 500; font-size: 18px; color: var(--white); }
.case-hero .orb { position: absolute; top: -120px; right: -100px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, rgba(83,197,175,0.4), transparent 60%); }
@media (max-width: 820px) { .case-hero-meta { grid-template-columns: repeat(2,1fr); } }

.case-cover {
  margin: 24px var(--pad) 0;
  height: clamp(320px, 60vh, 720px);
  border-radius: var(--r-xl);
  background:
    radial-gradient(circle at 25% 25%, rgba(175,252,64,0.4), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(83,197,175,0.3), transparent 55%),
    #0E0B2A;
  position: relative; overflow: hidden;
}
.case-cover .label { position: absolute; bottom: 20px; left: 20px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.7); background: rgba(0,0,0,0.4); padding: 6px 10px; border-radius: 6px; }

.case-body {
  padding: clamp(56px, 8vw, 120px) var(--pad);
  display: grid; grid-template-columns: 1fr 2fr; gap: 56px;
}
.case-body aside { position: sticky; top: 96px; align-self: start; }
.case-body aside .label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pen-2); margin-bottom: 8px; }
.case-body aside h3 { font-family: var(--display); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 32px; }
.case-body section + section { margin-top: 56px; }
.case-body h2 { font-family: var(--display); font-weight: 700; font-size: clamp(28px, 3.5vw, 48px); letter-spacing: -0.025em; line-height: 1; color: var(--ink); margin-bottom: 18px; }
.case-body p { color: var(--pen); font-size: 16px; line-height: 1.7; margin-bottom: 14px; max-width: 60ch; }
.case-body p strong { color: var(--ink); }
.case-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 24px; }
.case-stat { background: var(--chalk-2); border-radius: var(--r-md); padding: 24px; }
.case-stat .num { font-family: var(--display); font-weight: 700; font-size: clamp(36px, 4vw, 56px); color: var(--teal); letter-spacing: -0.025em; line-height: 1; }
.case-stat .label { font-size: 13px; color: var(--pen); margin-top: 8px; line-height: 1.4; }
@media (max-width: 900px) { .case-body { grid-template-columns: 1fr; } .case-body aside { position: static; } }

/* ---- ARCHIVE INDEX (work page) ---- */
#archive a { transition: background .15s var(--ease); }
#archive a:hover { background: var(--chalk-2); }
#archive a:focus-visible { outline: 2px solid var(--ink); outline-offset: -2px; background: var(--chalk-2); }
@media (max-width: 720px) {
  #archive a { grid-template-columns: 1fr 56px 32px !important; gap: 14px !important; padding: 18px 0 !important; align-items: start !important; }
  #archive a > div:nth-child(1) { display: none; }
  #archive a > div:nth-child(2) { grid-column: 1; font-size: 18px !important; }
  #archive a > div:nth-child(3) { grid-column: 1; font-size: 13px; color: var(--pen-2); margin-top: 2px; }
  #archive a > div:nth-child(4) { grid-column: 2; align-self: center; }
  #archive a > div:nth-child(5) { grid-column: 3; align-self: center; }
}

/* ---- VIBE CHECK (blog) — confident, restrained editorial ---- */

.vibe-hero {
  padding: clamp(48px, 6vw, 96px) var(--pad) clamp(40px, 5vw, 72px);
  display: grid; grid-template-columns: 1fr;
  gap: clamp(24px, 3vw, 40px);
}

/* Kicker line: section name + dateline, hairline rule */
.vibe-kicker {
  display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 8px 24px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--pen-2);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.vibe-kicker .dot { color: var(--lime); font-size: 14px; line-height: 0; vertical-align: middle; margin-right: 8px; }

/* Wordmark headline: two-stack lockup, italic accent line, lime period anchor */
.vibe-display {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(72px, 11vw, 184px);
  letter-spacing: -0.045em; line-height: 0.86;
  color: var(--ink); margin: 0;
  display: grid; grid-template-columns: 1fr; gap: 0;
}
.vibe-display .top { display: block; }
.vibe-display .bottom { display: block; font-weight: 500; font-style: italic; color: var(--teal); letter-spacing: -0.04em; }
.vibe-display .period { color: var(--lime); }

/* Standfirst: pulled to the right of the hero, sits across from the headline */
.vibe-standfirst {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(19px, 2vw, 28px);
  letter-spacing: -0.012em; line-height: 1.3;
  color: var(--pen);
  max-width: 38ch;
  margin: 0;
  padding-top: clamp(16px, 2vw, 24px);
  border-top: 1px solid var(--line);
}
.vibe-standfirst em { font-style: italic; color: var(--ink); font-weight: 500; }

/* Two-column hero on wider screens: headline left, standfirst right */
@media (min-width: 900px) {
  .vibe-hero { grid-template-columns: 1.5fr 1fr; align-items: end; }
  .vibe-kicker { grid-column: 1 / -1; }
  .vibe-standfirst { margin-bottom: 14px; }
}

/* Featured essay — distinct dark card, sits as the hero piece above the list */
.featured-post {
  padding: clamp(32px, 4vw, 56px) var(--pad) 24px;
}
.featured-card {
  display: block;
  background: var(--ink);
  color: var(--chalk);
  border-radius: var(--r-xl);
  padding: clamp(40px, 5.5vw, 80px);
  text-decoration: none;
  position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.featured-card::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 88% 12%, rgba(175,252,64,0.14), transparent 55%);
  pointer-events: none;
}
.featured-card > * { position: relative; z-index: 1; }
.featured-card:hover { transform: translateY(-3px); box-shadow: 0 32px 64px -32px rgba(23,19,59,0.5); }

.featured-card-meta {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 12px 24px;
  padding-bottom: clamp(28px, 3.5vw, 40px);
  border-bottom: 1px solid rgba(248,247,243,0.18);
  margin-bottom: clamp(32px, 4vw, 56px);
}
.featured-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lime); color: var(--ink);
  font-family: var(--display); font-weight: 700; font-size: 12px; letter-spacing: -0.005em;
  padding: 7px 14px; border-radius: var(--r-pill);
}
.featured-mono {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(248,247,243,0.6);
}

.featured-card-title {
  margin: 0 0 clamp(24px, 3vw, 36px);
  font-family: var(--display); font-weight: 700;
  font-size: clamp(40px, 6vw, 88px); letter-spacing: -0.035em; line-height: 0.95;
  color: var(--chalk);
  max-width: 18ch;
}
.featured-card-title em {
  font-style: italic; font-weight: 500;
  color: var(--lime);
}
.featured-card-title .featured-colon { color: var(--lime); }

.featured-card-lede {
  margin: 0 0 clamp(36px, 4vw, 56px);
  font-family: var(--display); font-weight: 400;
  font-size: clamp(16px, 1.5vw, 20px); letter-spacing: -0.01em; line-height: 1.5;
  color: rgba(248,247,243,0.78);
  max-width: 56ch;
}

.featured-card-cta { display: flex; }
.featured-read {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--lime);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(175,252,64,0.4);
  border-radius: var(--r-pill);
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.featured-card:hover .featured-read {
  background: rgba(175,252,64,0.1);
  border-color: var(--lime);
}

/* Section divider with eyebrow */
.mag-divider { padding: 8px var(--pad) 24px; border-top: 1px solid var(--line); margin-top: 16px; }

/* List of posts — full-width rows, type-led, hover reveals teal */
.mag-grid {
  display: flex; flex-direction: column;
  padding: 0 var(--pad) clamp(56px, 8vw, 120px);
}
.mag-grid .post {
  display: grid;
  grid-template-columns: 160px 1fr 160px;
  gap: clamp(20px, 4vw, 56px);
  align-items: start;
  padding: clamp(28px, 3.5vw, 44px) 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none; color: inherit;
  transition: padding-left .25s var(--ease);
}
.mag-grid .post:hover { padding-left: 12px; }
.mag-grid .post .cat-pill {
  display: inline-block;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--pen-2);
}
.mag-grid .post h3 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(22px, 2.6vw, 36px); letter-spacing: -0.022em; line-height: 1.08; color: var(--ink);
  margin: 0 0 8px;
  transition: color .2s var(--ease);
}
.mag-grid .post:hover h3 { color: var(--teal); }
.mag-grid .post p { font-size: 15px; line-height: 1.6; color: var(--pen); max-width: 56ch; margin: 0; }
.mag-grid .post .meta { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pen-2); text-align: right; align-self: center; }

@media (max-width: 820px) {
  .mag-grid .post { grid-template-columns: 1fr; gap: 8px; }
  .mag-grid .post .meta { text-align: left; margin-top: 8px; }
  .vibe-hero h1 { font-size: clamp(56px, 16vw, 96px); }
}

/* ---- CONTACT ---- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; padding: 0 var(--pad) clamp(56px, 8vw, 120px); align-items: start; }
.contact-card {
  background: var(--ink); color: var(--white);
  border-radius: var(--r-xl); padding: clamp(32px, 4vw, 56px);
  position: relative; overflow: hidden;
}
.contact-card .row-item { padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.contact-card .row-item:last-child { border-bottom: none; }
.contact-card .label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 4px; }
.contact-card .val { font-family: var(--display); font-weight: 500; font-size: clamp(18px, 1.8vw, 24px); color: var(--white); letter-spacing: -0.015em; }
.contact-card .val a:hover { color: var(--lime); }

.contact-form { background: var(--white); border-radius: var(--r-xl); padding: clamp(28px, 4vw, 48px); border: 1px solid var(--line); }
.contact-form h2 { font-family: var(--display); font-weight: 700; font-size: clamp(26px, 3vw, 40px); letter-spacing: -0.025em; line-height: 1; color: var(--ink); margin-bottom: 8px; }
.contact-form .sub { color: var(--pen-2); font-size: 14px; margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pen-2); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px;
  background: var(--chalk); border: 1px solid var(--line);
  border-radius: var(--r-md); font-family: var(--body); font-size: 15px;
  color: var(--ink); transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--ink); background: var(--white);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.chip-row { display: flex; gap: 8px; flex-wrap: wrap; }
.chip-radio { display: inline-flex; align-items: center; padding: 9px 14px; background: var(--chalk); border: 1px solid var(--line); border-radius: var(--r-pill); font-size: 13px; cursor: pointer; transition: all .2s var(--ease); }
.chip-radio:hover { border-color: var(--ink); }
.chip-radio.on { background: var(--ink); color: var(--white); border-color: var(--ink); }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } .field-grid { grid-template-columns: 1fr; } }

/* ---- ABOUT — bold sectioned (dark hero → chalk story → lime principles) ---- */

/* 1. HERO — full-bleed dark ink panel with rounded corners */
.about-hero {
  background: var(--ink);
  color: var(--chalk);
  border-radius: var(--r-xl);
  margin: 24px var(--pad) 0;
  padding: clamp(72px, 9vw, 140px) clamp(28px, 5vw, 80px) clamp(56px, 7vw, 104px);
  position: relative; overflow: hidden;
}
.about-hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(175,252,64,0.12), transparent 55%),
    radial-gradient(circle at 12% 88%, rgba(83,197,175,0.10), transparent 55%);
  pointer-events: none;
}
.about-hero > * { position: relative; z-index: 1; }
.about-hero-meta {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 12px 24px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(248,247,243,0.6);
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(248,247,243,0.16);
  margin-bottom: clamp(40px, 5.5vw, 72px);
}
.about-hero-back a {
  color: rgba(248,247,243,0.6);
  text-decoration: none;
  transition: color .2s var(--ease);
}
.about-hero-back a:hover { color: var(--lime); }
.about-hero-title {
  margin: 0;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(44px, 7vw, 112px); letter-spacing: -0.04em; line-height: 0.92;
  color: var(--chalk);
  max-width: 16ch;
}
.about-hero-title em {
  font-style: italic; font-weight: 500;
  color: var(--lime);
}
.about-hero-lead {
  margin: clamp(28px, 3.5vw, 44px) 0 clamp(36px, 4.5vw, 56px);
  font-family: var(--display); font-weight: 400;
  font-size: clamp(17px, 1.6vw, 22px); letter-spacing: -0.012em; line-height: 1.45;
  color: rgba(248,247,243,0.78);
  max-width: 52ch;
}
.about-hero-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.about-hero-tags .about-chip {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(248,247,243,0.78);
  padding: 8px 14px;
  border: 1px solid rgba(248,247,243,0.18);
  border-radius: var(--r-pill);
}

/* 2. STORY — chalk page surface, two-column with sidebar marker */
.about-story {
  padding: clamp(80px, 10vw, 140px) var(--pad);
  max-width: 1200px;
  margin: 0 auto;
}
.about-story-grid {
  display: grid;
  grid-template-columns: minmax(140px, 220px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 96px);
  align-items: start;
}
.about-story-side {
  position: sticky; top: 96px;
  display: flex; flex-direction: column; gap: 14px;
}
.about-story-num {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(56px, 7vw, 96px); letter-spacing: -0.045em; line-height: 0.9;
  color: var(--ink);
}
.about-story-num span {
  font-size: 0.4em; color: var(--pen-2); letter-spacing: 0.02em; margin-left: 4px;
}
.about-story-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--pen-2);
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.about-story-body h2 {
  margin: 0 0 clamp(32px, 4vw, 56px);
  font-family: var(--display); font-weight: 700;
  font-size: clamp(36px, 5vw, 72px); letter-spacing: -0.03em; line-height: 1;
  color: var(--ink);
  max-width: 18ch;
}
.about-story-body h2 em {
  font-style: italic; font-weight: 500;
  color: var(--teal);
}
.about-story-body p {
  font-size: clamp(16px, 1.4vw, 19px); line-height: 1.7;
  color: var(--pen);
  margin: 0 0 1.4em;
  max-width: 60ch;
}
.about-story-body p:last-child { margin-bottom: 0; }
.about-story-body p.lede {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(19px, 1.7vw, 24px); line-height: 1.5; letter-spacing: -0.012em;
  color: var(--ink);
  margin-bottom: 1.6em;
}
.about-story-body p strong { color: var(--ink); font-weight: 600; }

/* 3. COMPARISON — full-bleed dark ink, conversion-driven table */
.about-compare {
  background: var(--ink);
  color: var(--chalk);
  border-radius: var(--r-xl);
  margin: 0 var(--pad);
  padding: clamp(72px, 9vw, 140px) clamp(28px, 5vw, 80px);
  position: relative;
  overflow: hidden;
}
.about-compare::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 90% 8%, rgba(175,252,64,0.10), transparent 55%),
    radial-gradient(circle at 8% 92%, rgba(83,197,175,0.08), transparent 55%);
  pointer-events: none;
}
.about-compare > * { position: relative; z-index: 1; }

.about-compare-head { max-width: 1100px; margin: 0 auto clamp(48px, 6vw, 80px); }
.about-story-num--chalk { color: var(--chalk); }
.about-story-num--chalk span { color: rgba(248,247,243,0.5); }
.about-story-label--chalk {
  color: rgba(248,247,243,0.6);
  border-top-color: rgba(248,247,243,0.18);
  display: inline-block; padding-top: 10px; margin-top: 10px; margin-bottom: clamp(28px, 3.5vw, 44px);
}
.about-compare-head h2 {
  margin: 0;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(40px, 5.8vw, 88px); letter-spacing: -0.035em; line-height: 0.95;
  color: var(--chalk);
  max-width: 18ch;
}
.about-compare-head h2 em {
  font-style: italic; font-weight: 500;
  color: var(--lime);
}

.about-compare-table {
  max-width: 1100px;
  margin: 0 auto clamp(48px, 6vw, 72px);
  border-top: 1px solid rgba(248,247,243,0.16);
}
.about-compare-row {
  display: grid;
  grid-template-columns: minmax(140px, 1.1fr) minmax(0, 1.4fr) minmax(0, 1.4fr);
  gap: clamp(16px, 3vw, 40px);
  padding: clamp(20px, 2.6vw, 28px) 0;
  border-bottom: 1px solid rgba(248,247,243,0.16);
  align-items: baseline;
}
.about-compare-row--head {
  padding: clamp(14px, 1.8vw, 20px) 0;
  border-bottom: 1px solid rgba(248,247,243,0.28);
}
.about-compare-row--head .cell-bad,
.about-compare-row--head .cell-good {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
}
.about-compare-row--head .cell-bad { color: rgba(248,247,243,0.45); }
.about-compare-row--head .cell-good {
  color: var(--lime);
  display: inline-flex; align-items: center; gap: 8px;
}
.cell-good-mark { color: var(--lime); }

.cell-axis {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(248,247,243,0.5);
}
.cell-bad {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(15px, 1.4vw, 18px); letter-spacing: -0.005em; line-height: 1.4;
  color: rgba(248,247,243,0.55);
  text-decoration: line-through;
  text-decoration-color: rgba(248,247,243,0.28);
  text-decoration-thickness: 1px;
}
.cell-good {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(16px, 1.5vw, 20px); letter-spacing: -0.012em; line-height: 1.35;
  color: var(--chalk);
}

.about-compare-cta {
  max-width: 1100px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 20px; align-items: flex-start;
  padding-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid rgba(248,247,243,0.16);
}
.about-compare-cta p {
  margin: 0;
  font-family: var(--display); font-weight: 400;
  font-size: clamp(18px, 1.8vw, 24px); letter-spacing: -0.012em; line-height: 1.4;
  color: var(--chalk);
  max-width: 56ch;
}
.about-compare-cta-btn {
  background: var(--lime); color: var(--ink);
  padding: 16px 26px;
  font-size: 15px; font-weight: 700;
}
.about-compare-cta-btn:hover { background: #BCFF55; }

@media (max-width: 820px) {
  .about-story-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-story-side { position: static; flex-direction: row; align-items: baseline; gap: 18px; }
  .about-story-side .about-story-label { padding-top: 0; border-top: 0; }
  .about-compare-row { grid-template-columns: 1fr; gap: 6px; padding: 20px 0; }
  .about-compare-row--head { display: none; }
  .cell-axis {
    margin-bottom: 4px;
  }
  .cell-bad::before {
    content: "Most agencies: ";
    font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(248,247,243,0.4);
    display: inline; margin-right: 6px;
  }
  .cell-good::before {
    content: "Vibe Shift: ";
    font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--lime);
    display: inline; margin-right: 6px;
  }
}

/* ---- SERVICES PAGE ---- */
.service-detail { padding: 0 var(--pad) clamp(56px, 8vw, 120px); }
.service-row {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px;
  padding: clamp(48px, 6vw, 80px) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.service-row:last-child { border-bottom: none; }
.service-row .num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; }
.service-row h2 { font-family: var(--display); font-weight: 700; font-size: clamp(36px, 5vw, 64px); letter-spacing: -0.028em; line-height: 0.95; color: var(--ink); margin-bottom: 18px; }
.service-row .body { color: var(--pen); font-size: 16px; line-height: 1.7; }
.service-row .body p { margin-bottom: 14px; max-width: 56ch; }
.service-row .body ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.service-row .body li { font-size: 14.5px; color: var(--pen); padding-left: 22px; position: relative; }
.service-row .body li::before { content: "→"; position: absolute; left: 0; color: var(--teal); font-weight: 600; }
/* Outcome proof card replaces image visual: dark ink card pulling a real result from the work */
.service-row .proof {
  background: var(--ink); color: var(--chalk);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3.5vw, 44px);
  display: flex; flex-direction: column;
  align-self: start;
  position: relative; overflow: hidden;
  min-height: 320px;
  text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.service-row .proof:hover { transform: translateY(-3px); box-shadow: 0 24px 48px -24px rgba(23,19,59,0.4); }
.service-row .proof::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(175,252,64,0.16), transparent 55%);
  pointer-events: none;
}
.service-row .proof > * { position: relative; z-index: 1; }
.service-row .proof .proof-eyebrow {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--lime);
  padding-bottom: 16px; border-bottom: 1px solid rgba(248,247,243,0.18);
  margin-bottom: 28px;
}
.service-row .proof .proof-stat {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(40px, 5.5vw, 72px); letter-spacing: -0.035em; line-height: 0.95;
  color: var(--chalk); margin: 0 0 14px;
}
.service-row .proof .proof-stat em { color: var(--lime); font-style: normal; }
.service-row .proof .proof-desc {
  font-size: clamp(14px, 1.2vw, 16px); line-height: 1.55;
  color: rgba(248,247,243,0.78);
  margin: 0 0 auto;
  max-width: 28ch;
}
.service-row .proof .proof-footer {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 28px; padding-top: 18px;
  border-top: 1px solid rgba(248,247,243,0.18);
}
.service-row .proof .proof-brand {
  font-family: var(--display); font-weight: 600; font-size: 14px;
  color: var(--chalk); letter-spacing: -0.01em;
}
.service-row .proof .proof-link {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--lime);
}
.service-row .proof:hover .proof-link { text-decoration: underline; text-underline-offset: 3px; }

.service-row .visual {
  aspect-ratio: 4/3; border-radius: var(--r-lg);
  background: var(--chalk-2);
  position: relative; overflow: hidden;
}
.service-row .visual .label { position: absolute; bottom: 14px; left: 14px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--pen-2); background: var(--white); padding: 5px 10px; border-radius: 6px; }
.service-row:nth-child(1) .visual { background: radial-gradient(circle at 30% 30%, rgba(175,252,64,0.5), transparent 60%), #0E0B2A; }
.service-row:nth-child(2) .visual { background: var(--lime); }
.service-row:nth-child(3) .visual { background: radial-gradient(circle at 70% 70%, rgba(83,197,175,0.6), transparent 60%), var(--ink); }
.service-row:nth-child(4) .visual { background: var(--aqua); }
.service-row:nth-child(5) .visual { background: radial-gradient(circle at 30% 70%, rgba(8,110,129,0.6), transparent 55%), var(--ink); }
.service-row:nth-child(6) .visual { background: var(--chalk-2); }

.service-row:nth-child(even) .visual { order: -1; }
@media (max-width: 900px) {
  .service-row { grid-template-columns: 1fr; }
  .service-row:nth-child(even) .visual { order: 0; }
}

/* ---- TWEAKS PANEL POSITIONING (custom-built minimal) ---- */
.tweaks-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--ink); color: var(--lime);
  display: grid; place-items: center; cursor: pointer;
  box-shadow: 0 12px 28px -10px rgba(23,19,59,0.5);
  transition: transform .25s var(--ease);
}
.tweaks-fab:hover { transform: scale(1.05); }
.tweaks-panel {
  position: fixed; right: 20px; bottom: 88px; z-index: 95;
  width: 320px; max-height: 80vh; overflow: auto;
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: 0 24px 48px -20px rgba(23,19,59,0.4);
  padding: 20px;
  display: none;
}
.tweaks-panel.open { display: block; }
.tweaks-panel h3 { font-family: var(--display); font-weight: 700; font-size: 18px; color: var(--ink); margin-bottom: 4px; }
.tweaks-panel .sub { font-size: 12px; color: var(--pen-2); margin-bottom: 18px; }
.tweaks-panel .tweak-group { margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.tweaks-panel .tweak-group:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.tweaks-panel .tweak-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pen-2); margin-bottom: 10px; }
.tweaks-panel .seg { display: flex; gap: 6px; flex-wrap: wrap; }
.tweaks-panel .seg button { padding: 7px 12px; font-size: 12px; border-radius: var(--r-pill); background: var(--chalk); border: 1px solid var(--line); color: var(--pen); }
.tweaks-panel .seg button.on { background: var(--ink); color: var(--white); border-color: var(--ink); }
.tweaks-panel .swatches { display: flex; gap: 8px; }
.tweaks-panel .swatch { width: 32px; height: 32px; border-radius: 8px; border: 2px solid transparent; cursor: pointer; }
.tweaks-panel .swatch.on { border-color: var(--ink); }


/* ============ SCROLL-EXPAND HERO (case-huel) ============ */
.scroll-hero {
  position: relative;
  width: 100%;
  height: 78vh;
  height: 78dvh;
  min-height: 580px;
  overflow: hidden;
  background: var(--ink);
  /* JS-driven progress: 0 = resting, 1 = fully expanded */
  --p: 0;
}
.scroll-hero-bg {
  position: absolute; inset: 0;
  /* Solid brand-tinted backdrop — no source-video frame */
  background:
    radial-gradient(circle at 72% 18%, rgba(83,197,175,0.14), transparent 55%),
    radial-gradient(circle at 18% 82%, rgba(175,252,64,0.08), transparent 55%),
    var(--ink);
  z-index: 0;
}
.scroll-hero-tint {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,19,59,0) 0%, rgba(23,19,59,0.25) 100%);
  z-index: 1;
  pointer-events: none;
}
.scroll-hero-stage {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  padding: clamp(20px, 3vw, 36px) clamp(20px, 4vw, 56px);
}

/* Top meta strip */
.scroll-hero-meta {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(248,247,243,0.8);
  /* Fades out as you scroll, so it doesn't fight the expanding media */
  opacity: calc(1 - var(--p) * 0.85);
}
.scroll-hero-back {
  color: rgba(248,247,243,0.8);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  border: 1px solid rgba(248,247,243,0.18);
  border-radius: var(--r-pill);
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.scroll-hero-back:hover { background: rgba(248,247,243,0.08); border-color: rgba(175,252,64,0.6); color: var(--lime); }

/* Centered media tile that grows with scroll */
.scroll-hero-media {
  /* Centered absolutely so the title can flow around without grid disruption */
  position: absolute; top: 50%; left: 50%;
  width: calc(280px + var(--p) * 820px);
  height: calc(340px + var(--p) * 240px);
  max-width: 92vw;
  max-height: 64vh;
  transform: translate(-50%, -50%);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.55);
  z-index: 2;
  transition: width .12s linear, height .12s linear;
}
/* Square modifier — for 1:1 source videos (e.g. case-huel-launch) */
.scroll-hero--square .scroll-hero-media {
  width: calc(320px + var(--p) * 540px);
  height: calc(320px + var(--p) * 540px);
  max-width: 64vh;
}
.scroll-hero-media video {
  display: block; width: 100%; height: 100%; object-fit: cover;
  pointer-events: none;
}
/* iframe (Vimeo) — block wheel during expand, enable click once expanded */
.scroll-hero-media iframe { pointer-events: none; }
.scroll-hero[data-state="expanded"] .scroll-hero-media iframe { pointer-events: auto; }
.scroll-hero-media-tint {
  position: absolute; inset: 0;
  background: rgba(23,19,59,calc(0.45 - var(--p) * 0.4));
  transition: background .15s linear;
  pointer-events: none;
}

/* Title splits outward as scroll progresses */
.scroll-hero-title {
  grid-row: 2; align-self: center; justify-self: center;
  margin: 0;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(34px, 5.6vw, 76px);
  letter-spacing: -0.035em; line-height: 1;
  color: var(--chalk);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  text-align: center;
  z-index: 3;
  pointer-events: none;
  /* Strong text shadow so the title stays legible over any video frame */
  text-shadow:
    0 2px 16px rgba(23,19,59,0.85),
    0 0 32px rgba(23,19,59,0.6);
}
.scroll-hero-title-left {
  display: inline-block;
  transform: translateX(calc(var(--p) * -110vw));
  transition: transform .12s linear;
  will-change: transform;
}
.scroll-hero-title-right {
  display: inline-block;
  transform: translateX(calc(var(--p) * 110vw));
  transition: transform .12s linear;
  will-change: transform;
}
.scroll-hero-title em { font-style: italic; font-weight: 500; color: var(--lime); }

/* Scroll-to-expand hint at bottom — fades as user starts scrolling */
.scroll-hero-hint {
  grid-row: 3; justify-self: center;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--lime);
  opacity: calc(1 - var(--p) * 1.5);
}
.scroll-hero-hint-arrow {
  width: 8px; height: 8px;
  border-right: 2px solid var(--lime);
  border-bottom: 2px solid var(--lime);
  transform: rotate(45deg);
  animation: scrollHeroBounce 1.6s var(--ease) infinite;
}
@keyframes scrollHeroBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
  50% { transform: rotate(45deg) translateY(4px); opacity: 0.5; }
}

/* When fully expanded, hide the hint */
.scroll-hero[data-state="expanded"] .scroll-hero-hint { display: none; }

/* Respect reduced motion: drop the scroll hijack visual and just show the media at full size */
@media (prefers-reduced-motion: reduce) {
  .scroll-hero { --p: 1 !important; height: auto; min-height: 60vh; }
  .scroll-hero-title-left, .scroll-hero-title-right { transform: none; }
  .scroll-hero-hint-arrow { animation: none; }
}

@media (max-width: 768px) {
  .scroll-hero-media {
    width: calc(260px + var(--p) * 500px);
    height: calc(340px + var(--p) * 240px);
  }
  .scroll-hero-title { font-size: clamp(34px, 9vw, 60px); }
}

/* ============ LEGAL (privacy, terms) — editorial long-form ============ */
.legal-body {
  max-width: 70ch;
  margin: 0 auto;
  padding: 0 var(--pad) clamp(80px, 10vw, 140px);
  color: var(--pen);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.7;
}
.legal-body h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(22px, 2.2vw, 30px); letter-spacing: -0.02em; line-height: 1.15;
  color: var(--ink);
  margin: 2.4em 0 0.6em;
}
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body p { margin: 0 0 1em; }
.legal-body ul { margin: 0 0 1.4em 1.4em; }
.legal-body li { margin: 0 0 0.5em; }
.legal-body strong { color: var(--ink); font-weight: 600; }
.legal-body a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.legal-body a:hover { color: var(--ink); }
