@font-face {
  font-family: "Newsreader";
  src: url("assets/fonts/Newsreader-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Plex";
  src: url("assets/fonts/IBMPlexSans-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Plex";
  src: url("assets/fonts/IBMPlexSans-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Plex";
  src: url("assets/fonts/IBMPlexSans-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --navy: #071a2b;
  --navy-2: #0a2436;
  --cobalt: #0f3c78;
  --ivory: #f3ebdd;
  --paper: #fffdf9;
  --coral: #e45b3f;
  --mineral: #a7a39a;
  --ink: #18202a;
  --muted: #5e6468;
  --hairline: #d8d1c4;
  --gutter: clamp(1.25rem, 4vw, 4.75rem);
  --content: 92rem;
  --serif: "Newsreader", Georgia, serif;
  --sans: "Plex", Arial, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body:has(dialog[open]) { overflow: hidden; }

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

a { color: inherit; }

button { font: inherit; }

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

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

h1, h2, h3 {
  font-family: var(--serif);
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.6rem;
  font-size: clamp(3.25rem, 6.5vw, 7.7rem);
  font-weight: 680;
  letter-spacing: -0.052em;
  line-height: 0.9;
}

h1 em, h2 em {
  color: var(--coral);
  font-style: italic;
  font-weight: 450;
}

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.75rem, 5.25vw, 6.6rem);
  font-weight: 670;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  font-weight: 650;
  line-height: 1.02;
}

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

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

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

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

.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--coral);
  transform-origin: left;
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.5rem;
  margin-inline: auto;
  padding: 0 var(--gutter);
  color: white;
  border-bottom: 1px solid rgb(255 255 255 / 16%);
}

.wordmark {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  text-decoration: none;
}

.wordmark__publisher {
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wordmark__title {
  font-family: var(--serif);
  font-size: 1.06rem;
  font-weight: 620;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.8rem);
  font-size: 0.82rem;
}

.site-header nav a {
  color: rgb(255 255 255 / 78%);
  text-decoration: none;
}

.site-header nav a:hover { color: white; }

.nav-cta {
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  color: white;
  background: transparent;
  border: 1px solid rgb(255 255 255 / 44%);
  cursor: pointer;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(29rem, 0.92fr);
  min-height: 100svh;
  overflow: clip;
  color: white;
  background: var(--navy);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 44%, rgb(15 60 120 / 58%), transparent 31%),
    linear-gradient(112deg, var(--navy) 0 58%, #0a2436 100%);
  content: "";
}

.hero::after {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgb(255 255 255 / 3%) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 3%) 1px, transparent 1px);
  background-size: 5.2vw 5.2vw;
  content: "";
  mask-image: linear-gradient(to right, black, transparent 80%);
}

.hero__copy {
  position: relative;
  z-index: 3;
  align-self: center;
  width: min(49rem, 100%);
  padding: 9rem var(--gutter) 6rem;
}

