:root {
  --paper: #fffdf9;
  --paper-2: #f4f1eb;
  --ink: #0b0b0b;
  --muted: #6e6a64;
  --accent: #ff3b0a;
  --mid: #bdbab4;
  --light: #ebe7df;
  --soft-line: rgba(11,11,11,.14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-pill: 999px;
  --shell: min(1180px, calc(100vw - 40px));
  --ease: cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }

.page-noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: .04;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(circle at 20% 30%, #000 0 .6px, transparent .7px),
    radial-gradient(circle at 70% 60%, #000 0 .6px, transparent .7px);
  background-size: 8px 8px, 11px 11px;
}

.site-header {
  width: var(--shell);
  margin: 18px auto;
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 70;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-weight: 900;
  font-size: 21px;
  letter-spacing: -.04em;
}
.brand-mark {
  width: 31px;
  height: 31px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  position: relative;
  display: inline-block;
  background: var(--accent);
}
.brand-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ink);
  position: absolute; left: 6px; top: 8px;
}
.brand-line {
  width: 11px; height: 2px; border-radius: 4px;
  background: var(--ink);
  position: absolute; right: 4px; bottom: 7px;
  transform: rotate(-18deg);
}

.desktop-nav { display: flex; align-items: center; gap: 28px; }
.desktop-nav a { font-size: 14px; font-weight: 800; position: relative; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -5px;
  height: 2px;
  background: var(--accent);
  transition: right .22s ease;
}
.desktop-nav a:hover::after { right: 0; }

.button {
  appearance: none;
  border: 2px solid var(--ink);
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 0 0 var(--ink);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.button:hover {
  transform: translate(-2px,-2px);
  box-shadow: 4px 4px 0 var(--ink);
}
.button:active { transform: translate(0,0); box-shadow: none; }
.button:focus-visible, a:focus-visible, summary:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
.button:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }
.button-ink { background: var(--ink); color: var(--paper); }
.button-accent { background: var(--accent); }
.button-ghost { background: transparent; }
.button-paper { background: var(--paper); }
.button-large { min-height: 58px; padding-inline: 28px; }
.header-cta { justify-self: end; min-height: 42px; font-size: 14px; }

.menu-button {
  display: none;
  width: 46px; height: 46px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  align-items: center; justify-content: center; flex-direction: column;
  gap: 7px;
}
.menu-button span { width: 19px; height: 2px; background: var(--ink); transition: .2s ease; }
.menu-button.is-open span:first-child { transform: translateY(4.5px) rotate(45deg); }
.menu-button.is-open span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

.mobile-menu {
  width: var(--shell);
  margin: 0 auto 14px;
  position: relative;
  z-index: 65;
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  background: var(--paper);
  padding: 18px;
}
.mobile-menu nav { display: grid; gap: 4px; }
.mobile-menu nav > a:not(.button) { padding: 14px 10px; font-weight: 900; border-bottom: 1px solid var(--soft-line); }

