
:root {
  --canvas: #f7f3e9;
  --canvas-alt: #fbf8f0;
  --paper: #fffdf7;
  --deep: #0f2662;
  --text: #091d3e;
  --primary: #142e83;
  --accent: #1935a2;
  --muted: rgba(9, 29, 62, 0.62);
  --soft: rgba(9, 29, 62, 0.08);
  --hairline: rgba(9, 29, 62, 0.16);
  --hairline-inverse: rgba(247, 243, 233, 0.22);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --page-max: 1200px;
  --page-inline-space: clamp(48px, 8vw, 128px);
  --rail-gutter: 72px;
  --page: min(var(--page-max), calc(100vw - var(--page-inline-space) - var(--rail-gutter)));
  --copy: 67ch;
  --radius-sm: 10px;
  --radius-md: 18px;
  --duration-fast: 150ms;
  --duration: 280ms;
  --duration-slow: 720ms;
  --ease: cubic-bezier(.22, .8, .22, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--canvas); }
body {
  margin: 0;
  color: var(--text);
  background: var(--canvas);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
body::selection, ::selection { background: var(--deep); color: var(--canvas); }
img, svg { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
a { color: inherit; }

.skip-link {
  position: fixed; left: 16px; top: 12px; z-index: 1000;
  transform: translateY(-160%); background: var(--deep); color: var(--canvas);
  padding: 10px 14px; font-family: var(--sans); font-size: 14px;
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  transition: background-color var(--duration), border-color var(--duration), backdrop-filter var(--duration);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--canvas) 90%, transparent);
  border-color: var(--hairline);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}
.header-inner {
  width: var(--page); margin: 0 auto; min-height: 74px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px;
}
.brand {
  justify-self: start; display: inline-flex; align-items: center; gap: 13px;
  text-decoration: none; color: var(--deep);
}
.brand-copy { display: flex; min-width: 0; flex-direction: column; line-height: 1.05; }
.brand-name { font-size: 18px; font-weight: 500; letter-spacing: .01em; white-space: nowrap; }
.brand-meta { margin-top: 5px; font-family: var(--sans); font-size: 9px; line-height: 1; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.header-center { justify-self: center; }
.lang-switch {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans);
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
}
.lang-switch a { position: relative; text-decoration: none; transition: color var(--duration-fast); }
.lang-switch a::before { content: ""; position: absolute; inset: -10px -6px; }
.lang-switch a[aria-current="page"], .lang-switch a:hover { color: var(--deep); }
.lang-switch span { opacity: .35; }
.header-cta {
  justify-self: end; font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase; text-decoration: none;
  color: var(--deep); padding: 10px 0 8px; border-bottom: 1px solid var(--deep);
  transition: opacity var(--duration-fast), transform var(--duration-fast);
}
.header-cta:hover { opacity: .68; transform: translateY(-1px); }

/* Section rail: desktop orientation and jump navigation */
.section-rail {
  position: fixed; z-index: 90; top: 50%; transform: translateY(-50%);
  right: clamp(16px, 2vw, 32px);
  display: flex; flex-direction: column; gap: 12px; font-family: var(--sans);
}
.section-rail a {
  position: relative; display: flex; align-items: center; justify-content: flex-end;
  padding: 3px 0; font-size: 10px; font-weight: 600; letter-spacing: .14em;
  color: var(--muted); text-decoration: none; transition: color var(--duration-fast);
}
.section-rail a::before { content: ""; position: absolute; inset: -10px -6px; }
.section-rail a::after {
  content: ""; width: 18px; height: 1px; background: currentColor; opacity: .45;
  margin-left: 10px;
  transition: width var(--duration) var(--ease), opacity var(--duration);
}
.rail-label {
  max-width: 0; overflow: hidden; white-space: nowrap;
  opacity: 0; padding-right: 0;
  font-size: 11px; font-weight: 500; letter-spacing: .08em;
  text-transform: none;
  transition: max-width var(--duration) var(--ease),
              opacity var(--duration) var(--ease),
              padding-right var(--duration) var(--ease);
}
.section-rail a:hover .rail-label,
.section-rail a:focus-visible .rail-label {
  max-width: 160px; opacity: 1; padding-right: 10px;
}
.section-rail a:hover,
.section-rail a[aria-current="true"] { color: var(--deep); }
.section-rail a[aria-current="true"]::after { width: 34px; opacity: 1; }
.section-rail a:focus-visible { outline: 2px solid currentColor; outline-offset: 5px; }
.section-rail.is-inverse a { color: rgba(247, 243, 233, .58); }
.section-rail.is-inverse a:hover,
.section-rail.is-inverse a[aria-current="true"] { color: var(--canvas); }

