/* ============================================================
   Cxntracts
   Editorial design system — neo-grotesk, restrained, premium.
   ============================================================ */

/* ---------- fonts ---------- */
@font-face {
  font-family: 'Geist';
  src: url('assets/fonts/Geist-Variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   Tokens
   ============================================================ */
:root {
  /* color — light */
  --bg:          #ffffff;
  --bg-soft:     #f2f1ed;
  --ink:         #121211;
  --ink-soft:    #6c6b66;
  --ink-faint:   #9c9b95;
  --line:        rgba(18, 18, 17, 0.14);
  --line-soft:   rgba(18, 18, 17, 0.07);

  /* color — inverse */
  --inverse-bg:        #0c0c0b;
  --inverse-ink:       #f4f3ef;
  --inverse-ink-soft:  rgba(244, 243, 239, 0.56);
  --inverse-ink-faint: rgba(244, 243, 239, 0.34);
  --inverse-line:      rgba(244, 243, 239, 0.16);

  /* type */
  --font:      'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', monospace;

  --fs-display: clamp(2.9rem, 1.7rem + 5.1vw, 5.1rem);
  --fs-h1:      clamp(2.15rem, 1.55rem + 2.5vw, 3.5rem);
  --fs-h2:      clamp(1.72rem, 1.34rem + 1.65vw, 2.6rem);
  --fs-h3:      clamp(1.45rem, 1.22rem + 1vw, 2.05rem);
  --fs-h4:      clamp(1.12rem, 1.04rem + 0.36vw, 1.34rem);
  --fs-lead:    clamp(1.08rem, 1rem + 0.42vw, 1.34rem);
  --fs-body:    1rem;
  --fs-sm:      0.9rem;
  --fs-caption: 0.76rem;

  /* fluid spacing scale */
  --space-1:  clamp(0.25rem, 0.22rem + 0.15vw, 0.375rem);
  --space-2:  clamp(0.5rem, 0.42rem + 0.4vw, 0.75rem);
  --space-3:  clamp(0.75rem, 0.6rem + 0.7vw, 1.15rem);
  --space-4:  clamp(1.1rem, 0.85rem + 1.1vw, 1.85rem);
  --space-5:  clamp(1.6rem, 1.2rem + 1.6vw, 2.7rem);
  --space-6:  clamp(2.2rem, 1.6rem + 2.5vw, 4rem);
  --space-7:  clamp(3rem, 2.1rem + 3.6vw, 5.75rem);
  --space-8:  clamp(3.75rem, 2.5rem + 5vw, 8rem);
  --space-9:  clamp(4.75rem, 3rem + 7vw, 11rem);
  --space-10: clamp(6rem, 3.8rem + 9vw, 14rem);

  /* layout */
  --maxw:    1600px;
  --gutter:  clamp(22px, 1.1rem + 2.5vw, 66px);
  --col-gap: clamp(14px, 0.6rem + 0.8vw, 24px);
  --nav-h:   clamp(62px, 3.4rem + 1.6vw, 82px);

  /* form */
  --r-sm: 7px;
  --r:    12px;
  --r-lg: 20px;
  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io: cubic-bezier(0.7, 0, 0.2, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.55;
  font-variant-numeric: slashed-zero;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color 0.6s var(--ease);
}
body.is-locked { overflow: hidden; }

a { color: inherit; text-decoration: none; }
a, button { -webkit-tap-highlight-color: transparent; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
img, svg, video { display: block; max-width: 100%; }
ul { list-style: none; }

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

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
  border-radius: 2px;
}

h1, h2, h3, h4 {
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

/* ---------- type utilities ---------- */
.f-display { font-size: var(--fs-display); line-height: 1.0; letter-spacing: -0.035em; font-weight: 480; }
.f-h1 { font-size: var(--fs-h1); letter-spacing: -0.03em; }
.f-h2 { font-size: var(--fs-h2); letter-spacing: -0.028em; }
.f-h3 { font-size: var(--fs-h3); letter-spacing: -0.022em; line-height: 1.1; }

.eyebrow {
  display: inline-block;
  font-family: var(--font);
  font-size: clamp(1.35rem, 0.92rem + 1.2vw, 2.1rem);
  font-weight: 520;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-soft);
}

.lead {
  font-size: var(--fs-lead);
  line-height: 1.42;
  color: var(--ink-soft);
  text-wrap: pretty;
  letter-spacing: -0.011em;
}

/* block-level text spans */
.service-row__body, .service-row__name, .service-row__note { display: block; }

/* ---------- layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--space-9);
  position: relative;
  scroll-margin-top: calc(var(--nav-h) + 6px);
}
.section--soft { background: var(--bg-soft); }
.section--soft ::selection { background: var(--ink); color: var(--bg-soft); }

/* section header */
.section-head { margin-bottom: var(--space-7); }
.section-head__top {
  display: flex;
  align-items: baseline;
  gap: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--line);
  margin-bottom: var(--space-5);
}
.section-head__main {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 900px) {
  .section-head__main { grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); column-gap: var(--col-gap); }
  .section-head__main .lead { padding-top: 0.5em; }
}
.section-head h2 { font-size: var(--fs-h2); letter-spacing: -0.03em; max-width: 16ch; }

/* ============================================================
   Buttons & links
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: -0.006em;
  padding: 0.92em 1.4em;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease),
              border-color 0.4s var(--ease), transform 0.5s var(--ease), opacity 0.4s var(--ease);
}
.btn:active { transform: scale(0.985); }
.btn--lg { padding: 1.08em 1.65em; font-size: var(--fs-body); }

.btn--primary { background: var(--ink); color: var(--bg); }
.btn--primary:hover { background: #2c2c2a; }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--bg); }

.btn--invert { background: var(--inverse-ink); color: var(--inverse-bg); }
.btn--invert:hover { background: #ffffff; }

.btn--ghost-invert { background: transparent; color: var(--inverse-ink); border-color: var(--inverse-line); }
.btn--ghost-invert:hover { background: var(--inverse-ink); color: var(--inverse-bg); border-color: var(--inverse-ink); }

/* arrow link */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink);
  width: fit-content;
}
.arrow-link svg {
  width: 0.95em; height: 0.95em;
  transition: transform 0.45s var(--ease);
}
.arrow-link::after {
  content: "";
  display: block;
  position: absolute;
}
.arrow-link { position: relative; padding-bottom: 0.3em; }
.arrow-link span { position: relative; }
.arrow-link span::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -0.18em;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.arrow-link:hover span::after { transform: scaleX(1); }
.arrow-link:hover svg { transform: translate(3px, -3px); }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease), color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.94);
  opacity: 0;
  transition: opacity 0.4s var(--ease), background-color 0.4s var(--ease);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.nav.is-scrolled::before { opacity: 1; }
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav.is-transparent,
.nav.is-inverse { border-bottom-color: transparent; }
.nav.is-transparent::before,
.nav.is-inverse::before,
.nav.is-menu-open::before { opacity: 0; }
.nav.is-inverse.is-scrolled { border-bottom-color: transparent; }

.nav-inner {
  position: relative;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5em;
  color: var(--ink);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  transition: color 0.4s var(--ease), opacity 0.45s var(--ease), transform 0.55s var(--ease);
}
.nav.is-logo-hidden:not(.is-menu-open) .brand {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, -8px, 0);
}
.brand-mark { width: 22px; height: 22px; }
.brand-name {
  font-size: 1.06rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.nav.is-inverse .brand,
.nav.is-menu-open .brand { color: var(--inverse-ink); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-links a {
  font-size: var(--fs-sm);
  font-weight: 450;
  letter-spacing: -0.008em;
  color: var(--ink);
  padding: 0.5em 0.78em;
  border-radius: var(--r-sm);
  transition: background-color 0.3s var(--ease), color 0.4s var(--ease), opacity 0.3s var(--ease);
}
.nav-links a:hover { background: rgba(18,18,17,0.06); }
.nav.is-inverse .nav-links a { color: var(--inverse-ink); }
.nav.is-inverse .nav-links a:hover { background: rgba(244,243,239,0.1); }

.nav-cta { display: flex; align-items: center; gap: 0.6rem; }
.nav .btn { padding: 0.62em 1.1em; }
.nav.is-inverse .btn--primary { background: var(--inverse-ink); color: var(--inverse-bg); }

.nav-desktop { display: flex; align-items: center; gap: var(--space-4); }

/* hamburger */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  margin-right: -10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.6px;
  background: var(--ink);
  transition: transform 0.4s var(--ease), opacity 0.25s var(--ease), background-color 0.4s var(--ease);
}
.nav.is-inverse .nav-toggle span { background: var(--inverse-ink); }

/* full-screen mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--inverse-bg);
  color: var(--inverse-ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--nav-h) var(--gutter) var(--space-6);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, -10px, 0);
  transition:
    opacity 0.24s var(--ease),
    transform 0.34s var(--ease),
    visibility 0s linear 0.34s;
  pointer-events: none;
  will-change: opacity, transform;
}
.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.24s var(--ease),
    transform 0.34s var(--ease),
    visibility 0s linear 0s;
  pointer-events: auto;
}
.nav-overlay ol {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.nav-overlay li { overflow: hidden; }
.nav-overlay ol a {
  display: flex;
  align-items: baseline;
  padding: 0.28em 0;
  font-size: clamp(2rem, 9vw, 3.4rem);
  font-weight: 480;
  letter-spacing: -0.035em;
  color: var(--inverse-ink);
  opacity: 0;
  transform: translate3d(0, 0.55em, 0);
  transition:
    opacity 0.32s var(--ease),
    transform 0.42s var(--ease);
  will-change: opacity, transform;
}
.nav-overlay.is-open ol a {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.nav-overlay.is-open li:nth-child(1) a { transition-delay: 0.02s; }
.nav-overlay.is-open li:nth-child(2) a { transition-delay: 0.06s; }
.nav-overlay.is-open li:nth-child(3) a { transition-delay: 0.1s; }
.nav-overlay.is-open li:nth-child(4) a { transition-delay: 0.14s; }
.nav-overlay__foot {
  margin-top: var(--space-7);
  padding-top: var(--space-4);
  border-top: 1px solid var(--inverse-line);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  transition:
    opacity 0.28s var(--ease),
    transform 0.34s var(--ease);
}
.nav-overlay.is-open .nav-overlay__foot {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.14s;
}

/* skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 200;
  background: var(--ink);
  color: var(--bg);
  padding: 0.7em 1.1em;
  border-radius: var(--r-sm);
  font-size: var(--fs-sm);
}
.skip-link:focus { left: var(--gutter); }

/* ============================================================
   Splash
   ============================================================ */
.intro {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  background: var(--inverse-bg);
  color: var(--inverse-ink);
  pointer-events: none;
  contain: layout paint style;
  will-change: opacity;
  animation: splash-exit 0.46s var(--ease) 0.48s both;
}
.intro__mark {
  display: flex;
  align-items: center;
  gap: 0.5em;
  opacity: 0;
  transform: translateY(0.42rem);
  animation: splash-mark 0.78s var(--ease) 0.04s both;
}
.intro__mark svg {
  width: clamp(30px, 5vw, 44px);
  height: auto;
}
.intro__mark span {
  font-size: clamp(1.7rem, 5vw, 2.6rem);
  font-weight: 480;
  letter-spacing: -0.04em;
}
@keyframes splash-mark {
  0% { opacity: 0; transform: translateY(0.42rem); }
  35%, 64% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-0.34rem); }
}
@keyframes splash-exit {
  0%, 72% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; }
}

