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

@font-face {
  font-family: "Inter";
  src: url("/fonts/inter-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #0b0d10;
  --ink-deep: #08090b;
  --ink-soft: #14181d;
  --ink-elev: #1c2129;
  --paper: #f2f4f8;
  --paper-warm: #eeece5;
  --gold: #e5b454;
  --gold-bright: #f0c66b;
  --gold-dark: #a9741b;
  --text: #f2f4f8;
  --text-soft: rgba(242, 244, 248, 0.72);
  --text-muted: rgba(242, 244, 248, 0.48);
  --line: rgba(242, 244, 248, 0.12);
  --line-soft: rgba(242, 244, 248, 0.07);
  --glass: rgba(20, 24, 29, 0.72);
  --max: 1180px;
  --reading: 760px;
  --pad: clamp(20px, 4.8vw, 56px);
  --radius: 18px;
  --radius-lg: 30px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  background: var(--ink);
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  min-width: 320px;
  overflow-x: clip;
  background: var(--ink);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
  font-feature-settings: "cv11", "ss01", "ss03";
  font-synthesis: none;
  line-height: 1.5;
  letter-spacing: -0.012em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { border: 0; color: inherit; cursor: pointer; }
img, svg, canvas { display: block; max-width: 100%; }

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }

/* Opening sequence */
.site-intro { display: none; }
.js .site-intro {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: grid;
  place-items: center;
  overflow: hidden;
  pointer-events: all;
  background: var(--ink-deep);
}
.intro-panel {
  position: absolute;
  left: 0;
  width: 100%;
  height: calc(16.667% + 1px);
  top: calc(var(--panel) * 16.667%);
  background:
    linear-gradient(90deg, transparent, rgba(229, 180, 84, 0.045), transparent),
    var(--ink-deep);
  border-bottom: 1px solid rgba(229, 180, 84, 0.08);
  transform: scaleX(1);
  transform-origin: var(--origin, left) center;
  transition: transform 0.82s var(--ease);
  transition-delay: calc(var(--panel) * 38ms);
}
.intro-panel:nth-child(even) { --origin: right; }
.intro-mark {
  position: relative;
  z-index: 3;
  width: clamp(128px, 16vw, 210px);
  opacity: 0;
  transform: translateY(14px) scale(0.96);
  filter: drop-shadow(0 0 28px rgba(229, 180, 84, 0));
  transition: opacity 0.42s ease, transform 0.72s var(--ease), filter 0.72s ease;
}
.intro-mark::after {
  content: "SYSTEMS FOR THE WORK THAT MATTERS";
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  width: max-content;
  color: var(--gold);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  transform: translateX(-50%);
}
.intro-mark img { width: 100%; height: auto; }
.intro-scan {
  position: absolute;
  z-index: 2;
  width: min(56vw, 560px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  box-shadow: 0 0 24px rgba(229, 180, 84, 0.7);
  transform: translateX(-60vw);
}
.intro-run .intro-mark {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: drop-shadow(0 0 28px rgba(229, 180, 84, 0.16));
}
.intro-run .intro-scan {
  opacity: 1;
  animation: introScan 0.72s 0.16s var(--ease) forwards;
}
.intro-exit .intro-mark {
  opacity: 0;
  transform: scale(1.08);
  transition-duration: 0.24s;
}
.intro-exit .intro-panel { transform: scaleX(0); }
.intro-exit { background: transparent; transition: background 0.4s ease; }
.intro-done .site-intro { visibility: hidden; pointer-events: none; }
@keyframes introScan { to { transform: translateX(60vw); } }

/* Shared navigation */
.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 92px;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(8, 9, 11, 0.82), transparent);
  transition: height 0.35s var(--ease), background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}
.nav-scrolled .site-nav {
  height: 80px;
  border-color: var(--line-soft);
  background: rgba(11, 13, 16, 0.82);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}
