:root {
  --paper: #f3efe4;
  --paper-bright: #fffdf7;
  --paper-deep: #e7e0cf;
  --ink: #12131a;
  --ink-soft: #343640;
  --muted: #65656d;
  --rule: rgba(18, 19, 26, 0.22);
  --rule-strong: #12131a;
  --blue: #3f35ff;
  --blue-dark: #251ad4;
  --volt: #ddff45;
  --coral: #ff5b44;
  --white: #fff;
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --body: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --utility: "Arial Narrow", "Avenir Next Condensed", "Roboto Condensed", sans-serif;
  --mono: ui-monospace, "SFMono-Regular", Consolas, monospace;
  --shadow: 12px 12px 0 rgba(18, 19, 26, 0.12);
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    linear-gradient(rgba(18, 19, 26, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 19, 26, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 40px 40px;
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
h1, h2, h3, p { margin: 0; }
h1, h2 { font-family: var(--display); font-weight: 600; letter-spacing: -0.035em; }
h3 { font-weight: 800; line-height: 1.18; }
button, input, textarea, select { font: inherit; }
.wrap { width: min(calc(100% - 48px), var(--wrap)); margin-inline: auto; }
.svg-definitions { position: absolute; }
.skip-link { position: fixed; z-index: 100; left: 16px; top: -80px; padding: 10px 14px; background: var(--volt); color: var(--ink); font-weight: 900; }
.skip-link:focus { top: 16px; }

/* Masthead */
.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(243, 239, 228, 0.94);
  border-bottom: 2px solid var(--ink);
  backdrop-filter: blur(14px);
}
.nav-shell { min-height: 74px; display: flex; align-items: center; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; text-decoration: none; }
.brand-logo { width: 38px; height: 38px; border: 2px solid var(--ink); border-radius: 4px; box-shadow: 4px 4px 0 var(--volt); }
.brand-wordmark { font-family: var(--display); font-size: 1.36rem; letter-spacing: -0.04em; }
.nav-tag {
  padding-left: 22px;
  border-left: 1px solid var(--rule);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.primary-nav { display: flex; align-self: stretch; align-items: stretch; margin-left: auto; }
.primary-nav a {
  position: relative;
  display: grid;
  place-items: center;
  padding: 0 14px;
  color: var(--muted);
  font-family: var(--utility);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}
.primary-nav a::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: -2px; height: 5px; background: transparent; }
.primary-nav a:hover { color: var(--blue); }
.primary-nav a[aria-current="page"] { color: var(--ink); }
.primary-nav a[aria-current="page"]::after { background: var(--blue); }
main { min-height: 65vh; overflow: hidden; }

/* Shared typography and controls */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 24px; height: 3px; background: currentColor; }
.section-head { display: grid; grid-template-columns: minmax(180px, 0.34fr) 1fr; gap: 24px 54px; align-items: start; margin-bottom: 48px; }
.section-head .eyebrow { grid-row: 1 / span 2; padding-top: 11px; }
.section-head h2 { max-width: 20ch; font-size: clamp(2.4rem, 5vw, 4.7rem); line-height: 0.98; }
.section-head p:not(.eyebrow) { max-width: 64ch; color: var(--muted); font-size: 1.02rem; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border: 2px solid var(--ink);
  background: var(--paper-bright);
  color: var(--ink);
  font-family: var(--utility);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.button:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--ink); }
.button-primary { background: var(--volt); }
.button-ghost { background: transparent; }

/* Store links */
.store-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.store-badge {
  display: inline-flex;
  min-width: 174px;
  min-height: 56px;
  align-items: center;
  gap: 11px;
  padding: 8px 16px;
  border: 2px solid var(--ink);
  border-radius: 2px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.store-badge:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--blue); }
.store-badge svg { flex: none; }
.store-badge-copy { display: flex; flex-direction: column; line-height: 1.05; }
.store-badge-copy small { color: rgba(255,255,255,0.67); font-size: 0.59rem; letter-spacing: 0.05em; }
.store-badge-copy strong { font-size: 1rem; letter-spacing: 0.01em; }