/* Scroll progress: mobile orientation, replaces the rail below 1024px */
.scroll-progress {
  display: none; position: fixed; inset: 0 0 auto; z-index: 101; height: 2px;
  background: var(--soft); pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%; background: var(--deep);
  transform: scaleX(0); transform-origin: left center;
}

main { position: relative; }
.page-shell { width: var(--page); margin: 0 auto; }
.section {
  position: relative; padding: clamp(90px, 11vw, 160px) 0;
  border-top: 1px solid var(--hairline);
}
.section--first { border-top: 0; }
.section--compact { padding: clamp(72px, 8vw, 110px) 0; }
.section--navy { background: var(--deep); color: var(--canvas); border-top: 0; }
.section--navy + .section { border-top: 0; }
section[id], .contact-section[id] { scroll-margin-top: 74px; }
.section--paper { background: var(--canvas-alt); }
.section-grid { display: grid; grid-template-columns: minmax(220px, .7fr) minmax(0, 1.6fr); gap: clamp(50px, 8vw, 120px); }
.section-index { position: sticky; top: 110px; align-self: start; }
.kicker {
  margin: 0; font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--muted);
}
.section--navy .kicker { color: rgba(247,243,233,.62); }
.section-number { display: block; margin-bottom: 24px; font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--muted); }
.section--navy .section-number { color: rgba(247,243,233,.48); }
.display, h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 { margin: 0; color: var(--deep); font-weight: 500; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--canvas); }
h2 { font-size: clamp(40px, 5vw, 72px); line-height: 1; letter-spacing: -.035em; max-width: 13ch; }
h3 { font-size: clamp(26px, 3vw, 42px); line-height: 1.08; letter-spacing: -.02em; }
.lead { margin: 30px 0 0; max-width: 58ch; font-size: clamp(20px, 2.1vw, 29px); line-height: 1.44; color: var(--text); }
.section--navy .lead { color: rgba(247,243,233,.82); }
.body-copy { max-width: var(--copy); }
.body-copy p { margin: 0 0 1.25em; }
.body-copy p:last-child { margin-bottom: 0; }
.text-muted { color: var(--muted); }
.section--navy .text-muted { color: rgba(247,243,233,.58); }

.hero {
  min-height: 100dvh; position: relative; display: grid; align-items: center;
  padding: clamp(112px, 13vh, 136px) 0 clamp(72px, 9vh, 96px); overflow: clip; border: 0;
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--hairline);
}
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; opacity: .9; }
.hero-inner { position: relative; z-index: 2; width: var(--page); margin: 0 auto; }
.hero-copy { max-width: 900px; }
.hero .kicker { margin-bottom: clamp(26px, 4vw, 46px); }
.hero h1 {
  font-size: clamp(64px, 7vw, 96px); line-height: .92; letter-spacing: -.04em;
  max-width: 11.5ch; padding-bottom: .06em; color: var(--deep);
}
.hero h1 em { font-weight: 400; }
.hero h1 .quiet { font-style: italic; font-weight: 400; }
.hero-intro {
  margin: clamp(30px, 4vw, 48px) 0 0; max-width: 680px;
  font-size: clamp(21px, 1.8vw, 27px); line-height: 1.42; color: var(--text);
}
.hero-rule { width: min(360px, 42vw); height: 1px; background: var(--hairline); margin: 26px 0; }
.hero-note { max-width: 620px; margin: 0; color: var(--muted); }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 32px; flex-wrap: wrap; }
.button-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  min-height: 52px; padding: 0 22px; border: 1px solid var(--deep); background: transparent;
  color: var(--deep); text-decoration: none; font-family: var(--sans); font-size: 12px;
  font-weight: 650; letter-spacing: .14em; text-transform: uppercase;
  transition: background var(--duration), color var(--duration), transform var(--duration-fast);
}
.button-primary::after { content: "↗"; font-size: 14px; }
.button-primary:hover { background: var(--deep); color: var(--canvas); transform: translateY(-2px); }
.button-primary--inverse { border-color: var(--canvas); color: var(--canvas); }
.button-primary--inverse:hover { background: var(--canvas); color: var(--deep); }
.text-link {
  display: inline-flex; align-items: center; gap: 10px; font-family: var(--sans);
  font-size: 12px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  text-decoration: none; border-bottom: 1px solid var(--hairline); padding-bottom: 7px;
}
.text-link::after { content: "→"; }
.text-link:hover { border-color: var(--deep); }
.section--navy .text-link { border-color: var(--hairline-inverse); }
.section--navy .text-link:hover { border-color: var(--canvas); }
.statement-grid {
  margin-top: 72px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--hairline);
}
.statement { padding: 28px clamp(16px, 2.5vw, 34px) 34px 0; border-right: 1px solid var(--hairline); }
.statement + .statement { padding-left: clamp(16px, 2.5vw, 34px); }
.statement:last-child { border-right: 0; }
.statement strong { display: block; color: var(--deep); font-size: clamp(25px, 2.6vw, 36px); font-weight: 500; line-height: 1.08; }
.statement p { margin: 14px 0 0; color: var(--muted); font-size: 16px; }

