@font-face {
  font-family: "Apfel Grotezk";
  src: url("assets/fonts/ApfelGrotezk-Regular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Apfel Grotezk";
  src: url("assets/fonts/ApfelGrotezk-Fett.otf") format("opentype");
  font-weight: 700;
  font-display: swap;
}
:root {
  --ink: #102b38;
  --paper: #f8f5ed;
  --navy: #082940;
  --coral: #ed624e;
  --blue: #285ce6;
  --line: #183b3928;
  --font: "Apfel Grotezk", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 400 18px/1.5 var(--font);
  font-synthesis: none;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
}
em {
  font-style: normal;
  color: var(--blue);
}
a {
  color: inherit;
}
button {
  color: inherit;
  cursor: pointer;
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
:focus-visible {
  outline: 3px solid #de5d35;
  outline-offset: 5px;
}
[hidden] {
  display: none !important;
}
.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.line-icon {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.site-header {
  max-width: 1328px;
  margin: auto;
  min-height: 96px;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.045em;
  text-decoration: none;
}
.brand-symbol {
  color: var(--coral);
  font-size: 37px;
  line-height: 1;
}
.site-header nav {
  display: flex;
  gap: 34px;
  font-size: 15px;
}
.site-header nav a {
  text-decoration: none;
  padding: 10px 0;
}
.site-header nav a:hover {
  color: var(--blue);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 32px;
  border: 1px solid var(--ink);
  border-radius: 99px;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 15px;
}
.header-cta:hover {
  background: var(--ink);
  color: var(--paper);
}
.scene {
  position: relative;
  scroll-margin-top: 24px;
}
.section-inner,
.plans-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 40px;
}
.section-inner > * {
  min-width: 0;
}
.scene h2 {
  font-size: clamp(40px, 4.5vw, 62px);
}
.kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.status-dot {
  width: 7px;
  height: 7px;
  background: #438269;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #43826915;
}
.lead {
  font-size: 20px;
  line-height: 1.45;
  margin-top: 24px;
  max-width: 460px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 52px;
  padding: 15px 24px;
  border: 0;
  border-radius: 8px;
  background: var(--coral);
  color: #142c38;
  font: 700 16px/1.3 var(--font);
  text-decoration: none;
  transition:
    background-color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  background: #ff8069;
  transform: translateY(-3px);
  box-shadow: 0 6px 0 #142c3815;
}
.arrow {
  font-size: 1.25em;
  line-height: 1;
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 44px;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: none;
  color: inherit;
  font: 700 16px/1.4 var(--font);
  text-decoration: none;
}
.text-link:hover {
  color: var(--blue);
}
.quiet-link {
  font-size: 14px;
  text-underline-offset: 5px;
}
/* A cover and a paper note frame the opening; all copy remains HTML. */
.hero .section-inner {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  align-items: center;
  gap: 70px;
  padding-top: 62px;
  padding-bottom: 68px;
}
.hero h1 {
  font-size: clamp(54px, 5.5vw, 78px);
  line-height: 0.99;
  max-width: 620px;
}
.hero h1 em {
  color: var(--coral);
  position: relative;
  white-space: nowrap;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom: 3px solid;
  transform: rotate(-5deg);
  border-radius: 50%;
}
.hero .lead {
  font-size: 19px;
  margin-top: 26px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.secondary {
  font-size: 13px;
  line-height: 1.5;
  color: #65706b;
  max-width: 340px;
  margin-top: 18px;
}
.hero-collage {
  position: relative;
  padding: 12px 0 35px;
}
.scene-visual {
  position: relative;
  overflow: hidden;
}
.scene-art {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-visual {
  height: 430px;
  border-radius: 230px 230px 16px 16px;
  border: 1px solid #bbcbc6;
}
.hero-visual .scene-art {
  object-position: 81% center;
}
.orbit-label {
  position: absolute;
  top: 6px;
  right: 0;
  transform: translate(18px, -100%);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: #487266;
}
.sun-mark {
  position: absolute;
  top: 8px;
  left: -38px;
  color: #e6ae42;
  font-size: 100px;
  line-height: 1;
  transform: rotate(10deg);
  text-shadow: 3px 3px var(--paper);
}
.floating-note {
  position: absolute;
  left: -35px;
  bottom: 0;
  width: 226px;
  background: #fffdf6;
  padding: 20px 22px;
  border: 1px solid #d8d3c6;
  box-shadow:
    5px 9px 0 #132c3510,
    0 10px 35px #152d3520;
  transform: rotate(-7deg);
}
.note-top {
  display: block;
  font-size: 8px;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.floating-note p {
  font-size: 27px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.floating-note p span {
  color: #518270;
}
.note-check {
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 25px;
  color: var(--coral);
}
.art-caption {
  position: absolute;
  bottom: 3px;
  right: 0;
  font-size: 9px;
  letter-spacing: 0.14em;
  color: #627167;
}
.curiosity-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1280px;
  padding: 20px 40px;
  margin: auto;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.curiosity-strip > span:first-child {
  font-weight: 700;
}
.curiosity-strip > span:nth-child(2) {
  display: flex;
  align-items: center;
  gap: 24px;
}
.curiosity-strip i {
  font-size: 17px;
  font-style: normal;
  color: var(--coral);
}
.curiosity-strip > a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  text-decoration: none;
  font-size: 23px;
}
/* Evidence slips, a stepped journey and a live reading vary the composition. */
.proof {
  background: #dfe9df;
  border-radius: 40px 40px 0 0;
  margin-top: 28px;
}
.proof .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  padding-top: 82px;
  padding-bottom: 82px;
}
.proof em {
  color: #43775e;
}
.proof .lead {
  max-width: 340px;
}
.proof .text-link {
  margin-top: 30px;
}
.evidence-stack {
  position: relative;
  padding: 5px 12px 0;
}
.stack-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.16em;
  margin: 0 0 18px 10px;
}
.evidence-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: #fffdf6;
  border: 1px solid #c7d1c5;
  box-shadow: 3px 4px 0 #203c3020;
  position: relative;
}
.evidence-card:nth-of-type(1) {
  transform: rotate(-3deg);
  z-index: 1;
}
.evidence-card:nth-of-type(2) {
  transform: rotate(1.5deg);
  margin-top: 8px;
  z-index: 2;
  background: #f4cc73;
}
.evidence-card:nth-of-type(3) {
  transform: rotate(-1deg);
  margin-top: 8px;
  z-index: 3;
}
.evidence-number {
  font-size: 11px;
  color: #4a6454;
  align-self: flex-start;
  padding-top: 2px;
}
.evidence-card h3 {
  font-size: 28px;
  letter-spacing: -0.035em;
}
.evidence-card p {
  font-size: 14px;
  line-height: 1.4;
  margin-top: 7px;
  max-width: 300px;
}
.evidence-card .line-icon,
.limit-icon {
  margin-left: auto;
  flex-shrink: 0;
  color: #325844;
}
.limit-icon {
  font-size: 35px;
}
.source-footnote {
  display: block;
  margin-top: 24px;
  font-size: 12px;
  text-align: right;
  text-underline-offset: 4px;
}
.how .section-inner {
  padding-top: 88px;
  padding-bottom: 72px;
}
.how-copy {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
}
.how-copy .lead {
  font-size: 18px;
  max-width: 320px;
  margin-bottom: 5px;
}
.how em {
  color: #73836e;
}
.steps {
  list-style: none;
  margin: 50px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
.step {
  padding: 25px 28px 28px;
  background: #f1dfca;
  border: 1px solid #d5c9b9;
  border-radius: 4px;
  min-width: 0;
  position: relative;
  transition: transform 0.25s;
}
.step:hover {
  transform: translateY(-7px);
}
.step-two {
  background: #f3cc71;
  transform: translateY(22px);
}
.step-two:hover {
  transform: translateY(15px);
}
.step-three {
  background: #dfe9de;
  transform: translateY(44px);
}
.step-three:hover {
  transform: translateY(37px);
}
.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}
.step-number {
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.07em;
  color: #8c6050;
}
.step-two .step-number {
  color: #896721;
}
.step-three .step-number {
  color: #567260;
}
.step-top .line-icon {
  width: 28px;
  height: 28px;
}
.return-icon {
  font-size: 38px;
  line-height: 1;
}
.step h3 {
  font-size: 39px;
  margin-bottom: 16px;
}
.step p {
  font-size: 16px;
  max-width: 280px;
  line-height: 1.45;
  min-height: 70px;
}
.topic-chips {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.topic-chips span {
  border: 1px solid #aa8d7455;
  border-radius: 40px;
  padding: 4px 10px;
  font-size: 11px;
  background: #fff7;
}
.step-detail,
.saved-note {
  display: block;
  font-size: 12px;
  margin-top: 26px;
}
.saved-note {
  background: #fcfff9;
  padding: 8px 10px;
  transform: rotate(-3deg);
  box-shadow: 2px 3px 0 #27443015;
  font-size: 11px;
}
.saved-note span {
  color: #4e8058;
  margin-right: 6px;
}
.how-link {
  margin-top: 55px;
}
.sample {
  background: var(--navy);
  color: var(--paper);
  overflow: hidden;
}
.sample::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  right: -180px;
  top: 130px;
  border: 1px solid #c8e1d018;
  border-radius: 50%;
  box-shadow:
    0 0 0 70px #c8e1d006,
    0 0 0 140px #c8e1d005;
  pointer-events: none;
}
.sample .section-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 85px;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 100px;
  position: relative;
}
.sample em {
  color: #aac8a7;
}
.sample .kicker {
  color: #adc9be;
}
.sample .lead {
  font-size: 18px;
  color: #cad6da;
}
.sample-margin-note {
  font-size: 14px;
  line-height: 1.4;
  margin-top: 35px;
  color: #a7c4b4;
  transform: rotate(-5deg);
  display: flex;
  gap: 15px;
  align-items: center;
}
.sample-margin-note > span {
  font-size: 50px;
  color: #f0bd65;
}
.reading-stage {
  position: relative;
  padding: 25px 0;
}
.reading-stage-label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.13em;
  margin-bottom: 16px;
  color: #a6c8c8;
}
.paper-preview {
  position: relative;
  background: #fffdf6;
  color: var(--ink);
  padding: 30px 32px;
  border: 1px solid #e0d9c7;
  box-shadow:
    8px 10px 0 #a5c0b9,
    17px 20px 0 #527c7e;
  transform: rotate(1.5deg);
}
.paper-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.paper-category,
.paper-issue {
  font-size: 9px;
  letter-spacing: 0.1em;
}
.paper-category {
  color: #406d51;
  font-weight: 700;
}
.paper-issue {
  color: #76847b;
}
.paper-preview h3 {
  font-size: 32px;
  letter-spacing: -0.045em;
  line-height: 1.08;
}
.paper-preview h3 span {
  color: #64705c;
}
.paper-highlight {
  font-size: 15px;
  line-height: 1.45;
  margin-top: 18px;
}
.reading-tabs {
  display: flex;
  border-bottom: 1px solid #b9c6b9;
  margin-top: 26px;
  gap: 12px;
}
.reading-tabs button {
  background: none;
  border: 0;
  border-bottom: 3px solid transparent;
  padding: 12px 0 10px;
  flex: 1;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.reading-tabs button[aria-selected="true"] {
  border-bottom-color: var(--coral);
  color: #9a3826;
}
.reading-tabs button:hover {
  background: #f1eee4;
}
.reading-panel {
  padding-top: 20px;
  min-height: 135px;
  font-size: 15px;
  line-height: 1.5;
}
.paper-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.preview-source {
  font-size: 11px;
  color: #50705a;
  text-underline-offset: 4px;
}
.paper-bottom .text-link {
  font-size: 13px;
  border: 0;
}
.reading-stamp {
  position: absolute;
  right: -30px;
  top: -14px;
  background: #f4bd5c;
  color: #243d38;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 700;
  transform: rotate(12deg);
  border: 1px dashed #80602a;
  outline: 5px solid #f4bd5c;
}
.plans-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.5fr;
  gap: 50px;
  align-items: center;
  padding-top: 85px;
  padding-bottom: 85px;
}
.plans .lead {
  font-size: 18px;
}
.plans h2 {
  font-size: 47px;
}
.plans em {
  color: var(--coral);
}
.plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 25px 24px 26px;
  border: 1px solid #cccdbf;
  border-radius: 10px;
  background: #fffaf0;
}
.researcher {
  background: #dfe9df;
  transform: translateY(-15px);
  border-color: #bacbbd;
  box-shadow: 5px 6px 0 #20382b10;
}
.plan-label {
  font-size: 8px;
  letter-spacing: 0.12em;
  min-height: 26px;
  font-weight: 700;
}
.plan h3 {
  font-size: 32px;
  margin: 15px 0 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.04em;
}
.plan-feature {
  position: relative;
  padding-left: 20px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.4;
}
.plan-feature::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #477558;
}
.plan .plan-feature:last-of-type {
  margin-bottom: 24px;
}
.plan-button {
  width: 100%;
  margin-top: auto;
  font-size: 14px;
  min-height: 46px;
  padding: 12px 16px;
}
.reader .plan-button {
  background: transparent;
  border: 1px solid var(--ink);
}
.reader .plan-button:hover {
  background: #eee9dc;
}
.plan-art {
  position: relative;
  width: 144px;
  height: 92px;
  overflow: hidden;
  border-radius: 10px;
}
.plan-art .scene-art {
  position: absolute;
  max-width: none;
  width: 793px;
  height: 495.5px;
  object-fit: fill;
}
.reader-art .scene-art {
  left: -215px;
  top: -127px;
}
.researcher-art .scene-art {
  left: -479px;
  top: -127px;
}
/* The closing illustration deliberately returns to the full-width original. */
.cta {
  background: #052340;
  color: #fffaf0;
  min-height: 740px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.cta-visual {
  position: absolute;
  inset: 0;
  z-index: -2;
  height: 100%;
  width: 100%;
  border-radius: 0;
}
.cta-visual .scene-art {
  object-position: center top;
}
.cta::after {
  content: "";
  position: absolute;
  inset: 48% 0 0;
  z-index: -1;
  background: linear-gradient(transparent, #05234044 30%, #05234088);
  pointer-events: none;
}
.cta-brand {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 28px;
}
.cta .section-inner {
  width: 100%;
  padding: 385px 30px 42px;
  text-align: center;
}
.cta h2 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(40px, 4.4vw, 60px);
  line-height: 1.05;
  text-shadow: 0 2px 20px #052340;
}
.cta .lead {
  font-size: 19px;
  max-width: none;
  margin-top: 20px;
}
.cta .button {
  margin-top: 24px;
}
.tagline {
  font-size: 12px;
  letter-spacing: 0.13em;
  margin-top: 26px;
}
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #052340;
  color: #c4d4d8;
  padding: 28px max(30px, calc((100vw - 1200px) / 2));
  border-top: 1px solid #ffffff20;
}
footer .wordmark {
  font-size: 21px;
  color: var(--paper);
}
footer .brand-symbol {
  font-size: 25px;
  margin-left: 8px;
}
.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 12px;
}
.footer-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
}
.footer-nav a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10;
  padding: 14px 20px;
  background: var(--paper);
  transform: translateY(-200%);
}
.skip-link:focus {
  transform: translateY(0);
}
@keyframes arrive {
  from {
    opacity: 0.5;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.entering {
  animation: arrive 0.65s ease-out both;
}
.dialog-open {
  overflow: hidden;
}
dialog {
  width: min(760px, calc(100% - 32px));
  max-height: calc(100dvh - 48px);
  padding: 52px;
  border: 1px solid #ddd1bc;
  border-radius: 18px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 25px 100px #0005;
}
dialog::backdrop {
  background: #04172bc4;
  backdrop-filter: blur(5px);
}
.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #eae2d3;
  font-size: 28px;
}
.dialog-kicker {
  color: #426776;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}
dialog h2 {
  font-size: clamp(30px, 4vw, 40px);
  margin-bottom: 24px;
}
dialog h3 {
  font-size: 25px;
  margin: 28px 0 10px;
}
dialog p,
dialog li {
  font-size: 17px;
  line-height: 1.6;
}
dialog .reading-intro {
  font-size: 19px;
}
dialog blockquote {
  margin: 28px 0;
  padding: 18px 24px;
  border-left: 3px solid #e7b045;
  background: #f5ead0;
  font-size: 22px;
  line-height: 1.35;
}
.reading-source {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid #d1c8b9;
}
.reading-source a {
  display: inline-block;
  padding: 12px 0;
  color: #0f5876;
  text-underline-offset: 4px;
}
.reading-source .source-note {
  font-size: 12px;
  color: #56616c;
}
.plan-dialog {
  max-width: 560px;
}
.plan-dialog ul {
  padding-left: 24px;
  margin: 22px 0;
}
.plan-dialog .availability {
  font-size: 14px;
  color: #58616b;
  margin-bottom: 24px;
}
@media (min-width: 1700px) {
  .cta {
    min-height: 800px;
  }
  .cta .section-inner {
    padding-top: 450px;
  }
}
@media (max-width: 1100px) {
  .site-header {
    padding: 20px 32px;
    min-height: 82px;
  }
  .section-inner,
  .plans-inner {
    padding: 72px 32px;
  }
  .hero .section-inner {
    gap: 45px;
    padding-top: 50px;
  }
  .hero h1 {
    font-size: 60px;
  }
  .hero-visual {
    height: 400px;
  }
  .floating-note {
    width: 195px;
    left: -20px;
    padding: 17px;
  }
  .floating-note p {
    font-size: 24px;
  }
  .art-caption {
    font-size: 7px;
  }
  .proof .section-inner {
    gap: 40px;
  }
  .scene h2 {
    font-size: 48px;
  }
  .how-copy .lead {
    max-width: 260px;
    font-size: 16px;
  }
  .step {
    padding: 24px 20px;
  }
  .step p {
    font-size: 15px;
  }
  .step-detail {
    font-size: 11px;
  }
  .sample .section-inner {
    gap: 40px;
  }
  .paper-preview {
    padding: 26px 24px;
  }
  .paper-preview h3 {
    font-size: 29px;
  }
  .reading-stamp {
    right: -10px;
  }
  .plans-inner {
    display: block;
  }
  .plans-copy {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 45px;
  }
  .plans-copy .kicker {
    width: 100%;
    margin: 0 0 -8px;
  }
  .plans .lead {
    max-width: 280px;
  }
  .plan-grid {
    max-width: 720px;
    margin: 0 auto;
  }
}
@media (max-width: 760px) {
  .site-header {
    padding: 19px 22px;
    min-height: 76px;
    gap: 12px;
  }
  .site-header .wordmark {
    font-size: 24px;
  }
  .brand-symbol {
    font-size: 30px;
  }
  .site-header nav {
    display: none;
  }
  .header-cta {
    font-size: 13px;
    padding: 9px 14px;
    gap: 15px;
  }
  .section-inner,
  .plans-inner {
    padding: 60px 24px;
  }
  .hero .section-inner {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 42px 24px 35px;
  }
  .hero h1 {
    font-size: clamp(48px, 10.3vw, 70px);
    max-width: 560px;
  }
  .hero .lead {
    font-size: 18px;
  }
  .kicker {
    font-size: 10px;
    margin-bottom: 20px;
  }
  .hero-actions {
    gap: 20px;
    margin-top: 24px;
  }
  .button {
    font-size: 15px;
    padding: 14px 20px;
  }
  .secondary {
    font-size: 12px;
    max-width: 320px;
  }
  .hero-collage {
    width: min(100%, 450px);
    margin: 5px auto 0;
    padding: 0 0 25px 28px;
  }
  .hero-visual {
    height: 290px;
    border-radius: 180px 180px 12px 12px;
  }
  .sun-mark {
    font-size: 74px;
    left: 1px;
    top: 6px;
  }
  .floating-note {
    width: 177px;
    left: 0;
    bottom: 0;
    padding: 15px 17px;
  }
  .floating-note p {
    font-size: 22px;
  }
  .note-top {
    font-size: 6.5px;
    margin-bottom: 10px;
  }
  .note-check {
    bottom: 15px;
    right: 15px;
  }
  .art-caption {
    font-size: 7px;
    max-width: 115px;
    text-align: right;
    bottom: 0;
  }
  .orbit-label {
    font-size: 7px;
    right: 16px;
    top: -4px;
    transform: translateY(-100%);
  }
  .curiosity-strip {
    padding: 18px 24px;
    gap: 12px;
    flex-wrap: wrap;
  }
  .curiosity-strip > span:first-child {
    font-size: 12px;
  }
  .curiosity-strip > span:nth-child(2) {
    width: 100%;
    order: 2;
    gap: 9px;
    font-size: 11px;
    justify-content: space-between;
  }
  .curiosity-strip i {
    font-size: 12px;
  }
  .curiosity-strip > a {
    width: 32px;
    height: 32px;
    font-size: 19px;
  }
  .proof {
    border-radius: 24px 24px 0 0;
    margin-top: 10px;
  }
  .proof .section-inner {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 55px 24px;
  }
  .scene h2 {
    font-size: clamp(38px, 8.9vw, 52px);
  }
  .lead {
    font-size: 18px;
    margin-top: 20px;
  }
  .proof .text-link {
    margin-top: 20px;
  }
  .evidence-stack {
    padding: 0 6px;
  }
  .evidence-card {
    padding: 20px 18px;
    gap: 13px;
  }
  .evidence-card h3 {
    font-size: 26px;
  }
  .evidence-card p {
    font-size: 13px;
  }
  .evidence-card .line-icon {
    width: 26px;
    height: 26px;
  }
  .source-footnote {
    font-size: 11px;
  }
  .how .section-inner {
    padding: 56px 24px;
  }
  .how-copy {
    display: block;
  }
  .how-copy .lead {
    max-width: 360px;
    font-size: 17px;
  }
  .steps {
    grid-template-columns: 1fr;
    margin-top: 30px;
    gap: 16px;
  }
  .step,
  .step-two,
  .step-three {
    transform: none;
    padding: 24px;
    min-height: 0;
  }
  .step:hover,
  .step-two:hover,
  .step-three:hover {
    transform: none;
  }
  .step-top {
    margin-bottom: 20px;
  }
  .step-number {
    font-size: 48px;
  }
  .step h3 {
    font-size: 36px;
  }
  .step p {
    min-height: 0;
    max-width: 340px;
    font-size: 16px;
  }
  .topic-chips,
  .step-detail,
  .saved-note {
    margin-top: 20px;
  }
  .saved-note {
    max-width: 270px;
  }
  .how-link {
    margin-top: 28px;
  }
  .sample .section-inner {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 60px 24px 70px;
  }
  .sample .lead {
    font-size: 17px;
  }
  .sample-margin-note {
    display: none;
  }
  .reading-stage {
    padding: 20px 7px 0 0;
  }
  .reading-stage-label {
    font-size: 8px;
  }
  .paper-preview {
    padding: 24px 20px;
    transform: rotate(0.7deg);
    box-shadow:
      5px 7px 0 #a5c0b9,
      10px 14px 0 #527c7e;
  }
  .paper-topline {
    padding-bottom: 18px;
    margin-bottom: 20px;
  }
  .paper-category,
  .paper-issue {
    font-size: 8px;
  }
  .paper-preview h3 {
    font-size: 29px;
  }
  .paper-highlight {
    font-size: 14px;
  }
  .reading-tabs {
    gap: 8px;
    margin-top: 20px;
  }
  .reading-tabs button {
    font-size: 11px;
  }
  .reading-panel {
    font-size: 14px;
    min-height: 155px;
  }
  .reading-stamp {
    width: 65px;
    height: 65px;
    font-size: 9px;
    right: -4px;
    top: -13px;
    outline-width: 3px;
  }
  .paper-bottom {
    gap: 8px;
  }
  .paper-bottom .text-link {
    font-size: 12px;
    gap: 8px;
  }
  .preview-source {
    font-size: 10px;
  }
  .plans-inner {
    padding: 60px 24px;
  }
  .plans-copy {
    display: block;
    margin-bottom: 30px;
  }
  .plans-copy .kicker {
    margin-bottom: 20px;
  }
  .plans .lead {
    max-width: none;
  }
  .plan-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .plan {
    padding: 26px;
  }
  .researcher {
    transform: none;
  }
  .plan-art {
    height: 82px;
  }
  .plan-label {
    font-size: 9px;
  }
  .plan-feature {
    font-size: 16px;
  }
  .plan h3 {
    font-size: 34px;
  }
  .plan-button {
    min-height: 50px;
    font-size: 15px;
  }
  .cta {
    min-height: 740px;
  }
  .cta .section-inner {
    padding: 370px 24px 40px;
  }
  .cta h2 {
    font-size: 39px;
    max-width: 460px;
  }
  .cta .lead {
    font-size: 17px;
    max-width: 380px;
    margin: 20px auto 0;
  }
  .cta-brand {
    top: 26px;
    font-size: 25px;
  }
  .tagline {
    font-size: 10px;
    margin-top: 28px;
  }
  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 30px 24px;
  }
  .footer-nav {
    gap: 9px 20px;
    font-size: 11px;
    justify-content: flex-start;
  }
  dialog {
    padding: 55px 25px 30px;
    max-height: calc(100dvh - 28px);
  }
}
/* Illustrated details remain independent from the readable copy. */
.hero {
  background: radial-gradient(ellipse at 78% 32%, #f3d99e45, transparent 42%);
}
.hero .secondary {
  font-size: 14px;
  color: #51635d;
  line-height: 1.5;
}
.hero .lead {
  max-width: 440px;
}
.hero-collage::before {
  content: "";
  position: absolute;
  inset: -10px 0 55px 20px;
  border: 1px dashed #7e9b7860;
  border-radius: 260px 260px 40px 40px;
  transform: rotate(2deg);
  pointer-events: none;
}
.curiosity-strip {
  background: #f4c660;
  border: 0;
  border-radius: 8px 8px 0 0;
  position: relative;
}
.proof {
  margin-top: 0;
  background: #d8e9dc;
}
.proof .section-inner {
  padding-top: 68px;
  padding-bottom: 60px;
  gap: 75px;
}
.proof h2 {
  font-size: 54px;
}
.proof-vignette {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 24px;
  max-width: 440px;
}
.proof-vignette .spot-art {
  width: 240px;
  height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 8px 4px #1f3b2810);
}
.proof-vignette > span {
  font-size: 13px;
  color: #446950;
  line-height: 1.4;
  transform: rotate(-7deg);
}
.evidence-card {
  padding: 28px 24px;
}
.evidence-card:nth-of-type(3) {
  background: #c5d9f5;
}
.step-art {
  position: relative;
  height: 175px;
  margin: -25px -28px 22px;
  overflow: hidden;
  border-radius: 4px 4px 48% 4px;
}
.step-art .scene-art {
  position: absolute;
  width: 850px;
  height: 533px;
  max-width: none;
  object-fit: fill;
}
.step-one .step-art .scene-art {
  left: -30px;
  top: -5px;
}
.step-two .step-art .scene-art {
  left: -170px;
  top: -110px;
}
.step-three .step-art .scene-art {
  left: -425px;
  top: -230px;
}
.step-top {
  margin-bottom: 18px;
}
.step-number {
  font-size: 34px;
}
.step h3 {
  font-size: 35px;
}
.step-two {
  background: #f4c55f;
}
.step-three {
  background: #cedfd5;
}
.sample .section-inner {
  gap: 70px;
  padding-top: 75px;
  padding-bottom: 80px;
}
.sample h2 {
  font-size: 54px;
}
.sample-vignette {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 18px;
  max-width: 440px;
}
.sample-vignette .spot-art {
  object-fit: contain;
  width: 240px;
  height: 220px;
  object-position: left bottom;
}
.sample-vignette > span {
  font-size: 13px;
  line-height: 1.5;
  color: #c9dcbc;
  transform: rotate(-7deg);
}
.sample::after {
  content: "✳";
  position: absolute;
  left: 3%;
  bottom: 20px;
  color: #f2c064;
  font-size: 65px;
  line-height: 1;
  opacity: 0.7;
  pointer-events: none;
}
.plans {
  background:
    radial-gradient(ellipse at 0 100%, #f5c85930, transparent 48%), var(--paper);
}
.plans-copy::after {
  content: "✳";
  display: block;
  font-size: 85px;
  line-height: 1;
  color: #deaa43;
  margin-top: 24px;
}
@media (max-width: 1100px) {
  .proof h2,
  .sample h2 {
    font-size: 45px;
  }
  .proof .section-inner {
    gap: 38px;
  }
  .proof-vignette .spot-art {
    width: 190px;
    height: 150px;
  }
  .proof-vignette > span {
    font-size: 11px;
  }
  .step-art {
    margin: -24px -20px 22px;
  }
  .sample .section-inner {
    gap: 40px;
  }
  .sample-vignette .spot-art {
    width: 180px;
    height: 180px;
  }
  .sample-vignette > span {
    font-size: 11px;
  }
  .plans-copy::after {
    display: none;
  }
}
@media (max-width: 960px) {
  .sample .section-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sample-copy {
    display: grid;
    grid-template-columns: 1fr 210px;
    column-gap: 24px;
    align-items: center;
  }
  .sample-copy .kicker,
  .sample-copy h2,
  .sample-copy .lead {
    grid-column: 1;
  }
  .sample-vignette {
    grid-column: 2;
    grid-row: 1/4;
    margin: 0;
  }
  .sample-vignette > span {
    display: none;
  }
  .sample-vignette .spot-art {
    width: 210px;
    height: 220px;
  }
  .reading-stage {
    max-width: 650px;
    width: 100%;
    margin: auto;
  }
  .sample::after {
    display: none;
  }
}
@media (max-width: 760px) {
  .hero-collage::before {
    inset: -10px -5px 44px 46px;
  }
  .curiosity-strip {
    border-radius: 0;
  }
  .proof .section-inner {
    padding: 55px 24px;
  }
  .proof h2,
  .sample h2 {
    font-size: clamp(38px, 8.9vw, 52px);
  }
  .proof-vignette {
    gap: 18px;
    margin-top: 20px;
  }
  .proof-vignette .spot-art {
    width: 190px;
    height: 140px;
  }
  .proof-vignette > span {
    font-size: 12px;
  }
  .evidence-card {
    padding: 24px 18px;
  }
  .step-art {
    height: 160px;
    margin: -24px -24px 24px;
  }
  .step-art .scene-art {
    width: 760px;
    height: 476px;
  }
  .step-two .step-art .scene-art {
    left: -160px;
    top: -90px;
  }
  .step-three .step-art .scene-art {
    left: -370px;
    top: -200px;
  }
  .step p {
    max-width: 340px;
  }
  .sample .section-inner {
    padding: 55px 24px 65px;
    gap: 12px;
  }
  .sample-copy {
    display: block;
  }
  .sample-vignette {
    margin-top: 14px;
    display: flex;
    justify-content: flex-start;
    gap: 15px;
  }
  .sample-vignette .spot-art {
    height: 175px;
    width: 180px;
    flex-shrink: 0;
  }
  .sample-vignette > span {
    display: block;
    font-size: 12px;
    transform: none;
    flex: 1;
    min-width: 0;
  }
  .reading-stage {
    margin-top: 18px;
  }
  .plans-copy::after {
    display: none;
  }
}
.skip-link {
  clip-path: inset(50%);
}
.skip-link:focus {
  clip-path: none;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