.ticker { border-block: 2px solid var(--ink); background: var(--accent); overflow: hidden; }
.ticker-track {
  display: flex;
  width: max-content;
  gap: 16px;
  padding: 10px 0;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .045em;
  text-transform: uppercase;
  animation: ticker 24s linear infinite;
}
.ticker-item { display: flex; align-items: center; gap: 16px; }
@keyframes ticker { to { transform: translateX(-50%); } }

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 44px;
  padding: 74px 0 82px;
}
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-pill);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--paper);
}
.hero h1, .features-heading, .demo-heading-row h2, .play-copy h2, .faq-content h2, .final-cta h2 {
  margin: 0;
  font-weight: 950;
  letter-spacing: -.065em;
  line-height: .94;
}
.hero h1 { font-size: clamp(64px, 7.4vw, 108px); max-width: 760px; margin-top: 24px; }
.accent-word { color: var(--accent); position: relative; display: inline-block; }
.accent-word::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -7px;
  height: 8px;
  background: var(--accent);
  opacity: .18;
  transform: rotate(-1.5deg);
}
.hero-lede { max-width: 620px; margin: 26px 0 0; font-size: clamp(18px,2vw,22px); color: #302f2d; }
.hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 30px; }
.text-link { font-weight: 900; border-bottom: 2px solid var(--ink); padding-bottom: 3px; }
.micro-proof { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.micro-proof span { font-size: 12px; font-weight: 900; background: var(--light); border: 1px solid var(--soft-line); border-radius: 999px; padding: 7px 11px; }

.hero-art { min-height: 540px; position: relative; isolation: isolate; }
.art-shadow {
  position: absolute;
  width: 72%; height: 12%;
  border-radius: 50%;
  background: rgba(11,11,11,.1);
  filter: blur(18px);
  left: 14%; bottom: 7%;
  z-index: -2;
}
.character {
  position: absolute;
  width: min(104%, 570px);
  left: -3%; bottom: 0;
  transform-origin: 50% 88%;
  animation: characterFloat 5.5s ease-in-out infinite;
}
@keyframes characterFloat {
  0%,100% { transform: rotate(-.7deg) translateY(0); }
  50% { transform: rotate(.9deg) translateY(-7px); }
}
.paper { border: 2px solid var(--ink); background: var(--paper); box-shadow: 4px 4px 0 var(--ink); position: absolute; }
.paper-back {
  width: 190px; height: 140px;
  right: 2%; top: 12%;
  transform: rotate(8deg);
  background-image: linear-gradient(var(--soft-line) 1px, transparent 1px);
  background-size: 100% 18px;
}
.paper-front { width: 210px; height: 150px; right: 6%; bottom: 6%; padding: 28px 20px; transform: rotate(-4deg); }
.fake-line { display: block; height: 8px; background: var(--ink); border-radius: 8px; margin-bottom: 11px; }
.line-a { width: 84%; } .line-b { width: 63%; } .line-c { width: 72%; background: var(--accent); }
.correction-mark { position: absolute; right: 20px; bottom: 16px; color: var(--accent); font-size: 29px; font-weight: 900; }
.doodle { position: absolute; color: var(--accent); font-size: 42px; font-weight: 900; }
.doodle-one { left: 8%; top: 8%; transform: rotate(-18deg); }
.doodle-two { right: -1%; top: 42%; transform: rotate(14deg); }

.reveal { opacity: 0; transform: translateY(18px); animation: reveal .75s var(--ease) forwards; }
.delay-1 { animation-delay: .08s; } .delay-2 { animation-delay: .16s; } .delay-3 { animation-delay: .24s; } .delay-4 { animation-delay: .32s; }
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }

.demo-section { padding: 88px 0 104px; background: var(--paper-2); border-block: 2px solid var(--ink); }
.demo-heading-row { display: grid; grid-template-columns: 1.4fr .6fr; gap: 40px; align-items: end; margin: 22px 0 34px; }
.demo-heading-row h2 { font-size: clamp(48px,6vw,78px); max-width: 760px; }
.demo-heading-row p { margin: 0 0 7px; font-size: 18px; color: var(--muted); }
.demo-card { border: 2px solid var(--ink); border-radius: var(--radius-lg); background: var(--paper); box-shadow: 10px 10px 0 var(--ink); overflow: hidden; }
.demo-toolbar { min-height: 54px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 18px; border-bottom: 2px solid var(--ink); }
.window-dots { display: flex; gap: 6px; }
.window-dots span { width: 10px; height: 10px; border: 1.5px solid var(--ink); border-radius: 50%; background: var(--light); }
.window-dots span:first-child { background: var(--accent); }
.demo-toolbar-title { font-size: 13px; font-weight: 900; }
.demo-status { justify-self: end; display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: 12px; font-weight: 900; }
.demo-status i { width: 7px; height: 7px; border-radius: 50%; background: #1da35f; }
.demo-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.demo-input { padding: 28px; border-right: 2px solid var(--ink); }
.demo-output { padding: 28px; display: flex; flex-direction: column; }
.demo-input > label, .control-grid label span, .output-meta, .typo-label {
  font-size: 12px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase;
}
#sourceText { margin-top: 10px; width: 100%; min-height: 176px; resize: vertical; border: 2px solid var(--ink); border-radius: var(--radius-sm); background: #fff; padding: 16px; font-size: 17px; line-height: 1.6; }
.control-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 24px; margin-top: 24px; }
.control-grid label { display: grid; gap: 8px; }
input[type="range"] { width: 100%; accent-color: var(--accent); }
.demo-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.output-meta { display: flex; justify-content: space-between; margin-bottom: 10px; }
.typing-surface { flex: 1; min-height: 320px; border: 2px solid var(--ink); border-radius: var(--radius-sm); padding: 20px; font-size: 20px; line-height: 1.72; background: linear-gradient(to bottom, transparent 31px, rgba(11,11,11,.08) 32px); background-size: 100% 32px; }
.caret { display: inline-block; width: 2px; height: 1.15em; margin-left: 2px; background: var(--accent); vertical-align: -.18em; animation: blink .8s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.typo-strip { margin-top: 16px; display: grid; gap: 8px; }
.typo-list { display: flex; flex-wrap: wrap; gap: 7px; min-height: 31px; }
.typo-list span { display: inline-flex; padding: 5px 9px; border: 1.5px solid var(--ink); border-radius: 999px; font-size: 12px; background: var(--light); }
.typo-list .empty-chip { color: var(--muted); border-color: var(--soft-line); background: transparent; }

.features { padding: 108px 0 118px; }
.features-heading { font-size: clamp(50px,6.5vw,88px); margin: 22px 0 42px; }
.feature-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; }
.feature-card { min-height: 300px; border: 2px solid var(--ink); border-radius: var(--radius-lg); padding: 28px; position: relative; overflow: hidden; background: var(--paper); transition: transform .2s ease, box-shadow .2s ease; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 7px 7px 0 var(--ink); }
.feature-wide { grid-row: span 2; min-height: 620px; display: grid; grid-template-rows: auto 1fr; }
.feature-accent { background: var(--accent); }
.feature-number { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 28px; border: 2px solid var(--ink); border-radius: 999px; font-size: 11px; font-weight: 900; margin-bottom: 24px; }
.feature-card h3 { font-size: 34px; line-height: .98; letter-spacing: -.04em; margin: 0 0 14px; max-width: 420px; }
.feature-card p { color: #4e4b47; font-size: 17px; margin: 0; max-width: 520px; }
.pause-visual { position: relative; min-height: 360px; margin-top: 20px; }
.pause-character { width: 220px; height: 220px; border: 3px solid var(--ink); border-radius: 46% 54% 43% 57% / 58% 43% 57% 42%; background: var(--light); position: absolute; left: 50%; bottom: 10px; transform: translateX(-50%) rotate(-5deg); box-shadow: inset -35px -20px 0 rgba(11,11,11,.05); }
.eye { position: absolute; width: 13px; height: 17px; background: var(--ink); border-radius: 50%; top: 81px; }
.eye-l { left: 65px; } .eye-r { right: 65px; }
.mouth { position: absolute; width: 48px; height: 20px; border-bottom: 3px solid var(--ink); border-radius: 50%; left: 84px; top: 117px; }
.pause-bubble { position: absolute; padding: 8px 10px; background: var(--paper); border: 2px solid var(--ink); border-radius: 999px; font-weight: 900; font-size: 12px; box-shadow: 3px 3px 0 var(--ink); animation: bubbleFloat 4s ease-in-out infinite; }
.pb1 { left: 9%; top: 21%; } .pb2 { right: 8%; top: 8%; animation-delay: .8s; background: var(--accent); } .pb3 { right: 3%; bottom: 19%; animation-delay: 1.6s; }
@keyframes bubbleFloat { 50% { transform: translateY(-7px) rotate(1deg); } }
.mini-icon { width: 74px; height: 74px; border: 2px solid var(--ink); border-radius: 22px; display: grid; place-items: center; margin: 4px 0 30px; background: var(--light); font-weight: 900; font-size: 28px; }
.mini-icon span { color: var(--accent); text-decoration: line-through; }
.mini-icon-dark { background: var(--ink); color: var(--paper); }
.meter-stack { display: grid; gap: 12px; margin-top: 38px; }
.meter-stack span { height: 16px; border: 2px solid var(--ink); background: var(--paper); border-radius: 20px; }

.play-section { padding: 104px 0; background: var(--ink); color: var(--paper); border-block: 2px solid var(--ink); }
.play-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.section-kicker-light { border-color: var(--paper); background: transparent; }
.play-copy h2 { font-size: clamp(58px,7vw,92px); margin: 22px 0 18px; }
.play-copy p { color: #cbc7c1; font-size: 18px; max-width: 520px; }
.game-stats { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 22px; }
.game-stats span { border: 1px solid rgba(255,255,255,.25); border-radius: 999px; padding: 7px 11px; font-size: 12px; }
.game-stats strong { color: var(--accent); margin-left: 4px; }
.word-game { border: 2px solid var(--paper); border-radius: var(--radius-lg); min-height: 460px; position: relative; background: #141414; overflow: hidden; box-shadow: 10px 10px 0 var(--accent); }
.word-track { position: absolute; inset: 26px 28px 64px; border-radius: 20px; background: repeating-linear-gradient(to bottom, rgba(255,255,255,.04) 0 1px, transparent 1px 44px); }
.target-zone { position: absolute; left: 7%; right: 7%; bottom: 28px; height: 76px; border: 2px dashed var(--accent); background: rgba(255,59,10,.08); border-radius: 20px; }
.falling-word { position: absolute; top: 12px; transform: translateX(-50%); border: 2px solid var(--paper); border-radius: 999px; background: var(--paper); color: var(--ink); padding: 10px 16px; font-weight: 900; cursor: pointer; }
.falling-word.is-active { animation: fall 2.1s linear forwards; }
@keyframes fall { from { top: 12px; } to { top: calc(100% - 62px); } }
.game-hint { position: absolute; left: 0; right: 0; bottom: 22px; text-align: center; color: #aaa; font-size: 12px; }

.steps { padding: 108px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 30px; }
.steps-grid article { border-top: 2px solid var(--ink); padding-top: 22px; }
.steps-grid article > span { display: inline-grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--accent); border: 2px solid var(--ink); font-weight: 900; margin-bottom: 38px; }
.steps-grid h3 { font-size: 38px; line-height: 1; margin: 0 0 12px; letter-spacing: -.04em; }
.steps-grid p { color: var(--muted); margin: 0; font-size: 17px; max-width: 280px; }

.faq-section { padding: 96px 0 120px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; align-items: center; }
.faq-art { min-height: 520px; position: relative; }
.faq-blob { width: 360px; height: 330px; position: absolute; left: 7%; top: 15%; background: var(--mid); border: 3px solid var(--ink); border-radius: 50% 44% 52% 48% / 46% 55% 45% 54%; transform: rotate(-5deg); }
.faq-eye { width: 14px; height: 18px; background: var(--ink); border-radius: 50%; position: absolute; top: 104px; }
.e1 { left: 108px; } .e2 { left: 181px; }
.faq-arm { width: 220px; height: 56px; border: 3px solid var(--ink); border-radius: 60px; position: absolute; background: var(--paper); transform-origin: 0 50%; }
.a1 { left: 37px; bottom: 45px; transform: rotate(23deg); }
.a2 { right: -105px; top: 114px; transform: rotate(-14deg); }
.faq-mark { position: absolute; right: -35px; top: -78px; font-size: 170px; line-height: .8; font-weight: 950; color: var(--accent); -webkit-text-stroke: 3px var(--ink); }
.faq-content h2 { font-size: clamp(50px,5.7vw,78px); margin: 20px 0 30px; }
.accordion { border-top: 2px solid var(--ink); }
details { border-bottom: 2px solid var(--ink); }
summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 24px; padding: 20px 0; font-weight: 900; font-size: 18px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-size: 25px; line-height: 1; color: var(--accent); }
details[open] summary::after { content: "−"; }
details p { margin: -4px 0 22px; color: var(--muted); max-width: 620px; }

.final-cta { background: var(--accent); border-block: 2px solid var(--ink); overflow: hidden; }
.final-cta-inner { min-height: 390px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 34px; position: relative; }
.final-cta h2 { font-size: clamp(58px,7vw,96px); max-width: 800px; margin-top: 20px; }
.final-doodle { position: absolute; right: 6%; bottom: -12px; display: flex; gap: 28px; opacity: .22; font-size: 120px; font-weight: 900; transform: rotate(-6deg); pointer-events: none; }

.site-footer { padding: 74px 0 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.footer-brand p { color: var(--muted); max-width: 360px; }
.footer-links { display: grid; grid-template-columns: repeat(2,1fr); gap: 30px; }
.footer-links > div { display: grid; gap: 10px; align-content: start; }
.footer-links strong { font-size: 13px; text-transform: uppercase; letter-spacing: .05em; }
.footer-links a { color: var(--muted); }
.footer-bottom { grid-column: 1/-1; border-top: 1px solid var(--soft-line); padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 13px; }

.legal-shell { width: min(860px, calc(100vw - 36px)); margin: 0 auto; padding: 40px 0 96px; }
.legal-copy { margin-top: 82px; }
.legal-copy h1, .not-found h1 { font-size: clamp(58px,9vw,96px); line-height: .93; letter-spacing: -.065em; margin: 20px 0; }
.legal-copy h2 { margin-top: 42px; font-size: 26px; letter-spacing: -.03em; }
.legal-copy p { font-size: 18px; color: #45423e; line-height: 1.75; }
.legal-date { color: var(--muted)!important; }
.not-found { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }

@media (max-width: 980px) {
  :root { --shell: min(100% - 28px, 760px); }
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .menu-button { display: flex; justify-self: end; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 58px; }
  .hero-art { min-height: 540px; max-width: 620px; width: 100%; margin: 0 auto; }
  .demo-heading-row, .demo-grid, .play-layout, .faq-section { grid-template-columns: 1fr; }
  .demo-input { border-right: 0; border-bottom: 2px solid var(--ink); }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-wide { grid-row: auto; min-height: 560px; }
  .steps-grid { grid-template-columns: 1fr; gap: 38px; }
  .faq-art { min-height: 440px; order: 2; }
  .final-cta-inner { grid-template-columns: 1fr; padding-block: 68px; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-bottom { grid-column: 1; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100vw - 22px); }
  .site-header { margin-block: 11px; min-height: 58px; }
  .brand { font-size: 19px; }
  .brand-mark { width: 28px; height: 28px; }
  .ticker-track { padding-block: 9px; font-size: 11px; }
  .hero { padding: 46px 0 56px; gap: 20px; }
  .hero h1 { font-size: clamp(56px,17vw,82px); }
  .hero-lede { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-art { min-height: 430px; }
  .paper-back { width: 140px; height: 108px; }
  .paper-front { width: 152px; height: 116px; padding: 22px 15px; }
  .doodle { font-size: 32px; }
  .demo-section { padding: 68px 0 78px; }
  .demo-heading-row { gap: 16px; margin-bottom: 24px; }
  .demo-heading-row h2 { font-size: 48px; }
  .demo-toolbar { grid-template-columns: 1fr auto; }
  .demo-toolbar-title { display: none; }
  .demo-input, .demo-output { padding: 18px; }
  .control-grid { grid-template-columns: 1fr; }
  .typing-surface { min-height: 280px; font-size: 17px; }
  .features { padding: 78px 0 86px; }
  .features-heading { font-size: 52px; }
  .feature-card { min-height: 280px; padding: 22px; }
  .feature-wide { min-height: 560px; }
  .pause-character { width: 190px; height: 190px; }
  .eye-l { left: 56px; } .eye-r { right: 56px; }
  .mouth { left: 70px; top: 110px; }
  .play-section { padding: 78px 0; }
  .play-copy h2 { font-size: 56px; }
  .word-game { min-height: 380px; }
  .faq-section { padding: 76px 0 88px; gap: 20px; }
  .faq-art { min-height: 370px; }
  .faq-blob { width: 270px; height: 250px; left: 4%; }
  .a2 { right: -70px; width: 170px; }
  .faq-mark { font-size: 120px; right: -24px; top: -56px; }
  .faq-content h2 { font-size: 50px; }
  .final-cta h2 { font-size: 56px; }
  .final-doodle { font-size: 72px; }
  .footer-bottom { flex-direction: column; }
}

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