.method-layout { display: grid; grid-template-columns: minmax(280px, .85fr) minmax(0, 1.5fr); gap: clamp(58px, 9vw, 150px); }
.method-intro { position: sticky; top: 120px; align-self: start; }
.method-intro h2 { max-width: 9ch; }
.method-intro .lead { max-width: 34ch; }
.method-note { margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--hairline); max-width: 36ch; color: var(--muted); }
.method-list { counter-reset: method; }
.method-step {
  counter-increment: method; position: relative; min-height: 48vh; padding: 8px 0 72px 72px;
  border-left: 1px solid var(--hairline);
}
.method-step::before {
  content: counter(method, decimal-leading-zero); position: absolute; left: -18px; top: 4px;
  width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--hairline);
  border-radius: 50%; background: var(--canvas); font-family: var(--sans); font-size: 9px;
  letter-spacing: .08em; color: var(--muted); transition: border-color var(--duration), color var(--duration), transform var(--duration);
}
.method-step h3 { color: var(--muted); transition: color var(--duration-slow) var(--ease); }
.method-step.is-active h3 { color: var(--deep); }
.method-step.is-active::before { border-color: var(--deep); color: var(--deep); transform: scale(1.12); }
.method-term { display: block; margin-bottom: 18px; font-family: var(--sans); font-size: 11px; font-weight: 650; letter-spacing: .19em; text-transform: uppercase; color: var(--muted); }
.method-step h3 { max-width: 13ch; }
.method-step p { max-width: 47ch; margin: 22px 0 0; color: var(--muted); font-size: 18px; }
.method-step:last-child { min-height: 28vh; }

.growth-intro { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(48px, 8vw, 120px); align-items: end; }
.growth-intro h2 { max-width: 11ch; }
.growth-equation {
  margin-top: 74px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--hairline);
}
.growth-card { position: relative; min-height: 310px; padding: 30px; border-right: 1px solid var(--hairline); overflow: hidden; }
.growth-card:last-child { border-right: 0; }
.growth-card .no { font-family: var(--sans); font-size: 10px; letter-spacing: .18em; color: var(--muted); }
.growth-card h3 { margin-top: 88px; max-width: 10ch; }
.growth-card p { margin: 22px 0 0; color: var(--muted); font-size: 16px; max-width: 27ch; }
.growth-card::after {
  content: ""; position: absolute; width: 150px; height: 150px; right: -78px; top: -78px;
  border: 1px solid var(--hairline); border-radius: 50%; transition: transform var(--duration-slow) var(--ease);
}
.growth-card:hover::after { transform: translate(-34px, 34px) scale(1.35); }
.growth-foot { margin: 28px 0 0; color: var(--muted); font-size: 16px; max-width: 70ch; }

