:root {
  --ink: #202f39;
  --ink-soft: #edf0eb;
  --paper: #f6f4ef;
  --paper-deep: #eeede7;
  --accent: #365e72;
  --accent-soft: #e8eeec;
  --white: #fffef9;
  --muted: #5d696e;
  --line-dark: #d9ddd9;
  --line-light: rgba(10, 10, 9, 0.18);
  --max: 1440px;
  --pad: clamp(1.1rem, 3vw, 3rem);
  --radius: 0.4rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  display: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  opacity: 0.055;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

p,
h1,
h2,
h3,
dl,
dd,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
strong {
  font-weight: 700;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.page-progress {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 5.25rem;
  padding: 0.85rem var(--pad);
  border-bottom: 1px solid transparent;
  transition: background-color 220ms ease, border-color 220ms ease, min-height 220ms ease;
}

.site-header.is-scrolled {
  min-height: 4.4rem;
  background: rgba(246, 244, 239, 0.97);
  border-color: var(--line-dark);
  backdrop-filter: blur(16px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  justify-self: start;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.wordmark-mark {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid currentColor;
  background: var(--accent);
  color: var(--ink);
  font-size: 0.7rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.2rem);
  justify-self: center;
  color: #cac9c3;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding-block: 0.45rem;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header > .button {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.65rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid var(--accent);
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.035em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--accent);
  color: var(--ink);
  transform: translateY(-2px);
}

.button-small {
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
}

.button-primary {
  background: var(--accent);
  color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--white);
  border-color: var(--white);
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(30rem, 0.98fr);
  gap: clamp(2.5rem, 5vw, 7rem);
  align-items: center;
  min-height: 100svh;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(8.5rem, 14vh, 11rem) var(--pad) clamp(4rem, 8vh, 7rem);
}

.hero::before {
  position: absolute;
  top: 8rem;
  right: calc(var(--pad) * 0.2);
  width: 17vw;
  height: 17vw;
  max-width: 17rem;
  max-height: 17rem;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  content: "";
  opacity: 0.45;
}

.hero::after {
  position: absolute;
  top: 8rem;
  right: calc(var(--pad) * 0.2 + 8.5vw);
  width: 1px;
  height: 17vw;
  max-height: 17rem;
  background: var(--line-dark);
  content: "";
  opacity: 0.45;
}

.hero-copy,
.briefing-shell {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.15rem;
  color: var(--accent);
  font-size: clamp(0.68rem, 0.8vw, 0.78rem);
  font-weight: 750;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.7rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.display {
  max-width: 13ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.55rem, 7.2vw, 7.2rem);
  letter-spacing: -0.072em;
  line-height: 0.86;
}

.display span,
.display strong {
  display: block;
}

.display span {
  color: var(--white);
  font-weight: 430;
}

.display strong {
  margin-top: 0.14em;
  color: var(--accent);
}

.hero-summary {
  max-width: 42rem;
  margin-bottom: 2rem;
  color: #cbc9c2;
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  letter-spacing: -0.018em;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: clamp(2.8rem, 6vh, 5rem);
}

.hero-actions p {
  max-width: 13rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.hero-qualifiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 46rem;
  margin: 0;
  border-top: 1px solid var(--line-dark);
}

.hero-qualifiers div {
  min-height: 5.6rem;
  padding: 0.95rem 0.8rem 0.5rem 0;
  border-right: 1px solid var(--line-dark);
}

.hero-qualifiers div + div {
  padding-left: 0.8rem;
}

.hero-qualifiers div:last-child {
  border-right: 0;
}

.hero-qualifiers dt {
  margin-bottom: 0.6rem;
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.65rem;
}

.hero-qualifiers dd {
  margin: 0;
  color: #bbb9b2;
  font-size: 0.73rem;
  line-height: 1.35;
}

.briefing-shell {
  width: 100%;
  max-width: 39rem;
  justify-self: end;
  border: 1px solid rgba(202, 255, 63, 0.58);
  background: #10100e;
  box-shadow: 1.1rem 1.1rem 0 rgba(202, 255, 63, 0.11);
}

.briefing-topline,
.briefing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3.25rem;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--line-dark);
  color: #c7c5bf;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.briefing-topline span:nth-child(2) {
  margin-right: auto;
  margin-left: 0.55rem;
}

.status-light {
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0.25rem rgba(202, 255, 63, 0.12);
}

.demo-label {
  display: inline-block;
  margin: 1rem 1rem 0;
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--line-dark);
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.briefing-intro {
  padding: clamp(1.3rem, 2.5vw, 2rem) 1rem 1.35rem;
}