.eyebrow, .section-index {
  margin-bottom: 1.3rem;
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-index--light { color: #ff7a61; }

.hero__support {
  max-width: 36rem;
  margin-bottom: 2rem;
  color: rgb(255 255 255 / 76%);
  font-family: var(--serif);
  font-size: clamp(1.22rem, 1.7vw, 1.65rem);
  line-height: 1.33;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 3.4rem;
  padding: 0.9rem 1.2rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button--primary { color: white; background: var(--coral); }
.button--primary:hover { background: #c9442c; }
.button--quiet { color: white; background: transparent; border-color: rgb(255 255 255 / 40%); }
.button--quiet:hover { border-color: white; }
.button--ink { color: white; background: var(--navy); }
.button--ink:hover { background: var(--cobalt); }
.button--coral { color: white; background: var(--coral); }
.button--coral:hover { background: #c9442c; }

.launch-note, .final-cta__status {
  max-width: 37rem;
  color: rgb(255 255 255 / 52%);
  font-size: 0.77rem;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.3rem;
  margin-top: 2.4rem;
  color: rgb(255 255 255 / 67%);
  font-size: 0.75rem;
}

.hero__proof span::before {
  display: inline-block;
  width: 0.35rem;
  height: 0.35rem;
  margin-right: 0.55rem;
  background: var(--coral);
  content: "";
  transform: rotate(45deg);
}

.hero__world {
  position: relative;
  z-index: 2;
  min-height: 48rem;
}

.hero__scene { display: none; }

.hero__halo { display: none; }

.book-object {
  position: absolute;
  z-index: 4;
  inset: 5.5rem 0 0;
  width: min(100%, 44rem);
  height: calc(100% - 5.5rem);
  margin: 0;
  overflow: hidden;
}

.book-object img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.hero-thread { display: none; }

.hero-thread path {
  fill: none;
  stroke: var(--coral);
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  stroke-linecap: round;
  stroke-width: 2;
  animation: draw-thread 2.2s 0.35s cubic-bezier(.2,.7,.2,1) forwards;
}

@keyframes draw-thread { to { stroke-dashoffset: 0; } }

.scroll-cue {
  position: absolute;
  z-index: 5;
  right: var(--gutter);
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgb(255 255 255 / 58%);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue i { width: 4rem; height: 1px; background: var(--coral); }

.pressure {
  padding: clamp(6rem, 10vw, 10rem) var(--gutter);
  background: var(--ivory);
}

.pressure__intro, .section-head, .inside, .contexts, .trust, .faq {
  width: min(100%, var(--content));
  margin-inline: auto;
}

.pressure__intro h2 { max-width: 65rem; }

.request-ribbon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 5rem calc(var(--gutter) * -1) 0;
  padding: 1rem var(--gutter);
  overflow: hidden;
  color: var(--paper);
  background: var(--cobalt);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.8vw, 1.55rem);
  white-space: nowrap;
}

.request-ribbon i { flex: 0 0 0.35rem; width: 0.35rem; height: 0.35rem; background: var(--coral); transform: rotate(45deg); }

.pressure__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 8vw, 9rem);
  width: min(100%, var(--content));
  margin: 5rem auto 0;
}

.pressure .lead {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.6vw, 2.8rem);
  line-height: 1.16;
}

.cost-sequence { border-top: 1px solid var(--hairline); }

.cost-sequence article {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--hairline);
}

.cost-sequence span { color: var(--coral); font-size: 0.75rem; font-weight: 700; }
.cost-sequence p { margin: 0; font-size: 1.06rem; }

.care {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 46rem;
  color: white;
  background: var(--navy);
}

.care__statement, .care__quote { padding: clamp(5rem, 9vw, 9rem) var(--gutter); }
.care__statement { border-right: 1px solid rgb(255 255 255 / 14%); }
.care__statement h2 { max-width: 52rem; }
.care__statement > p:last-child { max-width: 44rem; color: rgb(255 255 255 / 70%); font-size: clamp(1.1rem, 1.5vw, 1.3rem); }

.care__quote {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  margin: 0;
  color: var(--ivory);
  background: var(--cobalt);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 3.4rem);
  font-style: italic;
  line-height: 1.07;
}

.care__quote span { position: absolute; top: 2rem; left: var(--gutter); color: rgb(255 255 255 / 13%); font-size: 12rem; font-style: normal; line-height: 1; }

.method {
  padding: clamp(6rem, 10vw, 10rem) var(--gutter);
  background: var(--paper);
}

.section-head { display: grid; grid-template-columns: 1.25fr 0.55fr; column-gap: clamp(3rem, 8vw, 9rem); }
.section-head .section-index { grid-column: 1 / -1; }
.section-head h2 { max-width: 65rem; }
.section-head > p:last-child { align-self: end; max-width: 25rem; color: var(--muted); font-size: 1.1rem; }

.method-line {
  position: relative;
  width: min(100%, var(--content));
  height: 1px;
  margin: 5rem auto 0;
  background: var(--hairline);
}

.method-line span { position: absolute; top: -2px; left: 0; display: block; width: 34%; height: 4px; background: var(--coral); }