/* ============================================================
   Hero — AREA17-style sticky feature reveal
   ============================================================ */
.hero {
  --hero-pusher-h: 56svh;
  --hero-features-h: calc(100svh + 1150px);
  --hero-clip-x: var(--gutter);
  --hero-clip-r: 8px;
  --hero-message-clip: var(--hero-pusher-h);
  --hero-message-bottom: 100svh;
  --hero-statement-reveal: var(--hero-pusher-h);
  --hero-word-y: 0px;
  position: relative;
  background: var(--bg);
  color: var(--ink);
}

.hero-pusher {
  position: sticky;
  top: 0;
  z-index: 0;
  height: var(--hero-pusher-h);
  min-height: calc(var(--nav-h) + 360px);
  clip-path: inset(0 0 calc(100% - var(--hero-statement-reveal)) 0);
  will-change: clip-path;
}

/* light statement layer */
.hero-statement {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-start;
  padding-top: calc(var(--nav-h) + clamp(60px, 11svh, 118px));
}
.hero-statement .container {
  position: relative;
  width: 100%;
}
.hero-brand-intro {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: clamp(2.2rem, 3.1vw, 3.1rem);
  overflow: hidden;
  max-width: 23ch;
  color: var(--ink);
  font-size: var(--fs-display);
  font-weight: 480;
  line-height: 1.01;
  letter-spacing: -0.038em;
  pointer-events: none;
}
.hero-brand-intro > span {
  display: block;
  opacity: 0;
  transform: translateY(105%);
  transition: opacity 0.42s var(--ease), transform 0.58s var(--ease);
}
.hero.is-brand-in .hero-brand-intro > span {
  opacity: 1;
  transform: translateY(0);
}
.hero.is-brand-out .hero-brand-intro > span,
.hero.is-ready .hero-brand-intro > span {
  opacity: 0;
  transform: translateY(-72%);
  transition-duration: 0.34s;
}
.hero-headline {
  font-size: var(--fs-display);
  font-weight: 480;
  line-height: 1.01;
  letter-spacing: -0.038em;
  max-width: 23ch;
}
.hero-headline .ln { display: block; overflow: hidden; }
.hero-headline .ln > span {
  display: block;
  transform: translateY(105%);
  transition: transform 0.72s var(--ease);
}
.hero.is-ready .hero-headline .ln > span {
  transform: translateY(0);
}
.hero.is-ready .hero-headline .ln:nth-child(2) > span { transition-delay: 0.08s; }
.hero.is-ready .hero-headline .ln:nth-child(3) > span { transition-delay: 0.16s; }
.hero-headline em {
  font-style: normal;
  color: var(--ink-faint);
}

.hero-scrollcue {
  display: none;
  position: absolute;
  left: var(--gutter);
  bottom: var(--space-5);
  align-items: center;
  gap: 0.7em;
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  opacity: 0;
  transition: opacity 0.6s var(--ease) 0.5s;
}
.hero.is-ready .hero-scrollcue { opacity: 1; }
.hero-scrollcue__line {
  width: 46px; height: 1px;
  background: currentColor;
  position: relative;
  overflow: hidden;
}
.hero-scrollcue__line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateX(-100%);
  animation: cue 2.6s var(--ease) infinite;
}
@keyframes cue {
  0% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

/* clipped white overlay copy */
.hero-message {
  position: sticky;
  top: 0;
  z-index: 2;
  height: 100svh;
  margin-top: -100svh;
  color: var(--inverse-ink);
  opacity: 0;
  pointer-events: none;
  clip-path: polygon(
    0 var(--hero-message-clip),
    100% var(--hero-message-clip),
    100% var(--hero-message-bottom),
    0 var(--hero-message-bottom)
  );
  transition: opacity 0.5s var(--ease);
  will-change: clip-path, opacity;
}
.hero-message.is-active { opacity: 1; }
.hero-message__frame {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
}
.hero-message a,
.hero-message .btn {
  pointer-events: auto;
}

/* dark feature layer */
.hero-reel {
  position: relative;
  z-index: 1;
  height: var(--hero-features-h);
  color: var(--inverse-ink);
  background: var(--inverse-bg);
  overflow: hidden;
  clip-path: inset(0 var(--hero-clip-x) round var(--hero-clip-r));
  will-change: clip-path;
}
.hero-reel__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-bottom: 0;
  will-change: opacity, transform;
}
.hero-reel__copy {
  min-width: 0;
}
.hero-reel__lead {
  display: block;
  font-family: var(--font);
  font-size: clamp(0.88rem, 0.83rem + 0.18vw, 1rem);
  font-weight: 520;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: none;
  color: var(--inverse-ink-soft);
  margin-bottom: var(--space-4);
}
.hero-reel__line {
  font-size: var(--fs-display);
  font-weight: 480;
  line-height: 1.0;
  letter-spacing: -0.038em;
  width: 7.6em;
  max-width: 100%;
}
.hero-reel__pre { display: block; color: var(--inverse-ink); line-height: 1.06; }
.hero-reel__slot {
  position: relative;
  display: block;
  height: 1.16em;
  margin-top: 0.04em;
  overflow: hidden;
}
.hero-reel__words {
  position: absolute;
  top: 0; left: 0;
  transform: translateY(var(--hero-word-y));
  transition: transform 0.72s var(--ease);
  will-change: transform;
}
.hero-word {
  display: flex;
  align-items: center;
  height: 1.16em;
  line-height: 1.06;
  color: var(--inverse-ink);
  opacity: 0.5;
  transition: opacity 0.6s var(--ease);
  width: max-content;
}
.hero-word[data-dist="0"] { opacity: 1; }
.hero-word[data-dist="1"] { opacity: 0.5; }
.hero-word[data-dist="2"] { opacity: 0.22; }
.hero-word[data-dist="3"] { opacity: 0.08; }
a.hero-word:hover { opacity: 0.7; }
a.hero-word[data-dist="0"]:hover { opacity: 1; }

.hero-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: clamp(1.6rem, 3vw, 2.35rem);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.hero-message.is-end .hero-actions { opacity: 1; transform: none; }

.hero-reel__plate,
.hero-reel__item {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}
.hero-reel__plate {
  z-index: 0;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.08), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.04), transparent 44%),
    var(--inverse-bg);
}
.hero-reel__grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, transparent, #000 24%, #000 82%, transparent);
}
.hero-reel__stack {
  position: relative;
  z-index: 1;
  height: var(--hero-features-h);
  margin-top: -100svh;
  list-style: none;
  padding: 0;
}
.hero-reel__item {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 var(--gutter) clamp(26px, 5vh, 64px);
  margin-top: -100svh;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.hero-reel__item:first-child { margin-top: 0; }
.hero-reel__item.is-active { opacity: 0.12; }
.hero-reel__item span {
  font-size: clamp(5.5rem, 22vw, 18rem);
  line-height: 0.8;
  letter-spacing: -0.08em;
  font-weight: 520;
  color: rgba(255,255,255,0.46);
  white-space: nowrap;
}

/* ============================================================
   Statement section
   ============================================================ */
.statement {
  --bridge-p: 0;
  --bridge-scale: 0.06;
  --bridge-opacity: 0;
  --bridge-shift: 0px;
  --bridge-scan-opacity: 0;
  --statement-y: 0px;
  --statement-opacity: 1;
  padding-block: var(--space-10) clamp(4.5rem, 7vw, 8.5rem);
  overflow: hidden;
}
.statement__inner {
  position: relative;
  min-height: clamp(420px, 62vh, 720px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.statement__copy {
  transform: translate3d(0, var(--statement-y), 0);
  opacity: var(--statement-opacity);
  will-change: transform, opacity;
}
.statement__eyebrow { margin-bottom: var(--space-6); }
.statement__text {
  color: var(--ink);
  font-size: clamp(1.8rem, 1.3rem + 1.7vw, 3.25rem);
  font-weight: 460;
  line-height: 1.12;
  letter-spacing: 0;
  max-width: 34ch;
  text-wrap: balance;
}
.statement__text + .statement__text {
  margin-top: clamp(1.55rem, 2.6vw, 2.65rem);
  max-width: 49ch;
  color: var(--ink);
  font-size: clamp(1.32rem, 1.08rem + 0.86vw, 1.82rem);
  font-weight: 440;
  line-height: 1.32;
  text-wrap: pretty;
}
.statement__text em {
  font-style: normal;
  color: var(--ink-faint);
}
.statement__foot {
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
  align-items: center;
}
.statement__note {
  font-size: var(--fs-sm);
  color: var(--ink-soft);
  max-width: 34ch;
}
.statement-bridge {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(86px, 12vh, 132px);
  pointer-events: none;
  opacity: var(--bridge-opacity);
  will-change: opacity;
}
.statement-bridge__rail {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  overflow: hidden;
  background: var(--line-soft);
}
.statement-bridge__rail::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--line);
  transform: scaleX(var(--bridge-scale));
  transform-origin: left center;
  will-change: transform;
}
.statement-bridge__scan {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(84px, 14vw, 220px);
  height: 1px;
  opacity: var(--bridge-scan-opacity);
  transform: translate3d(var(--bridge-shift), 0, 0);
  background: linear-gradient(90deg, transparent 0%, rgba(18,18,17,0.28) 22%, var(--ink) 50%, rgba(18,18,17,0.28) 78%, transparent 100%);
  will-change: transform, opacity;
}
.statement-bridge__tick {
  position: absolute;
  top: calc(50% - 23px);
  width: 1px;
  height: 46px;
  background: var(--line);
  transform: scaleY(var(--bridge-scale));
  transform-origin: center;
  opacity: var(--bridge-opacity);
}
.statement-bridge__tick--start { left: 0; }
.statement-bridge__tick--mid { left: 50%; }
.statement-bridge__tick--end { right: 0; }

/* ============================================================
   Services — editorial index
   ============================================================ */
.services-list { border-top: 1px solid var(--line); }
.service-row {
  position: relative;
  display: block;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.service-row__inner {
  display: grid;
  grid-template-columns: 3.4rem minmax(0, 1fr) auto;
  align-items: start;
  column-gap: var(--space-4);
  padding-block: clamp(1.6rem, 2.6vw, 2.9rem);
  transition: padding-left 0.55s var(--ease);
}
.service-row__num {
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  color: var(--ink-faint);
  padding-top: 0.5em;
  transition: color 0.4s var(--ease);
}
.service-row__body { min-width: 0; }
.service-row__name {
  font-size: var(--fs-h3);
  font-weight: 480;
  letter-spacing: -0.028em;
  line-height: 1.05;
}
.service-row__note {
  margin-top: 0.7em;
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  letter-spacing: -0.012em;
  max-width: 30ch;
}
.service-row__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45em;
  text-align: right;
  padding-top: 0.5em;
}
.service-row__tag {
  font-size: var(--fs-sm);
  font-weight: 500;
}
.service-row__sub {
  font-size: var(--fs-sm);
  color: var(--ink-faint);
}
.service-row__arrow {
  margin-top: 0.7em;
  width: 17px; height: 17px;
  color: var(--ink-faint);
  transition: transform 0.5s var(--ease), color 0.4s var(--ease);
}

/* hover-reveal media */
.service-row__media {
  position: absolute;
  top: 50%;
  right: clamp(0px, 4vw, 90px);
  width: clamp(220px, 24vw, 340px);
  aspect-ratio: 16 / 11;
  border-radius: var(--r-sm);
  overflow: hidden;
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  transform: translateY(-50%) scale(0.96) rotate(-1.5deg);
  transition: opacity 0.45s var(--ease), transform 0.55s var(--ease);
  box-shadow: 0 30px 60px -22px rgba(18,18,17,0.4);
}
.service-row__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.12) contrast(1.02);
}
@media (hover: hover) and (min-width: 900px) {
  .service-row:hover .service-row__inner { padding-left: clamp(8px, 1.4vw, 26px); }
  .service-row:hover .service-row__num { color: var(--ink); }
  .service-row:hover .service-row__arrow { color: var(--ink); transform: translate(4px, -4px); }
  .service-row:hover .service-row__media {
    opacity: 1;
    transform: translateY(-50%) scale(1) rotate(0deg);
  }
}