/* Editorial hero */
.home-hero { padding: 58px 0 0; }
.hero-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.72fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
  min-height: 690px;
  padding: 58px 0 76px;
  border-bottom: 2px solid var(--ink);
}
.hero-panel::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 42%;
  height: 74%;
  right: -4%;
  top: 8%;
  background: var(--volt);
  transform: rotate(-3deg);
}
.hero-copy { position: relative; z-index: 2; max-width: 720px; }
.hero-title { max-width: 10ch; margin-top: 21px; font-size: clamp(4rem, 8vw, 7.25rem); line-height: 0.82; }
.hero-title .accent { display: block; color: var(--blue); font-style: italic; font-weight: 500; transform: translateX(0.35em); }
.hero-lede { max-width: 55ch; margin-top: 28px; padding-left: 20px; border-left: 5px solid var(--coral); color: var(--ink-soft); font-size: clamp(1.04rem, 1.7vw, 1.2rem); }
.download-prompt { margin-top: 30px; color: var(--muted); font-family: var(--utility); font-size: 0.73rem; font-weight: 900; letter-spacing: 0.09em; text-transform: uppercase; }
.hero-copy .store-actions { margin-top: 9px; }
.hero-detail-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--blue); font-size: 0.83rem; font-weight: 850; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.hero-proof span { padding: 5px 9px; border: 1px solid var(--ink); background: var(--paper-bright); font-family: var(--mono); font-size: 0.65rem; font-weight: 700; text-transform: uppercase; }
.hero-stage { position: relative; z-index: 2; display: grid; justify-items: center; padding-bottom: 58px; }
.hero-stage::before { content: "L"; position: absolute; z-index: -1; right: -8%; top: -12%; color: var(--blue); font-family: var(--display); font-size: 20rem; font-style: italic; font-weight: 700; line-height: 1; opacity: 0.12; }
.phone { position: relative; width: min(100%, 292px); padding: 9px; border: 2px solid var(--ink); border-radius: 38px; background: var(--ink); box-shadow: 11px 12px 0 rgba(63, 53, 255, 0.33); }
.phone::before { content: ""; position: absolute; z-index: 3; top: 16px; left: 50%; width: 34%; height: 22px; border-radius: 0 0 15px 15px; background: var(--ink); transform: translateX(-50%); }
.phone img { display: block; width: 100%; border-radius: 29px; }
.hero-stage .phone { transform: rotate(2.4deg); animation: phone-drift 6s ease-in-out infinite; }
.floating-chip { position: absolute; z-index: 4; padding: 9px 12px; border: 2px solid var(--ink); background: var(--paper-bright); box-shadow: 5px 5px 0 var(--ink); font-family: var(--mono); font-size: 0.68rem; font-weight: 800; }
.chip-top { top: 78px; right: -3%; transform: rotate(3deg); }
.chip-top strong { color: var(--blue); }
.chip-bottom { bottom: 118px; left: -8%; transform: rotate(-4deg); }
.chip-bottom strong { color: var(--coral); }
.stage-caption { position: absolute; right: -5%; bottom: 0; width: 250px; padding-top: 9px; border-top: 2px solid var(--ink); color: var(--ink-soft); font-size: 0.72rem; }
.stage-caption span { display: block; font-family: var(--mono); font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }

/* Data strip */
.proof-strip { background: var(--ink); color: var(--white); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); width: min(100%, 1440px); }
.proof-item { min-height: 132px; padding: 28px 24px; border-right: 1px solid rgba(255,255,255,0.22); }
.proof-item:first-child { border-left: 1px solid rgba(255,255,255,0.22); }
.proof-value { display: block; color: var(--volt); font-family: var(--display); font-size: clamp(2.4rem, 5vw, 4.2rem); font-style: italic; font-weight: 600; line-height: 0.9; }
.proof-label { display: block; margin-top: 12px; color: rgba(255,255,255,0.62); font-family: var(--utility); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; }