.constellation-wrap { display: grid; gap: clamp(48px, 6vw, 78px); }
.constellation-header { position: relative; z-index: 4; max-width: 820px; }
.constellation-header .kicker { margin-bottom: 18px; }
.constellation-header h2 { max-width: 12ch; }
.constellation-layout {
  display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(250px, .65fr);
  gap: clamp(34px, 5vw, 72px); align-items: end;
}
.constellation-figure {
  display: grid; grid-template-columns: max-content minmax(84px, 150px) max-content;
  justify-content: start; align-items: stretch; gap: 0;
}
.constellation-terms {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1.45em; align-self: center;
}
.constellation-terms li {
  font-size: clamp(19px, 1.7vw, 24px); line-height: 1;
  color: rgba(247,243,233,.82);
}
.constellation-join { width: 100%; align-self: stretch; height: auto; display: block; }
.constellation-join path {
  fill: none; stroke: var(--canvas); stroke-opacity: .26; stroke-width: 1;
  stroke-dasharray: 260; stroke-dashoffset: 260;
  transition: stroke-dashoffset 1.1s var(--ease);
}
.constellation-join circle { fill: var(--canvas); fill-opacity: 0; transition: fill-opacity var(--duration) .9s; }
.constellation-join line { stroke: var(--canvas); stroke-opacity: 0; stroke-width: 1; transition: stroke-opacity var(--duration) 1s; }
.constellation.is-active .constellation-join path { stroke-dashoffset: 0; }
.constellation.is-active .constellation-join path:nth-of-type(2) { transition-delay: .12s; }
.constellation.is-active .constellation-join path:nth-of-type(3) { transition-delay: .24s; }
.constellation.is-active .constellation-join path:nth-of-type(4) { transition-delay: .36s; }
.constellation.is-active .constellation-join circle { fill-opacity: .9; }
.constellation.is-active .constellation-join line { stroke-opacity: .5; }
.constellation-result {
  margin: 0; font-style: italic; line-height: 1; align-self: center;
  font-size: clamp(32px, 3.6vw, 48px); color: var(--canvas);
}
.constellation-copy { border-top: 1px solid var(--hairline-inverse); padding-top: 24px; color: rgba(247,243,233,.76); }
.constellation-copy p { margin: 0; max-width: 36ch; }

.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(60px, 10vw, 150px); align-items: start; }
.proof-copy h2 { max-width: 9ch; }
.proof-copy .lead { max-width: 36ch; }
.proof-list { border-top: 1px solid var(--hairline); }
.proof-item { display: grid; grid-template-columns: 116px 1fr; gap: 26px; padding: 24px 0; border-bottom: 1px solid var(--hairline); }
.proof-item strong { color: var(--deep); font-size: 22px; font-weight: 500; line-height: 1.15; }
.proof-item span { color: var(--muted); font-size: 16px; }
.discretion { margin-top: 32px; color: var(--muted); font-style: italic; }