.method__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100%, var(--content));
  margin-inline: auto;
}

.method-step { position: relative; min-height: 27rem; padding: 2rem clamp(1.25rem, 2.5vw, 3rem) 3rem 0; }
.method-step + .method-step { padding-left: clamp(1.25rem, 2.5vw, 3rem); border-left: 1px solid var(--hairline); }
.method-step__number { color: var(--cobalt); font-family: var(--serif); font-size: clamp(4rem, 7vw, 8rem); font-weight: 250; letter-spacing: -0.06em; line-height: 0.9; opacity: 0.25; }
.method-step__label { margin: 2.2rem 0 0.5rem; color: var(--coral); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.method-step p:last-child { max-width: 26rem; color: var(--muted); }

.proof {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  min-height: 60rem;
  overflow: hidden;
  background: var(--ivory);
}

.proof__copy { align-self: center; padding: clamp(5rem, 8vw, 8rem) var(--gutter); }
.proof__copy h2 { font-size: clamp(2.8rem, 4.7vw, 5.8rem); }
.proof__copy > p:not(.section-index) { max-width: 37rem; color: var(--muted); }
.proof__legend { margin: 2.5rem 0; padding: 0; list-style: none; border-top: 1px solid var(--hairline); }
.proof__legend li { display: grid; grid-template-columns: 3rem 1fr; padding: 0.9rem 0; border-bottom: 1px solid var(--hairline); }
.proof__legend span { color: var(--coral); font-size: 0.72rem; font-weight: 700; }

.proof__pages {
  position: relative;
  min-height: 60rem;
  background: var(--navy);
}

.page { position: absolute; width: min(24rem, 46%); margin: 0; box-shadow: 0 2.5rem 4rem rgb(0 0 0 / 42%); }
.page--back { top: 12%; left: 10%; transform: rotate(-7deg); }
.page--front { right: 8%; bottom: 8%; transform: rotate(6deg); }
.proof__stamp { position: absolute; top: 50%; left: 47%; display: grid; place-items: center; width: 8rem; height: 8rem; color: var(--ivory); border: 1px solid var(--coral); border-radius: 50%; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-align: center; text-transform: uppercase; transform: rotate(-12deg); }

.scripts { padding: clamp(6rem, 10vw, 10rem) var(--gutter); color: white; background: var(--navy); }
.scripts__intro, .scripts__list { width: min(100%, var(--content)); margin-inline: auto; }
.scripts__intro h2 { max-width: 75rem; }
.scripts__list { margin-top: 5rem; border-top: 1px solid rgb(255 255 255 / 18%); }
.script { display: grid; grid-template-columns: minmax(8rem, 0.3fr) minmax(0, 1fr); gap: 2rem; padding: 2.3rem 0; border-bottom: 1px solid rgb(255 255 255 / 18%); }
.script span { color: var(--coral); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.script blockquote { max-width: 63rem; margin-bottom: 0; font-family: var(--serif); font-size: clamp(1.5rem, 2.6vw, 3rem); line-height: 1.15; }

.inside {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(3rem, 8vw, 9rem);
  padding: clamp(6rem, 10vw, 10rem) var(--gutter);
}

.inside__cover { align-self: start; position: sticky; top: 3rem; }
.inside__cover h2 { font-size: clamp(3rem, 4.7vw, 5.7rem); }
.inside__cover > p:not(.section-index) { max-width: 34rem; color: var(--muted); }
.inside__folio { margin-top: 3rem; padding-top: 1rem; color: var(--muted); border-top: 1px solid var(--hairline); font-size: 0.82rem; text-transform: uppercase; }
.inside__folio strong { display: block; color: var(--cobalt); font-family: var(--serif); font-size: 2rem; font-weight: 600; text-transform: none; }

.contents { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--hairline); }
.contents li { display: grid; grid-template-columns: 3.5rem minmax(12rem, 0.8fr) 1fr; gap: 1rem; align-items: baseline; padding: 1.4rem 0; border-bottom: 1px solid var(--hairline); }
.contents span { color: var(--coral); font-size: 0.72rem; font-weight: 700; }
.contents strong { font-family: var(--serif); font-size: 1.35rem; line-height: 1.05; }
.contents small { color: var(--muted); font-size: 0.82rem; }

.contexts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: clamp(6rem, 10vw, 10rem) var(--gutter);
  background: var(--paper);
}

