@font-face {
  font-family: 'Peacefull Sans';
  src: url('./fonts/dm-sans.woff2') format('woff2');
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: 'Peacefull Serif';
  src: url('./fonts/instrument-serif.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Peacefull Mono';
  src: url('./fonts/jetbrains-mono.woff2') format('woff2');
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --paper: #f7f3eb;
  --paper-deep: #eee7dc;
  --ink: #1b202c;
  --ink-soft: #454b58;
  --sapphire: #263b5e;
  --sapphire-deep: #17243c;
  --night: #101725;
  --gold: #c89c50;
  --gold-light: #e4c98d;
  --hairline: rgba(27, 32, 44, 0.16);
  --hairline-light: rgba(247, 243, 235, 0.2);
  --warm: #b95e32;
  --sans: 'Peacefull Sans', ui-sans-serif, system-ui, sans-serif;
  --serif: 'Peacefull Serif', Georgia, serif;
  --mono: 'Peacefull Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.32, 0.72, 0.24, 1);
  --wrap: min(1240px, calc(100vw - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.presentation-mode .prototype-ribbon,
body.presentation-mode .site-header {
  transform: translateY(-120%);
}

body.presentation-mode .hero {
  min-height: 100svh;
}

.production-site .site-header {
  inset: 0 0 auto;
}

.production-site .hero::before {
  inset: 74px 0 0;
}

.production-site .hero-content {
  min-height: 100svh;
  padding-top: 170px;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.prototype-ribbon {
  position: fixed;
  z-index: 90;
  inset: 0 0 auto;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(247, 243, 235, 0.8);
  background: var(--night);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font: 500 10px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 500ms var(--ease);
}

.ribbon-action {
  position: absolute;
  right: 24px;
  border: 0;
  color: var(--gold-light);
  background: transparent;
  font: inherit;
  letter-spacing: inherit;
  text-transform: uppercase;
  cursor: pointer;
}

.site-header {
  position: fixed;
  z-index: 80;
  inset: 34px 0 auto;
  height: 74px;
  padding: 0 max(32px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--paper);
  background: rgba(16, 23, 37, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  transition:
    transform 500ms var(--ease),
    background 250ms ease;
}

.site-header.is-scrolled {
  background: rgba(16, 23, 37, 0.95);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img,
.footer-brand img {
  border-radius: 9px;
}

.primary-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.primary-nav a {
  position: relative;
  color: rgba(247, 243, 235, 0.74);
  font-size: 13px;
  text-decoration: none;
  transition: color 150ms ease;
}

.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--gold-light);
  transition: right 260ms var(--ease);
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--paper);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  right: 0;
}

.header-cta {
  justify-self: end;
  padding-bottom: 5px;
  color: var(--paper);
  border-bottom: 1px solid var(--gold);
  font-size: 13px;
  text-decoration: none;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 72% 56%, rgba(87, 116, 159, 0.19), transparent 31%),
    linear-gradient(138deg, var(--sapphire-deep), var(--night) 58%, #131b2a);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 108px 0 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, black 22%, transparent 95%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: var(--wrap);
  min-height: calc(100svh - 142px);
  margin: 0 auto;
  padding: 205px 0 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--sapphire);
  font: 600 11px/1.2 var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-eyebrow,
.eyebrow-light {
  color: var(--gold-light);
}

.hero h1 {
  max-width: 980px;
  margin: 0;
  font: 400 clamp(66px, 8.2vw, 132px) / 0.87 var(--serif);
  letter-spacing: -0.052em;
}

.hero h1 em,
h2 em {
  color: var(--gold-light);
  font-weight: 400;
}

.hero-copy {
  max-width: 580px;
  margin: 38px 0 0;
  color: rgba(247, 243, 235, 0.74);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  min-height: 50px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 220ms var(--ease),
    background 220ms ease,
    color 220ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-light {
  color: var(--night);
  background: var(--paper);
}

.button-light:hover {
  background: var(--gold-light);
}

.button-dark {
  color: var(--paper);
  background: var(--night);
}

.button-dark:hover {
  background: var(--sapphire);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  text-decoration: none;
}

.text-link span {
  transition: transform 220ms var(--ease);
}

.text-link:hover span {
  transform: translate(3px, 3px);
}

.text-link-light {
  color: rgba(247, 243, 235, 0.72);
}

.hero-field {
  position: absolute;
  z-index: 1;
  right: 0;
  top: 50%;
  width: min(60vw, 840px);
  aspect-ratio: 1;
  transform: translateY(-43%);
}

.hero-orbit {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(228, 201, 141, 0.25);
  border-radius: 50%;
}

.hero-orbit-outer::before,
.hero-orbit-outer::after {
  content: '';
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(247, 243, 235, 0.08);
  border-radius: 50%;
}

.hero-orbit-outer::after {
  inset: 34%;
  background: radial-gradient(circle, rgba(200, 156, 80, 0.2), transparent 68%);
}

.hero-orbit-inner {
  inset: 25%;
  border-style: dashed;
  border-color: rgba(247, 243, 235, 0.1);
}

.hero-signal {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow:
    0 0 0 12px rgba(228, 201, 141, 0.08),
    0 0 48px 14px rgba(228, 201, 141, 0.24);
  transform-origin: 0 0;
  animation: orbitSignal 12s linear infinite;
}

.orbit-label {
  position: absolute;
  color: rgba(247, 243, 235, 0.47);
  font: 500 10px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.orbit-label-patient { left: 7%; top: 48%; }
.orbit-label-review { left: 43%; top: 7%; }
.orbit-label-action { right: 4%; top: 50%; }
.orbit-label-evidence { left: 43%; bottom: 7%; }

@keyframes orbitSignal {
  from { transform: rotate(0deg) translateX(38vmin) rotate(0deg); }
  to { transform: rotate(360deg) translateX(38vmin) rotate(-360deg); }
}

.hero-foot {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 32px;
  width: var(--wrap);
  transform: translateX(-50%);
  display: flex;
  gap: 36px;
  color: rgba(247, 243, 235, 0.5);
  font: 500 10px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  right: max(32px, calc((100vw - 1240px) / 2));
  bottom: 28px;
  display: flex;
  gap: 12px;
  color: rgba(247, 243, 235, 0.48);
  font: 500 10px/1 var(--mono);
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-content > * {
  transform: translateY(0);
}

.js .hero-content > * {
  transform: translateY(26px);
}

.js.is-ready .hero-content > * {
  transform: translateY(0);
  transition: transform 850ms var(--ease);
}

.js.is-ready .hero-content > :nth-child(2) { transition-delay: 90ms; }
.js.is-ready .hero-content > :nth-child(3) { transition-delay: 170ms; }
.js.is-ready .hero-content > :nth-child(4) { transition-delay: 230ms; }

.section-wrap {
  width: var(--wrap);
  margin: 0 auto;
}

.section-light {
  background: var(--paper);
}

.problem-section {
  padding: 150px 0 140px;
}

.problem-layout {
  display: grid;
  grid-template-columns: 70px 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.section-index {
  padding-top: 7px;
  color: var(--gold);
  font: 500 11px/1 var(--mono);
}

h2 {
  margin: 0;
  font: 400 clamp(52px, 6vw, 92px) / 0.96 var(--serif);
  letter-spacing: -0.045em;
}

.large-copy {
  max-width: 600px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.45;
}

.fragment-ledger {
  border-top: 1px solid var(--ink);
}

.fragment-row {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.6fr;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--hairline);
  font-size: 13px;
}

.fragment-row span:nth-child(2),
.fragment-state {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.fragment-state {
  text-align: right;
  color: var(--warm);
}

.continuity-section {
  padding: 150px 0;
  color: var(--paper);
  background: var(--sapphire-deep);
}

.continuity-intro {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: end;
  padding-bottom: 86px;
  border-bottom: 1px solid var(--hairline-light);
}

.continuity-intro .eyebrow {
  color: var(--gold-light);
}

.continuity-intro > p {
  max-width: 460px;
  margin: 0 0 8px;
  color: rgba(247, 243, 235, 0.64);
  font-size: 18px;
}

.continuity-story {
  min-height: 850px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
  padding-top: 80px;
}

.story-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.story-step {
  min-height: 140px;
  padding: 26px 0;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--hairline-light);
  color: rgba(247, 243, 235, 0.37);
  transition:
    color 300ms ease,
    transform 500ms var(--ease);
}

.story-step.is-active {
  color: var(--paper);
  transform: translateX(12px);
}

.step-number {
  padding-top: 8px;
  color: var(--gold-light);
  font: 500 10px/1 var(--mono);
}

.story-step h3 {
  margin: 0;
  font: 400 38px/1 var(--serif);
}

.story-step p {
  max-width: 370px;
  margin: 12px 0 0;
  color: inherit;
  font-size: 14px;
}

.story-visual {
  position: sticky;
  top: 145px;
  height: 610px;
  align-self: start;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(228, 201, 141, 0.14), transparent 42%),
    rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.visual-kicker {
  position: absolute;
  top: 26px;
  left: 28px;
  color: rgba(247, 243, 235, 0.46);
  font: 500 10px/1 var(--mono);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.loop-figure {
  position: absolute;
  inset: 92px 50px 130px;
}

.loop-track {
  position: absolute;
  inset: 14% 0;
  border: 1px solid rgba(228, 201, 141, 0.42);
  border-radius: 50%;
}

.loop-track::after {
  content: '';
  position: absolute;
  inset: 20%;
  border: 1px dashed rgba(247, 243, 235, 0.14);
  border-radius: 50%;
}

.loop-point {
  position: absolute;
  top: 50%;
  width: 17px;
  height: 17px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  background: var(--sapphire-deep);
}

.loop-point span {
  position: absolute;
  top: 31px;
  color: rgba(247, 243, 235, 0.72);
  font: 500 10px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.loop-point-a { left: -7px; }
.loop-point-b { right: -7px; }
.loop-point-a span { left: 0; }
.loop-point-b span { right: 0; }

.loop-moving-point {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 10px rgba(228, 201, 141, 0.08);
  transform: translate(-50%, -50%) translateX(-38%);
  transition: transform 700ms var(--ease);
}

.loop-figure[data-step='1'] .loop-moving-point { transform: translate(-50%, -50%) translate(-80px, -128px); }
.loop-figure[data-step='2'] .loop-moving-point { transform: translate(-50%, -50%) translate(80px, -128px); }
.loop-figure[data-step='3'] .loop-moving-point { transform: translate(-50%, -50%) translateX(44%); }
.loop-figure[data-step='4'] .loop-moving-point { transform: translate(-50%, -50%) translate(0, 132px); }

.loop-boundary {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 62%;
  transform: translate(-50%, -50%);
  background: rgba(247, 243, 235, 0.16);
}

.loop-boundary span {
  position: absolute;
  left: 10px;
  color: rgba(247, 243, 235, 0.33);
  font: 500 8px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.loop-boundary span:first-child { top: 0; }
.loop-boundary span:last-child { bottom: 0; }

.story-caption {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 55px;
  margin: 0;
  font: 400 26px/1.15 var(--serif);
  transition: transform 350ms var(--ease);
}

.story-status {
  position: absolute;
  left: 42px;
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(247, 243, 235, 0.48);
  font: 500 9px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-light);
}

.role-section {
  padding: 150px 0;
}

.role-heading {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 64px;
}

.perspective-switcher {
  margin: 86px 0 0 134px;
  display: flex;
  gap: 36px;
  border-bottom: 1px solid var(--hairline);
}

.perspective-button {
  position: relative;
  padding: 0 0 17px;
  border: 0;
  color: var(--ink-soft);
  background: transparent;
  font-size: 13px;
  cursor: pointer;
}

.perspective-button::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -1px;
  height: 2px;
  background: var(--gold);
  transition: right 260ms var(--ease);
}

.perspective-button.is-active {
  color: var(--ink);
}

.perspective-button.is-active::after {
  right: 0;
}

.perspective-stage {
  margin: 80px 0 0 134px;
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 90px;
  align-items: center;
}

.perspective-label {
  margin: 0 0 18px;
  color: var(--gold);
  font: 600 10px/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.perspective-copy h3 {
  margin: 0;
  font: 400 clamp(38px, 4vw, 62px) / 1 var(--serif);
}

.perspective-copy > p:not(.perspective-label) {
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.perspective-copy ul {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--hairline);
}

.perspective-copy li {
  padding: 13px 0;
  border-bottom: 1px solid var(--hairline);
  color: var(--ink-soft);
  font: 500 10px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.workspace-preview {
  min-height: 500px;
  padding: 34px 40px;
  color: var(--paper);
  background: var(--sapphire);
  box-shadow: 0 24px 70px rgba(27, 32, 44, 0.16);
  transform: rotate(0.7deg);
  transition: transform 450ms var(--ease);
}

.workspace-preview:hover {
  transform: rotate(0deg) translateY(-6px);
}

.workspace-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(247, 243, 235, 0.54);
  font: 500 9px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 12px;
  text-transform: none;
}

.mini-mark {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--gold-light);
}

.workspace-summary {
  max-width: 650px;
  margin: 50px 0 48px;
  font: 400 clamp(29px, 3vw, 47px) / 1.06 var(--serif);
}

.workspace-ledger {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.workspace-ledger > div {
  min-height: 62px;
  display: grid;
  grid-template-columns: 1fr 1.5fr 0.6fr;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(247, 243, 235, 0.76);
  font-size: 12px;
}

.workspace-ledger span:last-child {
  color: var(--gold-light);
  font: 500 9px/1 var(--mono);
  text-align: right;
  text-transform: uppercase;
}

.workspace-note {
  margin: 22px 0 0;
  color: rgba(247, 243, 235, 0.4);
  font: 500 8px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fit-section {
  position: relative;
  overflow: hidden;
  padding: 135px 0;
  background: var(--paper-deep);
}

.fit-marquee {
  position: absolute;
  left: -2%;
  top: -24px;
  display: flex;
  gap: 80px;
  color: rgba(27, 32, 44, 0.035);
  font: 400 150px/1 var(--serif);
  white-space: nowrap;
  pointer-events: none;
}

.fit-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 100px;
  align-items: end;
}

.fit-copy > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.fit-facts {
  margin: 42px 0 0;
  border-top: 1px solid var(--ink);
}

.fit-facts > div {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--hairline);
}

.fit-facts dt {
  color: var(--ink-soft);
  font-size: 12px;
}

.fit-facts dd {
  margin: 0;
  font: 500 10px/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-section {
  padding: 150px 0 110px;
  color: var(--paper);
  background: var(--night);
}

.trust-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 110px;
}

.trust-heading {
  position: sticky;
  top: 150px;
  align-self: start;
}

.trust-heading > p:last-child {
  max-width: 470px;
  margin: 34px 0 0;
  color: rgba(247, 243, 235, 0.58);
  font-size: 17px;
}

.evidence-ledger {
  border-top: 1px solid rgba(247, 243, 235, 0.42);
}

.evidence-row {
  min-height: 105px;
  display: grid;
  grid-template-columns: 0.7fr 1.2fr 30px;
  gap: 22px;
  align-items: center;
  border-bottom: 1px solid var(--hairline-light);
}

.evidence-row > span:first-child {
  color: rgba(247, 243, 235, 0.48);
  font-size: 13px;
}

.evidence-row strong {
  font: 400 26px/1.1 var(--serif);
}

.evidence-row > span:last-child {
  color: var(--gold-light);
  font: 500 9px/1 var(--mono);
  text-align: right;
}

.boundary-panel {
  margin-top: 120px;
  padding-top: 46px;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 100px;
  border-top: 1px solid var(--gold);
}

.boundary-panel h3 {
  max-width: 700px;
  margin: 0;
  font: 400 clamp(34px, 4vw, 57px) / 1.04 var(--serif);
}

.boundary-panel > p {
  margin: 30px 0 0;
  color: rgba(247, 243, 235, 0.58);
}

.proof-section {
  padding: 140px 0;
}

.proof-heading {
  max-width: 940px;
}

.proof-sequence {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
}

.proof-sequence > div {
  min-height: 220px;
  padding: 30px 26px 24px 0;
  border-right: 1px solid var(--hairline);
}

.proof-sequence > div:not(:first-child) {
  padding-left: 26px;
}

.proof-sequence > div:last-child {
  border-right: 0;
}

.proof-sequence span {
  font: 400 66px/1 var(--serif);
}

.proof-sequence p {
  max-width: 210px;
  margin: 50px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.proof-disclaimer {
  margin: 26px 0 0;
  color: var(--ink-soft);
  font: 500 9px/1.4 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-section {
  position: relative;
  overflow: hidden;
  padding: 150px 0;
  background: var(--gold-light);
}

.partner-glow {
  position: absolute;
  width: 720px;
  height: 720px;
  right: -120px;
  top: -280px;
  border: 1px solid rgba(27, 32, 44, 0.12);
  border-radius: 50%;
}

.partner-glow::before,
.partner-glow::after {
  content: '';
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(27, 32, 44, 0.1);
  border-radius: 50%;
}

.partner-glow::after {
  inset: 32%;
}

.partner-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 100px;
  align-items: end;
}

.partner-copy > p:first-child {
  margin: 0 0 36px;
  font-size: 18px;
}

.prototype-only {
  margin: 16px 0 0;
  color: rgba(27, 32, 44, 0.6);
  font: 500 8px/1.4 var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-footer {
  padding: 60px max(32px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: 0.5fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  color: rgba(247, 243, 235, 0.66);
  background: var(--night);
  font-size: 12px;
}

.site-footer .footer-brand {
  color: var(--paper);
}

.site-footer > p {
  margin: 8px 0 0;
}

.footer-boundary {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  font: 500 9px/1.4 var(--mono);
  letter-spacing: 0.06em;
  text-align: right;
  text-transform: uppercase;
}

.footer-boundary a {
  text-decoration: none;
}

.footer-boundary a:hover {
  color: var(--paper);
}

.scroll-progress {
  position: fixed;
  z-index: 110;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
}

/* Production content pages */
.content-page {
  background: var(--paper);
}

.content-page .site-header {
  background: rgba(16, 23, 37, 0.96);
}

.page-hero {
  position: relative;
  min-height: 78svh;
  padding: 190px 0 110px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 79% 46%, rgba(81, 112, 158, 0.2), transparent 30%),
    linear-gradient(138deg, var(--sapphire-deep), var(--night) 64%);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 74px 0 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, black 24%, transparent 100%);
}

.page-hero-orbit {
  position: absolute;
  width: min(66vw, 900px);
  aspect-ratio: 1;
  right: -10vw;
  top: 48%;
  transform: translateY(-50%);
  border: 1px solid rgba(228, 201, 141, 0.2);
  border-radius: 50%;
}

.page-hero-orbit::before,
.page-hero-orbit::after {
  content: '';
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(247, 243, 235, 0.07);
  border-radius: 50%;
}

.page-hero-orbit::after {
  inset: 38%;
  background: radial-gradient(circle, rgba(228, 201, 141, 0.1), transparent 65%);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 1000px;
  margin: 0;
  font: 400 clamp(64px, 8vw, 118px) / 0.9 var(--serif);
  letter-spacing: -0.05em;
}

.page-hero h1 em {
  color: var(--gold-light);
  font-weight: 400;
}

.page-hero-inner > p:last-child {
  max-width: 650px;
  margin: 38px 0 0;
  color: rgba(247, 243, 235, 0.67);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
}

.content-section {
  padding: 140px 0;
  border-bottom: 1px solid var(--hairline);
}

.content-section:nth-of-type(even) {
  background: var(--paper-deep);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 120px;
  align-items: start;
}

.editorial-grid h2 {
  max-width: 720px;
}

.content-prose {
  padding-top: 34px;
}

.content-prose > p {
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.inline-link,
.content-prose a,
.line-list a,
.legal-page a {
  color: var(--sapphire);
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.line-list {
  margin-top: 48px;
  border-top: 1px solid var(--ink);
}

.line-list > div {
  min-height: 104px;
  padding: 26px 0;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 32px;
  align-items: start;
  border-bottom: 1px solid var(--hairline);
}

.line-list h3 {
  margin: 0;
  font: 400 27px/1.1 var(--serif);
}

.line-list p {
  margin: 2px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.boundary-strip,
.crisis-callout {
  padding: 120px 0;
  color: var(--paper);
  background: var(--night);
}

.boundary-strip h2,
.crisis-callout h2 {
  max-width: 1000px;
}

.boundary-strip > .section-wrap > p:last-child,
.crisis-callout > .section-wrap > p:last-child {
  max-width: 760px;
  margin: 38px 0 0;
  color: rgba(247, 243, 235, 0.6);
  font-size: 18px;
}

.crisis-callout a {
  color: var(--gold-light);
}

.page-cta {
  padding: 130px 0;
  background: var(--gold-light);
}

.page-cta-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 110px;
  align-items: end;
}

.page-cta-inner > div:last-child > p {
  margin: 0 0 34px;
  font-size: 18px;
}

.page-cta small {
  margin-top: 16px;
  display: block;
  color: rgba(27, 32, 44, 0.58);
  font: 500 8px/1.5 var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 30px;
}

.footer-map a {
  color: rgba(247, 243, 235, 0.62);
  font-size: 11px;
  text-decoration: none;
}

.footer-map a:hover {
  color: var(--paper);
}

.faq-section {
  padding: 120px 0;
}

.faq-list {
  max-width: 980px;
}

.faq-list details {
  border-top: 1px solid var(--hairline);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--hairline);
}

.faq-list summary {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  list-style: none;
  font: 400 29px/1.15 var(--serif);
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: '+';
  color: var(--gold);
  font: 400 22px/1 var(--sans);
}

.faq-list details[open] summary::after {
  content: '−';
}

.faq-list details p {
  max-width: 720px;
  margin: -8px 0 32px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.legal-page {
  padding: 100px 0 140px;
}

.legal-page > .section-wrap {
  max-width: 900px;
}

.legal-banner {
  margin-bottom: 64px;
  padding: 28px 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  font: 400 27px/1.3 var(--serif);
}

.legal-sections > section {
  padding: 48px 0;
  border-bottom: 1px solid var(--hairline);
}

.legal-sections h2 {
  margin-bottom: 24px;
  font-size: clamp(38px, 4vw, 56px);
}

.legal-sections p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.crisis-page {
  padding: 110px 0 140px;
}

.crisis-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
}

.crisis-actions > a {
  min-height: 340px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  text-decoration: none;
  transition:
    color 250ms ease,
    background 250ms ease,
    transform 250ms var(--ease);
}

.crisis-actions > a:last-child {
  border-right: 0;
}

.crisis-actions > a:hover {
  color: var(--paper);
  background: var(--sapphire);
  transform: translateY(-6px);
}

.crisis-actions span,
.crisis-actions small {
  font: 500 10px/1.4 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.crisis-actions strong {
  margin: auto 0;
  font: 400 clamp(70px, 8vw, 116px) / 1 var(--serif);
}

.crisis-actions small {
  color: var(--ink-soft);
}

.crisis-actions > a:hover small {
  color: rgba(247, 243, 235, 0.62);
}

.crisis-note {
  max-width: 820px;
  margin-top: 70px;
}

.crisis-note p {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.reveal {
  transform: translateY(0);
}

.js .reveal {
  transform: translateY(22px);
}

.js .reveal.is-visible {
  transform: translateY(0);
  transition: transform 750ms var(--ease);
}

@media (max-width: 1020px) {
  :root { --wrap: min(100% - 48px, 860px); }

  .site-header {
    padding: 0 24px;
    grid-template-columns: 1fr auto;
  }

  .primary-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    justify-self: end;
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 0;
    color: var(--paper);
    background: transparent;
  }

  .menu-button span:not(.sr-only) {
    width: 20px;
    height: 1px;
    background: currentColor;
  }

  .primary-nav.is-open {
    position: absolute;
    inset: 74px 0 auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    color: var(--paper);
    background: var(--night);
    border-bottom: 1px solid var(--hairline-light);
  }

  .primary-nav.is-open a {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid var(--hairline-light);
    font-size: 15px;
  }

  .hero-field {
    right: -22vw;
    width: 85vw;
    opacity: 0.72;
  }

  .problem-layout,
  .trust-layout {
    grid-template-columns: 48px 1fr;
  }

  .fragment-ledger,
  .evidence-ledger {
    grid-column: 2;
    margin-top: 50px;
  }

  .continuity-story {
    gap: 45px;
  }

  .perspective-stage {
    grid-template-columns: 1fr;
  }

  .workspace-preview {
    min-height: 460px;
  }

  .fit-layout,
  .boundary-panel,
  .partner-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .proof-sequence {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-sequence > div:nth-child(2) {
    border-right: 0;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-boundary {
    grid-column: 1 / -1;
    align-items: flex-start;
    text-align: left;
  }

  .editorial-grid,
  .page-cta-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .content-prose {
    padding-top: 0;
  }

  .crisis-actions {
    grid-template-columns: 1fr;
  }

  .crisis-actions > a {
    min-height: 230px;
    border-right: 0;
  }
}

@media (max-width: 720px) {
  :root { --wrap: calc(100% - 36px); }

  .prototype-ribbon {
    justify-content: flex-start;
    padding-left: 14px;
  }

  .prototype-ribbon span:nth-child(2),
  .prototype-ribbon span:nth-child(3) {
    display: none;
  }

  .ribbon-action { right: 14px; }

  .site-header {
    height: 64px;
  }

  .primary-nav.is-open { inset: 64px 0 auto; }

  .hero-content {
    min-height: calc(100svh - 98px);
    padding: 180px 0 132px;
    justify-content: flex-end;
  }

  .hero h1 {
    font-size: clamp(54px, 16vw, 82px);
  }

  .hero-copy {
    max-width: 94%;
    margin-top: 28px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
  }

  .hero-field {
    right: -37vw;
    top: 38%;
    width: 125vw;
    opacity: 0.5;
  }

  .hero-foot {
    bottom: 24px;
    gap: 16px;
  }

  .hero-foot span:nth-child(2) { display: none; }
  .scroll-cue { display: none; }

  .problem-section,
  .continuity-section,
  .role-section,
  .trust-section,
  .proof-section,
  .partner-section {
    padding: 105px 0;
  }

  .problem-layout,
  .role-heading,
  .trust-layout {
    display: block;
  }

  .section-index {
    margin-bottom: 42px;
  }

  .fragment-ledger,
  .evidence-ledger {
    margin-top: 58px;
  }

  h2 { font-size: clamp(48px, 14vw, 68px); }

  .continuity-intro {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom: 58px;
  }

  .continuity-story {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 55px;
  }

  .story-visual {
    position: relative;
    top: auto;
    order: -1;
    height: 480px;
  }

  .story-step {
    min-height: 120px;
  }

  .loop-figure {
    inset: 83px 24px 126px;
  }

  .perspective-switcher,
  .perspective-stage {
    margin-left: 0;
  }

  .perspective-switcher {
    overflow-x: auto;
    gap: 26px;
  }

  .perspective-button {
    flex: 0 0 auto;
  }

  .perspective-stage {
    margin-top: 54px;
    gap: 52px;
  }

  .workspace-preview {
    min-height: 440px;
    padding: 28px 22px;
  }

  .workspace-ledger > div {
    grid-template-columns: 1fr 0.7fr;
  }

  .workspace-ledger span:nth-child(2) { display: none; }

  .fit-section { padding: 105px 0; }
  .fit-marquee { font-size: 95px; }

  .trust-heading {
    position: relative;
    top: auto;
  }

  .boundary-panel {
    margin-top: 85px;
  }

  .evidence-row {
    grid-template-columns: 0.72fr 1.28fr 20px;
  }

  .evidence-row strong { font-size: 21px; }

  .proof-sequence {
    grid-template-columns: 1fr;
  }

  .proof-sequence > div,
  .proof-sequence > div:nth-child(2) {
    min-height: 150px;
    padding: 26px 0;
    display: grid;
    grid-template-columns: 110px 1fr;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid var(--hairline);
  }

  .proof-sequence p { margin: 0; }

  .site-footer {
    padding: 54px 18px;
    grid-template-columns: 1fr;
  }

  .footer-boundary { grid-column: auto; }
}

@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;
  }

  .js .reveal,
  .js .hero-content > * {
    transform: none;
  }

  .page-hero {
    min-height: 72svh;
    padding: 155px 0 90px;
  }

  .page-hero h1 {
    font-size: clamp(54px, 15vw, 78px);
  }

  .page-hero-orbit {
    width: 120vw;
    right: -62vw;
    opacity: 0.6;
  }

  .content-section,
  .page-cta,
  .boundary-strip,
  .crisis-callout {
    padding: 92px 0;
  }

  .line-list > div {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .page-cta-inner {
    gap: 44px;
  }

  .footer-map {
    grid-template-columns: 1fr 1fr;
  }

  .faq-list summary {
    min-height: 82px;
    font-size: 24px;
  }

  .legal-page {
    padding: 70px 0 100px;
  }

  .legal-sections > section {
    padding: 38px 0;
  }

  .crisis-page {
    padding: 80px 0 100px;
  }

  .crisis-actions > a {
    min-height: 205px;
    padding: 28px 20px;
  }
}

/* ── Rich product shots (static re-expressions of the preview library) ───── */

.shot {
  border: 1px solid var(--hairline);
  border-radius: 14px;
  background: #fdfbf7;
  box-shadow: 0 24px 60px -36px rgba(16, 23, 37, 0.45);
  overflow: hidden;
  margin-top: 26px;
  font-size: 12.5px;
}
.shot-appbar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  background: var(--night);
  color: var(--paper);
}
.shot-appbar .mini-mark { flex: none; }
.shot-appbar nav {
  display: flex;
  gap: 12px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 243, 235, 0.62);
}
.shot-appbar nav .is-active { color: var(--gold-light); }
.shot-appbar .shot-user {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.06em;
  color: rgba(247, 243, 235, 0.75);
}
.shot-body { padding: 16px 18px 14px; display: grid; gap: 12px; }
.shot-kicker {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm);
}
.shot-h { font-family: var(--serif); font-size: 17px; line-height: 1.25; color: var(--ink); margin: 2px 0 0; }
.shot-lead { margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.5; }
.shot-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.shot-chip {
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 3px 10px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  background: #fff;
}
.shot-chip.is-active { background: var(--sapphire-deep); border-color: var(--sapphire-deep); color: var(--paper); }
.shot-table { border: 1px solid var(--hairline); border-radius: 10px; overflow: hidden; background: #fff; }
.shot-tr, .shot-th {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 1.7fr 1fr 0.9fr;
  gap: 10px;
  padding: 8px 12px;
  align-items: center;
  border-top: 1px solid var(--hairline);
}
.shot-th {
  border-top: 0;
  background: var(--paper-deep);
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.shot-name { font-family: var(--serif); font-size: 13.5px; color: var(--ink); }
.shot-sub { font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.05em; color: var(--ink-soft); }
.shot-mono { font-family: var(--mono); font-size: 10px; color: var(--ink-soft); }
.shot-dim { font-size: 11.5px; color: var(--ink-soft); line-height: 1.4; }
.shot-delta-up { color: #a34a22; font-weight: 600; font-size: 11.5px; }
.shot-delta-down { color: #2e5a41; font-weight: 600; font-size: 11.5px; }
.shot-delta-flat { color: var(--ink-soft); font-size: 11.5px; }
.shot-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 3px 10px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.shot-status i { width: 6px; height: 6px; border-radius: 50%; flex: none; }
.shot-status.tone-alert { background: #f6e3d7; color: #8a3c17; }
.shot-status.tone-alert i { background: #b95e32; }
.shot-status.tone-warm { background: #f3ead4; color: #6d5312; }
.shot-status.tone-warm i { background: var(--gold); }
.shot-status.tone-calm { background: #e7ede6; color: #2e5a41; }
.shot-status.tone-calm i { background: #4c7a5f; }
.shot-status.tone-info { background: var(--paper-deep); color: var(--sapphire); }
.shot-status.tone-info i { background: var(--sapphire); }
.shot-cards { display: grid; grid-template-columns: 1.4fr 1fr; gap: 12px; }
.shot-card { border: 1px solid var(--hairline); border-radius: 10px; background: #fff; padding: 12px 14px; display: grid; gap: 8px; align-content: start; }
.shot-card-label {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.shot-card h4 { margin: 0; font-family: var(--serif); font-size: 14px; color: var(--ink); line-height: 1.3; }
.shot-bars { display: grid; gap: 10px; }
.shot-bar-row { display: grid; grid-template-columns: 84px 1fr; gap: 10px; align-items: end; }
.shot-bar-label { font-size: 11px; color: var(--ink); display: grid; gap: 2px; }
.shot-bar-label small { font-size: 9.5px; font-family: var(--mono); }
.shot-bar-chart { display: flex; gap: 8px; align-items: flex-end; height: 56px; }
.shot-bar-col { display: grid; gap: 3px; justify-items: center; }
.shot-bar-col b { font-family: var(--mono); font-size: 8.5px; font-weight: 400; color: var(--ink-soft); }
.shot-bar { width: 18px; border-radius: 3px 3px 0 0; }
.shot-bar.tone-up { background: #c07a52; }
.shot-bar.tone-down { background: #5f8871; }
.shot-rows { display: grid; gap: 0; border-top: 1px solid var(--hairline); }
.shot-rows > div { display: grid; grid-template-columns: 1fr auto; gap: 10px; padding: 7px 0; border-bottom: 1px solid var(--hairline); font-size: 11.5px; color: var(--ink); align-items: baseline; }
.shot-rows > div span:last-child { font-family: var(--mono); font-size: 9.5px; color: var(--ink-soft); text-align: right; }
.shot-foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 12px;
  background: var(--paper-deep);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
}
@media (max-width: 760px) {
  .shot-cards { grid-template-columns: 1fr; }
  .shot-tr, .shot-th { grid-template-columns: 1fr 1fr; }
  .shot-th div:nth-child(n + 3), .shot-tr > div:nth-child(n + 3) { display: none; }
  .shot-tr > div:nth-child(5) { display: block; }
  .shot-th div:nth-child(5) { display: block; }
}

/* ── Founder letter + leadership ─────────────────────────────────────────── */

.letter { display: grid; gap: 16px; max-width: 62ch; }
.letter p { margin: 0; font-family: var(--serif); font-size: 17px; line-height: 1.65; color: var(--ink); }
.letter .letter-sig { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }
.people-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 10px; }
.person { border: 1px solid var(--hairline); border-radius: 14px; background: #fdfbf7; padding: 20px 22px; display: grid; gap: 10px; align-content: start; }
.person h3 { margin: 0; font-family: var(--serif); font-size: 20px; color: var(--ink); }
.person .person-role { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--warm); }
.person .person-loc { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.05em; color: var(--ink-soft); }
.person-signals { display: flex; flex-wrap: wrap; gap: 6px; }
.person-signals span {
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 3px 10px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  background: #fff;
}
.person p { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--ink-soft); }
.person .person-scope {
  border-left: 3px solid var(--gold);
  padding: 8px 12px;
  background: rgba(200, 156, 80, 0.08);
  border-radius: 0 8px 8px 0;
  font-size: 12.5px;
  color: var(--ink);
}
.person .person-scope b { font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--warm); display: block; margin-bottom: 4px; }
@media (max-width: 860px) { .people-grid { grid-template-columns: 1fr; } }

/* ── Print: diligence artifacts travel as clean documents ─────────────────── */

@media print {
  body { background: #fff !important; color: #000; }
  .site-header, .site-footer, .page-cta, .scroll-progress, .menu-button, .page-hero-orbit, .skip-link { display: none !important; }
  .page-hero { background: #fff !important; color: #000 !important; padding: 0 0 12px !important; min-height: 0 !important; }
  .page-hero h1, .page-hero h1 em, .page-hero-inner > p { color: #000 !important; }
  .page-hero::before { display: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .content-section, .section-light { background: #fff !important; padding: 14px 0 !important; }
  .boundary-strip, .crisis-callout { background: #fff !important; color: #000 !important; border-top: 2px solid #000; border-bottom: 2px solid #000; padding: 14px 0 !important; }
  .boundary-strip h2, .boundary-strip p, .boundary-strip .eyebrow-light,
  .crisis-callout h2, .crisis-callout p, .crisis-callout .eyebrow-light { color: #000 !important; }
  a { color: #000 !important; text-decoration: none; }
  .content-prose a[href^="/"]::after { content: " (peacefullai.io" attr(href) ")"; font-size: 0.8em; }
  .shot, .workspace-preview { box-shadow: none !important; break-inside: avoid; }
  .line-list > div, .person, .shot-card { break-inside: avoid; }
  .editorial-grid { display: block !important; }
  .editorial-grid > div + div { margin-top: 10px; }
}

/* ── On-this-page nav + journey links ─────────────────────────────────────── */

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
section[id] { scroll-margin-top: 170px; }

.page-toc {
  position: sticky;
  top: 108px;
  z-index: 60;
  background: rgba(247, 243, 235, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.page-toc-inner {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  scrollbar-width: none;
}
.page-toc-inner::-webkit-scrollbar { display: none; }
.page-toc-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm);
  flex: none;
  margin-right: 10px;
}
.page-toc a {
  flex: none;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 5px 11px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.page-toc a:hover { color: var(--ink); border-color: var(--hairline); }

.next-band { background: var(--paper-deep); border-top: 1px solid var(--hairline); }
.next-band-inner {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-top: 26px;
  padding-bottom: 26px;
}
.next-band a {
  font-family: var(--serif);
  font-size: clamp(20px, 2.6vw, 26px);
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s var(--ease);
}
.next-band a:hover { color: var(--warm); }
@media (max-width: 880px) {
  .page-toc { top: 98px; }
  section[id] { scroll-margin-top: 158px; }
}
@media print { .page-toc, .next-band { display: none !important; } }

/* ── Lead intake form ─────────────────────────────────────────────────────── */

.lead-form {
  display: grid;
  gap: 20px;
  margin-top: 10px;
  background: #fdfbf7;
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: 0 30px 70px -50px rgba(16, 23, 37, 0.5);
}
.lead-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 16px; }
.lead-form label {
  display: grid;
  gap: 8px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(27, 32, 44, 0.24);
  border-radius: 10px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.lead-form input:hover, .lead-form select:hover, .lead-form textarea:hover { border-color: rgba(27, 32, 44, 0.44); }
.lead-form input:focus-visible, .lead-form select:focus-visible, .lead-form textarea:focus-visible {
  outline: none;
  border-color: var(--sapphire);
  box-shadow: 0 0 0 3px rgba(38, 59, 94, 0.16);
}
.lead-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23454b58' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  cursor: pointer;
}
.lead-form textarea { resize: vertical; line-height: 1.55; min-height: 140px; }
.lead-form ::placeholder { color: rgba(69, 75, 88, 0.55); }
.lead-optional { font-weight: 400; font-size: 12px; color: var(--ink-soft); }
.lead-form-wide { grid-column: 1 / -1; }
.lead-hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.lead-consent { margin: 0; font-size: 13px; line-height: 1.55; color: var(--ink-soft); }
.lead-form .button {
  justify-self: start;
  border: 0;
  cursor: pointer;
  font-size: 15.5px;
  padding: 14px 26px;
  border-radius: 999px;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.lead-form .button:hover { transform: translateY(-1px); box-shadow: 0 14px 30px -18px rgba(16, 23, 37, 0.7); }
.lead-alt { margin: 0; font-size: 12.5px; line-height: 1.7; color: var(--ink-soft); }
@media (max-width: 680px) {
  .lead-form-grid { grid-template-columns: 1fr; }
  .lead-form .button { justify-self: stretch; text-align: center; }
}
@media print { .lead-form { display: none !important; } }