/* Home sections */
.home-section { padding: 104px 0; border-bottom: 1px solid var(--rule); }
.home-section.alt { background: var(--paper-bright); }
.feature-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; align-items: stretch; }
.feature-card { position: relative; grid-column: span 4; min-height: 300px; padding: 30px; border: 2px solid var(--ink); background: var(--paper-bright); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.feature-card:nth-child(2) { transform: translateY(30px); }
.feature-card:hover, .support-option:hover, .play-step:hover { box-shadow: 9px 9px 0 var(--blue); transform: translate(-4px, -4px); }
.feature-card:nth-child(2):hover { transform: translate(-4px, 26px); }
.feature-card.spotlight { background: var(--blue); color: var(--white); }
.feature-icon { display: grid; width: 46px; height: 46px; place-items: center; margin-bottom: 54px; border: 2px solid currentColor; color: var(--blue); }
.spotlight .feature-icon { color: var(--volt); }
.feature-card h3 { max-width: 16ch; font-family: var(--display); font-size: 1.65rem; }
.feature-card p { margin-top: 13px; color: var(--muted); font-size: 0.92rem; }
.feature-card.spotlight p { color: rgba(255,255,255,0.72); }
.feature-card::after { content: "0" counter(feature); position: absolute; top: 22px; right: 24px; font-family: var(--mono); font-size: 0.7rem; font-weight: 800; }
.feature-grid { counter-reset: feature; }
.feature-card { counter-increment: feature; }

.modes-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 0; border: 2px solid var(--ink); box-shadow: var(--shadow); }
.mode-card { min-height: 390px; padding: clamp(32px, 5vw, 58px); }
.mode-card.quick { background: var(--ink); color: var(--white); }
.mode-card.daily { background: var(--volt); }
.mode-card .tag { display: inline-block; padding-bottom: 6px; border-bottom: 2px solid currentColor; font-family: var(--mono); font-size: 0.68rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.mode-card h3 { max-width: 14ch; margin-top: 26px; font-family: var(--display); font-size: clamp(2.3rem, 4vw, 4rem); font-weight: 600; line-height: 0.95; }
.mode-card p { max-width: 48ch; margin-top: 18px; opacity: 0.72; }
.mode-card ul { display: grid; gap: 10px; margin: 24px 0 0; padding: 0; list-style: none; }
.mode-card li { display: grid; grid-template-columns: 22px 1fr; gap: 8px; font-size: 0.9rem; font-weight: 650; }
.mode-card li::before { content: "↗"; font-weight: 900; }

.showcase { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: clamp(48px, 8vw, 110px); align-items: center; }
.showcase.flip { grid-template-columns: 1.28fr 0.72fr; }
.showcase.flip .showcase-media { order: 2; }
.showcase-media { display: grid; place-items: center; }
.showcase-media .phone { transform: rotate(-2deg); box-shadow: 13px 13px 0 var(--coral); }
.showcase.flip .showcase-media .phone { transform: rotate(2deg); box-shadow: 13px 13px 0 var(--volt); }
.showcase-copy { padding-block: 28px; }
.showcase-copy h2 { max-width: 14ch; margin-top: 18px; font-size: clamp(2.8rem, 5vw, 5rem); line-height: 0.94; }
.showcase-copy > p:not(.eyebrow) { max-width: 58ch; margin-top: 22px; color: var(--muted); }
.showcase-list { display: grid; gap: 0; margin: 30px 0 0; padding: 0; border-top: 2px solid var(--ink); list-style: none; }
.showcase-list li { display: grid; grid-template-columns: 38px 1fr; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--rule); }
.showcase-list .dot { display: grid; width: 30px; height: 30px; place-items: center; background: var(--blue); color: var(--white); font-family: var(--mono); font-size: 0.68rem; font-weight: 900; }
.showcase-list strong { display: block; }
.showcase-list span span { color: var(--muted); font-size: 0.88rem; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 2px solid var(--ink); }
.play-step { min-height: 300px; padding: 30px; background: var(--paper-bright); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.play-step + .play-step { border-left: 2px solid var(--ink); }
.step-number { font-family: var(--mono); font-size: 0.68rem; font-weight: 900; letter-spacing: 0.1em; }
.play-step h3 { margin-top: 52px; font-family: var(--display); font-size: 1.8rem; }
.play-step p { margin-top: 12px; color: var(--muted); font-size: 0.92rem; }
.mini-rack { display: flex; gap: 5px; margin-top: 22px; }
.mini-rack span { display: grid; width: 32px; height: 38px; place-items: center; border: 1px solid var(--ink); background: var(--volt); font-family: var(--mono); font-weight: 900; }

.score-panel { display: grid; grid-template-columns: 0.9fr 1.1fr; border: 2px solid var(--ink); background: var(--ink); color: var(--white); box-shadow: var(--shadow); }
.score-copy { padding: clamp(36px, 6vw, 68px); }
.score-copy .eyebrow { color: var(--volt); }
.score-copy h2 { max-width: 12ch; margin-top: 20px; font-size: clamp(2.7rem, 5vw, 4.9rem); line-height: 0.94; }
.score-copy p { margin-top: 20px; color: rgba(255,255,255,0.62); }
.score-board { display: grid; align-content: center; gap: 1px; padding: clamp(28px, 4vw, 48px); background: var(--paper-deep); }
.score-row { display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: 15px; padding: 18px; background: var(--paper-bright); color: var(--ink); }
.score-badge { display: grid; width: 45px; height: 45px; place-items: center; border: 2px solid var(--ink); background: var(--volt); font-family: var(--display); font-weight: 900; }
.score-row strong { display: block; font-size: 0.9rem; }
.score-row small { display: block; color: var(--muted); }
.score-points { color: var(--blue); font-family: var(--mono); font-size: 1.05rem; font-weight: 900; }

.faq { max-width: 920px; margin-left: auto; border-top: 2px solid var(--ink); }
details { border-bottom: 1px solid var(--rule); }
summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; cursor: pointer; font-family: var(--display); font-size: 1.2rem; font-weight: 700; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "↘"; color: var(--blue); font-family: var(--mono); }
details[open] summary::after { content: "↗"; }
details p { max-width: 70ch; padding: 0 0 24px; color: var(--muted); }

