:root {
  --paper: #faf6ef;
  --surface: #f1ebdf;
  --line: #e5ded0;
  --ink: #26262e;
  --ink-soft: #5a5a66;
  --coral: #ff7a6b;
  --coral-dark: #d95a50;
  --teal: #17a2b8;
  --purple: #7c6ff0;
  --yellow: #f5b82e;
  --mint: #5bc0a6;
  --white: #fffdf9;
  --radius: 24px;
  --shadow: 0 12px 0 rgba(38, 38, 46, 0.11);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-rounded, "Arial Rounded MT Bold", "Avenir Next", Avenir, system-ui, sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.24;
  background-image: radial-gradient(rgba(38, 38, 46, 0.16) 0.65px, transparent 0.65px);
  background-size: 9px 9px;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid transparent;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(12px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 6px 28px rgba(38, 38, 46, 0.07);
}

.nav-shell {
  width: min(calc(100% - 40px), var(--max));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-login { min-height: 44px; display: inline-flex; align-items: center; color: var(--ink-soft); font-size: 13px; font-weight: 900; text-decoration: none; }
.nav-login:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-size: 27px;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.wordmark-key {
  width: 34px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--coral);
  border: 2px solid var(--ink);
  border-radius: 9px 9px 11px 11px;
  box-shadow: 0 4px 0 var(--ink);
  font-size: 16px;
  line-height: 1;
  transform: translateY(-2px) rotate(-3deg);
}

.desktop-nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 800;
}

.desktop-nav a {
  position: relative;
  color: var(--ink-soft);
  text-decoration: none;
}

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

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 5px 0 var(--ink);
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 var(--ink);
}

.button:active {
  transform: translateY(4px);
  box-shadow: 0 1px 0 var(--ink);
}

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

.button-primary:hover {
  background: #ff8b7e;
}

.button-secondary {
  color: var(--ink);
  background: transparent;
  box-shadow: 0 5px 0 var(--line);
}

.button-secondary:hover {
  background: var(--surface);
  box-shadow: 0 7px 0 var(--line);
}

.button-small {
  min-height: 44px;
  padding-inline: 18px;
  border-radius: 12px;
  font-size: 13px;
}

.button-large {
  min-height: 58px;
  padding-inline: 28px;
}

.hero {
  width: min(calc(100% - 40px), var(--max));
  min-height: calc(100vh - 164px);
  margin: 0 auto;
  padding: 78px 0 72px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
}

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