/* ============================================================
   Systems we connect — sticky scroll showcase
   ============================================================ */
.systems {
  padding-top: clamp(3rem, 6vw, 6.75rem);
  padding-bottom: 0;
}
.systems-head {
  --systems-y: 14px;
  --systems-opacity: 1;
  transform: translate3d(0, var(--systems-y), 0);
  opacity: var(--systems-opacity);
  will-change: transform;
}
.systems .section-head { margin-bottom: var(--space-6); }
.systems .section-head__main {
  display: block;
}
.systems .section-head h2 {
  max-width: min(66%, 920px);
  white-space: normal;
}
.systems-title {
  position: relative;
  display: inline-block;
  padding-bottom: 0;
  overflow: visible;
}
.systems-title.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}
.systems-title__line {
  display: inline-flex;
  flex-wrap: wrap;
  column-gap: 0.22em;
  row-gap: 0.02em;
  overflow: visible;
}
.systems-title__word {
  display: inline-block;
  opacity: var(--word-opacity, 0);
  transform: translate3d(0, var(--word-y, 0.72em), 0);
  filter: blur(var(--word-blur, 8px));
  will-change: opacity, transform, filter;
}
.systems-title__word > span {
  display: inline-block;
}

.systems-stage {
  position: relative;
  width: 100%;
  --systems-image-width: clamp(320px, 26vw, 430px);
  --systems-image-center-y: 50svh;
  --systems-image-start-y: clamp(12rem, 22svh, 16rem);
  --systems-image-center-ratio: 0.50;
  --systems-sticky-top: calc(var(--systems-image-center-y) - var(--systems-image-width) / 2);
  margin-bottom: 33.33vw;
}
.systems-sticky {
  position: relative;
  overflow: visible;
}
.systems-inner {
  position: relative;
  display: block;
  padding-block: 0;
}

.systems-copy {
  min-width: 0;
  width: min(66%, 920px);
}
.systems-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(2px, 0.45vw, 8px);
}
.systems-list li { display: block; }
.system-name {
  display: block;
  width: 100%;
  position: relative;
  background: transparent;
  border: 0;
  padding: 0.06em 0;
  text-align: left;
  font: inherit;
  font-family: var(--font);
  font-size: clamp(2rem, 1.3rem + 2.6vw, 3.25rem);
  line-height: 1.12;
  font-weight: 480;
  letter-spacing: -0.038em;
  color: var(--ink-faint);
  cursor: pointer;
  transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.system-name:hover { color: var(--ink-soft); }
.system-name.is-active,
.system-name[data-selected="true"] { color: var(--ink); }
.systems-capabilities-handoff {
  pointer-events: none;
}
.system-name--handoff {
  --cap-origin-opacity: 0.26;
  --cap-origin-blur: 7px;
  cursor: default;
  color: var(--ink-faint);
  opacity: var(--cap-origin-opacity);
  filter: blur(var(--cap-origin-blur));
  transform: translateY(0.02em);
  transition:
    opacity 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}
.systems-stage.is-final-tool .system-name--handoff {
  color: var(--ink-soft);
  --cap-origin-opacity: 0.72;
  --cap-origin-blur: 0px;
}
.system-watcher {
  position: absolute;
  left: 0;
  top: var(--systems-watch-offset, 100lvh);
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.systems-end-watcher {
  position: relative;
  display: block;
  height: 0;
  margin-top: clamp(6px, 1vw, 16px);
}
.system-watcher--end {
  width: 10px;
}

.systems-visual {
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  display: none;
  justify-content: center;
  align-items: flex-start;
  width: var(--systems-image-width);
  height: calc(100% + var(--systems-sticky-top));
  top: calc(-1 * var(--systems-sticky-top) + var(--systems-image-start-y));
  margin-top: 0;
}
.systems-stage[data-in-viewport] .systems-visual {
  display: flex;
}
.system-card {
  width: 100%;
  max-width: none;
  aspect-ratio: 1 / 1;
  position: sticky;
  top: calc(var(--systems-image-center-y) - var(--systems-image-width) / 2);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow: none;
}
.system-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  border-radius: inherit;
  overflow: hidden;
  background: var(--bg-soft);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.system-card__media[data-selected="true"] {
  z-index: 1;
  opacity: 1;
}
.system-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .systems-stage {
    --systems-image-width: 45vw;
    --systems-image-center-y: 50svh;
    --systems-image-center-ratio: 0.50;
    margin-bottom: 50vw;
  }
  .systems-inner {
    padding-block: 0;
  }
  .systems-copy { width: 100%; }
  .systems-visual {
    top: 0;
    height: 100%;
  }
  .system-name {
    padding: 0.12em 0;
    font-size: clamp(1.35rem, 6.1vw, 2.05rem);
    line-height: 1.08;
    letter-spacing: -0.032em;
    overflow-wrap: anywhere;
  }
  .systems .section-head h2 {
    white-space: normal;
  }
  .systems-title__line {
    flex-wrap: wrap;
    row-gap: 0.02em;
    overflow: visible;
  }
}

/* ============================================================
   Capabilities — editorial grid
   Quiet, airy: square media → name → note. No chrome.
   ============================================================ */
.capabilities {
  --cap-kicker-y: 0px;
  --cap-kicker-rotate: 0deg;
  --cap-kicker-blur: 0px;
  --cap-kicker-opacity: 1;
  --cap-kicker-scale: 1;
  --cap-line-scale: 1;
  --cap-line-opacity: 1;
  padding-block: var(--space-9);
}

/* ---------- section header ---------- */
.capabilities-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-5);
  margin-bottom: clamp(4.5rem, 8vw, 10rem);
}
.capabilities-head__top {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-4);
  padding-bottom: var(--space-4);
}
.capabilities-head__top > .eyebrow {
  font-family: var(--font);
  font-size: clamp(2rem, 1.3rem + 2.6vw, 3.25rem);
  line-height: 1.12;
  font-weight: 480;
  letter-spacing: -0.038em;
  text-transform: none;
  color: var(--ink);
}
.capabilities-head__top::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--line);
  opacity: var(--cap-line-opacity);
  transform: scaleX(var(--cap-line-scale));
  transform-origin: left center;
  will-change: transform, opacity;
}
.capabilities.is-drop-ready .capabilities-head__top .eyebrow {
  display: inline-block;
  opacity: var(--cap-kicker-opacity);
  /* translate3d forces a compositor layer so the GPU just translates the
     rasterized glyph cache instead of re-rasterizing each scroll frame.
     The blur stays on through the fall and resolves to 0 only at the end —
     it reads as motion blur and hides any sub-pixel position jitter. */
  transform:
    translate3d(0, var(--cap-kicker-y), 0)
    rotate(var(--cap-kicker-rotate))
    scale(var(--cap-kicker-scale));
  filter: blur(var(--cap-kicker-blur));
  transform-origin: left 80%;
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
}
.capabilities-head__main {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: minmax(0, 1fr);
}
.capabilities-head__title {
  font-size: clamp(2rem, 1.05rem + 2.7vw, 3.5rem);
  font-weight: 480;
  letter-spacing: -0.032em;
  line-height: 1.02;
  color: var(--ink);
  max-width: 16ch;
  text-wrap: balance;
}
.capabilities-head__lead {
  color: var(--ink);
  max-width: 44ch;
}
@media (min-width: 900px) {
  .capabilities-head__main {
    max-width: none;
  }
  .capabilities-head__title {
    font-size: clamp(1.75rem, 3vw, 3rem);
    max-width: none;
    white-space: nowrap;
  }
  .capabilities-head__lead {
    padding-bottom: 0;
  }
}

/* ---------- grid (stacked rows) ---------- */
.capabilities-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: clamp(56px, 7vw, 120px);
}
.capability {
  display: block;
  position: relative;
}

/* ---------- card (text-left, image-right; aligned to container edges) ---------- */
.capability__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: clamp(32px, 5vw, 96px);
  align-items: center;
  width: 100%;
  color: var(--ink);
}

/* ---------- media (capped square card, right-aligned to container edge) ---------- */
.capability__media {
  position: relative;
  display: block;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: clamp(16px, 1.4vw, 24px);
  background: var(--bg-soft);
  transform: translateZ(0);
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
}
.capability__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.001);
  transition: transform 0.9s var(--ease);
  will-change: transform;
}

/* ---------- body (text, vertically centered, aligned to container left) ---------- */
.capability__body {
  display: block;
  padding-top: 0;
  min-width: 0;
  grid-column: 1;
  grid-row: 1;
  max-width: 52ch;
}
.capability__name {
  display: block;
  font-size: clamp(1.4rem, 1.1rem + 1vw, 2rem);
  font-weight: 480;
  letter-spacing: -0.026em;
  line-height: 1.08;
  color: var(--ink);
  text-wrap: balance;
  max-width: 24ch;
}
.capability__note {
  display: block;
  margin-top: clamp(0.7em, 0.9vw, 0.95em);
  font-size: clamp(1.02rem, 0.96rem + 0.24vw, 1.16rem);
  line-height: 1.52;
  letter-spacing: -0.008em;
  color: var(--ink-soft);
  text-wrap: pretty;
  max-width: 48ch;
}
.capability__cue {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-top: clamp(18px, 1.8vw, 28px);
  padding: 0;
  background: transparent;
  border: 0;
  font-family: var(--font);
  font-size: clamp(0.96rem, 0.92rem + 0.14vw, 1.04rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--ink);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.4s var(--ease);
}
.capability__cue:focus { outline: none; }
.capability__cue:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 6px;
  border-radius: 4px;
}
.capability__cue-text {
  position: relative;
}
.capability__cue-text::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -0.32em;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.6s var(--ease);
}
.capability__cue-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  transition: transform 0.45s var(--ease);
}
.capability__cue-arrow svg {
  width: 100%;
  height: 100%;
}