.contexts__title { grid-column: 1 / -1; max-width: 73rem; margin-bottom: 4rem; }
.context { min-height: 30rem; padding: clamp(2rem, 4vw, 4rem); }
.context > span { display: inline-block; margin-bottom: 8rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.context h3 { max-width: 32rem; font-size: clamp(2rem, 3.3vw, 4rem); }
.context p { max-width: 32rem; }
.context--local { color: var(--navy); background: var(--ivory); border: 1px solid var(--hairline); }
.context--local > span { color: var(--coral); }
.context--abroad { color: white; background: var(--cobalt); }
.context--abroad > span { color: #ff9d8b; }
.context--abroad p { color: rgb(255 255 255 / 70%); }
.contexts__bridge { grid-column: 1 / -1; margin: 2rem 0 0; color: var(--muted); text-align: center; }

.trust {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: clamp(3rem, 9vw, 10rem);
  padding: clamp(6rem, 10vw, 10rem) var(--gutter);
  color: white;
  background: var(--navy);
}

.trust__number { color: var(--cobalt); font-family: var(--serif); font-size: clamp(11rem, 24vw, 28rem); font-weight: 250; letter-spacing: -0.1em; line-height: 0.65; }
.trust__copy h2 { max-width: 60rem; font-size: clamp(2.6rem, 4.5vw, 5.2rem); }
.trust__copy > p:not(.section-index) { max-width: 46rem; color: rgb(255 255 255 / 69%); }
.trust__boundary { margin-top: 2.5rem; padding-top: 1.2rem; border-top: 1px solid rgb(255 255 255 / 17%); font-size: 0.82rem; }

.fit {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 7vw, 8rem);
  width: min(100%, var(--content));
  margin-inline: auto;
  padding: clamp(6rem, 10vw, 10rem) var(--gutter);
}

.fit__intro > p:not(.section-index) { max-width: 37rem; color: var(--muted); }
.fit__cards { border-top: 1px solid var(--hairline); }
.fit__cards article {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--hairline);
}
.fit__cards article > span { color: var(--coral); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.fit__cards ul { margin: 0; padding-left: 1.2rem; }
.fit__cards li + li { margin-top: 0.7rem; }

.faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(3rem, 8vw, 9rem);
  padding: clamp(6rem, 10vw, 10rem) var(--gutter);
}