.eyebrow,
.section-number {
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  width: 28px;
  height: 4px;
  display: inline-block;
  background: var(--coral);
  border-radius: 20px;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(52px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

h1 em {
  position: relative;
  color: var(--coral-dark);
  font-style: normal;
}

h1 em::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 7px;
  content: "";
  background: var(--yellow);
  border-radius: 50%;
  transform: rotate(-1deg);
}

.hero-lede {
  max-width: 560px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-family: "Avenir Next", Avenir, system-ui, sans-serif;
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.hero-proof span {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--mint);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 12px;
}

.hero-art {
  position: relative;
  min-height: 510px;
  isolation: isolate;
}

.sunburst {
  position: absolute;
  inset: 34px 2% 40px 0;
  z-index: -3;
  background: repeating-conic-gradient(from 15deg, rgba(245, 184, 46, 0.35) 0deg 9deg, transparent 9deg 21deg);
  border-radius: 50%;
  mask-image: radial-gradient(circle, #000 0 54%, transparent 72%);
}

.retro-grid {
  position: absolute;
  inset: 25% -15% -18%;
  z-index: -2;
  opacity: 0.25;
  background-image: linear-gradient(var(--purple) 1px, transparent 1px), linear-gradient(90deg, var(--purple) 1px, transparent 1px);
  background-size: 35px 35px;
  transform: perspective(400px) rotateX(62deg);
  transform-origin: center bottom;
}

.spark {
  position: absolute;
  color: var(--yellow);
  font-size: 42px;
  text-shadow: 2px 2px 0 var(--ink);
}

.spark-one {
  top: 58px;
  left: 16%;
  transform: rotate(13deg);
}

.spark-two {
  right: 9%;
  bottom: 78px;
  color: var(--purple);
  font-size: 30px;
}

.campaign-card {
  position: absolute;
  width: 220px;
  min-height: 160px;
  padding: 24px;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 20px;
  box-shadow: 8px 10px 0 rgba(38, 38, 46, 0.18);
}

.campaign-card-back {
  top: 54px;
  left: 2%;
  transform: rotate(-10deg);
}

.campaign-card-front {
  right: 0;
  bottom: 36px;
  transform: rotate(8deg);
}

.mini-label {
  display: block;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.mini-line,
.draft-line,
.copy-line {
  height: 8px;
  display: block;
  margin-top: 12px;
  background: var(--line);
  border-radius: 10px;
}

.mini-line {
  width: 58%;
}

.line-long,
.draft-line.long,
.copy-line.long {
  width: 100%;
}

.line-medium,
.draft-line.medium,
.copy-line.medium {
  width: 76%;
}

.mini-badge,
.mini-button {
  display: inline-block;
  margin-top: 20px;
  padding: 6px 9px;
  color: var(--ink);
  background: var(--mint);
  border: 1.5px solid var(--ink);
  border-radius: 7px;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-button {
  background: var(--coral);
}

.keycap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 370px;
  height: 340px;
  padding: 0;
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  transform: translate(-50%, -50%) rotate(-4deg);
  filter: drop-shadow(0 22px 10px rgba(38, 38, 46, 0.2));
  transition: transform 300ms cubic-bezier(0.2, 1.3, 0.4, 1);
}

.keycap:hover {
  transform: translate(-50%, -53%) rotate(-2deg);
}

.keycap.is-pressed,
.keycap:active {
  transform: translate(-50%, -42%) scaleY(0.85) scaleX(1.08) rotate(-2deg);
}

.mascot-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.keycap-top {
  position: absolute;
  inset: 0 0 35px;
  z-index: 2;
  display: grid;
  place-items: center;
  background: var(--coral);
  border: 4px solid var(--ink);
  border-radius: 50px 50px 38px 38px;
  box-shadow: inset 0 16px 0 rgba(255, 255, 255, 0.26), inset 0 -12px 0 rgba(217, 90, 80, 0.55);
}

.keycap-top::before {
  position: absolute;
  inset: 25px 25px 38px;
  content: "";
  background: #ffd7cb;
  border: 3px solid var(--ink);
  border-radius: 40px;
  box-shadow: inset 0 9px 0 rgba(255, 255, 255, 0.5);
}

.keycap-front {
  position: absolute;
  right: 10px;
  bottom: 0;
  left: 10px;
  height: 72px;
  z-index: 1;
  background: var(--coral-dark);
  border: 4px solid var(--ink);
  border-radius: 0 0 38px 38px;
}

.keycap-face {
  position: relative;
  z-index: 3;
  width: 130px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  transform: translateY(-2px);
}

.eye {
  position: relative;
  width: 28px;
  height: 37px;
  background: var(--ink);
  border-radius: 50%;
}

.eye-dot {
  position: absolute;
  top: 6px;
  left: 7px;
  width: 9px;
  height: 9px;
  background: var(--white);
  border-radius: 50%;
}

.mouth {
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 36px;
  height: 18px;
  border-bottom: 5px solid var(--ink);
  border-radius: 50%;
  transform: translateX(-50%);
}

.prototype-note {
  position: absolute;
  bottom: 3px;
  left: 50%;
  width: max-content;
  max-width: 100%;
  margin: 0;
  color: var(--ink-soft);
  font-family: "Avenir Next", Avenir, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transform: translateX(-50%);
}

.flow-strip {
  overflow: hidden;
  border-block: 2px solid var(--ink);
  background: var(--surface);
}

.flow-track {
  width: max-content;
  min-width: 100%;
  min-height: 86px;
  padding: 20px max(30px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.flow-intro {
  margin-right: 10px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.flow-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.flow-step b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 0 3px 0 var(--ink);
  font-size: 11px;
}

.flow-arrow {
  color: var(--coral-dark);
  font-weight: 900;
}

.story-section {
  width: min(calc(100% - 40px), var(--max));
  min-height: 840px;
  margin: 0 auto;
  padding: 120px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(70px, 9vw, 130px);
}

.story-section + .story-section {
  border-top: 1px solid var(--line);
}

.story-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.story-copy > p:not(.section-number),
.final-cta .cta-inner > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-family: "Avenir Next", Avenir, system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.75;
}

.section-number {
  color: var(--coral-dark);
}

.text-link {
  display: inline-flex;
  gap: 12px;
  margin-top: 28px;
  color: var(--ink);
  font-weight: 900;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.story-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.form-visual {
  background: #e8f7f5;
  border: 3px solid var(--ink);
  border-radius: 42px;
  box-shadow: 12px 14px 0 var(--ink);
  overflow: hidden;
}

.phone-shell {
  position: relative;
  z-index: 2;
  width: 300px;
  min-height: 520px;
  padding: 18px 24px 24px;
  background: var(--white);
  border: 4px solid var(--ink);
  border-radius: 38px;
  box-shadow: 9px 12px 0 rgba(38, 38, 46, 0.2);
  transform: rotate(-3deg);
}

.phone-topbar {
  height: 42px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 2px solid var(--line);
  font-size: 15px;
}

.phone-topbar span:first-child {
  width: 34px;
  height: 7px;
  background: var(--ink);
  border-radius: 20px;
}

.form-progress {
  height: 8px;
  margin: 22px 0 34px;
  background: var(--line);
  border-radius: 20px;
}

.form-progress span {
  width: 60%;
  height: 100%;
  display: block;
  background: var(--teal);
  border-radius: inherit;
}

.tiny-kicker {
  margin: 0;
  color: var(--teal);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.phone-question {
  margin: 9px 0 22px;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.text-area-lines {
  min-height: 130px;
  padding: 12px;
  border: 2px solid var(--line);
  border-radius: 15px;
}

.text-area-lines span {
  width: 90%;
  height: 8px;
  display: block;
  margin: 13px 0;
  background: var(--surface);
  border-radius: 20px;
}

.text-area-lines span:nth-child(2) { width: 76%; }
.text-area-lines span:nth-child(3) { width: 48%; }

.permission-row {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
}

.check-box {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--mint);
  border: 2px solid var(--ink);
  border-radius: 6px;
}

.phone-next {
  min-height: 46px;
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--coral);
  border: 2px solid var(--ink);
  border-radius: 12px;
  box-shadow: 0 4px 0 var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.quote-chip {
  position: absolute;
  z-index: 3;
  padding: 12px 15px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 12px;
  box-shadow: 4px 5px 0 var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.quote-chip-one {
  top: 80px;
  right: 5px;
  transform: rotate(7deg);
}

.quote-chip-two {
  bottom: 75px;
  left: 4px;
  background: var(--purple);
  transform: rotate(-6deg);
}

.story-evidence,
.story-control {
  grid-template-columns: 1.05fr 0.95fr;
}

.evidence-visual {
  min-height: 570px;
}

.evidence-board {
  width: min(100%, 520px);
  padding: 32px;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 26px;
  box-shadow: 12px 14px 0 var(--yellow);
  transform: rotate(1deg);
}

.board-header {
  margin-bottom: 28px;
  padding-bottom: 24px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 2px solid var(--line);
}

.board-header h3 {
  margin: 4px 0 0;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.status-pill {
  padding: 7px 9px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-size: 9px;
  font-weight: 900;
}

.gate-row {
  min-height: 74px;
  padding: 14px 0;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid var(--line);
}

.gate-row:last-child { border: 0; }

.gate-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--mint);
  border: 2px solid var(--ink);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 900;
}

.gate-row.pending .gate-icon { background: var(--yellow); }

.gate-row div {
  display: flex;
  flex-direction: column;
}

.gate-row small {
  margin-top: 2px;
  color: var(--ink-soft);
  font-family: "Avenir Next", Avenir, system-ui, sans-serif;
}

.gate-row button {
  min-height: 38px;
  padding: 0 14px;
  background: var(--coral);
  border: 2px solid var(--ink);
  border-radius: 9px;
  box-shadow: 0 3px 0 var(--ink);
  font-size: 11px;
  font-weight: 900;
}

.source-stamp,
.stamp-ready {
  position: absolute;
  right: 0;
  bottom: 45px;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  color: var(--coral-dark);
  background: var(--paper);
  border: 4px double var(--coral-dark);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  transform: rotate(-12deg);
}

.principle-note {
  margin-top: 30px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--surface);
  border-left: 5px solid var(--coral);
  border-radius: 0 15px 15px 0;
}

.principle-note > span {
  color: var(--yellow);
  font-size: 30px;
  text-shadow: 1px 1px 0 var(--ink);
}

.principle-note p {
  margin: 0;
  font-family: "Avenir Next", Avenir, system-ui, sans-serif;
}

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

.ask-list li {
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 15px;
}

.ask-list li > div {
  display: flex;
  flex-direction: column;
}

.ask-list small {
  color: var(--ink-soft);
  font-family: "Avenir Next", Avenir, system-ui, sans-serif;
}

.ask-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 10px;
  box-shadow: 0 3px 0 var(--ink);
  font-weight: 900;
}

.coral { background: var(--coral); }
.teal { background: var(--teal); }
.purple { background: var(--purple); }

.draft-visual {
  min-height: 620px;
}

.draft-card {
  position: absolute;
  width: 330px;
  min-height: 220px;
  padding: 28px;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 24px;
  box-shadow: 9px 11px 0 rgba(38, 38, 46, 0.18);
}

.draft-card h3 {
  margin: 18px 0 20px;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.draft-tab {
  padding: 6px 9px;
  border: 2px solid var(--ink);
  border-radius: 7px;
  font-size: 9px;
  font-weight: 900;
}

.coral-tab { background: var(--coral); }
.teal-tab { background: var(--teal); }
.purple-tab { background: var(--purple); }

.draft-line { width: 62%; }

.draft-source {
  margin-top: 24px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
}

.draft-one {
  top: 12px;
  left: 0;
  z-index: 1;
  transform: rotate(-7deg);
}

.draft-two {
  top: 185px;
  right: 0;
  z-index: 3;
  transform: rotate(6deg);
}

.draft-three {
  bottom: 7px;
  left: 18px;
  z-index: 2;
  transform: rotate(-2deg);
}

.stamp-ready {
  right: 5px;
  bottom: 12px;
  z-index: 5;
  color: var(--teal);
  border-color: var(--teal);
}

.control-visual {
  min-height: 570px;
}

.review-window {
  width: min(100%, 630px);
  min-height: 460px;
  display: grid;
  grid-template-columns: 1fr 165px;
  grid-template-rows: 43px 1fr;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 24px;
  box-shadow: 12px 14px 0 var(--purple);
  overflow: hidden;
  transform: rotate(-1deg);
}

.window-dots {
  grid-column: 1 / -1;
  padding: 0 17px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--surface);
  border-bottom: 2px solid var(--ink);
}

.window-dots span {
  width: 11px;
  height: 11px;
  background: var(--coral);
  border: 1.5px solid var(--ink);
  border-radius: 50%;
}

.window-dots span:nth-child(2) { background: var(--yellow); }
.window-dots span:nth-child(3) { background: var(--mint); }

.review-main {
  padding: 30px;
}

.review-main h3 {
  margin: 15px 0 28px;
  font-size: 28px;
  line-height: 1.05;
}

.copy-line { width: 60%; margin-top: 14px; }
.copy-line.short { width: 40%; }

.review-actions {
  margin-top: 43px;
  display: flex;
  gap: 10px;
}

.review-actions button {
  min-height: 42px;
  padding: 0 13px;
  background: transparent;
  border: 2px solid var(--ink);
  border-radius: 9px;
  font-size: 10px;
  font-weight: 900;
}

.review-actions button:last-child {
  background: var(--coral);
  box-shadow: 0 3px 0 var(--ink);
}

.sources-rail {
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  background: var(--surface);
  border-left: 2px solid var(--ink);
}

.sources-rail p {
  margin: 0 0 6px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.sources-rail span {
  padding: 9px;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
}

.control-badges {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.control-badges span {
  padding: 8px 11px;
  background: var(--surface);
  border: 2px solid var(--line);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 125px 20px;
  color: var(--paper);
  background: var(--ink);
  border-top: 3px solid var(--ink);
}

.cta-inner {
  position: relative;
  z-index: 2;
  width: min(100%, 800px);
  margin: 0 auto;
  text-align: center;
}

.eyebrow-light {
  justify-content: center;
  color: #d1cbbb;
}

.final-cta h2 {
  font-size: clamp(48px, 6vw, 76px);
}

.final-cta .cta-inner > p:not(.eyebrow) {
  max-width: 640px;
  margin-inline: auto;
  color: #d1cbbb;
}

.interest-form {
  max-width: 680px;
  margin: 38px auto 0;
  text-align: left;
}

.interest-form label {
  display: block;
  margin-bottom: 9px;
  color: #eee8db;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.form-row input {
  width: 100%;
  min-height: 58px;
  padding: 0 20px;
  color: var(--ink);
  background: var(--paper);
  border: 3px solid var(--paper);
  border-radius: 14px;
  font-family: "Avenir Next", Avenir, system-ui, sans-serif;
  font-size: 16px;
}

.form-row input[aria-invalid="true"] {
  border-color: var(--coral);
}

.button-light {
  min-height: 58px;
  color: var(--ink);
  background: var(--coral);
  border-color: var(--paper);
  box-shadow: 0 5px 0 var(--paper);
}

.button-light:hover { box-shadow: 0 7px 0 var(--paper); }

.form-status {
  min-height: 26px;
  margin: 12px 0 0;
  color: #eee8db;
  font-family: "Avenir Next", Avenir, system-ui, sans-serif;
  font-size: 14px;
}

.cta-shape {
  position: absolute;
  border: 4px solid var(--paper);
  opacity: 0.14;
}

.cta-shape-one {
  top: -70px;
  left: -70px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
}

.cta-shape-two {
  right: -90px;
  bottom: -110px;
  width: 330px;
  height: 280px;
  border-radius: 70px;
  transform: rotate(20deg);
}

.site-footer {
  width: min(calc(100% - 40px), var(--max));
  min-height: 150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  color: var(--ink-soft);
  font-size: 13px;
}

.site-footer > p { margin: 0; }
.site-footer > p:nth-child(2) { text-align: center; font-weight: 800; }
.footer-note { text-align: right; }

.footer-legal { display: flex; justify-content: flex-end; gap: 18px; }
.footer-legal a { min-height: 36px; display: inline-flex; align-items: center; color: var(--ink-soft); font-weight: 850; text-decoration: none; }
.footer-legal a:hover { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; }

.cta-actions { margin-top: 30px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 24px; }
.cta-login-link { min-height: 44px; display: inline-flex; align-items: center; color: var(--paper); font-weight: 900; text-underline-offset: 5px; }

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
}

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

@media (max-width: 960px) {
  .desktop-nav { display: none; }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 52px;
    text-align: center;
  }

  .hero-copy {
    max-width: 720px;
    margin: 0 auto;
  }

  .eyebrow,
  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .hero-lede { margin-inline: auto; }

  .hero-art {
    grid-row: 2;
    min-height: 500px;
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .story-section,
  .story-evidence,
  .story-control {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 90px 0;
    gap: 70px;
  }

  .story-copy { max-width: 690px; }
  .story-forms .story-copy,
  .story-personal .story-copy { order: -1; }

  .story-visual {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .site-footer { grid-template-columns: 1fr; padding: 40px 0; text-align: center; }
  .site-footer .wordmark { justify-self: center; }
  .footer-note { text-align: center; }
  .footer-legal { justify-content: center; }
}

@media (max-width: 620px) {

  .cta-actions { display: grid; }
  .cta-actions .button { width: 100%; }
  .nav-shell {
    width: min(calc(100% - 28px), var(--max));
    min-height: 72px;
  }

  .wordmark { font-size: 24px; }
  .wordmark-key { width: 31px; height: 29px; }
  .site-header .button-small { padding-inline: 13px; }
  .site-header .button-small span { display: none; }
  .nav-actions { gap: 8px; }
  .nav-login { font-size: 12px; }

  .hero,
  .story-section {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero { padding: 44px 0 56px; gap: 40px; }
  h1 { font-size: clamp(43px, 13vw, 60px); }
  .hero-lede { font-size: 17px; }
  .hero-actions { display: grid; }
  .button-large { width: 100%; }

  .hero-art { min-height: 390px; }
  .keycap { width: 265px; height: 245px; }
  .campaign-card { width: 150px; min-height: 120px; padding: 16px; }
  .campaign-card-back { top: 18px; left: 0; }
  .campaign-card-front { right: 0; bottom: 42px; }
  .spark-one { top: 35px; }

  .flow-track { justify-content: flex-start; overflow-x: auto; }

  .story-section { padding: 76px 0; gap: 54px; }
  .story-copy h2 { font-size: 44px; }
  .story-copy > p:not(.section-number) { font-size: 16px; }
  .story-visual { min-height: 470px; }

  .form-visual { border-radius: 28px; box-shadow: 7px 9px 0 var(--ink); }
  .phone-shell { width: 245px; min-height: 450px; padding: 14px 19px 20px; }
  .phone-question { font-size: 21px; }
  .quote-chip { font-size: 10px; }
  .quote-chip-one { right: -3px; }
  .quote-chip-two { left: -3px; bottom: 36px; }

  .evidence-board { padding: 20px; }
  .board-header { flex-direction: column; }
  .gate-row { grid-template-columns: 39px 1fr; }
  .gate-row button { grid-column: 2; justify-self: start; }
  .source-stamp { width: 86px; height: 86px; right: -3px; bottom: 4px; font-size: 10px; }

  .draft-visual { min-height: 540px; }
  .draft-card { width: 270px; min-height: 190px; padding: 22px; }
  .draft-card h3 { font-size: 20px; }
  .draft-two { top: 170px; }
  .stamp-ready { width: 86px; height: 86px; font-size: 10px; }

  .control-visual { min-height: 500px; }
  .review-window { grid-template-columns: 1fr 118px; }
  .review-main { padding: 22px 17px; }
  .review-main h3 { font-size: 22px; }
  .sources-rail { padding: 20px 10px; }
  .review-actions { flex-direction: column; }

  .final-cta { padding: 95px 18px; }
  .final-cta h2 { font-size: 49px; }
  .form-row { grid-template-columns: 1fr; }
  .button-light { width: 100%; }
}

@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;
  }
  .reveal,
  .reveal-ready .reveal { opacity: 1; transform: none; }
}