.site-nav-inner {
  width: min(100%, var(--max));
  height: 100%;
  margin: auto;
  padding-inline: var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-brand {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  transition: transform 0.25s ease;
}
.site-brand:hover { transform: translateY(-1px); }
.site-brand img { width: auto; height: 48px; }
.site-nav-links { display: flex; align-items: center; gap: 28px; }
.site-nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s ease;
}
.site-nav-links a:not(.nav-action)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 7px;
  height: 1px;
  background: var(--gold);
  transition: right 0.28s var(--ease);
}
.site-nav-links a:hover,
.site-nav-links a[aria-current="page"] { color: var(--text); }
.site-nav-links a:hover::after,
.site-nav-links a[aria-current="page"]::after { right: 0; }
.nav-action {
  justify-content: center;
  min-width: 154px;
  padding: 0 20px;
  border: 1px solid rgba(229, 180, 84, 0.35);
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink-soft) !important;
  font-weight: 750 !important;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
}
.nav-action:hover {
  background: var(--gold-bright);
  box-shadow: 0 10px 36px -18px rgba(229, 180, 84, 0.8);
  transform: translateY(-1px);
}

/* Shared type and controls */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow::before { content: "["; }
.eyebrow::after { content: "]"; }
.display-title {
  font-size: clamp(44px, 8vw, 104px);
  font-weight: 720;
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-wrap: balance;
}
.section-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.052em;
  text-wrap: balance;
}
.lede {
  color: var(--text-soft);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--ink-soft); }
.btn-primary:hover { background: var(--gold-bright); box-shadow: 0 18px 48px -24px rgba(229, 180, 84, 0.72); }
.btn-secondary { border-color: var(--line); background: rgba(242, 244, 248, 0.035); color: var(--text); }
.btn-secondary:hover { border-color: rgba(229, 180, 84, 0.46); }

/* Homepage hero */
.home-main { overflow: clip; }
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 126px var(--pad) 70px;
  isolation: isolate;
  background:
    radial-gradient(70% 64% at 50% 10%, rgba(229, 180, 84, 0.12), transparent 62%),
    var(--ink);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(242, 244, 248, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 244, 248, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, black 26%, black 82%, transparent);
  transform: perspective(900px) rotateX(62deg) scale(1.45) translateY(calc(15% + var(--hero-progress, 0) * 8%));
  transform-origin: center 70%;
  opacity: 0.7;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, var(--ink) 0%, transparent 18%, transparent 82%, var(--ink) 100%);
  pointer-events: none;
}
.hero canvas { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; opacity: 0.55; }
.hero-content {
  width: min(100%, var(--max));
  text-align: center;
  transform: scale(calc(1 + var(--hero-progress, 0) * 0.08));
  opacity: calc(1 - var(--hero-progress, 0) * 0.55);
  will-change: transform, opacity;
}
.hero .eyebrow { margin-bottom: 30px; }
.hero h1 { max-width: 1120px; margin-inline: auto; }
.hero h1 .accent {
  background: linear-gradient(115deg, var(--gold-dark), var(--gold) 58%, var(--gold-bright));
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}
.hero .lede { max-width: 590px; margin: 30px auto 0; }
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-orbit {
  position: absolute;
  inset: auto 0 22px;
  display: flex;
  justify-content: center;
  color: var(--text-muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero-orbit span { display: inline-flex; align-items: center; gap: 12px; }
.hero-orbit span::before { content: ""; width: 36px; height: 1px; background: var(--gold); }

/* Scroll-filled statement */
.manifesto-scroll { position: relative; height: 320vh; background: var(--paper-warm); color: var(--ink); }
.manifesto-sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  align-content: center;
  padding: 96px var(--pad);
  overflow: hidden;
}
.manifesto-sticky::before {
  content: "02 / WHY";
  position: absolute;
  top: 34px;
  left: var(--pad);
  color: rgba(11, 13, 16, 0.45);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.manifesto-sticky::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(11, 13, 16, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 13, 16, 0.055) 1px, transparent 1px);
  background-size: clamp(64px, 9vw, 140px) clamp(64px, 9vw, 140px);
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  pointer-events: none;
}
.manifesto-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 1190px);
  margin: auto;
  font-size: clamp(42px, 7.5vw, 106px);
  font-weight: 750;
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-wrap: balance;
}
.manifesto-word {
  color: var(--ink);
  transition: color 0.08s linear;
}
.js .manifesto-word { color: rgba(20, 24, 29, 0.2); }