.faq__intro h2 { font-size: clamp(2.8rem, 4.6vw, 5.6rem); }
.faq__intro > p:not(.section-index) { max-width: 34rem; color: var(--muted); }
.faq__list { border-top: 1px solid var(--hairline); }
.faq details { border-bottom: 1px solid var(--hairline); }
.faq summary { position: relative; display: grid; grid-template-columns: 1fr 2.5rem; gap: 1rem; align-items: center; min-height: 5rem; padding: 1rem 0; font-family: var(--serif); font-size: clamp(1.25rem, 1.7vw, 1.6rem); font-weight: 580; cursor: pointer; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span, .faq summary span::after { display: block; width: 1.15rem; height: 1px; background: var(--coral); content: ""; transition: transform 180ms ease; }
.faq summary span::after { transform: rotate(90deg); }
.faq details[open] summary span::after { transform: rotate(0deg); }
.faq details p { max-width: 51rem; padding: 0 4rem 1.5rem 0; color: var(--muted); }

.final-cta {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 47rem;
  padding: clamp(7rem, 12vw, 12rem) var(--gutter);
  overflow: hidden;
  color: white;
  background: var(--cobalt);
  text-align: center;
}

.final-cta__thread { position: absolute; top: -25rem; width: 48rem; height: 48rem; border: 2px solid var(--coral); border-radius: 45% 55% 59% 41% / 52% 40% 60% 48%; opacity: 0.38; transform: rotate(17deg); }
.final-cta > *:not(.final-cta__thread) { position: relative; z-index: 2; }
.final-cta h2 { max-width: 74rem; }
.final-cta > p:not(.section-index, .final-cta__status) { font-family: var(--serif); font-size: 1.4rem; }
.final-cta .button { margin-top: 2rem; }
.final-cta__status { margin-top: 1rem; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem var(--gutter);
  color: rgb(255 255 255 / 58%);
  background: var(--navy);
  font-size: 0.72rem;
}

footer p { margin: 0; }
footer a { text-decoration: none; }
.footer-privacy { padding: 0; color: inherit; background: transparent; border: 0; font: inherit; cursor: pointer; text-decoration: underline; text-underline-offset: 0.25em; }

.privacy-choice {
  position: fixed;
  z-index: 90;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
  width: min(78rem, calc(100vw - 2rem));
  margin-inline: auto;
  padding: 1.4rem 1.5rem;
  color: white;
  background: color-mix(in srgb, var(--navy) 96%, transparent);
  border-top: 2px solid var(--coral);
  box-shadow: 0 1.5rem 5rem rgb(0 0 0 / 42%);
}

.privacy-choice[hidden] { display: none; }
.privacy-choice h2 { margin: 0.1rem 0 0.4rem; font-size: clamp(1.45rem, 2vw, 2rem); letter-spacing: -0.02em; }
.privacy-choice p { max-width: 55rem; margin: 0; color: rgb(255 255 255 / 72%); font-size: 0.82rem; }
.privacy-choice__label { color: var(--coral) !important; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.privacy-choice__actions { display: flex; gap: 0.65rem; align-items: center; }
.privacy-choice__actions .button { min-height: 2.9rem; padding: 0.65rem 1rem; white-space: nowrap; }
.privacy-choice__actions .button--quiet { color: white; border-color: rgb(255 255 255 / 34%); }

dialog {
  width: min(92vw, 78rem);
  max-height: 92svh;
  padding: 0;
  color: var(--ink);
  background: var(--ivory);
  border: 0;
  box-shadow: 0 3rem 8rem rgb(0 0 0 / 55%);
}

dialog::backdrop { background: rgb(7 26 43 / 82%); backdrop-filter: blur(8px); }

.preview-dialog__bar { position: sticky; z-index: 3; top: 0; display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 1.5rem; color: white; background: var(--navy); }
.preview-dialog__bar span { color: var(--coral); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; }
.preview-dialog__bar h2 { margin: 0; font-size: 2rem; letter-spacing: -0.02em; }
.preview-dialog__bar button, .launch-dialog > [data-launch-close] { display: grid; place-items: center; width: 3rem; height: 3rem; color: white; background: transparent; border: 1px solid rgb(255 255 255 / 32%); font-size: 1.8rem; cursor: pointer; }
.preview-dialog__pages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; padding: 2rem; }
.preview-dialog figure { margin: 0; }
.preview-dialog figcaption { margin-top: 0.6rem; font-size: 0.76rem; }
.preview-dialog__download { margin: 0 2rem 2rem; }

.launch-dialog { width: min(92vw, 36rem); padding: 3rem; }
.launch-dialog > [data-launch-close] { position: absolute; top: 1rem; right: 1rem; color: var(--navy); border-color: var(--hairline); }
.launch-dialog h2 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
.launch-dialog p:not(.eyebrow) { color: var(--muted); }

.reveal {
  opacity: 0;
  transform: translateY(1.8rem);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1);
}

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

@media (max-width: 1100px) {
  .site-header nav a { display: none; }
  .hero { grid-template-columns: 1fr 0.78fr; }
  .hero::before { background-position: 70% center; }
  .hero__world { min-height: 42rem; }
  .book-object { inset: 5.5rem 0 0; width: 100%; }
  .inside, .faq { grid-template-columns: 0.9fr 1.1fr; gap: 3rem; }
  .contents li { grid-template-columns: 3rem 1fr; }
  .contents small { grid-column: 2; }
}