.briefing-intro p {
  margin-bottom: 0.35rem;
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.briefing-intro h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.75rem);
  letter-spacing: -0.052em;
  line-height: 0.98;
}

.briefing-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-inline: 1rem;
  border: 1px solid var(--line-dark);
}

.briefing-tabs button {
  min-height: 2.5rem;
  border: 0;
  border-right: 1px solid var(--line-dark);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.64rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.briefing-tabs button:last-child {
  border-right: 0;
}

.briefing-tabs button[aria-selected="true"] {
  background: var(--accent);
  color: var(--ink);
}

.briefing-panels {
  min-height: 21rem;
  padding: 1rem;
}

.signal {
  margin-bottom: 0.7rem;
  padding: 1rem;
  border: 1px solid var(--line-dark);
  background: #151512;
}

.signal:last-child {
  margin-bottom: 0;
}

.signal-priority {
  border-left: 3px solid var(--accent);
}

.signal span {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
}

.signal p {
  margin-bottom: 0.7rem;
  color: #aaa9a2;
  font-size: 0.75rem;
  line-height: 1.45;
}

.signal small {
  display: block;
  color: #77766f;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.57rem;
}

.briefing-footer {
  border-top: 1px solid var(--line-dark);
  border-bottom: 0;
}

.briefing-footer strong {
  color: var(--accent);
  font-weight: 600;
}

.briefing-footer s {
  margin-right: 0.5rem;
  color: #64635f;
}

.shift-band {
  display: grid;
  grid-template-columns: 0.4fr 1fr auto 1fr;
  gap: 1.5rem;
  align-items: stretch;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--pad);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.shift-label,
.shift-item,
.shift-arrow {
  display: flex;
  min-height: 8.5rem;
  align-items: center;
}

.shift-label {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.shift-item {
  gap: 1rem;
}

.shift-item span {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.shift-item p {
  max-width: 25rem;
  margin: 0;
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  line-height: 1.35;
}

.shift-after p,
.shift-after span,
.shift-arrow {
  color: var(--accent);
}

.shift-arrow {
  font-size: 1.5rem;
}

.section {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(6rem, 12vw, 11rem) var(--pad);
}

.section-light,
.section-accent {
  max-width: none;
}

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

.section-accent {
  background: var(--accent);
  color: var(--ink);
}

.section-index {
  position: absolute;
  top: 2.1rem;
  left: var(--pad);
  color: currentColor;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  opacity: 0.48;
}

.section h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.8rem, 6.2vw, 6.5rem);
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.section-lede {
  max-width: 34rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.45;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(4rem, 9vw, 10rem);
  align-items: start;
}

.story-sticky {
  position: sticky;
  top: 9rem;
}

.story-sticky h2 {
  max-width: 10ch;
}

.story-sequence {
  padding-top: 8rem;
}

.time-card {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.2rem;
  min-height: 13rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line-dark);
}

.time-card time {
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
}

.time-card h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.4rem, 2.4vw, 2.25rem);
  letter-spacing: -0.04em;
}

.time-card p {
  max-width: 32rem;
  margin: 0;
  color: #aaa9a2;
  font-size: 0.96rem;
  line-height: 1.6;
}

.big-quote {
  margin: 3rem 0 0;
  padding: 2rem 0 0;
  border-top: 5px solid var(--accent);
}