/* Resource scene */
.resource-scroll { position: relative; height: 400vh; background: var(--ink); }
.resource-sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.resource-sticky::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: -2;
  background:
    radial-gradient(circle at center, rgba(229, 180, 84, 0.13), transparent 28%),
    repeating-radial-gradient(circle at center, transparent 0 92px, rgba(242, 244, 248, 0.04) 93px 94px);
  transform: scale(calc(0.78 + var(--scene-progress, 0) * 0.5));
  opacity: calc(0.35 + var(--scene-progress, 0) * 0.55);
  will-change: transform;
}
.resource-sticky::after {
  content: "03 / SYSTEMS";
  position: absolute;
  top: 34px;
  left: var(--pad);
  color: var(--text-muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.resource-question {
  position: relative;
  z-index: 4;
  width: min(930px, calc(100% - 40px));
  text-align: center;
  transform: scale(calc(0.88 + var(--scene-progress, 0) * 0.12));
  will-change: transform;
}
.resource-question .eyebrow { margin-bottom: 22px; }
.resource-question h2 {
  font-size: clamp(42px, 7vw, 96px);
  font-weight: 720;
  line-height: 0.97;
  letter-spacing: -0.06em;
  text-wrap: balance;
}
.resource-question h2 span { color: var(--gold); }
.resource-feedback {
  min-height: 26px;
  margin-top: 22px;
  color: var(--text-soft);
  font-size: 13px;
}
.resource-feedback a { color: var(--gold); font-weight: 750; }
.solution-track {
  position: absolute;
  left: 50%;
  z-index: 3;
  display: flex;
  width: max-content;
  gap: 12px;
  will-change: transform;
}
.track-a { top: 12%; transform: translateX(calc(-48% + var(--track-shift, 0px))); }
.track-b { top: 27%; transform: translateX(calc(-58% - var(--track-shift, 0px))); }
.track-c { bottom: 27%; transform: translateX(calc(-44% - var(--track-shift, 0px))); }
.track-d { bottom: 12%; transform: translateX(calc(-62% + var(--track-shift, 0px))); }
.solution-chip {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(229, 180, 84, 0.34);
  border-radius: 4px;
  background: rgba(20, 24, 29, 0.9);
  box-shadow: 0 9px 36px -24px rgba(0, 0, 0, 0.9);
  color: var(--paper);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.solution-chip::before { content: "+ "; color: var(--gold); }
.solution-chip:hover,
.solution-chip:focus-visible,
.solution-chip.is-selected {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink-soft);
  outline: none;
  transform: translateY(-2px);
}
.solution-chip:hover::before,
.solution-chip:focus-visible::before,
.solution-chip.is-selected::before { color: var(--ink-soft); }

/* Proof depth scene */
.proof-scroll { position: relative; height: 330vh; background: var(--paper); color: var(--ink); }
.proof-sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(32px, 7vw, 100px);
  padding: 100px var(--pad) 64px;
  overflow: hidden;
}
.proof-copy { max-width: 540px; }
.proof-copy .eyebrow { margin-bottom: 22px; color: var(--gold-dark); }
.proof-copy p { margin-top: 24px; color: rgba(11, 13, 16, 0.62); font-size: clamp(16px, 1.7vw, 20px); line-height: 1.6; }
.proof-stack { display: grid; gap: 16px; min-height: 460px; perspective: 1100px; }
.proof-card {
  position: relative;
  display: grid;
  align-content: end;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(11, 13, 16, 0.12);
  border-radius: var(--radius-lg);
  background: var(--ink-soft);
  color: var(--paper);
  box-shadow: 0 46px 100px -62px rgba(11, 13, 16, 0.72);
  transform-origin: center;
  will-change: transform, opacity;
}
.js .proof-stack { position: relative; display: block; }
.js .proof-card { position: absolute; inset: 0; }
.proof-card:nth-child(2) { background: var(--ink-elev); }
.proof-card:nth-child(3) { background: var(--gold); color: var(--ink-soft); }
.proof-card-number {
  position: absolute;
  top: 26px;
  left: 28px;
  color: var(--gold);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.proof-card:nth-child(3) .proof-card-number { color: var(--ink-soft); }
.proof-card h3 { max-width: 530px; font-size: clamp(32px, 4vw, 56px); line-height: 1; letter-spacing: -0.045em; }
.proof-card p { max-width: 520px; margin-top: 16px; color: rgba(242, 244, 248, 0.65); font-size: 15px; line-height: 1.55; }
.js .proof-card h3,
.js .proof-card p { opacity: var(--card-content, 0); transition: opacity 0.18s linear; }
.proof-card:nth-child(3) p { color: rgba(20, 24, 29, 0.72); }

/* Intake */
.contact {
  position: relative;
  padding: clamp(100px, 12vw, 170px) var(--pad);
  background:
    radial-gradient(60% 40% at 50% 0%, rgba(229, 180, 84, 0.13), transparent 70%),
    var(--ink);
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 244, 248, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 244, 248, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}
.contact-inner { position: relative; width: min(100%, 1080px); margin: auto; }
.contact-head { max-width: 810px; margin: auto; text-align: center; }
.contact-head .eyebrow { margin-bottom: 20px; }
.contact-head .lede { max-width: 680px; margin: 22px auto 0; }
.intake-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.45fr);
  gap: 24px;
  margin-top: clamp(48px, 7vw, 82px);
  text-align: left;
}
.intake-aside,
.intake-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(242, 244, 248, 0.04);
  box-shadow: 0 38px 100px -70px rgba(0, 0, 0, 0.9);
}
.intake-aside { align-self: start; position: sticky; top: 94px; padding: clamp(26px, 4vw, 38px); }
.intake-aside h3 { font-size: clamp(24px, 3vw, 34px); line-height: 1.05; letter-spacing: -0.035em; }
.intake-aside > p { margin-top: 14px; color: var(--text-soft); font-size: 14px; line-height: 1.6; }
.intake-steps { display: grid; gap: 22px; margin-top: 30px; }
.intake-step { display: grid; grid-template-columns: 34px 1fr; gap: 12px; }
.intake-step > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(229, 180, 84, 0.32);
  border-radius: 50%;
  color: var(--gold);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 800;
}
.intake-step strong { display: block; font-size: 14px; }
.intake-step p { margin-top: 4px; color: var(--text-muted); font-size: 12px; line-height: 1.5; }
.intake-form { padding: clamp(24px, 4vw, 40px); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  color: var(--text-soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: none;
  background: rgba(8, 9, 11, 0.76);
  color: var(--text);
  font-size: 15px;
  line-height: 1.4;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.field textarea { min-height: 112px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(229, 180, 84, 0.66);
  background: var(--ink-deep);
  box-shadow: 0 0 0 4px rgba(229, 180, 84, 0.08);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(242, 244, 248, 0.3); }
.field.trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 24px; }
.form-note { max-width: 42ch; color: var(--text-muted); font-size: 12px; line-height: 1.5; }
.form-status { min-height: 22px; margin-top: 14px; color: var(--gold); font-size: 13px; }

/* Interior pages */
.interior-main { position: relative; min-height: 100svh; overflow: clip; }
.interior-hero {
  position: relative;
  min-height: min(74svh, 760px);
  display: grid;
  align-items: end;
  padding: 150px var(--pad) clamp(70px, 10vw, 120px);
  overflow: hidden;
  background:
    radial-gradient(75% 60% at 50% 0%, rgba(229, 180, 84, 0.13), transparent 65%),
    var(--ink);
}
.interior-hero::before {
  content: "";
  position: absolute;
  inset: -30% -10% -10%;
  background-image:
    linear-gradient(rgba(242, 244, 248, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 244, 248, 0.04) 1px, transparent 1px);
  background-size: 68px 68px;
  transform: perspective(840px) rotateX(62deg) scale(1.35) translateY(calc(8% + var(--page-progress, 0) * 14%));
  mask-image: linear-gradient(transparent, black 28%, transparent 85%);
  pointer-events: none;
}
.interior-hero-inner { position: relative; z-index: 1; width: min(100%, var(--max)); margin: auto; }
.interior-hero .eyebrow { margin-bottom: 24px; }
.interior-hero h1 { max-width: 1020px; }
.interior-hero .lede { max-width: 690px; margin-top: 24px; }
.page-scroll-meter {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 110;
  width: calc(var(--page-progress, 0) * 100%);
  height: 2px;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(229, 180, 84, 0.55);
  pointer-events: none;
}
.content-section { padding: clamp(74px, 10vw, 130px) var(--pad); }
.content-shell { width: min(100%, var(--max)); margin: auto; }
.reading-shell { width: min(100%, var(--reading)); margin: auto; }
.reveal-item {
  opacity: 1;
  transform: none;
  filter: none;
}
.js .reveal-item {
  opacity: 0;
  transform: translateY(34px) scale(0.975);
  filter: blur(5px);
  transition: opacity 0.8s ease, transform 0.9s var(--ease), filter 0.8s ease;
}
.js .reveal-item.in-view { opacity: 1; transform: none; filter: none; }

/* About timeline */
.about-intro { background: var(--paper); color: var(--ink); }
.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(36px, 8vw, 110px);
  align-items: start;
}
.about-intro h2 { position: sticky; top: 112px; }
.about-copy p { color: rgba(11, 13, 16, 0.68); font-size: clamp(17px, 1.8vw, 21px); line-height: 1.65; }
.about-copy p + p { margin-top: 24px; }
.timeline { position: relative; padding-block: clamp(80px, 12vw, 150px); background: var(--ink-soft); }
.timeline::before { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: linear-gradient(transparent, var(--gold), transparent); opacity: 0.4; }
.timeline-item {
  width: min(100%, 1040px);
  min-height: 62svh;
  margin: auto;
  padding: 80px var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 8vw, 100px);
  align-items: center;
}
.timeline-item:nth-child(even) .timeline-card { grid-column: 2; }
.timeline-card {
  position: relative;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(242, 244, 248, 0.04);
}
.timeline-card .eyebrow { margin-bottom: 18px; }
.timeline-card h2 { font-size: clamp(32px, 5vw, 58px); line-height: 1; letter-spacing: -0.045em; }
.timeline-card p { margin-top: 18px; color: var(--text-soft); font-size: 16px; line-height: 1.65; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: clamp(42px, 8vw, 110px); align-items: start; }
.faq-index { position: sticky; top: 98px; display: grid; gap: 6px; }
.faq-index-label { margin-bottom: 14px; color: var(--text-muted); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; }
.faq-index a {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 8px;
  padding: 9px 0;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.35;
  transition: color 0.2s ease, transform 0.2s ease;
}
.faq-index a span { color: var(--gold); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.faq-index a:hover,
.faq-index a.is-active { color: var(--text); transform: translateX(4px); }
.faq-list { display: grid; }
.faq-item {
  scroll-margin-top: 100px;
  padding: clamp(32px, 5vw, 52px) 0;
  border-top: 1px solid var(--line);
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item-number { color: var(--gold); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 10px; letter-spacing: 0.12em; }
.faq-item h2 { margin-top: 13px; font-size: clamp(26px, 4vw, 44px); line-height: 1.08; letter-spacing: -0.038em; }
.faq-item p { max-width: 720px; margin-top: 18px; color: var(--text-soft); font-size: 16px; line-height: 1.7; }

/* Legal */
.legal-section { background: var(--paper); color: var(--ink); }
.legal-card {
  padding: clamp(30px, 5vw, 52px) 0;
  border-top: 1px solid rgba(11, 13, 16, 0.12);
}
.legal-card:last-child { border-bottom: 1px solid rgba(11, 13, 16, 0.12); }
.legal-card h2 { font-size: clamp(24px, 3vw, 36px); line-height: 1.12; letter-spacing: -0.035em; }
.legal-card p { margin-top: 15px; color: rgba(11, 13, 16, 0.68); font-size: 16px; line-height: 1.75; }
.legal-card a { color: var(--gold-dark); font-weight: 700; }

/* Footer */
.site-footer {
  position: relative;
  padding: 64px var(--pad) 46px;
  border-top: 1px solid var(--line-soft);
  background: var(--ink-deep);
}
.footer-grid {
  width: min(100%, var(--max));
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px;
  align-items: end;
}
.footer-brand img { width: 118px; height: auto; }
.footer-brand p { max-width: 370px; margin-top: 20px; color: var(--text-muted); font-size: 13px; line-height: 1.55; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 24px; }
.footer-nav a { min-height: 44px; display: inline-flex; align-items: center; color: var(--text-muted); font-size: 12px; transition: color 0.2s ease; }
.footer-nav a:hover { color: var(--gold); }
.footer-bottom {
  width: min(100%, var(--max));
  margin: 42px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(242, 244, 248, 0.7);
  font-size: 10px;
  letter-spacing: 0.04em;
}
.footer-tribute { color: rgba(242, 244, 248, 0.7); text-transform: uppercase; }
.footer-tribute span { margin-left: 6px; color: #c2bbb0; font-family: Georgia, serif; font-size: 12px; font-style: italic; letter-spacing: 0; text-transform: none; }

/* Acquisition pages */
.seo-main { background: var(--paper); color: var(--ink); }
.seo-main .eyebrow { color: #76500d; }
.breadcrumbs { max-width: 1180px; margin: 0 auto; padding: 112px var(--pad) 0; font-size: 12px; color: rgba(11,13,16,.62); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 8px; color: var(--gold-dark); }
.breadcrumbs a { color: inherit; text-decoration: none; }
.interior-breadcrumbs { position: absolute; inset: 0 0 auto; z-index: 2; color: rgba(242,244,248,.68); }
.seo-hero { padding: clamp(56px, 8vw, 100px) var(--pad) clamp(70px, 9vw, 120px); background: linear-gradient(145deg, #f7f4ee, #fff 62%); border-bottom: 1px solid rgba(11,13,16,.09); }
.seo-hero-inner { width: min(940px, 100%); margin: 0 auto; }
.seo-hero h1 { max-width: 900px; margin: 18px 0 24px; font-size: clamp(46px, 7vw, 92px); line-height: .96; letter-spacing: -.055em; }
.seo-hero .lede { max-width: 760px; font-size: clamp(19px, 2vw, 25px); line-height: 1.55; color: rgba(11,13,16,.68); }
.seo-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.seo-section { padding: clamp(72px, 9vw, 120px) var(--pad); }
.seo-section.alt { background: #f1eee7; }
.seo-shell { width: min(1120px, 100%); margin: 0 auto; }
.seo-reading { width: min(760px, 100%); margin: 0 auto; }
.seo-section h2 { margin: 0 0 24px; font-size: clamp(34px, 5vw, 62px); line-height: 1.02; letter-spacing: -.045em; }
.seo-section h3 { margin: 0 0 12px; font-size: clamp(20px, 2.3vw, 28px); line-height: 1.15; letter-spacing: -.025em; }
.seo-section p, .seo-section li { color: rgba(11,13,16,.72); font-size: 17px; line-height: 1.75; }
.seo-section p + p { margin-top: 18px; }
.seo-section a:not(.btn) { color: #76500d; text-decoration: underline; text-underline-offset: 3px; }
.seo-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 34px; }
.seo-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.seo-card { padding: clamp(26px, 3vw, 38px); background: #fff; border: 1px solid rgba(11,13,16,.1); border-radius: 20px; box-shadow: 0 18px 55px rgba(11,13,16,.06); }
.seo-card p:last-child { margin-bottom: 0; }
.seo-list { display: grid; gap: 16px; padding: 0; list-style: none; }
.seo-list li { position: relative; padding-left: 28px; }
.seo-list li::before { content: ""; position: absolute; top: .72em; left: 0; width: 10px; height: 10px; border: 2px solid var(--gold-dark); border-radius: 50%; }
.process-list { counter-reset: process; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; }
.process-step { counter-increment: process; padding: 28px; border-top: 2px solid var(--gold-dark); background: rgba(255,255,255,.66); }
.process-step::before { content: "0" counter(process); display: block; margin-bottom: 38px; color: var(--gold-dark); font: 600 11px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .12em; }
.compare-table { width: 100%; margin: 32px 0; border-collapse: collapse; background: #fff; }
.compare-table th, .compare-table td { padding: 18px; border: 1px solid rgba(11,13,16,.12); text-align: left; vertical-align: top; }
.compare-table th { background: #171a1e; color: #fff; }
.related-links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 28px; }
.related-link { display: block; min-height: 150px; padding: 24px; background: #fff; border: 1px solid rgba(11,13,16,.1); border-radius: 16px; color: var(--ink) !important; text-decoration: none; }
.related-link span { display: block; margin-bottom: 30px; color: #76500d; font: 700 10px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .12em; text-transform: uppercase; }
.seo-cta { padding: clamp(72px, 9vw, 112px) var(--pad); background: #0b0d10; color: #fff; text-align: center; }
.seo-cta .eyebrow { color: var(--gold); }
.seo-cta-inner { width: min(780px, 100%); margin: 0 auto; }
.seo-cta h2 { margin-bottom: 20px; font-size: clamp(38px, 6vw, 72px); line-height: 1; letter-spacing: -.045em; }
.seo-cta p { margin: 0 auto 30px; color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.65; }
.footer-grid { grid-template-columns: minmax(260px, 1.5fr) repeat(4, minmax(120px, 1fr)); align-items: start; gap: 34px; }
.footer-column { display: grid; gap: 10px; }
.footer-column h2 { margin: 0 0 8px; color: rgba(255,255,255,.48); font: 600 10px/1 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .12em; text-transform: uppercase; }
.footer-column a { color: rgba(255,255,255,.74); font-size: 13px; text-decoration: none; }
.footer-column a:hover { color: #fff; }
.systems-explore { padding: clamp(70px, 9vw, 110px) var(--pad); background: #f3f0e9; }
.systems-explore .seo-shell > p { max-width: 720px; color: rgba(11,13,16,.66); font-size: 18px; line-height: 1.65; }
.systems-explore h2 { margin: 16px 0 20px; font-size: clamp(38px, 5vw, 66px); letter-spacing: -.045em; }
.not-found-main { min-height: 75vh; display: grid; place-items: center; padding: 130px var(--pad) 80px; background: linear-gradient(145deg, #f7f4ee, #fff 62%); }
.not-found-copy { width: min(760px, 100%); text-align: center; }
.not-found-copy h1 { margin: 16px 0 24px; font-size: clamp(70px, 15vw, 160px); line-height: .8; letter-spacing: -.07em; }

@media (max-width: 900px) {
  .seo-grid.three, .related-links { grid-template-columns: 1fr 1fr; }
  .process-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
}

@media (max-width: 640px) {
  .breadcrumbs { padding-top: 88px; }
  .seo-grid, .seo-grid.three, .related-links, .footer-grid { grid-template-columns: 1fr; }
  .seo-hero h1 { font-size: clamp(43px, 13vw, 64px); }
  .compare-table { display: block; overflow-x: auto; }
}

/* Focus */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

/* Complete, readable fallback when JavaScript is disabled. */
html:not(.js) .manifesto-scroll,
html:not(.js) .resource-scroll,
html:not(.js) .proof-scroll { height: auto; }
html:not(.js) .manifesto-sticky,
html:not(.js) .resource-sticky,
html:not(.js) .proof-sticky { position: relative; min-height: auto; }
html:not(.js) .manifesto-sticky,
html:not(.js) .proof-sticky { padding-block: 110px; }
html:not(.js) .resource-sticky { min-height: 860px; }
html:not(.js) .solution-track { transform: translateX(-50%); }

@media (max-width: 900px) {
  .site-nav-links a:not(.nav-action) { display: none; }
  .proof-sticky { grid-template-columns: 1fr; align-content: center; }
  .proof-copy { max-width: 760px; }
  .proof-stack { min-height: 390px; }
  .intake-wrap { grid-template-columns: 1fr; }
  .intake-aside { position: static; }
  .about-intro-grid { grid-template-columns: 1fr; }
  .about-intro h2 { position: static; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-index {
    position: static;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
  }
  .faq-index-label { grid-column: 1 / -1; }
  .faq-index a { display: block; }
  .faq-index a span { display: block; margin-bottom: 4px; }
}

@media (max-width: 640px) {
  :root { --pad: 20px; --radius-lg: 22px; }
  html { scroll-padding-top: 86px; }
  .site-nav { height: 82px; }
  .nav-scrolled .site-nav { height: 76px; }
  .site-brand { min-height: 54px; }
  .site-brand img { width: auto; height: 44px; }
  .nav-action { min-width: 0; padding: 0 15px; font-size: 12px !important; }
  .hero { padding-top: 112px; }
  .hero .display-title { font-size: clamp(44px, 14vw, 68px); }
  .hero .lede { font-size: 17px; }
  .manifesto-scroll { height: 290vh; }
  .manifesto-copy { font-size: clamp(42px, 13vw, 70px); }
  .resource-scroll { height: 350vh; }
  .resource-question { width: calc(100% - 32px); }
  .resource-question h2 { font-size: clamp(42px, 13vw, 68px); }
  .track-a { top: 13%; }
  .track-b { top: 24%; }
  .track-c { bottom: 24%; }
  .track-d { bottom: 13%; }
  .solution-chip { min-height: 38px; padding-inline: 12px; font-size: 9px; }
  .proof-scroll { height: 300vh; }
  .proof-sticky { padding-top: 90px; gap: 26px; }
  .proof-copy p { display: none; }
  .proof-stack { min-height: 360px; }
  .proof-card { padding: 28px 24px; }
  .proof-card h3 { font-size: clamp(30px, 10vw, 44px); }
  .form-grid { grid-template-columns: 1fr; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .form-actions .btn { width: 100%; }
  .interior-hero { min-height: 68svh; padding-top: 128px; }
  .interior-hero .display-title { font-size: clamp(48px, 15vw, 76px); }
  .timeline::before { left: 20px; }
  .timeline-item,
  .timeline-item:nth-child(even) { min-height: auto; grid-template-columns: 1fr; padding-block: 42px; padding-left: 42px; }
  .timeline-item:nth-child(even) .timeline-card { grid-column: auto; }
  .faq-index { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-nav { justify-content: flex-start; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-height: 620px) and (min-width: 700px) {
  .hero { padding-top: 96px; }
  .hero .display-title { font-size: clamp(42px, 7vw, 74px); }
  .hero .lede { margin-top: 18px; }
  .hero-actions { margin-top: 22px; }
  .resource-question h2 { font-size: clamp(38px, 6vw, 72px); }
  .proof-sticky { padding-top: 84px; }
  .proof-stack { min-height: 330px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  .site-intro { display: none !important; }
  .hero-content, .resource-question, .resource-sticky::before { transform: none !important; opacity: 1 !important; }
  .manifesto-scroll, .resource-scroll, .proof-scroll { height: auto; }
  .manifesto-sticky, .resource-sticky, .proof-sticky { position: relative; min-height: auto; }
  .manifesto-sticky { padding-block: 110px; }
  .manifesto-word { color: var(--ink) !important; }
  .resource-sticky { min-height: 860px; }
  .solution-track { transform: translateX(-50%) !important; }
  .proof-sticky { padding-block: 110px; }
  .proof-stack { display: grid; gap: 16px; min-height: 0; }
  .proof-card { position: relative; inset: auto; min-height: 320px; transform: none !important; opacity: 1 !important; }
  .proof-card h3, .proof-card p { opacity: 1 !important; }
  .reveal-item { opacity: 1; transform: none; filter: none; }
}