/* ---------- hover ---------- */
@media (hover: hover) and (min-width: 900px) {
  .capability__cue:hover {
    color: var(--ink);
  }
  .capability__cue:hover .capability__cue-text::after {
    transform: scaleX(1);
  }
  .capability__cue:hover .capability__cue-arrow {
    transform: translate(3px, -3px);
  }
}

/* ---------- reveal cascade ---------- */
.capability.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease) calc(var(--i, 0) * 0.07s),
              transform 0.85s var(--ease) calc(var(--i, 0) * 0.07s);
}
.capability.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ---------- footer line ---------- */
.capabilities-foot {
  margin-top: clamp(2.8rem, 4.4vw, 4.4rem);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-5);
  align-items: baseline;
  justify-content: space-between;
}
.capabilities-foot__note {
  font-size: var(--fs-body);
  line-height: 1.5;
  color: var(--ink);
  max-width: 44ch;
  letter-spacing: -0.008em;
}
.capabilities-foot__cta {
  font-size: var(--fs-sm);
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .capabilities-grid {
    row-gap: clamp(5.6rem, 18vw, 7.4rem);
  }
  .capability__card {
    display: block;
  }
  .capability__media {
    width: 100%;
    max-width: none;
    aspect-ratio: 1 / 1;
    border-radius: clamp(11px, 3vw, 16px);
  }
  .capability__body {
    margin-top: clamp(1.85rem, 6vw, 2.7rem);
    max-width: none;
  }
  .capability__name,
  .capability__note {
    max-width: none;
  }
  .capability__note {
    margin-top: clamp(1.05rem, 3.8vw, 1.45rem);
  }
}
@media (max-width: 720px) {
  .capabilities {
    padding-block: var(--space-8);
  }
  .capabilities-head__top {
    padding-bottom: var(--space-3);
  }
  .capabilities-head__top > .eyebrow {
    font-size: clamp(1.35rem, 6.1vw, 2.05rem);
    line-height: 1.08;
    letter-spacing: -0.032em;
  }
  .capabilities-head__title {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
  }
  .capability__name {
    font-size: clamp(1.55rem, 5.4vw, 1.82rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
  }
  .capability__note {
    font-size: clamp(1rem, 3.7vw, 1.16rem);
    line-height: 1.5;
    letter-spacing: -0.01em;
  }
  .capability__cue {
    margin-top: clamp(1rem, 3.6vw, 1.35rem);
    font-size: clamp(0.98rem, 3.4vw, 1.08rem);
    line-height: 1.25;
  }
}
/* ============================================================
   Outcomes — sticky vertical sequence
   ============================================================ */
.outcomes {
  --outcomes-stage-h: auto;
  --outcomes-vh: 100svh;
  --outcomes-p: 0;
  position: relative;
  padding: 0;
  background: var(--bg);
}
.outcomes-stage {
  position: relative;
  width: 100%;
  height: var(--outcomes-stage-h);
}
.outcomes-sticky {
  position: relative;
  top: 0;
  min-height: var(--outcomes-vh);
  display: flex;
  flex-direction: column;
  overflow: visible;
  background: var(--bg);
  color: var(--ink);
  transition: background-color 0.5s var(--ease), color 0.5s var(--ease);
}
.outcomes.is-swap .outcomes-sticky {
  position: sticky;
  height: var(--outcomes-vh);
  min-height: 0;
  overflow: hidden;
}
.outcomes-sticky.is-leaving {
  background: var(--inverse-bg);
  color: var(--inverse-ink);
}

/* Compact in-sticky header */
.outcomes-head {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  column-gap: clamp(40px, 6vw, 100px);
  row-gap: clamp(16px, 1.8vh, 26px);
  padding-block: calc(var(--nav-h) + clamp(20px, 2.4vh, 36px)) clamp(18px, 2.2vh, 28px);
  align-items: end;
}
.outcomes-head__top {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-4);
}
.outcomes-head__chip {
  font-family: var(--font);
  font-size: clamp(0.88rem, 0.83rem + 0.18vw, 1rem);
  font-weight: 520;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-soft);
  transition: color 0.5s var(--ease), opacity 0.4s var(--ease);
}
.outcomes-sticky.is-leaving .outcomes-head__chip { color: var(--inverse-ink-soft); }
.outcomes-head__main {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: subgrid;
  gap: clamp(16px, 1.8vh, 24px) clamp(40px, 6vw, 100px);
  align-items: end;
}
@supports not (grid-template-columns: subgrid) {
  .outcomes-head__main {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  }
}
.outcomes-head__title {
  grid-column: 1 / -1;
  font-size: clamp(2rem, 1.05rem + 2.7vw, 3.5rem);
  font-weight: 480;
  letter-spacing: -0.032em;
  line-height: 1.02;
  color: inherit;
  text-wrap: balance;
}
.outcomes-viewport {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.outcomes-track {
  position: relative;
  height: 100%;
}
.outcome-spread {
  width: 100%;
  min-height: clamp(520px, 72svh, 760px);
  display: flex;
  align-items: center;
  position: relative;
  contain: layout paint;
}
.outcomes.is-swap .outcomes-track {
  overflow: hidden;
  will-change: contents;
}
.outcomes.is-swap .outcome-spread {
  position: absolute;
  inset: 0;
  height: 100%;
  min-height: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 15vh, 0);
  transition:
    opacity 0.62s var(--ease),
    transform 0.76s var(--ease);
  will-change: opacity, transform;
  backface-visibility: hidden;
}
.outcomes.is-swap .outcome-spread.is-before {
  transform: translate3d(0, -12vh, 0);
}
.outcomes.is-swap .outcome-spread.is-after {
  transform: translate3d(0, 12vh, 0);
}
.outcomes.is-swap .outcome-spread.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}
.outcome-spread__inner {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(20px, 3vh, 32px);
  padding-block: clamp(40px, 6vh, 90px);
}
.outcome-spread__tag {
  position: relative;
  z-index: 2;
  font-family: var(--font);
  font-size: clamp(0.88rem, 0.83rem + 0.18vw, 1rem);
  font-weight: 520;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-soft);
  transition: color 0.5s var(--ease);
}
.outcomes-sticky.is-leaving .outcome-spread__tag { color: var(--inverse-ink-soft); }
.outcome-spread__title {
  position: relative;
  z-index: 2;
  font-size: clamp(2.6rem, 1.5rem + 4.4vw, 5.8rem);
  font-weight: 480;
  letter-spacing: -0.04em;
  line-height: 0.94;
  color: inherit;
  white-space: nowrap;
  max-width: none;
}
.outcome-spread__watermark {
  position: absolute;
  left: 50%;
  bottom: -0.18em;
  transform: translateX(-50%);
  font-family: var(--font);
  font-size: clamp(12rem, 26vw, 32rem);
  font-weight: 480;
  letter-spacing: -0.05em;
  line-height: 0.78;
  color: rgba(18, 18, 17, 0.048);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
  text-transform: lowercase;
  transition: color 0.5s var(--ease);
}
.outcomes-sticky.is-leaving .outcome-spread__watermark { color: rgba(244, 243, 239, 0.05); }
.outcomes-sticky.is-leaving .outcomes-progress__track { background: var(--inverse-line); }
.outcomes-sticky.is-leaving .outcomes-progress__bar { background: var(--inverse-ink); }
.outcomes-sticky.is-leaving .outcomes-progress__count { color: var(--inverse-ink-soft); }
.outcomes-sticky.is-leaving .outcomes-progress__count b { color: var(--inverse-ink); }

.outcomes-progress {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 28px);
  padding: 0 var(--gutter) clamp(24px, 3.4vh, 44px);
  max-width: var(--maxw);
  width: 100%;
  margin-inline: auto;
  visibility: hidden;
  pointer-events: none;
}
.outcomes-progress__track {
  flex: 1;
  height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.outcomes-progress__bar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: var(--ink);
  transform: scaleX(var(--outcomes-p));
  transform-origin: left center;
  will-change: transform;
}
.outcomes-progress__count {
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  white-space: nowrap;
}
.outcomes-progress__count b {
  color: var(--ink);
  font-weight: 500;
}

/* ============================================================
   Process — sticky-stage editorial sequence
   Discover → Design → Build → Scale.
   Each frame fades + slides in. Scale finale turns green and the
   bars grow from bottom-left to top-right.
   ============================================================ */
.process {
  position: relative;
  background: var(--inverse-bg);
}
.process--inverse {
  background: var(--inverse-bg);
  color: var(--inverse-ink);
}
.process--inverse ::selection { background: var(--inverse-ink); color: var(--inverse-bg); }
.process--inverse .eyebrow { color: var(--process-ink-faint, var(--inverse-ink-faint)); }

/* --- stage / sticky shell ---
   Height is set in CSS so the sticky pins even before JS runs.
   4 stops × ~1.4 viewport-heights of dwell + 0.4 settle ≈ 6vh. */
.process-stage {
  position: relative;
  width: 100%;
  height: calc(6 * 100svh);
}
.process-sticky {
  --process-bg: var(--inverse-bg);
  --process-ink: var(--inverse-ink);
  --process-ink-soft: var(--inverse-ink-soft);
  --process-ink-faint: var(--inverse-ink-faint);
  --process-line: var(--inverse-line);
  --process-artifact-bg: #0f0f0e;
  --process-artifact-wash: rgba(244, 243, 239, 0.025);
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--process-bg);
  color: var(--process-ink);
  transition: background-color 0.55s var(--ease), color 0.55s var(--ease);
}
.process-sticky.is-scale {
  --process-bg: var(--inverse-bg);
  --process-ink: var(--inverse-ink);
  --process-ink-soft: var(--inverse-ink-soft);
  --process-ink-faint: var(--inverse-ink-faint);
  --process-line: var(--inverse-line);
  --process-artifact-bg: #0f0f0e;
  --process-artifact-wash: rgba(244, 243, 239, 0.025);
}

/* --- compact header inside the sticky --- */
.process-head {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  column-gap: clamp(40px, 6vw, 100px);
  row-gap: clamp(14px, 1.6vh, 24px);
  padding-block: calc(var(--nav-h) + clamp(20px, 2.4vh, 36px)) clamp(18px, 2vh, 28px);
  align-items: end;
}
.process-head__top {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-4);
  padding-bottom: clamp(10px, 1.4vh, 18px);
  border-bottom: 1px solid var(--process-line);
}
.process-head__count {
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  letter-spacing: 0.14em;
  color: var(--process-ink-soft);
}
.process-head__count b {
  color: var(--process-ink);
  font-weight: 500;
}
.process-head__count i { font-style: normal; }
.process-head__index {
  font-family: var(--font);
  font-size: clamp(0.95rem, 0.85rem + 0.4vw, 1.18rem);
  letter-spacing: -0.01em;
  color: var(--process-ink-faint);
  font-variant-numeric: tabular-nums slashed-zero;
  align-self: end;
}
.process-head__index b {
  color: var(--process-ink);
  font-weight: 500;
}
.process-head__index i {
  font-style: normal;
  padding-inline: 0.5em;
  color: var(--process-ink-faint);
}
.process-head__main {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: subgrid;
  gap: clamp(16px, 1.8vh, 24px) clamp(40px, 6vw, 100px);
  align-items: end;
}
@supports not (grid-template-columns: subgrid) {
  .process-head__main { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
}
.process-head__title {
  font-size: clamp(2rem, 1.05rem + 2.7vw, 3.5rem);
  font-weight: 480;
  letter-spacing: -0.032em;
  line-height: 1.02;
  color: var(--process-ink);
  text-wrap: balance;
  max-width: 18ch;
}
.process-head__lead {
  font-size: var(--fs-lead);
  color: var(--process-ink-soft);
  letter-spacing: -0.012em;
  line-height: 1.42;
  max-width: 42ch;
  text-wrap: pretty;
}

/* --- frame viewport --- */
.process-viewport {
  position: relative;
  flex: 1;
  overflow: hidden;
}
.process-frame {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: stretch;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.85s var(--ease);
  pointer-events: none;
  will-change: opacity, transform;
}
.process-frame.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  transition-delay: 0.05s;
}
.process-frame.is-leaving {
  opacity: 0;
  transform: translateY(-28px);
}