.final-cta { padding: 0; }
.cta-panel { display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; padding: 54px 0; border-top: 2px solid var(--ink); }
.cta-logo { width: 78px; height: 78px; border: 2px solid var(--ink); border-radius: 3px; box-shadow: 6px 6px 0 var(--coral); }
.cta-panel h2 { max-width: 16ch; font-size: clamp(2.3rem, 4vw, 3.8rem); line-height: 0.95; }
.cta-panel p { max-width: 50ch; color: var(--muted); }
.cta-panel .store-actions { grid-column: 3; grid-row: 1 / span 2; }

/* Editorial inner pages */
.inner-page { padding: 58px 0 110px; }
.inner-hero { position: relative; display: grid; gap: 22px; min-height: 420px; align-content: center; padding: 42px 0 54px; border-bottom: 5px solid var(--ink); }
.inner-hero h1 { max-width: 13ch; margin-top: 4px; font-size: clamp(3.7rem, 8vw, 7.4rem); line-height: 0.84; }
.inner-hero .lede { max-width: 62ch; margin-top: 12px; color: var(--muted); font-size: 1.08rem; }
.updated { margin-top: 14px; font-family: var(--mono); font-size: 0.67rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; }
.inner-hero::after { content: "//"; position: absolute; right: 0; top: 5%; color: var(--volt); font-family: var(--display); font-size: 14rem; font-weight: 900; line-height: 1; opacity: 0.8; transform: rotate(-8deg); z-index: -1; }
.content-layout { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: clamp(40px, 7vw, 90px); align-items: start; margin-top: 62px; }
.page-index { position: sticky; top: 104px; padding-top: 14px; border-top: 3px solid var(--ink); }
.page-index strong { display: block; margin-bottom: 15px; font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; }
.page-index a { display: block; padding: 8px 0; border-bottom: 1px solid var(--rule); color: var(--muted); font-size: 0.79rem; font-weight: 700; text-decoration: none; }
.page-index a:hover { color: var(--blue); padding-left: 5px; }
.content-stack { counter-reset: article; border-top: 3px solid var(--ink); }
.content-card { position: relative; counter-increment: article; scroll-margin-top: 100px; padding: 38px 0 42px 90px; border-bottom: 1px solid var(--rule); }
.content-card::before { content: counter(article, decimal-leading-zero); position: absolute; left: 0; top: 39px; color: var(--blue); font-family: var(--mono); font-size: 0.72rem; font-weight: 900; }
.content-card h2 { max-width: 23ch; font-family: var(--display); font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: 1; }
.content-card h3 { margin-top: 28px; }
.content-card p { margin-top: 14px; color: var(--muted); }
.content-card ul, .content-card ol { margin: 16px 0 0; padding-left: 1.2rem; color: var(--muted); }
.content-card li + li { margin-top: 10px; }
.content-card strong { color: var(--ink); }
.content-card a { color: var(--blue); }
.content-card.emphasis { margin-inline: -28px; padding-right: 28px; padding-left: 118px; background: var(--volt); border-bottom: 2px solid var(--ink); }
.content-card.emphasis::before { left: 28px; color: var(--ink); }