.big-quote p {
  margin: 0;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.outcomes-heading,
.system-heading,
.build-intro {
  max-width: var(--max);
  margin: 0 auto clamp(3rem, 7vw, 6rem);
}

.outcomes-heading h2,
.system-heading h2,
.build-intro h2 {
  max-width: 12ch;
}

.section-light .eyebrow {
  color: #466400;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.outcome-card {
  min-height: 24rem;
  padding: clamp(1.4rem, 2.5vw, 2.4rem);
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.outcome-card > span {
  display: block;
  margin-bottom: clamp(5rem, 8vw, 8rem);
  color: #5d5b55;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.outcome-card h3 {
  max-width: 17ch;
  margin-bottom: 1rem;
  font-size: clamp(1.4rem, 2vw, 2.1rem);
  letter-spacing: -0.048em;
  line-height: 1.03;
}

.outcome-card p {
  max-width: 31rem;
  margin: 0;
  color: #65625b;
  font-size: 0.86rem;
  line-height: 1.55;
}

.outcome-card-accent {
  background: var(--accent);
}

.outcome-card-accent > span,
.outcome-card-accent p {
  color: #263000;
}

.evidence-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(4rem, 10vw, 12rem);
  align-items: start;
}

.evidence-copy {
  position: sticky;
  top: 9rem;
}

.evidence-copy h2 {
  max-width: 10ch;
}

.evidence-copy > p:not(.eyebrow) {
  max-width: 33rem;
  color: #aaa9a2;
  font-size: 1rem;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid currentColor;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(0.18rem, -0.18rem);
}

.stat-stack {
  border-top: 1px solid var(--line-dark);
}

.stat {
  display: grid;
  grid-template-columns: minmax(9rem, 0.65fr) 1fr;
  gap: 2rem;
  align-items: center;
  min-height: 12rem;
  border-bottom: 1px solid var(--line-dark);
}

.stat strong {
  color: var(--white);
  font-size: clamp(4rem, 8vw, 8rem);
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.stat p {
  max-width: 17rem;
  margin: 0;
  color: #aaa9a2;
  font-size: 0.92rem;
  line-height: 1.45;
}

.stat-focus strong,
.stat-focus p {
  color: var(--accent);
}

.stat-stack small {
  display: block;
  padding-top: 1rem;
  color: #6f6e69;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.advantage {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(4rem, 9vw, 10rem);
}

.advantage-copy {
  align-self: start;
}

.advantage-copy h2 {
  max-width: 10ch;
  color: var(--accent);
}

.advantage-copy > p:not(.eyebrow) {
  max-width: 34rem;
  color: #aaa9a2;
  font-size: 1rem;
  line-height: 1.65;
}

.compound-list {
  border-top: 1px solid var(--line-dark);
}

.compound-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  min-height: 9rem;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
}

.compound-item span {
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.62rem;
}

.compound-item p {
  max-width: 26rem;
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  letter-spacing: -0.025em;
}

.waiting-cost {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 2rem;
  margin-top: clamp(4rem, 8vw, 8rem);
  padding-top: 2rem;
  border-top: 4px solid var(--accent);
}

.waiting-cost p {
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.waiting-cost strong {
  max-width: 30ch;
  font-size: clamp(1.7rem, 3.4vw, 3.5rem);
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.system-map {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: clamp(2rem, 6vw, 7rem);
  align-items: center;
  max-width: var(--max);
  min-height: 34rem;
  margin: 0 auto;
  padding: 2rem 0;
}

.source-column,
.output-column {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.25rem;
}

.source-column span,
.output-column span {
  display: flex;
  min-height: 3.9rem;
  align-items: center;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--line-light);
  background: var(--paper);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.output-column span {
  justify-content: flex-end;
  text-align: right;
}

.system-core {
  position: relative;
  z-index: 3;
  display: flex;
  width: min(100%, 24rem);
  aspect-ratio: 1;
  flex-direction: column;
  justify-content: center;
  margin: auto;
  padding: clamp(1.5rem, 3vw, 3rem);
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.core-kicker,
.system-core small {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.core-kicker {
  margin-bottom: 1.1rem;
  color: var(--accent);
}

.system-core strong {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 3.1rem);
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.system-core small {
  margin-top: 1.1rem;
  color: #888782;
  line-height: 1.45;
}

.system-lines {
  position: absolute;
  inset: 2rem 0;
  z-index: 1;
  width: 100%;
  height: calc(100% - 4rem);
  pointer-events: none;
}

.system-lines path {
  fill: none;
  stroke: rgba(10, 10, 9, 0.22);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.control-note {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 2rem;
  max-width: var(--max);
  margin: 4rem auto 0;
  padding-top: 1.5rem;
  border-top: 5px solid var(--ink);
}

.control-note strong {
  max-width: 18ch;
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.control-note p {
  max-width: 47rem;
  margin: 0;
  color: #5d5b55;
  line-height: 1.65;
}

.buyer-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(4rem, 10vw, 12rem);
}

.buyer-question h2 {
  max-width: 10ch;
  color: var(--accent);
}

.buyer-copy {
  padding-top: 8rem;
}

.buyer-copy p {
  color: #aaa9a2;
  line-height: 1.7;
}

.buyer-copy strong {
  color: var(--white);
}

.buyer-copy .text-link {
  margin-top: 1rem;
}

.buyer-close {
  max-width: 14ch;
  margin: clamp(6rem, 10vw, 11rem) 0 0 auto;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 6vw, 6.5rem);
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-align: right;
}

.build-intro > p:last-child {
  max-width: 30rem;
  color: #65625b;
  font-size: 1rem;
}

.build-steps {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
  counter-reset: build-step;
}

.build-steps li {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 2rem;
  min-height: 11rem;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
}

.build-steps li > span {
  color: #5d5b55;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
}

.build-steps li > div {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 2rem;
  align-items: baseline;
}

.build-steps h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.6vw, 2.65rem);
  letter-spacing: -0.05em;
}

.build-steps p {
  max-width: 34rem;
  margin: 0;
  color: #65625b;
  font-size: 0.9rem;
  line-height: 1.6;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(4rem, 10vw, 12rem);
}

.proof-heading h2 {
  max-width: 11ch;
}

.proof-copy {
  padding-top: 8rem;
}

.proof-copy > p {
  color: #aaa9a2;
  line-height: 1.7;
}

.proof-copy ul {
  margin: 2.5rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.proof-copy li {
  position: relative;
  padding: 1rem 1rem 1rem 2rem;
  border-bottom: 1px solid var(--line-dark);
  color: #d4d2ca;
  font-size: 0.86rem;
}

.proof-copy li::before {
  position: absolute;
  top: 1.22rem;
  left: 0.25rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--accent);
  content: "";
}

.fit .section-index {
  color: var(--ink);
}

.fit .eyebrow {
  color: var(--ink);
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(4rem, 9vw, 10rem);
  max-width: var(--max);
  margin: 0 auto;
}

.fit-copy h2 {
  max-width: 10ch;
}

.fit-copy > p:not(.eyebrow) {
  max-width: 37rem;
  margin-bottom: 2rem;
  color: #303423;
  line-height: 1.65;
}

.fit-copy .button {
  margin-bottom: 1rem;
}

.fit-copy small {
  display: block;
  max-width: 30rem;
  color: #4a512e;
  font-size: 0.7rem;
  line-height: 1.45;
}

.fit-lists {
  padding-top: 8rem;
}

.fit-list {
  padding: 1.5rem;
  border: 1px solid rgba(10, 10, 9, 0.35);
  background: rgba(255, 255, 255, 0.18);
}

.fit-list + .fit-list {
  margin-top: 1rem;
}

.fit-list h3 {
  margin-bottom: 1.1rem;
  font-size: 1rem;
  letter-spacing: -0.025em;
}

.fit-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-list li {
  position: relative;
  padding: 0.72rem 0 0.72rem 1.35rem;
  border-top: 1px solid rgba(10, 10, 9, 0.18);
  font-size: 0.82rem;
  line-height: 1.35;
}

.fit-list li::before {
  position: absolute;
  top: 0.98rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--ink);
  content: "";
}

.fit-list-muted {
  opacity: 0.7;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(4rem, 10vw, 12rem);
  max-width: var(--max);
  margin: 0 auto;
}

.faq-heading {
  position: sticky;
  top: 9rem;
  align-self: start;
}

.faq-heading h2 {
  max-width: 8ch;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line-light);
}

.faq-list summary {
  position: relative;
  padding: 1.5rem 3rem 1.5rem 0;
  cursor: pointer;
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0.2rem;
  color: #4a4a44;
  content: "+";
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 1.4rem;
  font-weight: 400;
  transform: translateY(-50%);
}

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

.faq-list details p {
  max-width: 46rem;
  margin: -0.2rem 0 1.7rem;
  padding-right: 3rem;
  color: #65625b;
  font-size: 0.92rem;
  line-height: 1.65;
}

.final-cta {
  display: flex;
  min-height: 92svh;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta h2 {
  max-width: 12ch;
  margin-right: auto;
  margin-left: auto;
  color: var(--accent);
  font-size: clamp(3.7rem, 9.5vw, 10rem);
  line-height: 0.83;
}

.final-cta > p:not(.eyebrow) {
  max-width: 48rem;
  margin: 0 auto 2.5rem;
  color: #aaa9a2;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.6;
}

.final-actions {
  display: flex;
  gap: 1.3rem;
  align-items: center;
  justify-content: center;
}

.final-actions span {
  max-width: 18rem;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.4;
  text-align: left;
}

.final-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(5rem, 9vw, 9rem);
  padding-top: 1rem;
  border-top: 1px solid var(--line-dark);
  color: #71706b;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.61rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem var(--pad) 3rem;
  border-top: 1px solid var(--line-dark);
}

.footer-brand {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.footer-brand > div {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  font-size: 0.85rem;
  text-transform: uppercase;
}

.footer-brand span:not(.wordmark-mark) {
  color: var(--muted);
  font-size: 0.65rem;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 650;
  text-transform: uppercase;
}

.site-footer > p {
  grid-column: 1 / -1;
  margin: 2rem 0 0;
  color: #65645f;
  font-size: 0.64rem;
}

.mobile-booking {
  display: none;
}

.error-page {
  display: flex;
  width: min(100%, 62rem);
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: clamp(2rem, 7vw, 6rem);
}

.error-page .wordmark-mark {
  margin-bottom: 4rem;
}

.error-page h1 {
  max-width: 9ch;
  margin-bottom: 1.5rem;
  color: var(--accent);
  font-size: clamp(4rem, 12vw, 9rem);
  letter-spacing: -0.075em;
  line-height: 0.84;
}

.error-page > p:not(.eyebrow) {
  max-width: 32rem;
  margin-bottom: 2rem;
  color: var(--muted);
}

.error-page .button {
  align-self: flex-start;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(1.7rem);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 9rem;
  }

  .hero-copy {
    max-width: 60rem;
  }

  .display {
    max-width: 12ch;
    font-size: clamp(4rem, 11vw, 7.5rem);
  }

  .briefing-shell {
    max-width: 48rem;
    justify-self: start;
  }

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

  .system-map {
    gap: 2rem;
  }

  .system-core {
    width: min(100%, 19rem);
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 4.8rem;
    scroll-padding-bottom: 5.5rem;
  }

  body {
    padding-bottom: 4.6rem;
  }

  .site-header {
    min-height: 4.65rem;
  }

  .site-header.is-scrolled {
    min-height: 4.2rem;
  }

  .site-header > .button {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 8.5rem;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .display {
    font-size: clamp(3.5rem, 16vw, 6rem);
  }

  .hero-summary {
    max-width: 36rem;
  }

  .shift-band {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .shift-label,
  .shift-item,
  .shift-arrow {
    min-height: auto;
  }

  .shift-label {
    margin-bottom: 1.6rem;
  }

  .shift-item {
    align-items: flex-start;
    padding: 1rem 0;
  }

  .shift-item span {
    width: 3.5rem;
    flex: 0 0 3.5rem;
  }

  .shift-arrow {
    display: none;
  }

  .story-grid,
  .evidence-grid,
  .advantage,
  .buyer-grid,
  .proof-grid,
  .fit-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .story-sticky,
  .evidence-copy,
  .faq-heading {
    position: static;
  }

  .story-sequence,
  .buyer-copy,
  .proof-copy,
  .fit-lists {
    padding-top: 0;
  }

  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .outcome-card {
    min-height: 20rem;
  }

  .stat {
    grid-template-columns: 0.7fr 1fr;
  }

  .waiting-cost {
    grid-template-columns: 1fr;
  }

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

  .source-column,
  .output-column {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.35rem;
  }

  .source-column span,
  .output-column span {
    min-height: 3rem;
    justify-content: center;
    padding: 0.6rem 0.25rem;
    font-size: 0.53rem;
    text-align: center;
  }

  .system-core {
    width: min(75vw, 20rem);
  }

  .system-lines {
    display: none;
  }

  .control-note {
    grid-template-columns: 1fr;
  }

  .buyer-close {
    margin-top: 5rem;
  }

  .build-steps li > div {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .final-cta {
    min-height: auto;
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .final-actions {
    flex-direction: column;
  }

  .final-actions span {
    text-align: center;
  }

  .mobile-booking {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 4.55rem;
    padding: 0.65rem 0.8rem;
    border-top: 1px solid rgba(10, 10, 9, 0.5);
    background: var(--accent);
    color: var(--ink);
    transform: translateY(0);
    transition: transform 300ms var(--ease);
  }

  .mobile-booking.is-visible {
    transform: translateY(0);
  }

  .keyboard-navigation .mobile-booking {
    transition: none;
  }

  .keyboard-navigation .mobile-booking:not(:focus-within) {
    transform: translateY(110%);
  }

  a,
  button,
  summary,
  [tabindex] {
    scroll-margin-top: 5.5rem;
    scroll-margin-bottom: 5.5rem;
  }

  .mobile-booking > div {
    display: flex;
    flex-direction: column;
  }

  .mobile-booking strong {
    font-size: 0.72rem;
    text-transform: uppercase;
  }

  .mobile-booking span {
    font-size: 0.61rem;
  }

  .mobile-booking a {
    padding: 0.75rem 0.85rem;
    background: var(--ink);
    color: var(--white);
    font-size: 0.66rem;
    font-weight: 750;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
}

@media (max-width: 560px) {
  :root {
    --pad: 1rem;
  }

  .wordmark {
    font-size: 0.72rem;
  }

  .hero {
    padding-top: 5.5rem;
    padding-bottom: 4rem;
  }

  .display {
    margin-bottom: 1rem;
    font-size: clamp(3.15rem, 17vw, 5rem);
    line-height: 0.88;
  }

  .hero-summary {
    margin-bottom: 1.3rem;
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions p {
    max-width: none;
  }

  .hero-qualifiers {
    grid-template-columns: 1fr;
  }

  .hero-qualifiers div,
  .hero-qualifiers div + div {
    min-height: auto;
    padding: 0.8rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .hero-qualifiers div:last-child {
    border-bottom: 0;
  }

  .hero-qualifiers dd {
    font-size: 0.75rem;
  }

  .briefing-shell {
    box-shadow: 0.55rem 0.55rem 0 rgba(202, 255, 63, 0.11);
  }

  .briefing-panels {
    min-height: 23rem;
  }

  .section {
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
  }

  .section h2 {
    font-size: clamp(2.65rem, 13.5vw, 4.4rem);
  }

  .section-index {
    top: 1.6rem;
  }

  .story-sequence {
    padding-top: 1rem;
  }

  .time-card {
    grid-template-columns: 3.2rem 1fr;
    min-height: 11rem;
  }

  .outcome-card {
    min-height: 18rem;
  }

  .outcome-card > span {
    margin-bottom: 4.5rem;
  }

  .stat {
    grid-template-columns: 1fr;
    gap: 1rem;
    min-height: 13rem;
    padding-block: 1.3rem;
  }

  .compound-item {
    min-height: 7.5rem;
  }

  .source-column,
  .output-column {
    grid-template-columns: 1fr 1fr;
  }

  .source-column span:last-child,
  .output-column span:last-child {
    grid-column: 1 / -1;
  }

  .control-note {
    margin-top: 2.5rem;
  }

  .buyer-close {
    font-size: clamp(2.8rem, 13vw, 4.5rem);
  }

  .build-steps li {
    grid-template-columns: 2.5rem 1fr;
    gap: 0.5rem;
    min-height: 13rem;
  }

  .faq-list summary {
    font-size: 1.05rem;
  }

  .final-cta h2 {
    font-size: clamp(3.5rem, 16vw, 5.7rem);
  }

  .final-line {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms;
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
  }

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .page-progress,
  .mobile-booking {
    display: none;
  }

  body,
  .section-light,
  .section-accent {
    background: white;
    color: black;
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }
}

/* Compact offer layout and a consistent, low-glare reading surface. */
.site-header { position: sticky; min-height: 68px; padding-block: 12px; background: rgba(246,244,239,.97); border-bottom: 1px solid var(--line-dark); }
.site-header.is-scrolled { min-height: 68px; }
.wordmark-mark { border: 0; border-radius: 7px; color: var(--white); width: 32px; height: 32px; }
.desktop-nav { color: var(--muted); text-transform: none; letter-spacing: 0; }
.button { border-radius: 7px; min-height: 46px; padding: 12px 19px; font-size: 13px; text-transform: none; letter-spacing: 0; }
.button-primary, .button:hover, .button:focus-visible { background: var(--accent); color: var(--white); }
.button-primary:hover { background: var(--ink); border-color: var(--ink); }
.button-small { min-height: 38px; font-size: 12px; }
.hero { grid-template-columns: minmax(0,1.2fr) minmax(0,.8fr); gap: 42px; min-height: auto; max-width: 1320px; padding-top: 32px; padding-bottom: 38px; }
.hero::before, .hero::after { display: none; }
.hero .eyebrow { font-size: 10px; margin-bottom: 12px; }
.hero .eyebrow::before { display: none; }
.display { max-width: none; font-size: clamp(35px,4.1vw,57px); line-height: 1.05; letter-spacing: -.05em; margin-bottom: 16px; }
.display span { color: var(--ink); font-weight: 650; }
.display strong { margin-top: 0; font-weight: 650; }
.hero-summary { color: var(--muted); font-size: 15px; line-height: 1.5; margin-bottom: 19px; }
.hero-benefits { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 13px 22px; margin-bottom: 20px; }
.hero-benefits div { border-left: 2px solid #9cafaf; padding-left: 10px; }
.hero-benefits strong, .hero-benefits span { display: block; }
.hero-benefits strong { font-size: 13px; line-height: 1.3; margin-bottom: 3px; letter-spacing: -.015em; }
.hero-benefits span { color: var(--muted); font-size: 12px; line-height: 1.4; }
.hero-investment { border-top: 1px solid var(--line-dark); padding-top: 14px; margin: 0 0 16px; }
.hero-investment strong, .hero-investment span { display: block; }
.hero-investment strong { font-size: 14px; margin-bottom: 4px; }
.hero-investment span { color: var(--muted); font-size: 12px; line-height: 1.4; max-width: 540px; }
.hero-actions { display: flex; margin-bottom: 0; gap: 16px; }
.hero-actions p { font-size: 11px; max-width: 200px; }
.briefing-shell { background: var(--white); border-color: #cbd4d3; border-radius: 12px; box-shadow: 0 15px 45px #202f3910; }
.briefing-topline, .briefing-footer { min-height: 43px; padding: 12px 17px; color: var(--muted); font-size: 9px; }
.status-light { background: #668777; box-shadow: none; }
.demo-label { margin: 14px 17px 0; font-size: 8px; background: var(--accent-soft); border: 0; border-radius: 3px; }
.briefing-intro { padding: 17px; }
.briefing-intro p { font-size: 10px; text-transform: none; }
.briefing-intro h2 { max-width: none; font-size: clamp(23px,2.3vw,31px); line-height: 1.13; letter-spacing: -.035em; }
.briefing-tabs { border: 0; border-radius: 6px; background: #eef1ed; padding: 3px; margin-inline: 17px; }
.briefing-tabs button { border: 0; border-radius: 4px; min-height: 38px; font-size: 10px; text-transform: none; }
.briefing-tabs button[aria-selected="true"] { background: var(--white); color: var(--ink); box-shadow: 0 1px 4px #202f3910; }
.briefing-panels { min-height: 255px; padding: 14px 17px; }
.signal { background: var(--white); border-radius: 6px; padding: 12px; }
.signal-priority { border-left-color: #94aaa1; }
.signal span { font-size: 9px; margin-bottom: 5px; }
.signal strong { font-size: 13px; }
.signal p { color: var(--muted); font-size: 12px; }
.signal small { color: var(--muted); font-size: 9px; }
.shift-band { padding-block: 20px; gap: 24px; }
.shift-label, .shift-item, .shift-arrow { min-height: auto; }
.shift-item p { font-size: 13px; color: var(--muted); }
.shift-after p { color: var(--ink); }
.section { padding-block: 65px; }
.section-light { background: var(--paper-deep); }
.section-accent, .outcome-card-accent { background: var(--accent-soft); }
.section h2 { font-size: clamp(29px,3.7vw,46px); line-height: 1.1; letter-spacing: -.04em; max-width: 24ch; }
.section-index { position: static; margin-bottom: 20px; opacity: 1; color: var(--muted); }
.section-light .eyebrow { color: var(--accent); }
.story-grid, .evidence-grid, .buyer-grid, .proof-grid, .fit-grid, .faq-grid { gap: 40px; }
.story-sticky, .evidence-copy, .faq-heading { position: static; }
.story-sequence, .buyer-copy, .proof-copy, .fit-lists { padding-top: 0; }
.time-card { min-height: auto; padding-block: 18px; grid-template-columns: 42px 1fr; }
.time-card h3 { font-size: 19px; }
.time-card p, .evidence-copy > p:not(.eyebrow), .advantage-copy > p:not(.eyebrow), .buyer-copy p, .proof-copy > p { color: var(--muted); font-size: 14px; }
.big-quote { margin-top: 20px; padding-top: 18px; border-top-width: 2px; }
.big-quote p { font-size: 25px; line-height: 1.25; }
.outcomes-heading, .system-heading, .build-intro { margin-bottom: 26px; }
.outcome-grid { gap: 14px; border: 0; }
.outcome-card { min-height: auto; padding: 23px; border: 1px solid var(--line-dark); border-radius: 8px; background: var(--white); }
.outcome-card-accent { background: var(--accent-soft); }
.outcome-card > span { margin-bottom: 15px; color: var(--accent); }
.outcome-card h3 { max-width: none; font-size: 21px; line-height: 1.15; }
.outcome-card p, .outcome-card-accent p { color: var(--muted); font-size: 13px; }
.stat { min-height: auto; padding-block: 22px; grid-template-columns: 110px 1fr; gap: 22px; }
.stat strong { color: var(--accent); font-size: 53px; }
.stat p { color: var(--muted); font-size: 13px; }
.advantage { gap: 30px 40px; }
.compound-item { min-height: auto; padding-block: 20px; }
.compound-item p { font-size: 15px; }
.waiting-cost { margin-top: 0; padding: 24px; border: 0; border-radius: 8px; background: var(--accent-soft); }
.waiting-cost strong { font-size: 21px; line-height: 1.3; max-width: none; }
.system-map { min-height: auto; gap: 30px; padding-block: 10px; }
.source-column, .output-column { gap: 10px; }
.source-column span, .output-column span { min-height: 42px; padding: 12px; border-radius: 5px; background: var(--white); }
.system-core { max-width: 240px; background: var(--accent); }
.core-kicker, .system-core small { color: var(--white); }
.system-core strong { font-size: 30px; }
.control-note { margin-top: 25px; border-top-width: 1px; }
.control-note p { color: var(--muted); font-size: 13px; }
.buyer-copy strong { color: var(--ink); }
.buyer-close { max-width: 35ch; margin: 30px 0 0; font-size: 32px; line-height: 1.2; color: var(--accent); text-align: left; }
.build-steps li { min-height: auto; padding-block: 22px; grid-template-columns: 40px 1fr; }
.build-steps h3 { font-size: 21px; }
.proof-copy li { color: var(--ink); }
.fit-copy > p:not(.eyebrow), .fit-copy small { color: var(--muted); }
.fit-list { border-color: #cbd4d3; border-radius: 7px; background: var(--white); }
.fit-list-muted { opacity: 1; }
.faq-list summary { font-size: 17px; }
.final-cta { min-height: auto; }
.final-cta h2 { font-size: clamp(35px,5vw,64px); line-height: 1.05; max-width: 20ch; }
.final-cta > p:not(.eyebrow) { color: var(--muted); font-size: 16px; }
.final-line { margin-top: 35px; }
.motion-ready .reveal { opacity: 1; transform: none; transition: none; }
.mobile-booking { background: rgba(246,244,239,.98); border-top: 1px solid var(--line-dark); color: var(--ink); }
.mobile-booking a { border-radius: 5px; background: var(--accent); color: var(--white); }
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; gap: 28px; padding-top: 25px; }
  .hero-copy, .briefing-shell { max-width: 760px; }
  .display { font-size: clamp(32px,5.6vw,48px); }
}
@media (max-width: 820px) {
  .site-header, .site-header.is-scrolled { min-height: 58px; }
  .site-header > .button { display: inline-flex; min-height: 34px; padding: 8px 11px; font-size: 11px; }
  .hero { padding-top: 21px; padding-bottom: 28px; }
  .hero-summary { font-size: 14px; margin-bottom: 16px; }
  .hero .eyebrow { font-size: 9px; margin-bottom: 10px; }
  .hero-benefits { gap: 12px 16px; margin-bottom: 16px; }
  .hero-investment { padding-top: 13px; margin-bottom: 14px; }
  .hero-investment strong { font-size: 13px; }
  .hero-investment span { font-size: 11px; }
  .hero-actions { display: flex; flex-direction: row; align-items: center; gap: 12px; }
  .hero-actions .button { width: auto; min-height: 44px; font-size: 13px; }
  .hero-actions p { font-size: 10px; }
  .section { padding-block: 40px; }
  .section h2 { font-size: 30px; }
  .story-grid, .evidence-grid, .buyer-grid, .proof-grid, .fit-grid, .faq-grid, .advantage { gap: 22px; }
  .outcome-card { min-height: auto; padding: 19px; }
  .outcome-card > span { margin-bottom: 14px; }
  .outcome-card h3 { font-size: 20px; }
  .mobile-booking { opacity: 0; visibility: hidden; transform: translateY(100%); }
  .mobile-booking.is-visible { opacity: 1; visibility: visible; transform: none; }
  .mobile-booking span { color: var(--muted); }
  .system-core { max-width: 210px; }
}
@media (max-width: 560px) {
  .display { font-size: 34px; }
  .hero-benefits strong { font-size: 12px; }
  .hero-benefits span { font-size: 11px; }
  .hero-actions { flex-wrap: wrap; gap: 8px; }
  .hero-actions p { max-width: none; }
  .hero-actions p br { display: none; }
  .briefing-panels { min-height: 255px; }
  .shift-band { grid-template-columns: 1fr 1fr; gap: 18px; padding-block: 18px; }
  .shift-item { display: block; }
  .shift-item p { margin-top: 5px; font-size: 12px; }
  .shift-label { display: none; }
  .section h2 { font-size: 29px; }
  .waiting-cost { grid-template-columns: 1fr; gap: 5px; }
  .waiting-cost strong { font-size: 19px; }
  .final-cta h2 { font-size: 37px; }
}
@media (max-width: 380px) {
  .display { font-size: 28px; }
  .display span { font-size: 25px; }
  .hero { padding-top: 15px; }
  .hero-summary { font-size: 13px; }
  .hero-benefits { gap: 10px; }
}
