:root {
  color-scheme: light;
  --paper: #f0f1f3;
  --paper-raised: #f8f9fa;
  --paper-deep: #e2e4e8;
  --ink: #17181c;
  --ink-rgb: 23, 24, 28;
  --muted: #585c64;
  --line: #d7d9de;
  --accent: #e25a28;
  --queue-surface: #1b1c1f;
  --queue-surface-raised: #24262a;
  --queue-text: #f1f2f4;
  --queue-muted: #9a9ea6;
  --queue-line: #35373c;
  --contrast-surface: #1a1b1e;
  --contrast-card: #202124;
  --contrast-text: #f1f2f4;
  --contrast-muted: #a3a7ae;
  --contrast-line: #303236;
  --shadow: 0 1px 2px rgba(20, 21, 24, 0.08), 0 16px 36px rgba(20, 21, 24, 0.14);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", sans-serif;
  font-synthesis: none;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --paper: #141517;
  --paper-raised: #1c1d20;
  --paper-deep: #242629;
  --ink: #f1f2f4;
  --ink-rgb: 241, 242, 244;
  --muted: #999da5;
  --line: #303236;
  --accent: #e25a28;
  --contrast-surface: #18191c;
  --contrast-card: #202124;
  --contrast-text: #f1f2f4;
  --contrast-muted: #999da5;
  --contrast-line: #303236;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 16px 36px rgba(0, 0, 0, 0.36);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  transition: background-color 220ms ease, color 220ms ease;
}
button, a, input, select, textarea { font: inherit; font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", sans-serif; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  height: 76px;
  padding: 0 4vw;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 76%, transparent);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(18px) saturate(1.2);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", sans-serif;
}
.wordmark { display: inline-flex; align-items: center; gap: 10px; width: max-content; font-weight: 820; letter-spacing: -0.045em; }
.wordmark small { margin-left: 2px; color: var(--muted); font-size: 12px; font-weight: 600; letter-spacing: 0; }
.wordmark-mark, .mini-mark { display: block; width: 25px; height: 25px; }
.mini-mark { width: 18px; height: 18px; }
.site-header nav { display: flex; gap: 30px; color: var(--muted); font-size: 14px; font-weight: 650; }
.site-header nav a { transition: color 150ms ease; }
.site-header nav a:hover { color: var(--ink); }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 10px; }
.header-buy { margin-right: 8px; color: var(--muted); font-size: 14px; font-weight: 700; white-space: nowrap; }
.header-buy:hover { color: var(--ink); }
.theme-toggle {
  position: relative; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: var(--radius-md);
  background: var(--paper-raised); cursor: pointer; overflow: hidden;
}
.theme-toggle span { position: absolute; inset: 0; display: grid; place-items: center; transition: transform 220ms ease, opacity 220ms ease; }
.theme-toggle svg { width: 17px; height: 17px; }
.theme-moon { transform: translateY(120%); opacity: 0; }
[data-theme="dark"] .theme-sun { transform: translateY(-120%); opacity: 0; }
[data-theme="dark"] .theme-moon { transform: translateY(0); opacity: 1; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 54px; padding: 0 24px; border-radius: var(--radius-md); font-size: 15px; font-weight: 700; transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease; }
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 0 17px; border-radius: var(--radius-md); font-size: 14px; }
.button-ink { border: 0; background: var(--accent); color: #1c1a17; cursor: pointer; }
.button-ink:hover { box-shadow: 0 6px 16px rgba(28, 26, 23, .12); }

.hero {
  display: grid;
  grid-template-columns: minmax(420px, .88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
  min-height: calc(100svh - 76px);
  max-width: 1420px;
  margin: 0 auto;
  padding: 80px 5vw 90px;
}
.hero-copy { position: relative; z-index: 2; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", sans-serif; }
h1 { max-width: 700px; margin-bottom: 30px; font-size: clamp(54px, 4.6vw, 68px); line-height: 1.04; letter-spacing: -.035em; font-weight: 700; }
h1 em, h2 em { color: inherit; font-style: normal; white-space: nowrap; }
.hero-lede { max-width: 620px; margin-bottom: 34px; color: var(--muted); font-size: clamp(18px, 1.55vw, 22px); line-height: 1.45; letter-spacing: -.01em; }
.purchase-note { margin: 0; color: var(--muted); font-size: 14px; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.hero-shot { display: grid; justify-items: center; gap: 34px; margin: 0; perspective: 1600px; }
.hero-shot-tilt { --p: 0; width: min(100%, 440px); transform: rotateX(calc(14deg - 10deg * var(--p))) rotateY(calc(-18deg + 13deg * var(--p))) rotateZ(calc(2deg - 1.5deg * var(--p))); transform-origin: 50% 35%; }
.hero-shot-float { animation: heroFloat 7s ease-in-out infinite; }
.hero-shot-img { display: block; width: 125.74%; max-width: none; height: auto; margin: -7.35% 0 -20.22% -12.87%; }
.hero-shot-dark { display: none; }
[data-theme="dark"] .hero-shot-light { display: none; }
[data-theme="dark"] .hero-shot-dark { display: block; }
@keyframes heroFloat { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(0, -10px, 0); } }
.stage-caption { margin: 0; color: var(--muted); font-size: 14px; text-align: center; }
.stage-caption b { color: var(--ink); }
.reveal-ready [data-reveal] { transition: opacity 700ms cubic-bezier(.16, 1, .3, 1), transform 700ms cubic-bezier(.16, 1, .3, 1); }
.reveal-ready [data-reveal]:not(.is-revealed) { opacity: 0; transform: translate3d(0, 18px, 0); }

.proof-strip { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 18px; min-height: 76px; padding: 18px 4vw; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13px; font-weight: 700; }
.proof-strip i { width: 4px; height: 4px; border-radius: 50%; background: var(--line); }

.play-section { max-width: 1420px; margin: 0 auto; padding: 150px 4vw; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 36px; align-items: end; margin-bottom: 70px; }
h2 { margin-bottom: 0; font-size: clamp(42px, 4.5vw, 64px); line-height: 1.08; letter-spacing: -.03em; font-weight: 700; }
.section-heading > p:last-child { max-width: 490px; justify-self: end; margin: 0 0 9px; color: var(--muted); font-size: 18px; line-height: 1.5; }

.word-game { display: grid; grid-template-columns: 1fr minmax(300px, .82fr) 1fr; gap: 16px; align-items: stretch; font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", sans-serif; }
.game-progress { display: none; }
.game-panel, .game-queue-wrap { min-width: 0; }
.game-panel { display: flex; flex-direction: column; min-height: 360px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper-raised); }
.panel-label { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 13px; font-weight: 760; text-transform: uppercase; letter-spacing: .04em; }
.panel-label span { color: var(--muted); font-variant-numeric: tabular-nums; }
.source-sentence, .target-sentence { margin: auto 0; font-size: clamp(25px, 2.35vw, 36px); line-height: 1.42; letter-spacing: -.02em; font-weight: 650; }
.source-word { position: relative; display: inline; padding: 0; border: 0; background: transparent; color: var(--accent); font-weight: inherit; cursor: default; }
.source-word::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; border-radius: 8px; background: currentColor; opacity: .45; transform: rotate(-1deg); }
.source-word.copied { color: var(--muted); opacity: .32; }
.source-word.copied::after { left: -2px; right: -2px; bottom: 50%; background: var(--muted); opacity: 1; }
.panel-hint { margin: 0; color: var(--muted); font-size: 13px; }
.target-blank { display: inline-flex; min-width: 3.3em; justify-content: center; border-bottom: 2px solid var(--line); color: var(--muted); transition: color 180ms ease, border-color 180ms ease; }
.target-blank.filled { min-width: 0; color: var(--accent); border-color: var(--accent); }

.game-queue-wrap { display: flex; flex-direction: column; gap: 12px; }
.game-queue { flex: 1; padding: 18px; border-radius: var(--radius-lg); background: var(--queue-surface); color: var(--queue-text); box-shadow: var(--shadow); }
.queue-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.queue-head > div { display: flex; align-items: center; gap: 9px; }
.mini-mark { width: 18px; gap: 2px; }
.mini-mark i { height: 3px; }
.queue-head strong { font-size: 14px; }
.queue-count { color: var(--queue-muted); font-size: 11px; font-variant-numeric: tabular-nums; }
.queue-list { display: flex; flex-direction: column; gap: 8px; min-height: 248px; }
.empty-queue { display: grid; place-items: center; align-content: center; min-height: 248px; border: 1px dashed var(--queue-line); border-radius: var(--radius-lg); color: var(--queue-muted); text-align: center; }
.empty-queue span { display: grid; place-items: center; width: 43px; height: 43px; margin-bottom: 10px; border: 1px solid currentColor; border-radius: var(--radius-sm); }
.empty-queue p { max-width: 150px; margin: 0; font-size: 12px; }
.queue-chip { display: grid; grid-template-columns: 18px 1fr auto; align-items: center; gap: 8px; min-height: 52px; padding: 6px 6px 6px 9px; border-radius: var(--radius-md); background: var(--queue-surface-raised); cursor: grab; animation: chipIn 320ms cubic-bezier(.2,.8,.2,1) both; }
.queue-chip.dragging { opacity: .38; }
.queue-chip.touch-dragging { position: relative; z-index: 4; opacity: .94; box-shadow: 0 14px 28px rgba(0, 0, 0, .28); transition: none; }
.chip-grip { display: grid; place-items: center; align-self: stretch; min-width: 24px; margin-left: -5px; color: var(--queue-muted); cursor: grab; touch-action: none; user-select: none; }
.chip-grip svg { width: 18px; height: 18px; }
.chip-grip:active { cursor: grabbing; }
.chip-copy small { display: block; color: var(--queue-muted); font-size: 12px; font-weight: 600; }
.chip-copy strong { font-size: 14px; }
.chip-controls { display: flex; gap: 4px; }
.chip-controls button { display: grid; place-items: center; width: 34px; height: 34px; padding: 0; border: 1px solid var(--queue-line); border-radius: var(--radius-sm); background: transparent; color: var(--queue-text); cursor: pointer; }
.chip-controls button:hover:not(:disabled) { border-color: var(--queue-muted); }
.chip-controls svg { width: 18px; height: 18px; }
.chip-controls button:disabled { cursor: default; opacity: .3; }
.queue-tip { margin: 12px 2px 0; color: var(--queue-muted); font-size: 12px; text-align: center; }
.queue-status { color: var(--muted); font-size: 12px; text-align: center; }
.mobile-target-preview { display: none; }
.game-controls { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, auto); justify-content: center; align-items: stretch; gap: 2px; margin-top: 8px; padding: 5px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper-raised); justify-self: center; }
.control-button { display: flex; align-items: center; justify-content: center; gap: 9px; min-width: 108px; min-height: 44px; padding: 0 16px; border: 0; border-radius: var(--radius-md); background: transparent; cursor: pointer; transition: transform 150ms ease, opacity 150ms ease, background 150ms ease; }
.control-button:hover:not(:disabled) { transform: translateY(-2px); }
.control-button:disabled { cursor: not-allowed; opacity: .35; }
.control-button b { font-size: 14px; }
.control-button small { font-size: 11px; font-variant-numeric: tabular-nums; }
.copy-control { background: var(--accent); color: #1c1a17; }
.paste-control { background: var(--queue-surface-raised); color: var(--queue-text); }
.clear-control { color: var(--muted); }
.reset-control { grid-column: 1 / -1; justify-self: center; padding: 2px 8px; border: 0; background: transparent; color: var(--muted); font-size: 12px; text-decoration: underline; text-decoration-color: color-mix(in srgb, var(--muted) 45%, transparent); text-underline-offset: 4px; cursor: pointer; }
.flying-word { position: fixed; z-index: 100; margin: 0; padding: 7px 11px; border-radius: var(--radius-sm); background: var(--accent); color: #1c1a17; font-size: 14px; font-weight: 700; pointer-events: none; box-shadow: 0 10px 28px rgba(48, 31, 18, .2); }

.why-section { margin: 0 2vw; padding: 88px 5vw; border: 1px solid var(--contrast-line); border-radius: var(--radius-lg); background: var(--contrast-surface); color: var(--contrast-text); }
.why-heading { max-width: 1300px; margin: 0 auto 56px; }
.why-heading h2 { max-width: 850px; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; max-width: 1300px; margin: 0 auto; }
.why-grid article { padding-top: 24px; border-top: 1px solid var(--contrast-line); }
.why-grid h3 { margin: 0 0 12px; font-size: 22px; font-weight: 650; letter-spacing: -.02em; }
.why-grid p { margin: 0; color: var(--contrast-muted); font-size: 15px; }

.faq-section { display: grid; grid-template-columns: minmax(300px, .75fr) minmax(520px, 1.25fr); gap: clamp(50px, 8vw, 120px); max-width: 1300px; margin: 0 auto; padding: 140px 5vw 80px; font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", sans-serif; }
.faq-heading { align-self: start; position: sticky; top: 120px; }
.faq-heading h2 { margin-bottom: 28px; }
.faq-heading > p { max-width: 430px; color: var(--muted); font-size: 17px; }
.contact-line { margin: 0; }
.contact-link { color: var(--ink); font-weight: 650; text-decoration: underline; text-decoration-color: color-mix(in srgb, var(--ink) 35%, transparent); text-underline-offset: 4px; transition: color 150ms ease, text-decoration-color 150ms ease; }
.contact-link:hover { color: var(--accent); text-decoration-color: currentColor; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: grid; grid-template-columns: 1fr 18px; align-items: center; gap: 20px; padding: 24px 0; font-size: 18px; font-weight: 650; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; place-items: center; width: 18px; height: 18px; color: var(--muted); }
.faq-list summary span::before { content: ""; width: 7px; height: 7px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: translateY(-2px) rotate(45deg); transition: transform 180ms ease; }
.faq-list details[open] summary span::before { transform: translateY(2px) rotate(225deg); }
.faq-list details p { max-width: 680px; margin: -5px 52px 24px 0; color: var(--muted); font-size: 16px; line-height: 1.62; }

.final-section { display: flex; flex-direction: column; align-items: center; max-width: 1050px; margin: 0 auto; padding: 160px 5vw 150px; text-align: center; }
.final-section h2 { margin-bottom: 28px; }
.final-section > p { max-width: 560px; margin-bottom: 32px; color: var(--muted); font-size: 18px; }
.final-queue { display: grid; grid-template-columns: 25px 1fr 20px; align-items: center; gap: 10px; width: 230px; margin-bottom: 44px; padding: 11px; border-radius: var(--radius-lg); background: var(--queue-surface); color: var(--queue-text); box-shadow: var(--shadow); }
.final-queue span { display: grid; place-items: center; width: 25px; height: 25px; border-radius: var(--radius-sm); background: var(--queue-surface-raised); color: var(--queue-text); font-size: 11px; font-weight: 700; font-variant-numeric: tabular-nums; }
.final-queue strong { font-size: 12px; text-align: left; }
.final-grip { width: 18px; height: 18px; color: var(--queue-muted); }
.final-button { margin-bottom: 14px; }
.final-note { color: var(--muted); font-size: 12px; }
.license-option { display: flex; align-items: baseline; justify-content: center; flex-wrap: wrap; gap: 7px; margin-top: 32px; scroll-margin-top: 120px; font-size: 15px; }
.license-option > span { color: var(--muted); }
.license-link { padding: 0; border: 0; background: transparent; color: var(--ink); font-size: 15px; font-weight: 700; text-decoration: underline; text-decoration-color: var(--ink); text-underline-offset: 4px; cursor: pointer; }
.license-link:hover { color: var(--accent); }
.license-note { margin-top: 8px; color: var(--muted); font-size: 13px; }
.release-status { min-height: 1.5em; margin-top: 14px; color: var(--muted); font-size: 13px; }

footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; padding: 28px 4vw 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
footer p { margin: 0; }
footer > div { justify-self: end; display: flex; gap: 18px; }
.footer-mark { color: var(--ink); }
.maker-credit { grid-column: 1 / -1; justify-self: center; display: flex; align-items: center; gap: 9px; margin-top: 4px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 13px; }
.maker-mark { width: 26px; height: 26px; }
.maker-sep { color: var(--line); }
footer > div > a { transition: color 150ms ease; }
footer > div > a:hover { color: var(--ink); }

.legal { max-width: 720px; margin: 0 auto; padding: 96px 24px 120px; }
.legal-kicker { margin-bottom: 18px; color: var(--muted); font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.legal h1 { margin-bottom: 18px; font-size: clamp(40px, 5vw, 56px); }
.legal-updated { margin-bottom: 56px; color: var(--muted); font-size: 15px; }
.legal h2 { margin: 52px 0 14px; font-size: 24px; line-height: 1.25; letter-spacing: -.015em; }
.legal p, .legal li { color: color-mix(in srgb, var(--ink) 86%, var(--muted)); font-size: 17px; line-height: 1.65; }
.legal p { margin-bottom: 16px; }
.legal ul { margin: 0 0 16px; padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal li::marker { color: var(--muted); }
.legal strong { color: var(--ink); font-weight: 650; }
.legal a:not(.button) { color: var(--ink); font-weight: 600; text-decoration: underline; text-decoration-color: color-mix(in srgb, var(--ink) 35%, transparent); text-underline-offset: 4px; }
.legal a:not(.button):hover { color: var(--accent); text-decoration-color: currentColor; }
.legal-note { margin-top: 56px; padding: 18px 20px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper-raised); color: var(--muted); font-size: 15px; }
.legal-note p { margin: 0; font-size: 15px; }
.not-found { display: grid; place-content: center; justify-items: center; min-height: calc(100vh - 76px - 160px); padding: 96px 24px; text-align: center; }
.not-found h1 { margin-bottom: 18px; }
.not-found p { max-width: 440px; margin-bottom: 32px; color: var(--muted); font-size: 18px; }

@keyframes chipIn { from { opacity: 0; transform: translateY(12px) scale(.96); } to { opacity: 1; transform: none; } }
@keyframes settle { 0% { transform: scale(1); } 45% { transform: scale(1.04) rotate(-1deg); } 100% { transform: none; } }
.target-sentence.success { animation: settle 480ms ease; }

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; max-width: 850px; padding-top: 95px; }
  .hero-copy { max-width: 720px; }
  .word-game { grid-template-columns: 1fr 1fr; }
  .game-queue-wrap { grid-column: 1 / -1; grid-row: 2; width: min(470px, 100%); justify-self: center; }
  .game-controls { grid-row: 3; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-section { display: block; max-width: 850px; }
  .faq-heading { position: static; margin-bottom: 52px; }
}

@media (max-width: 760px) {
  .site-header { grid-template-columns: minmax(0, 1fr) auto; gap: 10px; height: 68px; padding: 0 14px; }
  .site-header nav, .wordmark small { display: none; }
  .site-header .wordmark { gap: 7px; font-size: 14px; }
  .site-header .wordmark-mark { width: 21px; height: 21px; }
  .header-actions { gap: 7px; }
  .header-buy { display: none; }
  .button-small { min-height: 40px; padding: 0 11px; border-radius: var(--radius-md); font-size: 12px; white-space: nowrap; }
  .theme-toggle { width: 40px; height: 40px; border-radius: var(--radius-md); }
  .theme-toggle svg { width: 16px; height: 16px; }
  .hero { display: block; min-height: 0; padding: 72px 18px 70px; }
  h1 { font-size: clamp(42px, 10.8vw, 52px); letter-spacing: -.025em; }
  h2 { letter-spacing: -.02em; }
  .hero-lede { font-size: 18px; }
  .hero-shot { margin-top: 56px; }
  .hero-shot-tilt { width: min(100%, 360px); }
  .proof-strip { justify-content: flex-start; padding: 20px 18px; }
  .proof-strip i:nth-of-type(2), .proof-strip i:nth-of-type(3) { display: none; }
  .play-section { padding: 100px 18px; }
  .section-heading { display: block; margin-bottom: 45px; }
  .section-heading h2 { margin-bottom: 24px; }
  .section-heading > p:last-child { font-size: 17px; }
  .word-game { display: grid; grid-template-columns: 1fr; gap: 12px; max-width: 520px; margin: 0 auto; }
  .game-progress { display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; gap: 8px; margin-bottom: 2px; color: var(--muted); font-size: 11px; font-weight: 760; text-transform: uppercase; letter-spacing: .04em; }
  .game-progress span { display: inline-flex; align-items: center; gap: 6px; opacity: .48; transition: opacity 180ms ease, color 180ms ease; }
  .game-progress span.active { color: var(--ink); opacity: 1; }
  .game-progress span.done { opacity: .75; }
  .game-progress b { display: grid; place-items: center; width: 21px; height: 21px; border-radius: var(--radius-sm); background: var(--paper-deep); color: var(--ink); font-size: 11px; font-variant-numeric: tabular-nums; }
  .game-progress span.active b { background: var(--accent); color: #1c1a17; }
  .game-progress i { height: 1px; background: var(--line); }
  .game-panel { min-height: 270px; padding: 20px; }
  .source-sentence, .target-sentence { font-size: clamp(23px, 7.1vw, 30px); line-height: 1.38; }
  .game-queue-wrap { width: 100%; min-height: 270px; }
  .game-queue { min-height: 240px; padding: 14px; }
  .queue-list, .empty-queue { min-height: 158px; }
  .queue-chip { min-height: 48px; }
  .queue-tip { margin-top: 9px; }
  .mobile-target-preview { display: block; padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper-raised); }
  .mobile-target-preview > span { display: block; margin-bottom: 7px; color: var(--muted); font-size: 12px; font-weight: 700; }
  .preview-target-sentence { margin: 0; font-size: 15px; line-height: 1.5; font-weight: 720; letter-spacing: -.015em; }
  .preview-target-blank { display: inline-flex; min-width: 2.7em; justify-content: center; border-bottom: 1px solid var(--accent); color: var(--muted); }
  .word-game[data-step="copy"] .game-queue-wrap,
  .word-game[data-step="copy"] .target-panel,
  .word-game[data-step="reorder"] .source-panel,
  .word-game[data-step="reorder"] .target-panel,
  .word-game[data-step="cleared"] .source-panel,
  .word-game[data-step="cleared"] .target-panel,
  .word-game[data-step="paste"] .source-panel,
  .word-game[data-step="paste"] .game-queue-wrap,
  .word-game[data-step="success"] .source-panel,
  .word-game[data-step="success"] .game-queue-wrap,
  .word-game[data-step="try-again"] .source-panel,
  .word-game[data-step="try-again"] .game-queue-wrap { display: none; }
  .game-controls { grid-template-columns: repeat(3, 1fr); width: 100%; margin-top: 0; padding: 4px; justify-self: stretch; }
  .control-button { min-width: 0; min-height: 44px; padding: 0 8px; }
  .control-button b { font-size: 13px; }
  .control-button small { font-size: 11px; }
  .reset-control { min-height: 30px; }
  .why-section { margin: 0 10px; padding: 58px 18px; border-radius: var(--radius-lg); }
  .why-heading { margin-bottom: 34px; }
  .why-grid { grid-template-columns: 1fr; gap: 28px; }
  .why-grid article { padding-top: 20px; }
  .faq-section { display: block; padding: 100px 18px 40px; }
  .faq-heading { position: static; margin-bottom: 45px; }
  .faq-list summary { padding: 20px 0; font-size: 16px; }
  .faq-list details p { margin-right: 36px; font-size: 15px; }
  .final-section { padding: 110px 18px; }
  footer { grid-template-columns: 1fr; text-align: center; }
  footer .wordmark, footer > div { justify-self: center; }
  footer > div { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 760px) {
  .legal { padding: 64px 18px 96px; }
  .legal-updated { margin-bottom: 40px; }
  .legal h2 { margin-top: 40px; font-size: 21px; }
  .legal p, .legal li { font-size: 16px; }
}

@media (max-width: 360px) {
  .site-header .wordmark > span:nth-child(2) { display: none; }
}

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