.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin: 52px 0 0; border: 2px solid var(--ink); }
.support-option { min-height: 230px; padding: 28px; background: var(--paper-bright); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.support-option + .support-option { border-left: 2px solid var(--ink); }
.support-option:nth-child(2) { background: var(--volt); }
.support-option .feature-icon { margin-bottom: 34px; }
.support-option h2 { font-family: var(--display); font-size: 1.6rem; }
.support-option p { margin-top: 10px; color: var(--muted); font-size: 0.87rem; }
.numbered-list { padding: 0 !important; list-style: none; counter-reset: steps; }
.numbered-list li { position: relative; min-height: 36px; padding-left: 48px; counter-increment: steps; }
.numbered-list li::before { content: counter(steps); position: absolute; left: 0; top: -2px; display: grid; width: 32px; height: 32px; place-items: center; border: 1px solid var(--ink); background: var(--volt); color: var(--ink); font-family: var(--mono); font-size: 0.72rem; font-weight: 900; }
.contact-panel { display: grid; grid-template-columns: 1fr auto; gap: 18px 50px; align-items: center; margin-top: 54px; padding: 42px; border: 2px solid var(--ink); background: var(--blue); color: var(--white); box-shadow: var(--shadow); }
.contact-panel h2 { font-size: clamp(2.3rem, 5vw, 4rem); line-height: 0.95; }
.contact-panel p { max-width: 62ch; color: rgba(255,255,255,0.72); }
.contact-panel .button { grid-column: 2; grid-row: 1 / span 2; background: var(--volt); color: var(--ink); }

/* Footer */
.site-footer { padding: 70px 0 30px; background: var(--ink); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: start; }
.footer-brand { max-width: 520px; }
.site-footer .brand-logo { box-shadow: 4px 4px 0 var(--coral); }
.footer-brand p { margin-top: 18px; color: rgba(255,255,255,0.58); }
.footer-brand .store-actions { margin-top: 24px; }
.footer-brand .store-badge { border-color: rgba(255,255,255,0.5); }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px; padding-top: 8px; }
.footer-links a { color: rgba(255,255,255,0.68); font-family: var(--utility); font-size: 0.72rem; font-weight: 900; letter-spacing: 0.09em; text-decoration: none; text-transform: uppercase; }
.footer-links a:hover { color: var(--volt); }
.footer-bottom { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 20px; margin-top: 56px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.5); font-family: var(--mono); font-size: 0.66rem; }
.footer-bottom > :last-child { text-align: right; }

@keyframes phone-drift {
  0%, 100% { transform: rotate(2.4deg) translateY(0); }
  50% { transform: rotate(1deg) translateY(-9px); }
}