.dossier-header { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: end; }
.dossier-header h2 { max-width: 10ch; }
.dossier-grid { margin-top: 68px; display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--hairline); }
.dossier-card {
  min-height: 290px; padding: 30px; text-decoration: none; position: relative;
  border-right: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  transition: background var(--duration), color var(--duration);
}
.dossier-card:nth-child(2n) { border-right: 0; }
.dossier-card:nth-last-child(-n+2) { border-bottom: 0; }
.dossier-card .meta { font-family: var(--sans); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.dossier-card h3 { margin-top: 54px; max-width: 13ch; }
.dossier-card p { margin: 18px 0 0; color: var(--muted); font-size: 16px; max-width: 34ch; }
.dossier-card::after { content: "↗"; position: absolute; right: 28px; bottom: 22px; font-family: var(--sans); color: var(--muted); }
.dossier-card:hover { background: var(--deep); color: var(--canvas); }
.dossier-card:hover h3 { color: var(--canvas); }
.dossier-card:hover p, .dossier-card:hover .meta, .dossier-card:hover::after { color: rgba(247,243,233,.72); }
.profile-link { margin-top: 28px; }

.profile-composition {
  display: grid; grid-template-columns: 140px minmax(180px, .65fr) minmax(0, 1.35fr);
  gap: clamp(32px, 5vw, 76px); align-items: start;
}
.profile-marker .section-number { margin-bottom: 12px; }
.profile-composition h2 { max-width: 8ch; font-size: clamp(40px, 4.5vw, 62px); }
.profile-composition > p { margin: 0; max-width: 62ch; font-size: clamp(18px, 1.6vw, 22px); line-height: 1.55; }

.contact-section { padding: clamp(92px, 11vw, 150px) 0; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(64px, 10vw, 150px); }
.contact-copy h2 { max-width: 8ch; }
.contact-copy .lead { max-width: 31ch; }
.contact-form { border-top: 1px solid var(--hairline-inverse); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field { position: relative; padding: 23px 0 8px; border-bottom: 1px solid var(--hairline-inverse); }
.field label { display: block; font-family: var(--sans); font-size: 9px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(247,243,233,.54); }
.field input, .field textarea {
  width: 100%; border: 0; outline: 0; background: transparent; color: var(--canvas);
  padding: 9px 0 8px; font-size: 19px; line-height: 1.45; border-radius: 0;
}
.field textarea { min-height: 130px; resize: vertical; }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(1px,1px,1px,1px) !important; white-space: nowrap !important; }
.cf-turnstile { margin-top: 26px; }
.form-actions { display: flex; align-items: center; gap: 24px; margin-top: 30px; flex-wrap: wrap; }
.form-status { margin: 0; font-size: 14px; color: rgba(247,243,233,.66); }
.privacy-note { margin: 22px 0 0; font-size: 13px; color: rgba(247,243,233,.46); max-width: 58ch; }

.site-footer { border-top: 1px solid var(--hairline); padding: 34px 0 38px; }
.footer-inner { width: var(--page); margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; }
.footer-brand { font-size: 17px; color: var(--deep); }
.footer-copy { justify-self: center; font-family: var(--sans); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.footer-links { justify-self: end; display: flex; gap: 18px; font-family: var(--sans); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.footer-links a { position: relative; text-decoration: none; }
.footer-links a::before { content: ""; position: absolute; inset: -10px -6px; }
.footer-links a:hover { color: var(--deep); }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity var(--duration-slow) var(--ease), transform var(--duration-slow) var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: 90ms; }
.js .reveal[data-delay="2"] { transition-delay: 180ms; }
.js .reveal[data-delay="3"] { transition-delay: 270ms; }

/* Dossier pages */
.subpage-hero { min-height: 78svh; padding: 150px 0 90px; display: grid; align-items: end; }
.subpage-hero .kicker { margin-bottom: 36px; }
.subpage-hero h1 { font-size: clamp(58px, 9vw, 132px); line-height: .88; letter-spacing: -.052em; max-width: 10ch; }
.subpage-hero .lead { max-width: 55ch; }
.back-link { display: inline-flex; align-items: center; gap: 10px; font-family: var(--sans); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; text-decoration: none; color: var(--muted); }
.back-link::before { content: "←"; }
.content-band { padding: clamp(74px, 9vw, 130px) 0; border-top: 1px solid var(--hairline); }
.content-band-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(48px, 8vw, 120px); }
.content-band h2 { font-size: clamp(34px, 4.2vw, 60px); max-width: 11ch; }
.content-band h3 { font-size: 26px; }
.content-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 54px; }
.content-block { padding-top: 24px; border-top: 1px solid var(--hairline); }
.content-block p { margin: 14px 0 0; color: var(--muted); font-size: 17px; }
.principle-list { border-top: 1px solid var(--hairline); }
.principle { display: grid; grid-template-columns: 58px 1fr; gap: 26px; padding: 26px 0; border-bottom: 1px solid var(--hairline); }
.principle .num { font-family: var(--sans); font-size: 10px; letter-spacing: .14em; color: var(--muted); }
.principle h3 { font-size: 28px; }
.principle p { margin: 10px 0 0; color: var(--muted); }
.subpage-cta { text-align: center; padding: 100px 0 120px; border-top: 1px solid var(--hairline); }
.subpage-cta h2 { max-width: 12ch; margin: 0 auto; }
.subpage-cta p { max-width: 52ch; margin: 24px auto 0; color: var(--muted); }
.subpage-cta .button-primary { margin-top: 34px; }
.profile-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 50px; border-top: 1px solid var(--hairline); }
.profile-fact { padding: 22px 0; border-bottom: 1px solid var(--hairline); }
.profile-fact strong { display: block; color: var(--deep); font-weight: 500; }
.profile-fact span { display: block; margin-top: 6px; color: var(--muted); font-size: 16px; }

