:root {
  --ink: #18221f;
  --ink-soft: #51605b;
  --paper: #f6f3eb;
  --paper-deep: #eee9dc;
  --card: #fffef9;
  --forest: #174f43;
  --forest-dark: #0f3a31;
  --mint: #d9eee5;
  --lime: #c8e36e;
  --coral: #ee765f;
  --yellow: #f3c85b;
  --blue: #7bbbd0;
  --line: #d8d6cb;
  --white: #fff;
  --shadow: 0 18px 45px rgba(32, 50, 45, .10);
  --shadow-small: 0 8px 24px rgba(32, 50, 45, .08);
  --radius: 24px;
  --radius-small: 14px;
  --shell: 1180px;
  --sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Newsreader", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  z-index: -1;
  background-image: radial-gradient(#325a4e 0.55px, transparent 0.55px);
  background-size: 9px 9px;
}
img { max-width: 100%; height: auto; }
a { color: var(--forest); text-underline-offset: 3px; }
a:hover { color: var(--coral); }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 4px solid rgba(238, 118, 95, .4); outline-offset: 3px; }
.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link { position: fixed; top: -80px; left: 20px; z-index: 999; padding: 12px 18px; background: var(--ink); color: #fff; border-radius: 10px; }
.skip-link:focus { top: 20px; }
.site-shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.site-main { min-height: 62vh; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(246,243,235,.92); border-bottom: 1px solid rgba(24,34,31,.09); backdrop-filter: blur(15px); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; }
.brand-mark { display: grid; width: 43px; height: 43px; place-items: center; }
.brand-mark svg { width: 100%; fill: var(--forest); }
.brand-mark .brand-spark { fill: var(--lime); }
.brand-name { display: flex; align-items: baseline; gap: 8px; font-size: 25px; font-weight: 800; letter-spacing: -.04em; }
.brand-core > span { color: var(--forest); }
.brand-name small { padding: 3px 7px; border-radius: 999px; color: var(--forest); background: var(--mint); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.nav-list, .primary-nav ul { list-style: none; display: flex; align-items: center; gap: 27px; padding: 0; margin: 0; }
.primary-nav a { color: var(--ink); font-size: 15px; font-weight: 700; text-decoration: none; }
.primary-nav a:hover { color: var(--forest); }
.primary-nav .nav-play a { display: inline-flex; padding: 11px 18px; border-radius: 999px; background: var(--forest); color: #fff; }
.menu-toggle { display: none; width: 48px; height: 44px; padding: 10px; border: 1px solid var(--line); background: var(--card); border-radius: 12px; }
.menu-toggle span:not(.screen-reader-text) { display: block; height: 2px; margin: 5px 0; background: var(--ink); }

/* Shared type and buttons */
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); line-height: .98; letter-spacing: -.035em; }
h1 { font-size: clamp(45px, 7vw, 82px); }
h2 { font-size: clamp(32px, 4vw, 50px); }
h3 { line-height: 1.2; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; color: var(--forest); font-size: 13px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--coral); }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 12px 21px; border: 0; border-radius: 999px; font-weight: 800; text-decoration: none; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--forest); box-shadow: 0 9px 20px rgba(23,79,67,.18); }
.button-primary:hover { color: #fff; background: var(--forest-dark); }
.button-accent { color: var(--ink); background: var(--lime); }
.button-accent:hover { color: var(--ink); background: #d5eb88; }
.button-quiet { color: var(--forest); background: var(--mint); }
.text-link { font-weight: 800; text-decoration: none; }

/* Home hero */
.hero { position: relative; padding: clamp(65px, 8vw, 112px) 0 74px; overflow: hidden; }
.hero::after { content: ""; position: absolute; width: 520px; height: 520px; right: -200px; top: -180px; border: 1px solid rgba(23,79,67,.14); border-radius: 50%; box-shadow: 0 0 0 70px rgba(23,79,67,.025), 0 0 0 140px rgba(23,79,67,.02); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1.05fr) minmax(380px,.95fr); align-items: center; gap: clamp(44px,8vw,100px); }
.hero-copy h1 { max-width: 720px; margin-bottom: 22px; }
.hero-copy h1 em { color: var(--forest); font-style: normal; }
.hero-copy > p:not(.eyebrow) { max-width: 610px; color: var(--ink-soft); font-size: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 31px 0 25px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px; color: var(--ink-soft); font-size: 13px; font-weight: 700; }
.trust-row span::before { content: "✓"; margin-right: 7px; color: var(--forest); }
.daily-panel { position: relative; padding: 28px; border: 1px solid rgba(24,34,31,.1); border-radius: 32px; background: var(--card); box-shadow: var(--shadow); transform: rotate(1.2deg); }
.daily-panel::before { content: ""; position: absolute; inset: 11px; border: 1px dashed rgba(23,79,67,.17); border-radius: 24px; pointer-events: none; }
.daily-top, .daily-bottom { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 15px; }
.daily-top { padding-bottom: 20px; }
.daily-label { margin: 0; color: var(--forest); font-size: 12px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.streak-pill { padding: 7px 11px; color: #774a00; background: #fff1bf; border-radius: 999px; font-size: 12px; font-weight: 800; }
.daily-art { position: relative; display: grid; height: 240px; place-items: center; margin-bottom: 20px; overflow: hidden; border-radius: 22px; background: var(--forest); }
.letter-stack { display: grid; grid-template-columns: repeat(3, 58px); gap: 9px; transform: rotate(-4deg); }
.letter-stack span { display: grid; width: 58px; aspect-ratio: 1; place-items: center; border-radius: 13px; background: var(--paper); color: var(--forest); font-family: var(--serif); font-size: 31px; font-weight: 700; box-shadow: 0 5px 0 rgba(0,0,0,.13); }
.letter-stack span:nth-child(2), .letter-stack span:nth-child(5) { background: var(--lime); }
.daily-bottom h2 { margin: 0 0 4px; font-family: var(--sans); font-size: 20px; line-height: 1.2; letter-spacing: -.02em; }
.daily-bottom p { margin: 0; color: var(--ink-soft); font-size: 13px; }
.round-arrow { display: grid; width: 48px; aspect-ratio: 1; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--coral); color: #fff; font-size: 23px; text-decoration: none; }

/* Sections */
.section { padding: 78px 0; }
.section-tinted { background: var(--paper-deep); }
.section-dark { color: #fff; background: var(--forest-dark); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 32px; }
.section-heading h2 { max-width: 720px; margin-bottom: 0; }
.section-heading p { max-width: 530px; margin-bottom: 5px; color: var(--ink-soft); }
.section-dark .section-heading p, .section-dark .eyebrow { color: #cfe0db; }
.game-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.game-card { position: relative; display: flex; min-height: 270px; flex-direction: column; overflow: hidden; padding: 25px; border: 1px solid rgba(24,34,31,.1); border-radius: var(--radius); background: var(--card); box-shadow: var(--shadow-small); transition: transform .2s ease, box-shadow .2s ease; }
.game-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.game-card::after { content: ""; position: absolute; right: -40px; bottom: -55px; width: 140px; height: 140px; border: 22px solid var(--card-accent, var(--mint)); border-radius: 50%; opacity: .8; }
.game-card[data-engine="quiz"] { --card-accent: #f7d8b3; }
.game-card[data-engine="scramble"] { --card-accent: #d8eb9e; }
.game-card[data-engine="wordsearch"] { --card-accent: #cfe7ef; }
.game-card[data-engine="memory"] { --card-accent: #f3c9c1; }
.game-card[data-engine="connections"] { --card-accent: #ded3ef; }
.game-card[data-engine="clue"] { --card-accent: #f5e3a6; }
.card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.game-icon { display: grid; width: 49px; aspect-ratio: 1; place-items: center; border-radius: 15px; background: var(--card-accent); font-size: 23px; }
.difficulty { padding: 6px 10px; border-radius: 999px; background: var(--paper); color: var(--ink-soft); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.game-card h3 { position: relative; z-index: 1; margin: 26px 0 10px; font-size: 22px; letter-spacing: -.025em; }
.game-card h3 a { color: var(--ink); text-decoration: none; }
.game-card p { position: relative; z-index: 1; color: var(--ink-soft); font-size: 14px; }
.card-meta { position: relative; z-index: 1; display: flex; gap: 15px; margin-top: auto; padding-top: 15px; color: var(--forest); font-size: 12px; font-weight: 800; }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; }
.category-card { min-height: 205px; padding: 25px; color: var(--ink); border-radius: var(--radius); text-decoration: none; transition: transform .2s ease; }
.category-card:hover { transform: translateY(-4px); color: var(--ink); }
.category-card:nth-child(1) { background: #d9eee5; }
.category-card:nth-child(2) { background: #f7d8b3; }
.category-card:nth-child(3) { background: #cfe7ef; }
.category-card:nth-child(4) { background: #ded3ef; }
.category-card span { font-size: 31px; }
.category-card h3 { margin: 34px 0 6px; font-size: 21px; }
.category-card p { margin: 0; color: var(--ink-soft); font-size: 13px; }
.ritual-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.ritual-copy h2 { margin-bottom: 20px; }
.ritual-copy p { color: #cfe0db; }
.steps { display: grid; gap: 13px; }
.step { display: grid; grid-template-columns: 53px 1fr; gap: 16px; align-items: center; padding: 15px; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(255,255,255,.05); }
.step-num { display: grid; width: 53px; aspect-ratio: 1; place-items: center; border-radius: 15px; background: var(--lime); color: var(--forest-dark); font-family: var(--serif); font-size: 25px; font-weight: 700; }
.step h3 { margin: 0 0 3px; }
.step p { margin: 0; color: #cfe0db; font-size: 13px; }
.newsletter { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; padding: 40px; border-radius: 30px; background: var(--yellow); }
.newsletter h2 { margin: 0 0 10px; }
.newsletter p { margin: 0; }
.newsletter-form { display: flex; padding: 6px; border-radius: 999px; background: #fff; }
.newsletter-form input { min-width: 0; flex: 1; padding: 10px 15px; border: 0; background: transparent; }

/* Archive and pages */
.archive-hero, .page-heading { padding: 70px 0 36px; }
.archive-hero h1, .page-heading h1 { max-width: 850px; margin-bottom: 16px; }
.archive-hero > p { max-width: 650px; color: var(--ink-soft); font-size: 19px; }
.filter-row { display: flex; flex-wrap: wrap; gap: 9px; margin: 24px 0 38px; }
.filter-chip { padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; background: var(--card); color: var(--ink); font-size: 13px; font-weight: 700; text-decoration: none; }
.filter-chip.active, .filter-chip:hover { color: #fff; border-color: var(--forest); background: var(--forest); }
.pagination { margin: 40px 0; }
.nav-links { display: flex; gap: 8px; justify-content: center; }
.page-numbers { display: grid; min-width: 43px; height: 43px; place-items: center; padding: 0 10px; border-radius: 12px; background: var(--card); text-decoration: none; }
.page-numbers.current { color: #fff; background: var(--forest); }
.prose-page { max-width: 850px; padding-bottom: 80px; }
.prose { padding: clamp(25px, 5vw, 55px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); }
.prose h2 { margin-top: 45px; font-size: 34px; line-height: 1.12; }
.prose h3 { margin-top: 30px; }
.prose p, .prose li { color: #35433f; }
.prose a { font-weight: 700; }
.content-layout { padding: 0 0 80px; }
.editorial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.story-card { padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); }
.story-card h2 { font-family: var(--sans); font-size: 24px; line-height: 1.15; }
.story-card h2 a { color: var(--ink); text-decoration: none; }
.card-kicker { color: var(--coral); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

/* Single game */
.game-page { padding: 45px 0 80px; }
.breadcrumbs { margin-bottom: 28px; color: var(--ink-soft); font-size: 13px; }
.breadcrumbs a { color: var(--ink-soft); text-decoration: none; }
.game-header { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end; margin-bottom: 26px; }
.game-header h1 { max-width: 830px; margin-bottom: 15px; font-size: clamp(42px, 6vw, 69px); }
.game-deck { max-width: 720px; margin-bottom: 0; color: var(--ink-soft); font-size: 18px; }
.game-facts { display: flex; gap: 10px; }
.fact-pill { padding: 10px 13px; border-radius: 13px; background: var(--card); box-shadow: var(--shadow-small); font-size: 12px; font-weight: 800; white-space: nowrap; }
.game-layout { display: grid; grid-template-columns: minmax(0,1fr) 290px; gap: 26px; align-items: start; }
.game-stage { min-height: 560px; padding: clamp(20px,4vw,40px); border: 1px solid rgba(24,34,31,.1); border-radius: 30px; background: var(--card); box-shadow: var(--shadow); }
.game-sidebar { display: grid; gap: 18px; position: sticky; top: 105px; }
.side-card { padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,254,249,.75); }
.side-card h2 { font-family: var(--sans); font-size: 17px; line-height: 1.2; letter-spacing: -.02em; }
.side-card p, .side-card li { color: var(--ink-soft); font-size: 13px; }
.side-card ol { padding-left: 20px; }
.progress-wrap { margin-bottom: 24px; }
.progress-meta { display: flex; justify-content: space-between; margin-bottom: 8px; color: var(--ink-soft); font-size: 12px; font-weight: 800; }
.progress-track { height: 8px; overflow: hidden; border-radius: 99px; background: var(--paper-deep); }
.progress-bar { width: 0; height: 100%; border-radius: inherit; background: var(--coral); transition: width .3s ease; }
.game-prompt { margin: 0 0 22px; font-family: var(--serif); font-size: clamp(29px,4vw,42px); line-height: 1.08; }
.answer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.answer-button, .word-tile { min-height: 60px; padding: 13px 15px; border: 2px solid var(--line); border-radius: 15px; background: #fff; color: var(--ink); text-align: left; font-weight: 700; cursor: pointer; }
.answer-button:hover, .word-tile:hover { border-color: var(--forest); }
.answer-button.is-correct { color: var(--forest-dark); border-color: var(--forest); background: var(--mint); }
.answer-button.is-wrong { border-color: var(--coral); background: #fde3de; }
.feedback { min-height: 58px; margin-top: 18px; padding: 14px 17px; border-radius: 15px; background: var(--paper); color: var(--ink-soft); }
.feedback strong { color: var(--ink); }
.game-controls { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.game-input { width: 100%; padding: 15px 17px; border: 2px solid var(--line); border-radius: 15px; background: #fff; font-size: 18px; }
.scramble-word { margin: 18px 0 26px; color: var(--forest); font-family: var(--serif); font-size: clamp(42px, 8vw, 78px); font-weight: 700; letter-spacing: .12em; text-align: center; text-transform: uppercase; }
.hint-line { min-height: 28px; color: var(--ink-soft); font-style: italic; }
.memory-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.memory-card { position: relative; aspect-ratio: 1.15; border: 0; background: transparent; perspective: 800px; cursor: pointer; }
.memory-inner { position: absolute; inset: 0; transform-style: preserve-3d; transition: transform .35s ease; }
.memory-card.is-flipped .memory-inner, .memory-card.is-matched .memory-inner { transform: rotateY(180deg); }
.memory-face { position: absolute; inset: 0; display: grid; place-items: center; padding: 8px; border-radius: 15px; backface-visibility: hidden; }
.memory-front { background: var(--forest); color: var(--lime); font-size: 25px; }
.memory-back { transform: rotateY(180deg); border: 2px solid var(--forest); background: var(--mint); color: var(--forest-dark); font-size: 13px; font-weight: 800; text-align: center; }
.memory-card.is-matched .memory-back { border-color: var(--coral); background: #fde3de; }
.connections-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 9px; }
.word-tile { min-height: 78px; padding: 8px; text-align: center; text-transform: uppercase; font-size: 13px; }
.word-tile.is-selected { color: #fff; border-color: var(--forest); background: var(--forest); }
.solved-group { margin-bottom: 10px; padding: 14px; border-radius: 14px; text-align: center; }
.solved-group:nth-child(1) { background: #f3dc7b; }
.solved-group:nth-child(2) { background: #b9d67a; }
.solved-group:nth-child(3) { background: #83c4dc; }
.solved-group:nth-child(4) { background: #b9a0cc; }
.solved-group strong, .solved-group span { display: block; }
.solved-group span { font-size: 12px; }
.wordsearch-grid { display: grid; gap: 3px; width: min(100%, 530px); margin-inline: auto; user-select: none; }
.letter-cell { display: grid; aspect-ratio: 1; min-width: 0; place-items: center; padding: 0; border: 1px solid #d9dedb; border-radius: 7px; background: #fff; color: var(--ink); font-size: clamp(12px,2vw,18px); font-weight: 800; cursor: pointer; }
.letter-cell.is-start { color: #fff; background: var(--forest); }
.letter-cell.is-found { color: var(--forest-dark); border-color: #a8c85f; background: var(--lime); }
.word-bank { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 21px; }
.word-bank span { padding: 6px 10px; border-radius: 999px; background: var(--paper); font-size: 12px; font-weight: 800; }
.word-bank span.is-found { text-decoration: line-through; opacity: .48; }
.clue-list { display: grid; gap: 9px; margin: 20px 0; }
.clue-line { padding: 12px 14px; border-left: 4px solid var(--yellow); border-radius: 0 12px 12px 0; background: var(--paper); }
.game-complete { text-align: center; padding: 25px 0; }
.score-orbit { display: grid; width: 145px; aspect-ratio: 1; place-items: center; margin: 10px auto 24px; border: 13px solid var(--mint); border-top-color: var(--coral); border-radius: 50%; font-family: var(--serif); font-size: 41px; font-weight: 700; }
.game-complete h2 { margin-bottom: 12px; }
.game-complete p { color: var(--ink-soft); }
.share-result { display: inline-flex; }
.related-games { padding-top: 70px; }
.game-description { max-width: 820px; margin-top: 65px; }
.game-description h2 { font-size: 35px; }
.ad-placeholder { display: grid; min-height: 130px; place-items: center; border: 1px dashed #bbb8ab; border-radius: 16px; color: #8b8980; background: rgba(255,255,255,.35); font-size: 11px; text-transform: uppercase; }
.gamemind-ad { margin: 28px 0; text-align: center; }
.ad-label { display: block; margin-bottom: 5px; color: #7a7d79; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

/* Footer */
.site-footer { padding: 62px 0 22px; color: #d4e1dd; background: #112c26; }
.site-footer .brand { color: #fff; }
.site-footer .brand-core > span { color: var(--lime); }
.site-footer .brand-name small { color: var(--lime); background: rgba(200,227,110,.12); }
.site-footer .brand-mark svg { fill: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr 1fr; gap: 60px; }
.footer-brand p { max-width: 390px; margin-top: 18px; color: #aebfba; }
.site-footer h2 { font-family: var(--sans); font-size: 14px; letter-spacing: .06em; text-transform: uppercase; }
.site-footer ul { list-style: none; padding: 0; }
.site-footer .nav-list { display: block; }
.site-footer a { color: #d4e1dd; text-decoration: none; }
.site-footer li { margin-bottom: 7px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); color: #8fa49e; font-size: 12px; }
.empty-state { padding: 110px 0; text-align: center; }
.empty-state h1 { margin: 12px 0 20px; }
.empty-state p:not(.eyebrow) { color: var(--ink-soft); }
.empty-orbit { display: grid; width: 95px; aspect-ratio: 1; place-items: center; margin: 0 auto 22px; border-radius: 50%; color: #fff; background: var(--coral); font-family: var(--serif); font-size: 52px; }

@media (max-width: 980px) {
  .hero-grid, .ritual-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .daily-panel { max-width: 600px; transform: none; }
  .game-grid { grid-template-columns: repeat(2,1fr); }
  .category-grid { grid-template-columns: repeat(2,1fr); }
  .game-layout { grid-template-columns: 1fr; }
  .game-sidebar { position: static; grid-template-columns: repeat(2,1fr); }
  .newsletter { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .site-shell { width: min(calc(100% - 28px), var(--shell)); }
  .header-inner { min-height: 70px; }
  .menu-toggle { display: block; }
  .primary-nav { display: none; position: absolute; top: 70px; left: 14px; right: 14px; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: var(--card); box-shadow: var(--shadow); }
  .primary-nav.is-open { display: block; }
  .nav-list, .primary-nav ul { align-items: stretch; flex-direction: column; gap: 3px; }
  .primary-nav a { display: block; padding: 11px; }
  .hero { padding-top: 48px; }
  .hero-grid { gap: 40px; }
  .hero-copy > p:not(.eyebrow) { font-size: 17px; }
  .daily-panel { padding: 20px; }
  .daily-art { height: 210px; }
  .section { padding: 58px 0; }
  .section-heading { align-items: start; flex-direction: column; }
  .game-grid, .editorial-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .game-card { min-height: 240px; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { flex-direction: column; }
  .game-header { grid-template-columns: 1fr; }
  .game-facts { flex-wrap: wrap; }
  .game-stage { min-height: 500px; padding: 18px; }
  .game-sidebar { grid-template-columns: 1fr; }
  .answer-grid { grid-template-columns: 1fr; }
  .connections-grid { grid-template-columns: repeat(2,1fr); }
  .memory-grid { grid-template-columns: repeat(4,1fr); gap: 6px; }
  .memory-back { font-size: 10px; }
  .newsletter { padding: 26px; }
  .newsletter-form { align-items: stretch; flex-direction: column; border-radius: 18px; }
}

@media (max-width: 450px) {
  h1 { font-size: 43px; }
  .category-grid { grid-template-columns: 1fr; }
  .letter-stack { grid-template-columns: repeat(3,48px); }
  .letter-stack span { width: 48px; font-size: 26px; }
  .memory-grid { grid-template-columns: repeat(3,1fr); }
}

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