@media (max-width: 960px) {
  .nav-tag { display: none; }
  .hero-panel { grid-template-columns: 1fr 0.72fr; gap: 34px; }
  .hero-title { font-size: clamp(3.7rem, 9vw, 6rem); }
  .feature-card { grid-column: span 12; min-height: 220px; }
  .feature-card:nth-child(2) { transform: none; }
  .feature-card:nth-child(2):hover { transform: translate(-4px, -4px); }
  .feature-icon { margin-bottom: 30px; }
  .showcase, .showcase.flip { grid-template-columns: 0.72fr 1fr; gap: 50px; }
  .content-layout { grid-template-columns: 1fr; }
  .page-index { position: static; display: flex; flex-wrap: wrap; gap: 0 18px; }
  .page-index strong { width: 100%; }
  .page-index a { border-bottom: 0; }
  .cta-panel { grid-template-columns: auto 1fr; }
  .cta-panel .store-actions { grid-column: 2; grid-row: auto; }
}

@media (max-width: 720px) {
  .wrap { width: min(calc(100% - 28px), var(--wrap)); }
  .site-header { position: static; }
  .nav-shell { min-height: 0; flex-wrap: wrap; padding-top: 14px; }
  .brand-wordmark { font-size: 1.2rem; }
  .primary-nav { width: 100%; height: 44px; margin-left: 0; overflow-x: auto; border-top: 1px solid var(--rule); }
  .primary-nav a { flex: 1; padding: 0 10px; font-size: 0.67rem; }
  .primary-nav a::after { left: 10px; right: 10px; }
  .home-hero { padding-top: 34px; }
  .hero-panel { grid-template-columns: 1fr; min-height: 0; padding: 48px 0 62px; }
  .hero-panel::before { width: 92%; height: 43%; right: -18%; top: auto; bottom: 5%; }
  .hero-title { font-size: clamp(3.6rem, 20vw, 5.7rem); }
  .hero-stage { margin-top: 18px; }
  .hero-stage::before { font-size: 14rem; }
  .floating-chip { font-size: 0.59rem; }
  .chip-top { right: 0; }
  .chip-bottom { left: 0; }
  .stage-caption { right: 0; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,0.22); }
  .home-section { padding: 74px 0; }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .section-head .eyebrow { grid-row: auto; }
  .section-head h2 { font-size: clamp(2.5rem, 13vw, 4rem); }
  .modes-grid { grid-template-columns: 1fr; }
  .mode-card { min-height: 0; }
  .showcase, .showcase.flip { grid-template-columns: 1fr; }
  .showcase.flip .showcase-media { order: 0; }
  .showcase-copy h2 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .steps-grid { grid-template-columns: 1fr; }
  .play-step { min-height: 240px; }
  .play-step + .play-step { border-left: 0; border-top: 2px solid var(--ink); }
  .score-panel { grid-template-columns: 1fr; }
  .score-row { grid-template-columns: 48px 1fr; }
  .score-points { grid-column: 2; }
  .cta-panel { grid-template-columns: 1fr; align-items: start; }
  .cta-panel .store-actions { grid-column: 1; }
  .inner-page { padding-top: 28px; }
  .inner-hero { grid-template-columns: 1fr; gap: 15px; min-height: 400px; padding: 26px 0 42px; }
  .inner-hero h1 { font-size: clamp(3.5rem, 18vw, 5.8rem); }
  .inner-hero::after { right: -24px; top: 25%; font-size: 9rem; }
  .content-layout { margin-top: 40px; }
  .content-card { padding: 32px 0 36px 42px; }
  .content-card::before { top: 34px; }
  .content-card.emphasis { margin-inline: -14px; padding: 34px 14px 38px 56px; }
  .content-card.emphasis::before { left: 14px; }
  .support-grid { grid-template-columns: 1fr; }
  .support-option + .support-option { border-left: 0; border-top: 2px solid var(--ink); }
  .contact-panel { grid-template-columns: 1fr; padding: 30px 24px; }
  .contact-panel .button { grid-column: 1; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-self: start; }
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-bottom > :last-child { text-align: left; }
}

@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; }
}
