:root {
  --graphite: #111214;
  --graphite-soft: #18191d;
  --graphite-raised: #222328;
  --paper: #f7f2e9;
  --paper-deep: #e9e2d7;
  --ink: #202825;
  --body: #4a5550;
  --muted: #66706b;
  --on-dark: #fcfaf3;
  --on-dark-muted: rgba(252, 250, 243, 0.72);
  --line: rgba(32, 40, 37, 0.16);
  --line-dark: rgba(252, 250, 243, 0.15);
  --terracotta: #d97757;
  --terracotta-deep: #a84f35;
  --teal: #4fb3a7;
  --warning: #e2b84c;
  --font: "Space Grotesk", Arial, sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --header-height: 66px;
  --radius-small: 8px;
  --radius: 18px;
  --radius-large: 28px;
  --shadow: 0 30px 90px rgba(16, 18, 18, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  background: var(--graphite);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font: 16px/1.6 var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input {
  font-family: var(--font);
}

button,
input {
  font: inherit;
}

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

a {
  color: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(217, 119, 87, 0.65);
  outline-offset: 4px;
}

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

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

h1,
h2,
h3,
strong {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

[hidden] {
  display: none !important;
}

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

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

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

.reading-progress {
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.reading-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  left: 0;
  min-height: var(--header-height);
  color: var(--on-dark);
  background: rgba(17, 18, 20, 0.9);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(190px, auto) 1fr auto;
  gap: 24px;
  align-items: center;
  width: min(1440px, 100% - 44px);
  margin: 0 auto;
}

.brand-lockup {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  text-decoration: none;
}

.brand-lockup__symbol {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 7px;
}

.brand-lockup__copy {
  display: grid;
  gap: 4px;
  line-height: 1;
}

.brand-lockup strong {
  font-size: 1rem;
  letter-spacing: -0.035em;
}

.brand-lockup strong span {
  color: var(--terracotta);
}

.brand-lockup small {
  color: var(--on-dark-muted);
  font: 500 0.62rem/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.header-universe {
  justify-self: center;
  display: flex;
  gap: 9px;
  align-items: center;
  color: var(--on-dark-muted);
  font: 500 0.61rem/1 var(--mono);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.header-universe::before {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(79, 179, 167, 0.12);
  content: "";
}

.header-actions {
  display: flex;
  gap: 22px;
  align-items: center;
}

.header-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.header-nav a {
  color: var(--on-dark-muted);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
}

.header-nav a:hover {
  color: var(--on-dark);
}

.button,
.button-secondary,
.text-button {
  min-height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 19px;
  border-radius: var(--radius-small);
  cursor: pointer;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.button {
  color: #fff;
  background: var(--terracotta-deep);
  border: 1px solid var(--terracotta-deep);
}

.button:hover {
  background: #853d2b;
  border-color: #853d2b;
  transform: translateY(-1px);
}

.button--bright {
  color: var(--graphite);
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.button--bright:hover {
  color: var(--on-dark);
  background: var(--terracotta-deep);
  border-color: var(--terracotta-deep);
}

.button-secondary {
  color: var(--on-dark);
  background: rgba(252, 250, 243, 0.04);
  border: 1px solid rgba(252, 250, 243, 0.3);
}

.button-secondary:hover {
  background: rgba(252, 250, 243, 0.1);
  border-color: rgba(252, 250, 243, 0.5);
  transform: translateY(-1px);
}

.button--small {
  min-height: 42px;
  padding: 9px 14px;
  font-size: 0.75rem;
}

.text-button {
  min-height: 42px;
  padding: 8px 10px;
  color: inherit;
  background: transparent;
  border: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.button:disabled {
  cursor: wait;
  opacity: 0.58;
  transform: none;
}

.story-rail {
  position: fixed;
  z-index: 60;
  top: var(--header-height);
  bottom: 0;
  left: 0;
  width: 76px;
  display: none;
  justify-items: center;
  align-content: center;
  gap: 5px;
  color: rgba(252, 250, 243, 0.42);
  background: rgba(17, 18, 20, 0.96);
  border-right: 1px solid var(--line-dark);
}

.story-rail::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  bottom: 50%;
  left: 37px;
  width: 1px;
  height: 208px;
  background: var(--line-dark);
  transform: translateY(-50%);
  content: "";
}

.story-rail a {
  width: 52px;
  height: 39px;
  display: grid;
  place-items: center;
  color: inherit;
  background: var(--graphite);
  border: 1px solid transparent;
  border-radius: 7px;
  font: 500 0.58rem/1 var(--mono);
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease;
}

.story-rail a:hover,
.story-rail a.is-active {
  color: var(--terracotta);
  border-color: rgba(217, 119, 87, 0.35);
}

.story-rail a.is-active {
  background: var(--graphite-raised);
  box-shadow: inset 3px 0 0 var(--terracotta);
}

.page-loading {
  min-height: 100svh;
  display: grid;
  place-content: center;
  gap: 8px;
  color: var(--on-dark);
  background: var(--graphite);
  text-align: center;
}

.page-loading span {
  color: var(--terracotta);
  font: 600 0.72rem/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-loading p {
  color: var(--on-dark-muted);
}

.section {
  position: relative;
  width: 100%;
  padding: clamp(82px, 9vw, 132px) 0;
  overflow: clip;
}

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

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

.section--dark {
  color: var(--on-dark);
  background: var(--graphite);
}

.section--dark-soft {
  color: var(--on-dark);
  background: var(--graphite-soft);
}

.section-inner {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

.section-intro {
  max-width: 900px;
}

.section-intro--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 23px;
  color: var(--terracotta-deep);
  font: 600 0.68rem/1.4 var(--mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.section--dark .eyebrow,
.section--dark-soft .eyebrow {
  color: var(--terracotta);
}

.section h2 {
  max-width: 19ch;
  margin-bottom: 0;
  font-size: clamp(2.55rem, 5vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.section h2 .accent {
  display: block;
  color: var(--terracotta-deep);
}

.section--dark h2 .accent,
.section--dark-soft h2 .accent {
  color: var(--terracotta);
}

.section-lead {
  max-width: 68ch;
  margin: 28px 0 0;
  color: var(--body);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  line-height: 1.68;
}

.section--dark .section-lead,
.section--dark-soft .section-lead {
  color: var(--on-dark-muted);
}

.section-number {
  position: absolute;
  top: 42px;
  right: max(32px, calc((100vw - 1180px) / 2));
  color: rgba(32, 40, 37, 0.11);
  font: 600 clamp(4.5rem, 10vw, 9rem) / 1 var(--mono);
  letter-spacing: -0.12em;
  pointer-events: none;
}

.section--dark .section-number,
.section--dark-soft .section-number {
  color: rgba(252, 250, 243, 0.07);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 44px) 0 54px;
  overflow: hidden;
  color: var(--on-dark);
  background: var(--graphite);
}

.hero-picture {
  position: absolute;
  inset: 0;
}

.hero-picture::before,
.hero-picture::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  content: "";
}

.hero-picture::before {
  background:
    linear-gradient(90deg, rgba(17, 18, 20, 0.98) 0%, rgba(17, 18, 20, 0.9) 34%, rgba(17, 18, 20, 0.42) 62%, rgba(17, 18, 20, 0.03) 100%),
    linear-gradient(0deg, rgba(17, 18, 20, 0.72), transparent 42%);
}

.hero-picture::after {
  background: radial-gradient(circle at 78% 38%, transparent 0%, transparent 23%, rgba(17, 18, 20, 0.16) 70%);
}

.hero-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

.hero-copy {
  max-width: 700px;
}

.hero .eyebrow {
  color: var(--terracotta);
}

.hero h1 {
  max-width: 12.5ch;
  margin: 0;
  font-size: clamp(3.25rem, 5.15vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.068em;
  line-height: 0.9;
}

.hero h1 span {
  display: block;
  color: var(--terracotta);
}

.hero-lead {
  max-width: 57ch;
  margin: 28px 0 0;
  color: rgba(252, 250, 243, 0.8);
  font-size: clamp(1rem, 1.4vw, 1.13rem);
  line-height: 1.64;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 30px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 34px 0 0;
  padding: 18px 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.hero-fact {
  min-width: 145px;
  padding: 0 20px;
}

.hero-fact:first-child {
  padding-left: 0;
}

.hero-fact + .hero-fact {
  border-left: 1px solid var(--line-dark);
}

.hero-fact span,
.hero-fact strong {
  display: block;
}

.hero-fact span {
  color: rgba(252, 250, 243, 0.52);
  font: 500 0.57rem/1.3 var(--mono);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-fact strong {
  margin-top: 5px;
  color: var(--on-dark);
  font-size: 0.78rem;
  line-height: 1.35;
}

.hero-note {
  margin: 17px 0 0;
  color: rgba(252, 250, 243, 0.55);
  font: 400 0.68rem/1.5 var(--mono);
}

.recognition-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1080px;
  margin: clamp(54px, 7vw, 82px) auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.recognition-signal {
  min-width: 0;
  padding: 32px clamp(22px, 3vw, 38px) 34px;
}

.recognition-signal + .recognition-signal {
  border-left: 1px solid var(--line);
}

.recognition-signal span {
  color: var(--terracotta-deep);
  font: 600 0.62rem/1 var(--mono);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.recognition-signal h3 {
  margin: 24px 0 0;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.recognition-signal p {
  margin: 15px 0 0;
  color: var(--body);
  font-size: 0.92rem;
}

.editorial-close {
  max-width: 780px;
  margin: clamp(48px, 7vw, 78px) 0 0 auto;
  padding-left: 28px;
  border-left: 2px solid var(--terracotta);
  color: var(--ink);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.28;
}

.scale-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(52px, 8vw, 110px);
  align-items: end;
}

.scale-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.scale-item {
  position: relative;
  min-height: 235px;
  display: grid;
  align-content: end;
  gap: 7px;
  padding: 18px 12px 22px;
  border-bottom: 1px solid var(--line-dark);
  isolation: isolate;
}

.scale-item + .scale-item {
  border-left: 1px solid var(--line-dark);
}

.scale-item::before {
  position: absolute;
  z-index: -1;
  right: 50%;
  bottom: 0;
  left: 50%;
  height: var(--scale-height, 12%);
  background: linear-gradient(to top, rgba(79, 179, 167, 0.2), transparent);
  content: "";
  transition: right 260ms ease, left 260ms ease;
}

.scale-item:nth-child(2) {
  --scale-height: 27%;
}

.scale-item:nth-child(3) {
  --scale-height: 48%;
}

.scale-item:nth-child(4) {
  --scale-height: 72%;
}

.scale-item:nth-child(5) {
  --scale-height: 100%;
}

.scale-item:hover::before,
.scale-item.is-core::before {
  right: 0;
  left: 0;
}

.scale-item.is-core {
  box-shadow: inset 0 3px 0 var(--terracotta);
}

.scale-item > span {
  color: var(--terracotta);
  font: 600 0.61rem/1 var(--mono);
}

.scale-item strong {
  font-size: 0.8rem;
}

.scale-item small {
  color: var(--on-dark-muted);
  font-size: 0.64rem;
  line-height: 1.35;
}

.scale-marker {
  position: absolute;
  top: 14px;
  right: 8px;
  left: 8px;
  color: var(--terracotta);
  font: 500 0.52rem/1.25 var(--mono);
  text-align: center;
  text-transform: uppercase;
}

.program-shell {
  margin-top: clamp(54px, 7vw, 82px);
}

.act-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.act-tab {
  min-height: 104px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-content: center;
  align-items: baseline;
  padding: 21px 24px;
  color: var(--body);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.act-tab + .act-tab {
  border-left: 1px solid var(--line);
}

.act-tab span {
  color: var(--terracotta-deep);
  font: 600 0.64rem/1 var(--mono);
}

.act-tab strong {
  font-size: 1.08rem;
}

.act-tab small {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.71rem;
  line-height: 1.4;
}

.act-tab[aria-selected="true"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 -3px 0 var(--terracotta-deep);
}

.act-panel {
  margin-top: 12px;
}

.program-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) minmax(250px, 0.62fr);
  gap: 28px;
  align-items: center;
  padding: clamp(26px, 4vw, 39px) 4px;
  border-bottom: 1px solid var(--line);
}

.program-row > span {
  color: var(--terracotta-deep);
  font: 600 0.72rem/1 var(--mono);
  letter-spacing: 0.08em;
}

.program-row h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.35vw, 2rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.program-result {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.program-result span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font: 500 0.57rem/1 var(--mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.program-result strong {
  display: block;
  font-size: 0.8rem;
  line-height: 1.45;
}

.program-close {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.program-close span {
  color: var(--terracotta-deep);
  font: 600 0.64rem/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.program-close strong {
  max-width: 600px;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  letter-spacing: -0.02em;
  line-height: 1.35;
  text-align: right;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(54px, 7vw, 82px);
}

.outcome-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.outcome-card > span {
  color: var(--terracotta-deep);
  font: 600 0.64rem/1 var(--mono);
}

.outcome-card h3 {
  max-width: 15ch;
  margin: auto 0 0;
  padding-top: 38px;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.outcome-card p {
  margin: 15px 0 0;
  color: var(--body);
  font-size: 0.85rem;
  line-height: 1.58;
}

.control-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(58px, 8vw, 92px);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.control-step {
  position: relative;
  min-height: 265px;
  display: flex;
  flex-direction: column;
  padding: 29px clamp(24px, 3vw, 38px) 34px;
}

.control-step + .control-step {
  border-left: 1px solid var(--line-dark);
}

.control-step > span {
  color: var(--terracotta);
  font: 600 0.65rem/1 var(--mono);
}

.control-step:nth-child(2) > span {
  color: var(--teal);
}

.control-step h3 {
  max-width: 13ch;
  margin: auto 0 0;
  color: var(--on-dark);
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.control-step p {
  margin: 18px 0 0;
  color: var(--on-dark-muted);
  font-size: 0.84rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(38px, 7vw, 90px);
  margin-top: clamp(54px, 7vw, 80px);
}

.audience-column {
  padding-top: 25px;
  border-top: 2px solid var(--terracotta-deep);
}

.audience-column--no {
  border-top-color: var(--ink);
}

.audience-column h3 {
  margin: 0;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.audience-column ul {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.audience-column li {
  position: relative;
  padding: 18px 0 18px 31px;
  color: var(--body);
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.audience-column li::before {
  position: absolute;
  top: 20px;
  left: 2px;
  color: var(--terracotta-deep);
  font: 600 0.71rem/1 var(--mono);
  content: "TAK";
}

.audience-column--no li::before {
  color: var(--muted);
  content: "STOP";
}

.host-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 7vw, 88px);
  align-items: center;
  padding: clamp(26px, 4vw, 46px);
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.host-portrait {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--paper);
  border-radius: calc(var(--radius-large) - 8px);
}

.host-portrait::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(32, 40, 37, 0.12);
  border-radius: inherit;
  pointer-events: none;
  content: "";
}

.host-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.host-copy {
  min-width: 0;
}

.host-copy h2 {
  max-width: 13ch;
  font-size: clamp(2.45rem, 4.7vw, 4.5rem);
}

.host-name {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: baseline;
  margin: 28px 0 0;
}

.host-name strong {
  font-size: 1.05rem;
}

.host-name span {
  color: var(--muted);
  font: 500 0.61rem/1.4 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.host-lead {
  max-width: 58ch;
  margin: 22px 0 0;
  color: var(--body);
}

.host-quote {
  max-width: 34ch;
  margin: 27px 0 0;
  padding-left: 22px;
  color: var(--terracotta-deep);
  border-left: 2px solid var(--terracotta);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  line-height: 1.38;
}

.host-facts {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.host-facts li {
  padding: 14px 0;
  color: var(--body);
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(54px, 7vw, 82px);
}

.testimonial {
  min-width: 0;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: clamp(27px, 4vw, 40px);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.testimonial-author {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  align-items: center;
}

.testimonial-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  border-radius: 50%;
  font: 600 0.67rem/1 var(--mono);
}

.testimonial-author strong,
.testimonial-author div > span {
  display: block;
}

.testimonial-author strong {
  font-size: 0.94rem;
}

.testimonial-author div > span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.71rem;
}

.testimonial blockquote {
  margin: 32px 0 0;
}

.testimonial-excerpt {
  color: var(--ink);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.testimonial-details {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.testimonial-details summary {
  width: max-content;
  max-width: 100%;
  color: var(--terracotta-deep);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
}

.testimonial-details[open] summary {
  margin-bottom: 18px;
}

.testimonial-details p {
  color: var(--body);
  font-size: 0.83rem;
  line-height: 1.62;
}

.testimonial-result {
  align-self: flex-start;
  margin: auto 0 0;
  padding-top: 28px;
  color: var(--terracotta-deep);
  font: 600 0.61rem/1.45 var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.decision-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(50px, 8vw, 112px);
  align-items: start;
}

.offer-card {
  padding: clamp(28px, 4vw, 48px);
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius-large);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.28);
}

.offer-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
}

.offer-product span {
  color: var(--terracotta-deep);
  font: 600 0.62rem/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-product h3 {
  max-width: 13ch;
  margin: 14px 0 0;
  font-size: clamp(1.55rem, 2.7vw, 2.25rem);
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.offer-price {
  flex: 0 0 auto;
  display: flex;
  gap: 6px;
  align-items: flex-end;
}

.offer-price strong {
  font-size: clamp(3.25rem, 6vw, 5.4rem);
  letter-spacing: -0.08em;
  line-height: 0.85;
}

.offer-price span {
  padding-bottom: 4px;
  color: var(--muted);
  font: 600 0.65rem/1 var(--mono);
}

.offer-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 38px;
  padding: 21px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.offer-fact {
  padding: 0 17px;
}

.offer-fact:first-child {
  padding-left: 0;
}

.offer-fact + .offer-fact {
  border-left: 1px solid var(--line);
}

.offer-fact span,
.offer-fact strong {
  display: block;
}

.offer-fact span {
  color: var(--terracotta-deep);
  font: 600 0.57rem/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-fact strong {
  margin-top: 7px;
  font-size: 0.76rem;
  line-height: 1.4;
}

.offer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 25px;
}

.offer-actions .button-secondary {
  color: var(--ink);
  border-color: rgba(32, 40, 37, 0.25);
}

.offer-actions .button-secondary:hover {
  color: var(--on-dark);
  background: var(--ink);
}

.purchase-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.69rem;
  line-height: 1.5;
}

.guarantee {
  margin-top: 28px;
  padding: 27px;
  background: var(--paper-deep);
  border-radius: calc(var(--radius-large) - 10px);
}

.guarantee > span {
  color: var(--terracotta-deep);
  font: 600 0.61rem/1 var(--mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.guarantee h3 {
  max-width: 18ch;
  margin: 15px 0 0;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.guarantee > p {
  margin: 17px 0 0;
  color: var(--body);
  font-size: 0.83rem;
}

.guarantee-refund {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: baseline;
  margin-top: 21px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.guarantee-refund strong {
  color: var(--terracotta-deep);
  font-size: 1.3rem;
}

.guarantee-refund span {
  color: var(--body);
  font-size: 0.75rem;
  line-height: 1.45;
}

.faq-list {
  max-width: 920px;
  margin: clamp(52px, 7vw, 78px) auto 0;
  border-top: 1px solid var(--line);
}

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

.faq-item summary {
  position: relative;
  padding: 24px 54px 24px 0;
  cursor: pointer;
  font-size: clamp(1.06rem, 2vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.35;
  list-style: none;
}

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

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 5px;
  color: var(--terracotta-deep);
  font: 400 1.4rem/1 var(--font);
  transform: translateY(-50%);
  content: "+";
}

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

.faq-item p {
  max-width: 760px;
  margin: 0;
  padding: 0 48px 25px 0;
  color: var(--body);
  font-size: 0.9rem;
}

.signup-layout {
  display: grid;
  grid-template-columns: minmax(270px, 0.8fr) minmax(500px, 1.2fr);
  gap: clamp(48px, 8vw, 108px);
  align-items: center;
}

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

.signup-form-shell {
  padding: clamp(27px, 4vw, 44px);
  background: var(--graphite-soft);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-large);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.28);
}

.preview-note {
  margin: 0 0 18px;
  padding: 12px 14px;
  color: var(--on-dark);
  background: rgba(226, 184, 76, 0.09);
  border: 1px solid rgba(226, 184, 76, 0.32);
  border-radius: var(--radius-small);
  font-size: 0.7rem;
  line-height: 1.5;
}

.signup-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field span,
.intent-fieldset legend {
  color: var(--on-dark);
  font-size: 0.7rem;
  font-weight: 600;
}

.field input {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  color: var(--on-dark);
  background: rgba(252, 250, 243, 0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-small);
  outline: 0;
}

.field input::placeholder {
  color: rgba(252, 250, 243, 0.35);
}

.field input:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(217, 119, 87, 0.12);
}

.field--full,
.intent-fieldset,
.form-consent,
.form-status,
.signup-form .button {
  grid-column: 1 / -1;
}

.intent-fieldset {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  padding: 0;
  margin: 5px 0 0;
  border: 0;
}

.intent-fieldset legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

.intent-option {
  position: relative;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-content: start;
  padding: 15px;
  color: var(--on-dark-muted);
  background: rgba(252, 250, 243, 0.035);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-small);
  cursor: pointer;
}

.intent-option:has(input:checked) {
  background: rgba(217, 119, 87, 0.1);
  border-color: var(--terracotta);
}

.intent-option input {
  margin: 3px 0 0;
  accent-color: var(--terracotta);
}

.intent-option strong,
.intent-option small {
  display: block;
}

.intent-option strong {
  color: var(--on-dark);
  font-size: 0.75rem;
}

.intent-option small {
  margin-top: 5px;
  color: var(--on-dark-muted);
  font-size: 0.65rem;
  line-height: 1.42;
}

.form-consent {
  display: grid;
  grid-template-columns: 17px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 2px;
  color: var(--on-dark-muted);
  font-size: 0.64rem;
  line-height: 1.5;
}

.form-consent input {
  margin: 3px 0 0;
  accent-color: var(--terracotta);
}

.form-consent a {
  color: var(--terracotta);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: #f4a086;
  font-size: 0.72rem;
}

.signup-success {
  display: grid;
  gap: 13px;
  color: var(--on-dark);
}

.signup-success > span {
  color: var(--teal);
  font: 600 0.65rem/1 var(--mono);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.signup-success h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.signup-success p {
  margin: 0;
  color: var(--on-dark-muted);
}

.site-footer {
  padding: 58px 0 25px;
  color: var(--ink);
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 42px;
  align-items: start;
}

.footer-copy span {
  color: var(--terracotta-deep);
  font: 600 0.62rem/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-copy strong {
  display: block;
  max-width: 17ch;
  margin-top: 12px;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.footer-copy p {
  max-width: 49ch;
  margin: 16px 0 0;
  color: var(--body);
  font-size: 0.82rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 10px 24px;
}

.footer-links a {
  color: var(--body);
  font-size: 0.79rem;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 44px;
  padding-top: 20px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font: 400 0.61rem/1.5 var(--mono);
}

.footer-bottom a {
  color: inherit;
}

.cookie-banner {
  position: fixed;
  z-index: 120;
  right: 18px;
  bottom: 18px;
  left: auto;
  width: min(430px, calc(100% - 36px));
  display: grid;
  gap: 13px;
  padding: 17px 19px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.cookie-banner p {
  margin: 0;
  color: var(--body);
  font-size: 0.75rem;
}

.cookie-banner > div {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.noscript-message {
  position: fixed;
  z-index: 300;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 20px;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--terracotta);
  border-radius: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 1240px) {
  .story-rail {
    display: grid;
  }

  main,
  .site-footer {
    padding-left: 76px;
  }

  .site-header {
    left: 0;
  }
}

@media (max-width: 1080px) {
  .header-universe {
    display: none;
  }

  .header-inner {
    grid-template-columns: minmax(180px, 1fr) auto;
  }

  .header-actions {
    justify-self: end;
  }

  .header-nav {
    display: none;
  }

  .hero-picture::before {
    background:
      linear-gradient(90deg, rgba(17, 18, 20, 0.98) 0%, rgba(17, 18, 20, 0.86) 48%, rgba(17, 18, 20, 0.34) 80%, rgba(17, 18, 20, 0.12) 100%),
      linear-gradient(0deg, rgba(17, 18, 20, 0.75), transparent 44%);
  }

  .scale-layout,
  .decision-layout,
  .signup-layout {
    grid-template-columns: 1fr;
  }

  .scale-layout {
    gap: 52px;
  }

  .decision-layout,
  .signup-layout {
    max-width: 820px;
    margin: 0 auto;
  }

  .host-card {
    grid-template-columns: minmax(230px, 0.65fr) minmax(0, 1.35fr);
    gap: 38px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 62px;
  }

  .header-inner,
  .section-inner,
  .hero-inner,
  .footer-inner {
    width: calc(100% - 40px);
  }

  .brand-lockup small {
    display: none;
  }

  .section {
    padding: 76px 0;
  }

  .section-number {
    top: 26px;
    right: 20px;
    font-size: 4.4rem;
  }

  .section h2,
  .section-intro--center {
    text-align: left;
  }

  .section h2 {
    font-size: clamp(2.35rem, 10vw, 3.5rem);
  }

  .hero {
    min-height: 100svh;
    display: block;
    padding: calc(var(--header-height) + 45px) 0 52px;
  }

  .hero-picture {
    top: auto;
    height: 48%;
  }

  .hero-picture::before {
    background:
      linear-gradient(180deg, var(--graphite) 0%, rgba(17, 18, 20, 0.72) 30%, rgba(17, 18, 20, 0.15) 100%),
      linear-gradient(0deg, rgba(17, 18, 20, 0.65), transparent);
  }

  .hero-picture img {
    object-position: 62% center;
  }

  .hero-inner {
    min-height: calc(100svh - var(--header-height) - 97px);
  }

  .hero-copy {
    max-width: 620px;
    padding-bottom: min(44svh, 390px);
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(3rem, 12vw, 4.9rem);
  }

  .recognition-signals,
  .outcome-grid,
  .control-steps,
  .audience-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .recognition-signals,
  .control-steps {
    border-bottom: 0;
  }

  .recognition-signal + .recognition-signal,
  .control-step + .control-step {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .control-step + .control-step {
    border-top-color: var(--line-dark);
  }

  .editorial-close {
    margin-left: 0;
  }

  .act-tabs {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .act-tab + .act-tab {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .act-tab[aria-selected="true"] {
    box-shadow: inset 3px 0 0 var(--terracotta-deep);
  }

  .program-row {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .program-result {
    grid-column: 2;
    padding: 15px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .outcome-grid {
    gap: 10px;
  }

  .outcome-card {
    min-height: 220px;
  }

  .host-card {
    grid-template-columns: 1fr;
  }

  .host-portrait {
    max-width: 420px;
  }

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

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

@media (max-width: 620px) {
  .header-inner {
    gap: 12px;
  }

  .brand-lockup strong {
    font-size: 0.92rem;
  }

  .brand-lockup__symbol {
    width: 30px;
    height: 30px;
  }

  .header-actions .button {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 0.72rem;
  }

  .hero {
    padding-top: calc(var(--header-height) + 38px);
  }

  .hero .eyebrow {
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 13.5vw, 4rem);
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 0.93rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button,
  .hero-actions .button-secondary {
    width: 100%;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 16px;
    padding: 15px 0;
  }

  .hero-fact {
    min-width: 0;
    padding: 0 12px;
  }

  .hero-fact:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .hero-note {
    max-width: 39ch;
  }

  .scale-list {
    grid-template-columns: 1fr;
    border-bottom: 1px solid var(--line-dark);
  }

  .scale-item {
    min-height: 79px;
    grid-template-columns: 34px minmax(0, 0.7fr) minmax(0, 1fr);
    gap: 9px;
    align-content: center;
    align-items: center;
    padding: 13px 14px;
    border-bottom: 0;
  }

  .scale-item + .scale-item {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .scale-item::before {
    top: 0;
    right: auto;
    width: var(--scale-height);
    height: 100%;
    background: linear-gradient(90deg, rgba(79, 179, 167, 0.18), transparent);
  }

  .scale-marker {
    position: static;
    grid-column: 3;
    grid-row: 2;
    text-align: left;
  }

  .act-tab {
    min-height: 92px;
    padding: 18px 12px;
  }

  .program-row {
    gap: 14px;
  }

  .program-close {
    display: grid;
  }

  .program-close strong {
    text-align: left;
  }

  .audience-grid {
    gap: 52px;
  }

  .host-card,
  .testimonial,
  .offer-card,
  .signup-form-shell {
    padding: 22px;
    border-radius: 17px;
  }

  .host-copy h2 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .offer-head {
    display: grid;
  }

  .offer-price {
    justify-self: start;
  }

  .offer-facts {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .offer-fact {
    padding: 14px 0;
  }

  .offer-fact + .offer-fact {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .guarantee {
    padding: 21px;
  }

  .guarantee-refund {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .signup-form,
  .intent-fieldset {
    grid-template-columns: 1fr;
  }

  .intent-fieldset legend,
  .field--full,
  .intent-fieldset,
  .form-consent,
  .form-status,
  .signup-form .button {
    grid-column: 1;
  }

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

  .footer-bottom {
    display: grid;
  }

  .cookie-banner {
    display: grid;
  }

  .cookie-banner > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