.process-frame__inner {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  column-gap: clamp(40px, 6vw, 110px);
  align-items: center;
  padding-block: clamp(20px, 3vh, 40px);
}

/* --- copy column --- */
.process-frame__copy {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2vh, 26px);
  min-width: 0;
  min-height: clamp(18rem, 32.5vh, 20rem);
  max-width: 32ch;
}
.process-frame__step {
  display: block;
  font-family: var(--font);
  font-size: clamp(1.2rem, 0.9rem + 0.95vw, 1.85rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--process-ink-soft);
  transition: color 0.6s var(--ease);
}
.process-frame__name {
  font-size: clamp(3rem, 1.4rem + 5.6vw, 6.4rem);
  font-weight: 460;
  letter-spacing: -0.045em;
  line-height: 0.92;
  color: var(--process-ink);
  margin-top: clamp(-2px, 0vh, 4px);
  transition: color 0.6s var(--ease);
}
.process-frame__note {
  font-size: clamp(1.05rem, 0.95rem + 0.45vw, 1.24rem);
  color: var(--process-ink);
  letter-spacing: -0.012em;
  line-height: 1.46;
  max-width: 36ch;
}
.process-frame__deliverable {
  font-size: clamp(0.92rem, 0.86rem + 0.22vw, 1.02rem);
  color: var(--process-ink-soft);
  letter-spacing: -0.008em;
  line-height: 1.4;
  padding-top: clamp(14px, 1.6vh, 20px);
  border-top: 1px solid var(--process-line);
  max-width: 36ch;
}

/* --- visual column --- */
.process-frame__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
}

/* ============================================================
   Artifact — editorial typographic specimen
   No card chrome. Soft inset panel matching the site's
   capability__media rounded corners. Geist sans throughout,
   mono used only for actual data tokens (times, weeks, deltas).
   ============================================================ */
.artifact {
  position: relative;
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.8vh, 22px);
  color: var(--process-ink);
  padding: clamp(28px, 3.6vh, 44px) clamp(28px, 2.4vw, 44px);
  background:
    radial-gradient(120% 80% at 0% 0%, var(--process-artifact-wash), rgba(244, 243, 239, 0) 60%),
    var(--process-artifact-bg);
  border-radius: clamp(16px, 1.4vw, 22px);
}
.artifact__caption {
  font-size: clamp(0.88rem, 0.84rem + 0.18vw, 0.98rem);
  color: var(--process-ink-soft);
  letter-spacing: -0.006em;
  line-height: 1.4;
  padding-bottom: clamp(14px, 1.6vh, 20px);
  border-bottom: 1px solid var(--process-line);
}
.artifact__body {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.2vh, 28px);
}