@media (max-width: 1180px) {
  .constellation-layout { grid-template-columns: 1fr; align-items: start; }
  .constellation-copy p { max-width: 66ch; }
}

@media (max-width: 1024px) {
  :root { --page: min(960px, calc(100vw - 48px)); }
  .section-rail { display: none; }
  .scroll-progress { display: block; }
}

@media (max-width: 900px) {
  :root { --page: min(760px, calc(100vw - 34px)); }
  .header-inner { grid-template-columns: 1fr auto auto; gap: 12px; }
  .header-center { display: block; }
  .lang-switch { font-size: 9px; gap: 8px; }
  .brand-meta { font-size: 7px; letter-spacing: .14em; }
  .section-grid, .method-layout, .proof-grid, .dossier-header, .contact-grid, .content-band-grid { grid-template-columns: 1fr; }
  .section-index, .method-intro { position: static; }
  .method-step { min-height: 34vh; }
  .growth-intro { grid-template-columns: 1fr; align-items: start; }
  .constellation-figure { grid-template-columns: 1fr; gap: 30px; }
  .constellation-join { display: none; }
  .constellation-terms { border-left: 1px solid var(--hairline-inverse); padding-left: 22px; }
  .constellation-result { padding-left: 22px; }
  .proof-list { margin-top: 0; }
  .profile-composition { grid-template-columns: 1fr; gap: 26px; }
  .profile-marker { display: flex; align-items: baseline; gap: 16px; }
  .profile-marker .section-number { margin: 0; }
  .footer-inner { grid-template-columns: 1fr auto; }
  .footer-copy { display: none; }
  .dossier-grid { grid-template-columns: 1fr; }
  .dossier-card { border-right: 0; }
  .dossier-card:nth-last-child(-n+2) { border-bottom: 1px solid var(--hairline); }
  .dossier-card:last-child { border-bottom: 0; }
}

@media (max-width: 680px) {
  :root { --page: calc(100vw - 32px); }
  body { font-size: 17px; }
  section[id], .contact-section[id] { scroll-margin-top: 64px; }
  .site-header.is-scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--canvas); }
  .header-inner { min-height: 68px; gap: 6px; }
  .brand { gap: 8px; }
  .brand-name { font-size: 14px; }
  .brand-meta { display: none; }
  .lang-switch { gap: 8px; font-size: 10px; letter-spacing: .1em; }
  .header-cta { font-size: 10px; letter-spacing: .1em; }
  .hero { min-height: auto; padding: 112px 0 64px; }
  .hero h1 { font-size: clamp(52px, 15vw, 68px); line-height: .94; max-width: 7.5ch; }
  .hero-intro { margin-top: 30px; font-size: 20px; }
  .hero-rule { margin: 24px 0; }
  .hero-actions { align-items: flex-start; gap: 18px; margin-top: 28px; flex-direction: column; }
  .statement-grid, .growth-equation { grid-template-columns: 1fr; }
  .statement { border-right: 0; border-bottom: 1px solid var(--hairline); padding: 24px 0; }
  .statement + .statement { padding-left: 0; }
  .statement:last-child { border-bottom: 0; }
  .method-step { padding-left: 46px; }
  .growth-card { min-height: 260px; border-right: 0; border-bottom: 1px solid var(--hairline); }
  .growth-card:last-child { border-bottom: 0; }
  .growth-card h3 { margin-top: 52px; }
  .constellation-wrap { gap: 38px; }
  .constellation-header h2 { font-size: clamp(40px, 12vw, 54px); }
  .proof-item { grid-template-columns: 1fr; gap: 8px; }
  .profile-composition h2 { font-size: 42px; }
  .profile-composition > p { font-size: 18px; }
  .form-row, .content-columns, .profile-facts { grid-template-columns: 1fr; }
  .footer-inner { display: block; }
  .footer-links { margin-top: 16px; justify-content: flex-start; }
  .subpage-hero { min-height: 70svh; padding-top: 128px; }
  .subpage-hero h1 { font-size: clamp(54px, 16vw, 82px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .rail-label { transition: none; }
  .js .reveal { opacity: 1; transform: none; }
  .constellation-join path { stroke-dashoffset: 0; }
  .constellation-join circle { fill-opacity: .9; }
  .constellation-join line { stroke-opacity: .5; }
}
