:root {
  --sky-blue: #4a8fd8;
  --white-sand: #fbf3e5;
  --golden-orange: #f28b2e;
  --seafoam-green: #62b9a8;
  --bg: #fbf3e5;
  --bg-strong: #f3e5cc;
  --panel: rgba(255, 250, 240, 0.78);
  --panel-strong: rgba(255, 252, 246, 0.94);
  --ink: #14213a;
  --muted: #5e6573;
  --line: rgba(20, 33, 58, 0.13);
  --accent: #f28b2e;
  --accent-dark: #255aa4;
  --nav-ink: #30415e;
  --shadow: 0 24px 60px rgba(35, 56, 93, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(ellipse at 7% 4%, rgba(242, 139, 46, 0.22), transparent 25%),
    radial-gradient(ellipse at 92% 11%, rgba(82, 96, 202, 0.18), transparent 29%),
    radial-gradient(ellipse at 45% 48%, rgba(64, 157, 171, 0.1), transparent 40%),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.2;
  background-image: radial-gradient(rgba(38, 55, 86, 0.18) 0.7px, transparent 0.7px);
  background-size: 20px 20px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

a { color: inherit; }

.page-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 12px 0 48px;
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 0 4px;
}

.site-brand {
  color: var(--ink);
  text-decoration: none;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  font-weight: 800;
  letter-spacing: 0;
}

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

.header-back-link,
.text-link {
  color: var(--nav-ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

.header-back-link { border-bottom: 1px solid rgba(23, 29, 42, 0.2); padding-bottom: 3px; }
.header-back-link:hover, .text-link:hover { color: var(--accent-dark); }

.menu-shell { position: relative; }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(23, 29, 42, 0.1);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 22px rgba(18, 31, 47, 0.06);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 750;
  list-style: none;
  user-select: none;
}

.menu-toggle::-webkit-details-marker { display: none; }
.menu-toggle-icon { display: grid; gap: 4px; }
.menu-toggle-icon i { display: block; width: 17px; height: 2px; border-radius: 999px; background: currentColor; }

.top-nav {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  gap: 6px;
  width: min(20rem, calc(100vw - 32px));
  padding: 10px;
  border: 1px solid rgba(23, 29, 42, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 40px rgba(18, 31, 47, 0.12);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.menu-shell[open] .top-nav { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.top-nav a { padding: 12px; border-radius: 12px; color: var(--nav-ink); text-decoration: none; font-size: 0.93rem; font-weight: 650; }
.top-nav a:hover { background: rgba(238, 248, 255, 0.82); color: var(--ink); }

main { display: grid; gap: 84px; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; letter-spacing: -0.05em; }
h1, h2 { line-height: 0.96; }
h3 { line-height: 1.05; }

.hero {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: clamp(28px, 5vw, 58px);
  min-height: 0;
  padding: 24px 0 0;
}

.hero-copy { order: 2; position: relative; z-index: 2; width: min(820px, 100%); text-align: center; }
.hero-art-wrap { order: 1; position: relative; width: 100%; min-width: 0; }
.hero-art-glow { position: absolute; inset: 11% 4% 3%; border-radius: 42px; background: linear-gradient(135deg, rgba(74, 143, 216, 0.2), rgba(98, 185, 168, 0.18) 52%, rgba(242, 139, 46, 0.18)); filter: blur(20px); transform: rotate(1deg); }
.hero-art { position: relative; display: block; width: 100%; height: auto; border: 2px solid rgba(20, 33, 58, 0.1); border-radius: 30px; box-shadow: var(--shadow); }
.hero-copy h1 { max-width: 15ch; margin: 0 auto 24px; font-size: clamp(3.1rem, 6.3vw, 5.6rem); text-wrap: balance; }
.hero-subhead { max-width: 34rem; margin: 0 auto 14px; color: #202d46; font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: clamp(1.35rem, 2.4vw, 1.75rem); font-weight: 740; line-height: 1.08; letter-spacing: -0.03em; }
.hero-body { max-width: 38rem; margin: 0 auto 22px; color: var(--muted); font-size: 1.04rem; line-height: 1.68; }
.hero-links { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; }
.trust-line { max-width: 32rem; margin: 20px 0 0; color: #8a4326; font-size: 0.94rem; font-weight: 800; line-height: 1.4; }

.cta-primary, .secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 48px;
  padding: 14px 19px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.cta-primary { color: #fff; background: var(--accent-dark); box-shadow: 0 14px 28px rgba(11, 117, 209, 0.22); }
.cta-primary:hover, .secondary-button:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(31, 55, 84, 0.16); }
.secondary-button { border: 1px solid rgba(23, 29, 42, 0.15); color: var(--ink); background: rgba(255, 255, 255, 0.66); }

.hero-art-sticker { position: absolute; padding: 10px 13px; border: 1px solid rgba(23, 29, 42, 0.12); border-radius: 13px; color: var(--ink); box-shadow: 0 10px 20px rgba(31, 55, 84, 0.1); font-size: 0.69rem; line-height: 1.08; transform: rotate(-6deg); }
.hero-art-sticker strong { font-size: 0.78rem; }
.sticker-blue { top: 5%; right: -4%; background: #dff2ff; }
.sticker-orange { bottom: -3%; left: -5%; background: #fff0d8; transform: rotate(5deg); }

:root { --painterly-symbols: url("./assets/doodle-painterly-symbols-grid-v1.png"); }

.question-band { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.question-card { position: relative; min-height: 180px; padding: 34px 40px 30px 96px; overflow: hidden; border: 1px solid rgba(23, 29, 42, 0.1); border-radius: 28px; box-shadow: var(--shadow); }
.question-card p { max-width: 28rem; margin: 0; color: #202938; font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: clamp(1.22rem, 2.1vw, 1.55rem); font-weight: 740; line-height: 1.12; letter-spacing: -0.03em; }
.question-card-orange { background: linear-gradient(135deg, #fffdf8, #fff0dd); }
.question-card-blue { background: linear-gradient(135deg, #f8fcff, #e6f5ff); }
.question-mark { position: absolute; top: 28px; left: 28px; display: block; width: 50px; height: 58px; background-image: var(--painterly-symbols); background-position: 0 0; background-repeat: no-repeat; background-size: 300% 200%; font-size: 0; transform: rotate(-3deg); }
.question-card-blue .question-mark { top: 29px; left: 28px; width: 54px; height: 54px; background-position: 50% 0; transform: rotate(-2deg); }

.story-section { display: grid; gap: 28px; }
.story-section .section-heading { max-width: 760px; margin-inline: auto; text-align: center; }
.story-section .section-heading h2 { max-width: 14ch; margin-inline: auto; }
.story-section .section-heading > p:last-child { max-width: 41rem; margin-inline: auto; color: var(--muted); line-height: 1.7; }
.story-art { margin: 0; overflow: hidden; border: 1px solid rgba(20, 33, 58, 0.1); border-radius: 30px; background: var(--white-sand); box-shadow: var(--shadow); }
.story-art img { display: block; width: 100%; height: auto; }
.story-art figcaption { padding: 16px 22px 20px; color: var(--accent-dark); font-family: "SF Pro Display", sans-serif; font-size: 1.05rem; font-weight: 800; text-align: center; }

.roadmap-section, .feature-section, .pricing-section { display: grid; gap: 30px; }
.section-heading { max-width: 720px; }
.section-heading h2, .feature-intro h2, .latest-copy h2, .proof-intro h2, .closing-copy h2 { max-width: 15ch; margin-bottom: 16px; font-size: clamp(2.45rem, 5vw, 4.4rem); }
.section-heading > p:last-child, .feature-intro > p:last-child, .compact-heading > p:last-child { max-width: 39rem; margin: 0; color: var(--muted); font-size: 1.06rem; line-height: 1.65; }
.roadmap-art { margin: 0; overflow: hidden; border: 1px solid rgba(20, 33, 58, 0.1); border-radius: 30px; padding: clamp(24px, 4vw, 42px); background: linear-gradient(135deg, rgba(255, 249, 234, 0.95), rgba(232, 242, 255, 0.88) 56%, rgba(231, 249, 241, 0.84)); box-shadow: var(--shadow); }
.roadmap-rail { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.roadmap-rail::before { content: ""; position: absolute; top: 54px; right: 10%; left: 10%; height: 10px; border-radius: 999px; background: linear-gradient(90deg, var(--golden-orange), var(--sky-blue) 45%, var(--seafoam-green)); box-shadow: 0 4px 0 rgba(255, 255, 255, 0.7); opacity: 0.78; transform: rotate(-1deg); }
.roadmap-node { position: relative; z-index: 1; display: grid; justify-items: center; gap: 7px; padding: 14px 10px 16px; border: 1px solid rgba(20, 33, 58, 0.11); border-radius: 20px; background: rgba(255, 250, 239, 0.9); box-shadow: 0 12px 24px rgba(35, 56, 93, 0.1); text-align: center; }
.roadmap-node:nth-child(1) { transform: rotate(-2deg); }
.roadmap-node:nth-child(2) { transform: translateY(5px) rotate(1deg); }
.roadmap-node:nth-child(3) { transform: translateY(-3px) rotate(-1deg); }
.roadmap-node:nth-child(4) { transform: translateY(4px) rotate(2deg); }
.roadmap-node-symbol { display: block; width: 58px; height: 58px; background-image: var(--painterly-symbols); background-repeat: no-repeat; background-size: 300% 200%; filter: drop-shadow(0 7px 6px rgba(35, 56, 93, 0.1)); }
.symbol-video { background-position: 100% 0; }
.symbol-listen { background-position: 0 100%; }
.symbol-organize { background-position: 50% 100%; }
.symbol-share { background-position: 100% 100%; }
.roadmap-node strong { font-size: 1.05rem; }
.roadmap-node small { color: var(--muted); font-size: 0.75rem; }
.roadmap-art figcaption { margin-top: 24px; color: var(--accent-dark); font-family: "SF Pro Display", sans-serif; font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 800; letter-spacing: -0.03em; text-align: center; }
.roadmap-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.roadmap-step { min-height: 190px; padding: 22px; border-top: 3px solid var(--golden-orange); background: rgba(255, 255, 255, 0.64); }
.roadmap-step:nth-child(2) { border-color: var(--accent-dark); }
.roadmap-step:nth-child(3) { border-color: #50ad79; }
.roadmap-step:nth-child(4) { border-color: #c99727; }
.step-number { display: block; margin-bottom: 28px; color: var(--muted); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.14em; }
.roadmap-step h3, .feature-card h3, .price-card h3 { margin-bottom: 10px; font-size: 1.45rem; }
.roadmap-step p, .feature-card p, .price-card p { margin: 0; color: var(--muted); line-height: 1.6; }

.feature-section { grid-template-columns: minmax(230px, 0.75fr) minmax(0, 1.25fr); align-items: start; gap: 44px; }
.feature-intro { position: sticky; top: 22px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.feature-card { min-height: 280px; padding: 22px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255, 255, 255, 0.74); box-shadow: 0 16px 36px rgba(31, 55, 84, 0.08); }
.feature-icon { display: block; width: 58px; height: 58px; margin-bottom: 42px; background-image: var(--painterly-symbols); background-repeat: no-repeat; background-size: 300% 200%; filter: drop-shadow(0 7px 6px rgba(35, 56, 93, 0.1)); }
.icon-orange { background-position: 0 100%; }
.icon-blue { background-position: 100% 100%; }
.icon-green { background-position: 50% 100%; }

.latest-section { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr); align-items: center; gap: clamp(30px, 6vw, 88px); padding: clamp(30px, 6vw, 70px); border: 1px solid rgba(23, 29, 42, 0.09); border-radius: 36px; background: linear-gradient(135deg, rgba(255, 255, 255, 0.93), rgba(230, 246, 255, 0.82)); box-shadow: var(--shadow); }
.latest-copy h2 { max-width: 10ch; }
.latest-copy > p:not(.eyebrow) { max-width: 30rem; margin-bottom: 24px; color: var(--muted); line-height: 1.7; }
.report-window { overflow: hidden; border: 1px solid rgba(17, 20, 28, 0.14); border-radius: 23px; background: rgba(255, 255, 255, 0.88); box-shadow: 0 28px 58px rgba(31, 55, 84, 0.18); transform: rotate(2deg); }
.window-bar { display: flex; align-items: center; gap: 6px; min-height: 42px; padding: 0 15px; border-bottom: 1px solid rgba(17, 20, 28, 0.08); color: var(--muted); font-size: 0.8rem; font-weight: 760; }
.window-bar span { width: 9px; height: 9px; border-radius: 50%; background: #f39a3d; }
.window-bar span:nth-child(2) { background: #76d8b8; }
.window-bar span:nth-child(3) { background: #20a8ff; }
.window-bar strong { margin-left: auto; }
.report-window-body { padding: 26px; }
.report-kicker { margin-bottom: 10px; color: var(--accent-dark); font-size: 0.7rem; font-weight: 850; letter-spacing: 0.16em; }
.report-window h3 { margin-bottom: 6px; font-size: clamp(1.55rem, 3vw, 2.15rem); }
.report-source { margin-bottom: 24px; color: #7c8794; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.76rem; }
.report-row { display: flex; align-items: center; gap: 11px; padding: 12px 0; border-top: 1px solid rgba(17, 20, 28, 0.08); color: #314154; font-size: 0.9rem; }
.report-check, .report-link { display: grid; width: 25px; height: 25px; flex: 0 0 25px; place-items: center; border-radius: 8px; font-weight: 900; }
.report-check { color: #247f55; background: #e1f8ec; }
.report-link { color: var(--accent-dark); background: #e1f3ff; }
.report-actions { display: flex; gap: 9px; margin-top: 20px; }
.report-actions button { flex: 1; min-height: 38px; border: 1px solid rgba(23, 29, 42, 0.12); border-radius: 999px; color: var(--ink); background: #fff; cursor: pointer; font: inherit; font-size: 0.78rem; font-weight: 800; }
.report-actions button:first-child { border-color: var(--accent-dark); color: #fff; background: var(--accent-dark); }
.made-by { margin-top: 18px; color: #a85d1f; font-size: 0.8rem; font-weight: 850; text-align: right; }

.proof-band { display: grid; grid-template-columns: minmax(240px, 1.1fr) repeat(3, minmax(0, 1fr)); gap: 16px; padding: clamp(28px, 5vw, 56px); border-radius: 34px; background: rgba(255, 255, 255, 0.7); box-shadow: 0 18px 46px rgba(31, 55, 84, 0.08); }
.proof-intro h2 { max-width: 12ch; font-size: clamp(2.15rem, 4vw, 3.45rem); }
.proof-intro > p:last-child { color: var(--muted); line-height: 1.65; }
.proof-item { padding: 18px 8px 0; border-top: 2px solid var(--accent); }
.proof-item:nth-child(3) { border-color: var(--accent-dark); }
.proof-item:nth-child(4) { border-color: #50ad79; }
.proof-item span { display: block; margin-bottom: 10px; font-family: "SF Pro Display", sans-serif; font-size: 1.4rem; font-weight: 800; letter-spacing: -0.04em; }
.proof-item p { margin: 0; color: var(--muted); line-height: 1.6; }

.privacy-card { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 24px; padding: clamp(24px, 4vw, 42px); border: 1px solid rgba(11, 117, 209, 0.16); border-radius: 30px; background: linear-gradient(135deg, rgba(225, 243, 255, 0.86), rgba(232, 248, 239, 0.82)); box-shadow: 0 18px 44px rgba(31, 55, 84, 0.08); }
.privacy-mark { display: block; width: 72px; height: 72px; background-image: var(--painterly-symbols); background-position: 0 100%; background-repeat: no-repeat; background-size: 300% 200%; filter: drop-shadow(0 7px 6px rgba(35, 56, 93, 0.1)); }
.privacy-card h2 { max-width: 12ch; margin-bottom: 10px; font-size: clamp(1.8rem, 3.4vw, 3rem); }
.privacy-card p:not(.eyebrow) { max-width: 42rem; margin: 0; color: var(--muted); line-height: 1.65; }
.privacy-points { display: grid; gap: 10px; min-width: 180px; color: #247f55; font-size: 0.8rem; font-weight: 850; text-align: right; }
.privacy-points span::before { content: "✓"; margin-right: 7px; }

.pricing-section { gap: 34px; }
.compact-heading { max-width: 620px; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 880px; margin-inline: auto; gap: 14px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; min-height: 450px; padding: 26px; border: 1px solid var(--line); border-radius: 25px; background: rgba(255, 255, 255, 0.75); box-shadow: 0 16px 36px rgba(31, 55, 84, 0.07); }
.price-card-featured { border-color: rgba(11, 117, 209, 0.28); background: linear-gradient(150deg, #f7fcff, #e6f6ff); box-shadow: 0 22px 48px rgba(11, 117, 209, 0.14); transform: translateY(-10px); }
.price-badge { position: absolute; top: 18px; right: 18px; padding: 6px 9px; border-radius: 999px; color: #247f55; background: #e1f8ec; font-size: 0.68rem; font-weight: 850; text-transform: uppercase; letter-spacing: 0.08em; }
.price-label { margin-bottom: 13px !important; color: var(--accent-dark) !important; font-size: 0.78rem; font-weight: 850; letter-spacing: 0.12em; text-transform: uppercase; }
.price-card h3 { margin-bottom: 10px; font-size: clamp(2.4rem, 4.6vw, 3.8rem); }
.price-card h3 span { color: var(--muted); font-size: 0.92rem; letter-spacing: -0.02em; }
.price-detail { min-height: 52px; margin-bottom: 18px !important; }
.price-card ul { display: grid; gap: 10px; margin: 0 0 26px; padding: 0; list-style: none; color: #314154; font-size: 0.92rem; }
.price-card li::before { content: "✓"; display: inline-block; width: 22px; color: #247f55; font-weight: 900; }
.price-card .cta-primary, .price-card .secondary-button { width: 100%; margin-top: auto; }
.pricing-note { margin: 0; color: #748091; font-size: 0.88rem; line-height: 1.55; }

.closing-band { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); align-items: center; gap: 30px; min-height: 360px; padding: clamp(30px, 6vw, 68px); overflow: hidden; border-radius: 34px; background: linear-gradient(135deg, #fff8e9, #eaf7ff 62%, #e8f8ef); }
.closing-copy h2 { max-width: 11ch; }
.closing-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.15rem; font-weight: 720; }
.closing-doodle { display: grid; min-height: 260px; place-items: center; }
.closing-doodle img { display: block; width: min(380px, 100%); height: auto; border: 2px solid rgba(20, 33, 58, 0.1); border-radius: 28px; box-shadow: 12px 16px 0 rgba(255, 255, 255, 0.75), 0 24px 42px rgba(35, 56, 93, 0.16); transform: rotate(3deg); }

.site-footer { display: grid; gap: 10px; padding: 44px 4px 0; color: var(--muted); font-size: 0.88rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px 20px; }
.footer-links a { color: var(--nav-ink); text-decoration: none; }
.footer-links a:hover { color: var(--accent-dark); }
.site-footer p { margin: 0; }
.site-footer p:first-of-type { margin-top: 18px; color: var(--ink); font-weight: 800; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { order: 2; max-width: 720px; }
  .hero-art-wrap { order: 1; max-width: none; }
  .hero-copy h1 { max-width: 13ch; }
  .roadmap-grid, .proof-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof-intro { grid-column: 1 / -1; }
  .feature-section, .latest-section { grid-template-columns: 1fr; }
  .feature-intro { position: static; }
  .feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .page-shell { width: min(100% - 22px, 560px); padding-top: 7px; }
  main { gap: 58px; }
  .header-back-link { display: none; }
  .hero { gap: 26px; padding-top: 28px; }
  .hero-copy,
  .section-heading,
  .feature-intro,
  .latest-copy,
  .proof-intro,
  .closing-copy,
  .compact-heading { margin-inline: auto; text-align: center; }
  .hero-copy h1,
  .hero-subhead,
  .hero-body,
  .trust-line,
  .section-heading h2,
  .feature-intro h2,
  .latest-copy h2,
  .proof-intro h2,
  .closing-copy h2 { margin-inline: auto; }
  .hero-links { justify-content: center; }
  .hero-copy h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .hero-art-sticker { display: none; }
  .question-band, .roadmap-grid, .feature-grid, .pricing-grid, .proof-band, .closing-band { grid-template-columns: 1fr; }
  .question-card { min-height: 0; padding: 25px 24px 29px; text-align: center; }
  .question-mark { position: static; display: block; margin: 0 auto 13px; font-size: 2.7rem; }
  .roadmap-art, .latest-section, .closing-band, .proof-band, .privacy-card { border-radius: 25px; }
  .roadmap-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .roadmap-rail::before { display: none; }
  .roadmap-step, .feature-card, .price-card, .proof-item { min-height: 0; text-align: center; }
  .step-number { margin-bottom: 18px; }
  .feature-icon { margin: 0 auto 28px; }
  .latest-section { padding: 25px 20px; }
  .latest-copy h2 { max-width: 12ch; }
  .latest-copy .cta-primary { margin-inline: auto; }
  .report-window { transform: none; }
  .proof-intro { grid-column: auto; }
  .proof-item { padding-inline: 8px; }
  .privacy-card { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .privacy-card h2 { max-width: 15ch; }
  .privacy-card p:not(.eyebrow) { max-width: 34rem; }
  .privacy-points { min-width: 0; text-align: center; }
  .price-card-featured { transform: none; }
  .price-card ul { width: fit-content; margin-inline: auto; text-align: left; }
  .closing-band { min-height: 0; padding: 28px 23px; }
  .closing-copy .hero-links { justify-content: center; }
  .closing-doodle { min-height: 175px; }
  .closing-doodle span { width: 65px; height: 65px; font-size: 2.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