/* --- Step 01 — Listen: discovery findings --- */
.findings {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
.findings li {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 24px;
  align-items: baseline;
  padding-block: clamp(12px, 1.6vh, 18px);
  border-bottom: 1px solid var(--process-line);
}
.findings li:first-child { padding-top: 0; }
.findings__label {
  font-size: clamp(0.98rem, 0.92rem + 0.24vw, 1.12rem);
  color: var(--process-ink-soft);
  letter-spacing: -0.008em;
}
.findings__value {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-size: clamp(1.12rem, 0.98rem + 0.45vw, 1.42rem);
  font-weight: 460;
  letter-spacing: -0.022em;
  color: var(--process-ink);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.findings__value em {
  font-style: normal;
  font-size: 0.7em;
  letter-spacing: -0.006em;
  color: var(--process-ink-faint);
  font-weight: 400;
}
.findings li.is-flag .findings__label { color: var(--process-ink); }
.findings li.is-flag .findings__value { color: var(--process-green); }
.findings li.is-flag::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 50%;
  width: 4px;
  height: 60%;
  transform: translateY(-50%);
  background: var(--process-green);
  border-radius: 2px;
}
.findings__foot {
  margin-top: clamp(14px, 1.6vh, 20px);
  font-size: clamp(0.88rem, 0.84rem + 0.18vw, 0.96rem);
  color: var(--process-ink-faint);
  letter-spacing: -0.006em;
  line-height: 1.45;
  max-width: 42ch;
}

/* --- Step 02 — Plan: scope listing --- */
.scope {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
.scope li {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  column-gap: 18px;
  align-items: baseline;
  padding-block: clamp(12px, 1.6vh, 18px);
  border-bottom: 1px solid var(--process-line);
}
.scope li:first-child { padding-top: 0; }
.scope__n {
  font-family: var(--font-mono);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  color: var(--process-ink-faint);
  font-variant-numeric: tabular-nums;
}
.scope__name {
  font-size: clamp(1.08rem, 0.98rem + 0.4vw, 1.32rem);
  font-weight: 460;
  letter-spacing: -0.018em;
  color: var(--process-ink);
  line-height: 1.2;
}
.scope__wk {
  font-family: var(--font-mono);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  color: var(--process-ink-soft);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.scope__goal,
.scope__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  font-size: clamp(0.92rem, 0.86rem + 0.22vw, 1.02rem);
  color: var(--process-ink-soft);
  letter-spacing: -0.008em;
}
.scope__goal {
  padding-bottom: clamp(14px, 1.8vh, 22px);
  border-bottom: 1px solid var(--process-line);
}
.scope__total {
  padding-top: clamp(14px, 1.6vh, 18px);
}
.scope__goal b,
.scope__total b {
  color: var(--process-ink);
  font-weight: 500;
  text-align: right;
  letter-spacing: -0.014em;
  max-width: 22ch;
  line-height: 1.3;
}
.scope__goal b {
  font-size: clamp(1rem, 0.92rem + 0.32vw, 1.18rem);
  font-weight: 460;
}

/* --- Step 03 — Build: weekly note (short, friendly, glance-able) --- */
.note__meta {
  font-size: clamp(0.88rem, 0.84rem + 0.18vw, 0.98rem);
  color: var(--process-ink-soft);
  letter-spacing: -0.006em;
}
.note__body {
  font-size: clamp(1.2rem, 0.98rem + 0.78vw, 1.55rem);
  font-weight: 460;
  letter-spacing: -0.022em;
  line-height: 1.36;
  color: var(--process-ink);
  text-wrap: pretty;
  max-width: 32ch;
}
.note__foot {
  margin-top: clamp(6px, 0.8vh, 12px);
  padding-top: clamp(14px, 1.6vh, 20px);
  border-top: 1px solid var(--process-line);
  font-size: clamp(0.88rem, 0.84rem + 0.18vw, 0.96rem);
  color: var(--process-ink-faint);
  letter-spacing: -0.006em;
}

/* --- Step 04 — Report: headline KPI + supporting rows --- */
.report__hero {
  padding-bottom: clamp(16px, 2vh, 24px);
  border-bottom: 1px solid var(--process-line);
}
.report__hero-label {
  font-size: clamp(0.92rem, 0.88rem + 0.18vw, 1.02rem);
  color: var(--process-ink-soft);
  letter-spacing: -0.008em;
}
.report__hero-num {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-top: 6px;
  color: var(--process-green);
  font-variant-numeric: tabular-nums;
}
.report__hero-num span {
  font-size: clamp(2.4rem, 1.4rem + 3.2vw, 4rem);
  font-weight: 460;
  letter-spacing: -0.045em;
  line-height: 0.95;
}
.report__hero-num em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: clamp(0.95rem, 0.88rem + 0.24vw, 1.12rem);
  letter-spacing: 0.01em;
  color: var(--process-green);
}
.report__hero-prev {
  margin-top: 8px;
  font-size: clamp(0.88rem, 0.84rem + 0.18vw, 0.96rem);
  color: var(--process-ink-faint);
  letter-spacing: -0.006em;
}
.kpi {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.kpi__row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  padding-block: clamp(10px, 1.4vh, 14px);
  border-bottom: 1px solid var(--process-line);
}
.kpi__row:first-child { padding-top: 0; }
.kpi__row:last-child { border-bottom: 0; }
.kpi__row dt {
  font-size: clamp(0.96rem, 0.9rem + 0.22vw, 1.08rem);
  letter-spacing: -0.008em;
  color: var(--process-ink-soft);
}
.kpi__row dd {
  display: inline-flex;
  align-items: baseline;
  gap: 16px;
  font-variant-numeric: tabular-nums;
}
.kpi__num {
  font-size: clamp(1.15rem, 0.95rem + 0.6vw, 1.45rem);
  font-weight: 460;
  letter-spacing: -0.022em;
  color: var(--process-ink);
  line-height: 1.1;
}
.kpi__delta {
  font-family: var(--font-mono);
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  min-width: 5ch;
  text-align: right;
  color: var(--process-ink-soft);
}
.kpi__delta.is-up   { color: var(--process-green); }
.kpi__delta.is-down { color: var(--process-green); }
.kpi__spark {
  display: block;
  width: 100%;
  height: 22px;
  margin-top: clamp(8px, 1vh, 12px);
  color: var(--process-green);
  opacity: 0.5;
  overflow: visible;
}

/* --- choreography on activate (gentle stagger; matches site's reveal feel) --- */
.process-frame .findings li,
.process-frame .scope li,
.process-frame .log li,
.process-frame .kpi__row,
.process-frame .scope__goal,
.process-frame .scope__total,
.process-frame .findings__foot,
.process-frame .report__hero {
  transform: translateY(10px);
  opacity: 0;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.process-frame.is-active .findings li,
.process-frame.is-active .scope li,
.process-frame.is-active .log li,
.process-frame.is-active .kpi__row,
.process-frame.is-active .scope__goal,
.process-frame.is-active .scope__total,
.process-frame.is-active .findings__foot,
.process-frame.is-active .report__hero {
  transform: none;
  opacity: 1;
}

.process-frame.is-active .findings li:nth-child(1) { transition-delay: 0.12s; }
.process-frame.is-active .findings li:nth-child(2) { transition-delay: 0.22s; }
.process-frame.is-active .findings li:nth-child(3) { transition-delay: 0.32s; }
.process-frame.is-active .findings li:nth-child(4) { transition-delay: 0.42s; }
.process-frame.is-active .findings li:nth-child(5) { transition-delay: 0.52s; }
.process-frame.is-active .findings__foot { transition-delay: 0.66s; }

.process-frame.is-active .scope__goal { transition-delay: 0.10s; }
.process-frame.is-active .scope li:nth-child(1) { transition-delay: 0.22s; }
.process-frame.is-active .scope li:nth-child(2) { transition-delay: 0.32s; }
.process-frame.is-active .scope li:nth-child(3) { transition-delay: 0.42s; }
.process-frame.is-active .scope li:nth-child(4) { transition-delay: 0.52s; }
.process-frame.is-active .scope__total { transition-delay: 0.64s; }

.process-frame.is-active .log li:nth-child(1) { transition-delay: 0.18s; }
.process-frame.is-active .log li:nth-child(2) { transition-delay: 0.30s; }
.process-frame.is-active .log li:nth-child(3) { transition-delay: 0.42s; }
.process-frame.is-active .log li:nth-child(4) { transition-delay: 0.54s; }

.process-frame.is-active .report__hero { transition-delay: 0.10s; }
.process-frame.is-active .kpi__row:nth-child(1) { transition-delay: 0.30s; }
.process-frame.is-active .kpi__row:nth-child(2) { transition-delay: 0.40s; }
.process-frame.is-active .kpi__row:nth-child(3) { transition-delay: 0.50s; }

.kpi__spark polyline {
  stroke-dasharray: 460;
  stroke-dashoffset: 460;
  transition: stroke-dashoffset 1.6s var(--ease) 0.7s;
}
.process-frame.is-active .kpi__spark polyline { stroke-dashoffset: 0; }

/* --- when Step 04 is active: green accent on the name --- */
.process-frame--scale.is-active .process-frame__name { color: var(--process-green); }

/* token (kept local to the section) */
.process { --process-green: #3ddc84; }

/* --- progress + dots --- */
.process-progress {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 28px);
  padding: 0 var(--gutter) clamp(24px, 3vh, 40px);
  max-width: var(--maxw);
  width: 100%;
  margin-inline: auto;
}
.process-progress__track {
  flex: 1;
  position: relative;
  height: 1px;
  background: var(--process-line);
  overflow: hidden;
}
.process-progress__bar {
  position: absolute;
  inset: 0;
  width: 0%;
  background: var(--process-ink);
  transition: width 0.4s var(--ease), background-color 0.6s var(--ease);
}
.process-frame--scale.is-active ~ .process-progress .process-progress__bar,
.process-sticky.is-scale .process-progress__bar { background: var(--process-green); }
.process-progress__steps {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.process-progress__steps span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--process-ink-faint);
  transition: background-color 0.45s var(--ease), transform 0.45s var(--ease);
}
.process-progress__steps span.is-active {
  background: var(--process-ink);
  transform: scale(1.25);
}
.process-sticky.is-scale .process-progress__steps span.is-active {
  background: var(--process-green);
}

/* --- responsive --- */
@media (max-width: 900px) {
  .process-stage {
    height: auto !important;
  }
  .process-sticky {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    overflow: visible;
    padding-bottom: clamp(48px, 12vw, 84px);
  }
  .process-head {
    grid-template-columns: minmax(0, 1fr);
    padding-block: calc(var(--nav-h) + clamp(30px, 8vw, 52px)) clamp(26px, 7vw, 42px);
    row-gap: 14px;
  }
  .process-head__top { padding-bottom: 12px; }
  .process-head__main { grid-template-columns: minmax(0, 1fr); }
  .process-head__title {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
    max-width: none;
  }
  .process-head__lead { display: none; }
  .process-viewport {
    flex: none;
    overflow: visible;
    display: grid;
    gap: clamp(42px, 12vw, 74px);
  }
  .process-frame,
  .process-frame.is-active,
  .process-frame.is-leaving {
    position: relative;
    inset: auto;
    display: block;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    transition: none;
    will-change: auto;
  }
  .process-frame__inner {
    height: auto;
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
    align-items: start;
    row-gap: clamp(20px, 5vw, 30px);
    padding-block: 0;
  }
  .process-frame__copy {
    position: relative;
    gap: clamp(10px, 1.4vh, 16px);
    min-height: 0;
    max-width: none;
    padding-left: 32px;
  }
  .process-frame__copy::before,
  .process-frame__copy::after {
    content: '';
    position: absolute;
    left: 8px;
  }
  .process-frame__copy::before {
    top: 9px;
    bottom: -14px;
    width: 1px;
    background: var(--process-line);
  }
  .process-frame__copy::after {
    top: 8px;
    width: 9px;
    height: 9px;
    transform: translateX(-4px);
    border-radius: 50%;
    background: var(--process-ink);
    box-shadow: 0 0 0 5px var(--process-bg);
  }
  .process-frame--scale .process-frame__copy::after { background: var(--process-green); }
  .process-frame:last-child .process-frame__copy::before { bottom: calc(100% - 46px); }
  .process-frame__step { font-size: clamp(1.05rem, 4.4vw, 1.35rem); }
  .process-frame__name { font-size: clamp(2.4rem, 11vw, 3.8rem); }
  .process-frame__note { font-size: 0.98rem; max-width: none; }
  .process-frame__deliverable { font-size: 0.9rem; max-width: none; padding-top: 12px; }
  .process-frame__visual {
    width: 100%;
    padding-left: 32px;
  }
  .artifact {
    width: 100%;
    max-width: none;
    padding: clamp(18px, 2.4vh, 26px) clamp(18px, 5vw, 24px);
    gap: 12px;
    border-radius: 12px;
  }
  .artifact__body { gap: 14px; }
  .findings li { column-gap: 14px; }
  .findings__label { font-size: 0.94rem; }
  .findings__value { font-size: 1.05rem; }
  .findings li.is-flag::before { left: -12px; }
  .log li { grid-template-columns: 40px 1fr auto; column-gap: 12px; }
  .log p { font-size: 0.98rem; }
  .log__date, .log__status { font-size: 0.78rem; }
  .scope li { grid-template-columns: 28px 1fr auto; column-gap: 12px; }
  .scope__name { font-size: 1rem; }
  .scope__n, .scope__wk { font-size: 0.78rem; }
  .scope__goal b, .scope__total b { font-size: 0.94rem; }
  .report__hero-num span { font-size: clamp(2rem, 9vw, 2.6rem); }
  .report__hero-num em { font-size: 0.86rem; }
  .kpi__row dt { font-size: 0.92rem; }
  .kpi__num { font-size: 1.05rem; }
  .kpi__delta { font-size: 0.78rem; }
  .process-frame .findings li,
  .process-frame .scope li,
  .process-frame .log li,
  .process-frame .kpi__row,
  .process-frame .scope__goal,
  .process-frame .scope__total,
  .process-frame .findings__foot,
  .process-frame .report__hero,
  .kpi__spark polyline {
    transform: none;
    opacity: 1;
    transition: none;
  }
  .kpi__spark polyline { stroke-dashoffset: 0; }
  .process-progress { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .process-frame {
    transition: opacity 0.2s linear, transform 0.2s linear;
  }
  .findings li,
  .scope li,
  .log li,
  .kpi__row,
  .scope__goal,
  .scope__total,
  .findings__foot,
  .report__hero,
  .kpi__spark polyline {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  .kpi__spark polyline { stroke-dashoffset: 0 !important; }
  .log li.is-active::after { transform: scaleX(1) !important; transition: none !important; }
  .build-bar__seg.is-current { transform: scaleX(1) !important; transition: none !important; }
}

/* nav goes inverse over the dark process panel */
.nav.is-inverse .nav-links a { color: var(--inverse-ink); }
.nav.is-inverse .btn--primary { background: var(--inverse-ink); color: var(--inverse-bg); }
.nav.is-inverse .btn--primary:hover { background: #ffffff; }

/* ============================================================
   Book
   ============================================================ */
.book .container { max-width: 980px; }
.book .section-head { text-align: center; }
.book .section-head__top { justify-content: center; }
.book .section-head h2 { margin-inline: auto; }
.book__lead {
  text-align: center;
  margin: var(--space-4) auto 0;
  max-width: 48ch;
}
.book__frame {
  margin-top: var(--space-6);
  border: 0;
  border-radius: var(--r);
  overflow: hidden;
  background: #ffffff !important;
  box-shadow: none;
}
.calendly-inline-widget {
  width: 100%;
  height: 760px !important;
  min-height: 760px;
  background: #ffffff !important;
  background-color: #ffffff !important;
  color-scheme: light;
}
.calendly-inline-widget.is-expanded {
  height: 1120px !important;
  min-height: 1120px;
}
.calendly-inline-widget iframe {
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-height: 760px;
  border: 0;
  background: #ffffff !important;
  background-color: #ffffff !important;
  box-shadow: none;
}
.calendly-inline-widget.is-expanded iframe { min-height: 1120px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: #ffffff; }
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-5);
  padding-block: clamp(1.25rem, 2vw, 1.85rem);
  font-size: var(--fs-h4);
  font-weight: 460;
  letter-spacing: -0.018em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  position: relative;
  width: 15px; height: 15px;
  flex-shrink: 0;
  margin-top: 0.32em;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.faq-icon::before { left: 0; top: 6.8px; width: 15px; height: 1.4px; }
.faq-icon::after  { left: 6.8px; top: 0; width: 1.4px; height: 15px; }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s var(--ease);
}
.faq-body p {
  padding: 0 12% 1.7rem 0;
  font-size: var(--fs-body);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 62ch;
}

/* ============================================================
   Lightbox
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 56px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 11, 0.82);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}
.lightbox__body {
  position: relative;
  transform: scale(0.97);
  transition: transform 0.34s var(--ease);
}
.lightbox.is-open .lightbox__body { transform: scale(1); }
.lightbox__img {
  display: block;
  max-width: min(1200px, 92vw);
  max-height: 84vh;
  width: auto; height: auto;
  border-radius: var(--r);
  box-shadow: 0 50px 100px -28px rgba(0, 0, 0, 0.7);
}
.lightbox__close {
  position: absolute;
  top: -14px; right: -14px;
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--inverse-ink);
  color: var(--inverse-bg);
  transition: transform 0.2s var(--ease);
}
.lightbox__close svg { width: 18px; height: 18px; }
.lightbox__close:hover { transform: scale(1.08); }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--inverse-bg);
  color: var(--inverse-ink);
  padding-top: var(--space-9);
  overflow: hidden;
}
.footer ::selection { background: var(--inverse-ink); color: var(--inverse-bg); }
.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto auto;
  gap: var(--space-6) var(--space-7);
  padding-bottom: var(--space-8);
}
.footer-lead {
  font-size: var(--fs-h3);
  font-weight: 460;
  letter-spacing: -0.026em;
  line-height: 1.16;
  max-width: 16ch;
}
.footer-lead a { color: var(--inverse-ink-soft); transition: color 0.4s var(--ease); }
.footer-cta { margin-top: var(--space-5); }
.footer-col { display: flex; flex-direction: column; gap: 0.85em; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: var(--fs-caption);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--inverse-ink-faint);
  margin-bottom: 0.5em;
}
.footer-col a {
  font-size: var(--fs-sm);
  color: var(--inverse-ink-soft);
  width: fit-content;
  transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--inverse-ink); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: space-between;
  align-items: center;
  padding-block: var(--space-4);
  border-top: 1px solid var(--inverse-line);
  font-size: var(--fs-sm);
  color: var(--inverse-ink-soft);
}
.footer-bottom a:hover { color: var(--inverse-ink); }

.footer-legal {
  display: flex;
  gap: var(--space-4);
}
.footer-legal a {
  color: var(--inverse-ink-soft);
  transition: color 0.3s var(--ease);
}
.footer-legal a:hover { color: var(--inverse-ink); }

.book__fallback {
  margin-top: var(--space-3);
  font-size: var(--fs-sm);
  text-align: center;
}
.book__fallback a {
  color: var(--ink);
  text-decoration: underline;
}

/* ============================================================
   Legal pages (privacy, terms)
   ============================================================ */
.nav--legal { position: sticky; top: 0; background: var(--paper, #fff); }
.section.legal { padding-block: clamp(5rem, 11vw, 9rem) clamp(4rem, 8vw, 7rem); }
.legal__inner { max-width: 760px; margin-inline: auto; }
.legal__head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.legal__head h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 480;
  letter-spacing: -0.02em;
  line-height: 1.04;
  margin: 0.4rem 0 0.6rem;
}
.legal__meta { color: var(--ink-soft, #555); font-size: var(--fs-sm); margin: 0; }
.legal__intro { font-size: clamp(1.05rem, 1.4vw, 1.18rem); line-height: 1.55; margin-bottom: 1.4rem; }
.section.legal h2 {
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  font-weight: 480;
  letter-spacing: -0.005em;
  margin: 2.4rem 0 0.6rem;
  line-height: 1.25;
}
.section.legal p,
.section.legal li { line-height: 1.6; font-size: 1rem; }
.section.legal p { margin: 0 0 0.9rem; }
.section.legal ul {
  margin: 0 0 1.1rem;
  padding-left: 1.15rem;
  list-style: disc;
}
.section.legal li { margin-bottom: 0.4rem; }
.section.legal a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.section.legal a:hover { opacity: 0.7; }
.section.legal strong { font-weight: 520; }
.legal__address {
  font-style: normal;
  line-height: 1.6;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--line, #e5e5e5);
  border-radius: 6px;
  margin-top: 0.6rem;
}

/* ============================================================
   Service pages — matched to homepage type & color tokens
   ============================================================ */
.service-hero {
  padding-block: clamp(6rem, 13vw, 11rem) clamp(3.5rem, 6vw, 6rem);
}
.service-hero__crumb {
  font-family: var(--font);
  font-size: var(--fs-sm);
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-soft);
  margin: 0 0 2.4rem;
}
.service-hero__crumb a { color: var(--ink-soft); text-decoration: none; border-bottom: 1px solid var(--ink-faint); transition: color 0.25s var(--ease); }
.service-hero__crumb a:hover { color: var(--ink); }
.service-hero__crumb span[aria-hidden] { margin: 0 0.55em; color: var(--ink-faint); }

.service-hero__title {
  font-size: var(--fs-display);
  font-weight: 480;
  letter-spacing: -0.038em;
  line-height: 1.01;
  margin: 0 0 2rem;
  max-width: 22ch;
  text-wrap: balance;
}
.service-hero__title em {
  font-style: normal;
  color: var(--ink-faint);
}
.service-hero__lead {
  max-width: 52ch;
  margin: 0 0 2.6rem;
}
.service-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem 2rem;
}
.service-hero__sub {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--ink);
}
.service-hero__sub svg { width: 14px; height: 14px; }

.service-section {
  --service-copy: var(--fs-lead);
  --service-note: clamp(1.02rem, 0.96rem + 0.24vw, 1.16rem);
  --service-small: var(--fs-sm);
  padding-block: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid var(--line, #e5e5e5);
}
.service-section__inner { max-width: 1040px; margin-inline: auto; }

/* match the homepage's capabilities-head structure: eyebrow above, big H2 below */
.service-section .eyebrow {
  display: block;
  margin-bottom: clamp(1.2rem, 2.2vw, 1.9rem);
  font-size: clamp(2rem, 1.3rem + 2.6vw, 3.25rem);
  font-weight: 480;
  line-height: 1.12;
  letter-spacing: -0.038em;
  color: var(--ink);
}
.service-section__title {
  font-size: clamp(2rem, 1.05rem + 2.7vw, 3.5rem);
  font-weight: 480;
  letter-spacing: -0.032em;
  line-height: 1.02;
  margin: 0 0 clamp(1.4rem, 2.6vw, 2rem);
  max-width: 22ch;
  text-wrap: balance;
}
@media (min-width: 900px) {
  .service-section__title { font-size: clamp(1.75rem, 3vw, 3rem); }
}
.service-section__title em {
  font-style: normal;
  color: var(--ink-faint);
}
.service-section p {
  font-size: var(--service-copy);
  line-height: 1.5;
  margin: 0 0 1.15rem;
  max-width: 60ch;
  color: var(--ink-soft);
  letter-spacing: -0.011em;
}
.service-section--why p { color: var(--ink-soft); }

/* Included — clean two-column bordered list */
.service-included {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 3rem;
  border-top: 1px solid var(--line, #e5e5e5);
}
.service-included li {
  padding: clamp(1.05rem, 1.8vw, 1.3rem) 0;
  border-bottom: 1px solid var(--line, #e5e5e5);
  line-height: 1.52;
  font-size: var(--service-note);
  color: var(--ink-soft);
  max-width: 72ch;
  letter-spacing: -0.008em;
}
.service-included strong { color: var(--ink); font-weight: 520; }
.service-included a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
@media (min-width: 760px) {
  .service-included { grid-template-columns: 1fr 1fr; }
  .service-included li { max-width: none; }
}

/* Process — no numbers, just step name + note, separated by hairlines */
.service-process {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line, #e5e5e5);
}
.service-process li {
  padding: clamp(1.45rem, 2.7vw, 2rem) 0;
  border-bottom: 1px solid var(--line, #e5e5e5);
}
.service-process li > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}
@media (min-width: 760px) {
  .service-process li > div {
    grid-template-columns: 18rem 1fr;
    gap: 2.5rem;
    align-items: baseline;
  }
}
.service-process h3 {
  font-size: clamp(1.4rem, 1.1rem + 1vw, 2rem);
  font-weight: 480;
  letter-spacing: -0.026em;
  margin: 0;
  line-height: 1.08;
  color: var(--ink);
  text-wrap: balance;
}
.service-process p {
  margin: 0;
  font-size: var(--service-note);
  line-height: 1.52;
  color: var(--ink-soft);
  max-width: 48ch;
  letter-spacing: -0.008em;
}

/* Artifact — large bordered card with sober background */
.service-artifact {
  margin: clamp(1.8rem, 3.4vw, 2.8rem) 0 0;
  padding: clamp(1.4rem, 3.8vw, 3.6rem);
  border: 1px solid var(--line, #e5e5e5);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  overflow: hidden;
}
.service-artifact__caption {
  font-family: var(--font);
  font-size: var(--service-small);
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  margin-bottom: clamp(1.4rem, 3vw, 2.6rem);
}
.service-artifact__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.service-artifact__list li {
  display: grid;
  grid-template-columns: minmax(11rem, 0.34fr) minmax(0, 1fr);
  gap: clamp(1rem, 2.4vw, 2.4rem);
  padding: clamp(1rem, 1.9vw, 1.45rem) 0;
  border-bottom: 1px solid var(--line, #e5e5e5);
  align-items: baseline;
}
.service-artifact__list li:last-child { border-bottom: 0; }
.service-artifact__list span {
  display: inline-flex;
  align-items: baseline;
  gap: 0.7rem;
  font-weight: 520;
  font-size: var(--service-note);
  color: var(--ink);
  min-width: 0;
}
.service-artifact__list em {
  font-style: normal;
  color: var(--ink);
  font-size: var(--service-note);
  line-height: 1.52;
}
@media (max-width: 640px) {
  .service-artifact { padding: 1.15rem; }
  .service-artifact__caption { margin-bottom: 1.2rem; }
  .service-artifact__list li { grid-template-columns: 1fr; gap: 0.35rem; padding: 1rem 0; }
}
.service-artifact__list--two-col li { grid-template-columns: minmax(9rem, 0.28fr) minmax(0, 1fr); }
.service-section .service-artifact__foot {
  font-size: var(--service-small);
  color: var(--ink);
  margin: clamp(1.5rem, 3vw, 2.4rem) 0 0;
  padding-top: clamp(1rem, 2vw, 1.45rem);
  border-top: 1px solid var(--line, #e5e5e5);
  line-height: 1.5;
  max-width: 58ch;
}
.service-artifact__foot a { color: inherit; text-decoration: underline; }

.kpi-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.15rem);
  margin: 0;
}
.kpi-strip > div {
  border: 1px solid var(--line, #e5e5e5);
  border-radius: 7px;
  padding: clamp(1rem, 2vw, 1.45rem);
  background: #fff;
  min-width: 0;
}
.kpi-strip dt {
  font-size: var(--service-small);
  font-family: var(--font);
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  margin-bottom: 0.45rem;
}
.kpi-strip dd {
  margin: 0;
  font-size: clamp(1.25rem, 1rem + 0.95vw, 1.7rem);
  font-weight: 480;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.02;
  font-variant-numeric: tabular-nums;
}
.kpi-strip dd em {
  display: inline-block;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--ink);
  margin-left: 0.45em;
  letter-spacing: 0;
}
@media (min-width: 640px) {
  .kpi-strip { grid-template-columns: repeat(4, 1fr); }
}

.bar-chart {
  display: grid;
  gap: clamp(0.75rem, 1.7vw, 1.1rem);
  padding-block: 0.2rem;
}
.bar-chart__row {
  display: grid;
  grid-template-columns: minmax(5.25rem, 7rem) minmax(0, 1fr);
  gap: clamp(0.85rem, 2vw, 1.8rem);
  align-items: center;
}
.bar-chart__label {
  font-family: var(--font);
  font-size: var(--service-small);
  color: var(--ink);
  letter-spacing: 0;
}
.bar-chart__bar {
  position: relative;
  height: clamp(2.15rem, 4vw, 2.8rem);
  border-radius: 7px;
  background:
    repeating-linear-gradient(90deg, transparent 0, transparent calc(25% - 1px), rgba(18,18,17,0.08) calc(25% - 1px), rgba(18,18,17,0.08) 25%),
    rgba(18,18,17,0.06);
  overflow: visible;
}
.bar-chart__bar::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar-w);
  min-width: 1.65rem;
  border-radius: inherit;
  background: var(--ink);
}
.bar-chart__bar em {
  position: absolute;
  left: min(calc(var(--bar-w) + 0.75rem), calc(100% - 2.7rem));
  top: 50%;
  transform: translateY(-50%);
  font-style: normal;
  font-family: var(--font);
  font-size: var(--service-small);
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  z-index: 1;
}
@media (max-width: 640px) {
  .bar-chart__row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
  .bar-chart__label { font-size: 0.86rem; }
  .bar-chart__bar { height: 2.3rem; }
}

.service-artifact--report {
  --process-line: var(--line);
  --process-ink: var(--ink);
  --process-ink-soft: var(--ink);
  --process-ink-faint: var(--ink);
  --process-green: var(--ink);
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.4rem);
}
.service-artifact--report .service-artifact__caption,
.service-artifact--report .service-artifact__foot { grid-column: 1 / -1; }
.service-artifact--report .report__hero {
  padding: 0 0 clamp(1.2rem, 2.4vw, 1.8rem);
  border-bottom: 1px solid var(--line);
}
.service-artifact--report .report__hero-label,
.service-artifact--report .report__hero-prev {
  margin: 0;
  max-width: none;
  font-size: var(--service-small);
  line-height: 1.45;
  color: var(--ink);
}
.service-artifact--report .report__hero-num {
  margin: 0.55rem 0 0.5rem;
  max-width: none;
}
.service-artifact--report .report__hero-num span {
  font-size: clamp(2rem, 1.35rem + 2vw, 3.15rem);
}
.service-artifact--report .report__hero-num em {
  font-size: var(--service-small);
}
.service-artifact--report .kpi__row dt {
  font-size: var(--service-copy);
  color: var(--ink);
}
.service-artifact--report .kpi__num {
  font-size: clamp(1.08rem, 0.98rem + 0.38vw, 1.28rem);
}
.service-artifact--report .kpi__delta {
  font-size: var(--service-small);
}
.service-artifact--report .kpi {
  gap: 0;
}
.service-artifact--report .kpi__row {
  padding-block: clamp(0.9rem, 1.8vw, 1.2rem);
}
@media (min-width: 760px) {
  .service-artifact--report {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }
  .service-artifact--report .report__hero {
    border-bottom: 0;
    border-right: 1px solid var(--line);
    padding: 0 clamp(1.5rem, 3vw, 2.4rem) 0 0;
  }
  .service-artifact--report .kpi__row:first-child { padding-top: 0; }
}

.service-faq { margin-top: 0.6rem; }
.service-faq .faq-item summary {
  font-size: var(--fs-h4);
  line-height: 1.16;
  letter-spacing: -0.018em;
}
.service-faq .faq-body p {
  font-size: var(--fs-body);
  line-height: 1.58;
  letter-spacing: -0.004em;
  color: var(--ink-soft);
}

/* CTA — dark inverse section, matches homepage's process-inverse feel */
.service-cta {
  background: var(--ink);
  color: var(--inverse-ink, #fafaf9);
  padding-block: clamp(5rem, 10vw, 8rem);
}
.service-cta .container { max-width: 1040px; }
.service-cta .eyebrow { color: var(--inverse-ink-faint, rgba(250,250,249,0.55)); display: block; margin-bottom: clamp(1.4rem, 2.6vw, 2.2rem); }
.service-cta__title {
  font-size: var(--fs-h1);
  font-weight: 480;
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin: 0 0 1.4rem;
  max-width: 24ch;
  text-wrap: balance;
}
.service-cta__title em { font-style: normal; color: var(--inverse-ink-faint, rgba(250,250,249,0.55)); }
.service-cta__lead {
  font-size: var(--fs-lead);
  line-height: 1.5;
  margin: 0 0 2.4rem;
  max-width: 54ch;
  color: var(--inverse-ink-soft, rgba(250,250,249,0.78));
}
.service-cta__next {
  margin-top: 2.8rem;
  font-size: var(--fs-sm);
  color: var(--inverse-ink-faint, rgba(250,250,249,0.6));
}
.service-cta__next a { color: var(--inverse-ink, #fafaf9); text-decoration: underline; text-underline-offset: 3px; }
.service-cta__next a:hover { opacity: 0.8; }

/* Services index — cards reminiscent of homepage capabilities */
.service-list-section { padding-block: clamp(2rem, 5vw, 4rem) clamp(4rem, 8vw, 7rem); }
.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line, #e5e5e5);
}
.service-list__item { border-bottom: 1px solid var(--line, #e5e5e5); }
.service-list__link {
  display: grid;
  grid-template-columns: 1fr 2rem;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.8rem, 4vw, 3rem) 0;
  color: var(--ink);
  text-decoration: none;
  transition: opacity 0.25s var(--ease, ease);
}
.service-list__link:hover { opacity: 0.55; }
.service-list__name {
  display: block;
  font-size: clamp(1.85rem, 1rem + 3.4vw, 3.4rem);
  font-weight: 480;
  letter-spacing: -0.028em;
  line-height: 1.02;
  margin-bottom: 0.7rem;
  color: var(--ink);
}
.service-list__note {
  display: block;
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 64ch;
}
.service-list__arrow {
  align-self: start;
  margin-top: 0.85rem;
  color: var(--ink);
  transition: transform 0.3s var(--ease, ease);
}
.service-list__arrow svg {
  width: 22px;
  height: 22px;
  display: block;
}
.service-list__link:hover .service-list__arrow { transform: translate(3px, -3px); }
@media (max-width: 640px) {
  .service-list__link { gap: 1rem; padding: 1.6rem 0; }
  .service-list__arrow svg { width: 18px; height: 18px; }
}

/* oversized wordmark */
.footer-wordmark {
  font-size: clamp(5rem, 22vw, 19rem);
  font-weight: 480;
  letter-spacing: -0.05em;
  line-height: 0.78;
  color: var(--inverse-ink);
  margin-top: var(--space-3);
  margin-bottom: clamp(1.25rem, 3vw, 3.5rem);
  transform: translateY(-0.08em);
  user-select: none;
}

/* ============================================================
   Reveal motion
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s var(--ease), transform 0.95s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

[data-stagger] > * { transition-delay: calc(var(--i, 0) * 0.06s); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .footer-top { grid-template-columns: minmax(0,1fr) auto auto; }
}

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .nav-overlay {
    padding-inline: clamp(16px, 4.6vw, 28px);
  }
  .nav-overlay.is-open ~ * .nav-toggle span,
  .nav.is-menu-open .nav-toggle span:nth-child(1) { transform: translateY(3.8px) rotate(45deg); }
  .nav.is-menu-open .nav-toggle span:nth-child(2) { transform: translateY(-3.8px) rotate(-45deg); }
  .nav.is-menu-open .nav-toggle span { background: var(--inverse-ink); }

  .section-head__main { gap: var(--space-3); }

  .service-row__inner {
    grid-template-columns: 2.6rem minmax(0,1fr);
    row-gap: 0.4em;
  }
  .service-row__meta {
    grid-column: 2;
    flex-direction: row;
    align-items: center;
    text-align: left;
    flex-wrap: wrap;
    gap: 0.5em 0.9em;
    padding-top: 0.9em;
  }
  .service-row__arrow { display: none; }

  .outcomes-sticky { height: 100svh; }
  .outcomes-head {
    grid-template-columns: 1fr;
    padding-block: calc(var(--nav-h) + 18px) 18px;
    row-gap: 14px;
  }
  .outcomes-head__main {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .outcomes-head__title {
    font-size: clamp(1.55rem, 6.6vw, 2.4rem);
    max-width: none;
  }
  .outcome-spread__inner { padding-block: 32px 72px; }
  .outcome-spread__title { font-size: clamp(2.3rem, 11vw, 4.2rem); max-width: none; }
  .outcome-spread__watermark { font-size: clamp(7rem, 46vw, 15rem); }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6) var(--space-5);
  }
  .footer-lead { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  :root { --r: 10px; }

  .container,
  .nav-inner { padding-inline: clamp(16px, 5vw, 22px); }

  .hero-statement {
    align-items: flex-start;
    padding-top: calc(var(--nav-h) + clamp(62px, 9svh, 86px));
  }
  .hero-headline { max-width: 14ch; }
  .hero-brand-intro {
    inset-inline-start: clamp(1.1rem, 1.75vw, 1.75rem);
  }
  .hero-message__frame { align-items: center; padding-top: var(--nav-h); }
  .hero-reel__inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-5);
    padding-bottom: 0;
  }
  .hero-reel__copy,
  .hero-reel__line,
  .hero-reel__slot {
    width: 100%;
  }
  .hero-reel__line { font-size: clamp(2.4rem, 13vw, 3.4rem); }
  .hero-headline { font-size: clamp(2.4rem, 13vw, 3.4rem); }
  .hero-actions { width: 100%; margin-top: var(--space-5); }
  .hero-actions .btn { flex: 1; }
  .hero-scrollcue { display: none; }

  /* --- Outcomes spread — on mobile the watermark was huge enough to bleed past
     the spread edges and visually merge with the neighbor's watermark mid-sweep
     (so "Time" + "Growth" rendered as garbled letters). Cap the watermark so it
     stays inside its own 100vw spread. */
  .outcome-spread__watermark {
    font-size: clamp(3.6rem, 22vw, 6rem);
    bottom: -0.06em;
  }
  .outcome-spread__title { max-width: 100%; }

  .service-row__media { display: none; }
  .statement__inner {
    min-height: auto;
  }
  .statement-bridge {
    display: none;
  }
  .statement__text { max-width: 100%; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 430px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  .systems-inner {
    padding-top: 0;
  }
  .system-name {
    font-size: clamp(1.22rem, 6.7vw, 1.56rem);
  }

  .book__frame {
    margin-inline: calc(clamp(16px, 5vw, 22px) * -0.5);
  }
  .calendly-inline-widget {
    min-width: 0 !important;
  }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .intro { display: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .reveal-line > * { transform: none; }
  .statement__copy,
  .systems-head {
    opacity: 1;
    transform: none;
    clip-path: none;
  }
  .statement-bridge {
    display: none;
  }
  .systems-title__word {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .hero-brand-intro { display: none; }
  .hero-headline .ln > span { transform: none; }
}

/* no-JS fallback — reveal everything */
.no-js .reveal { opacity: 1; transform: none; }
.no-js .statement__copy,
.no-js .systems-head {
  opacity: 1;
  transform: none;
  clip-path: none;
}
.no-js .statement-bridge { display: none; }
.no-js .systems-title__word {
  opacity: 1;
  transform: none;
  filter: none;
}
.no-js .hero-brand-intro { display: none; }
.no-js .hero-headline .ln > span { transform: none; }
.no-js .nav-toggle { display: none; }

/* static hero fallback (no-JS / reduced motion) */
.hero.is-static { height: auto; }
.hero.is-static .hero-pusher {
  position: static;
  height: auto;
  min-height: 0;
}
.hero.is-static .hero-statement {
  position: static;
  height: auto;
  padding-top: calc(var(--nav-h) + var(--space-7));
}
.hero.is-static .hero-message {
  position: static;
  height: auto;
  margin-top: 0;
  opacity: 1;
  clip-path: none;
  background: var(--inverse-bg);
  pointer-events: auto;
  padding-block: var(--space-9);
}
.hero.is-static .hero-message__frame { height: auto; padding-top: 0; }
.hero.is-static .hero-reel { display: none; }
.hero.is-static .hero-reel__words { position: static; transform: none; }
.hero.is-static .hero-reel__slot { height: auto; }
.hero.is-static .hero-word { opacity: 1; height: auto; line-height: 1.05; margin-bottom: 0.1em; }
.hero.is-static .hero-actions { opacity: 1; transform: none; }
.hero.is-static .hero-scrollcue { display: none; }