@media (max-width: 820px) {
  h1 { font-size: clamp(3.35rem, 13vw, 6rem); }
  h2 { font-size: clamp(2.7rem, 10vw, 5rem); }
  .site-header { min-height: 4.8rem; }
  .wordmark__title { display: none; }
  .hero { display: block; min-height: auto; padding-bottom: 4rem; }
  .hero::before { background: radial-gradient(circle at 50% 65%, rgb(15 60 120 / 52%), transparent 27%), linear-gradient(to bottom, #0a2436, var(--navy) 62%); }
  .hero__copy { padding-top: 8.5rem; padding-bottom: 1.5rem; }
  .hero__world { min-height: 38rem; }
  .book-object { top: 1.5rem; right: auto; bottom: 0; left: 50%; width: min(92vw, 31rem); height: auto; transform: translateX(-50%); }
  .scroll-cue { display: none; }
  .pressure__grid, .care, .section-head, .proof, .inside, .contexts, .trust, .fit, .faq { grid-template-columns: 1fr; }
  .request-ribbon { justify-content: flex-start; overflow-x: auto; }
  .care { min-height: auto; }
  .care__statement { border-right: 0; border-bottom: 1px solid rgb(255 255 255 / 14%); }
  .care__quote { min-height: 30rem; }
  .section-head > p:last-child { align-self: auto; }
  .method__steps { grid-template-columns: 1fr; }
  .method-line { display: none; }
  .method-step { min-height: auto; padding: 2rem 0 3rem; border-top: 1px solid var(--hairline); }
  .method-step + .method-step { padding-left: 0; border-left: 0; }
  .method-step__number { position: absolute; top: 1rem; right: 0; font-size: 5rem; }
  .proof__copy { padding-bottom: 5rem; }
  .proof__pages { min-height: 48rem; }
  .page { width: min(20rem, 57%); }
  .page--front { right: 4%; }
  .proof__stamp { left: 42%; }
  .inside__cover { position: static; }
  .context { min-height: 27rem; }
  .context > span { margin-bottom: 6rem; }
  .contexts__bridge { grid-column: 1; }
  .trust { text-align: left; }
  .trust__number { font-size: 13rem; }
  .fit__cards article { grid-template-columns: 1fr; gap: 0.8rem; }
  .preview-dialog__pages { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  :root { --gutter: 1.2rem; }
  .site-header nav { gap: 0; }
  .nav-cta { min-height: 2.65rem; }
  .hero__copy { padding-top: 7.5rem; }
  .hero__support { font-size: 1.15rem; }
  .hero__actions { display: grid; }
  .hero__actions .button { width: 100%; }
  .hero__proof { display: grid; }
  .hero__world { min-height: 33rem; }
  .book-object { width: min(94vw, 30rem); }
  .pressure, .method, .scripts { padding-block: 5.5rem; }
  .request-ribbon { margin-top: 3rem; }
  .pressure__grid { gap: 2.5rem; margin-top: 3.5rem; }
  .care__statement, .care__quote { padding-block: 5.5rem; }
  .proof__pages { min-height: 37rem; }
  .proof__stamp { top: 44%; left: 36%; width: 6.5rem; height: 6.5rem; }
  .script { grid-template-columns: 1fr; gap: 0.8rem; }
  .contents li { grid-template-columns: 2.25rem 1fr; }
  .context { min-height: 25rem; }
  .context > span { margin-bottom: 4.5rem; }
  .trust__number { font-size: 10rem; }
  .faq details p { padding-right: 0; }
  .final-cta { min-height: 43rem; }
  footer { flex-direction: column; }
  .launch-dialog { padding: 4rem 1.4rem 2rem; }
  .privacy-choice { grid-template-columns: 1fr; gap: 1rem; }
  .privacy-choice__actions { display: grid; }
  .privacy-choice__actions .button { width: 100%; white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .hero-thread path { stroke-dashoffset: 0; }
  .reveal { opacity: 1; transform: none; }
}
