:root {
  color-scheme: light;
  --ink: #171824;
  --ink-soft: #4e5264;
  --paper: #ffffff;
  --quiet: #f3f5fa;
  --line: #dfe3ec;
  --blue: #0757c7;
  --blue-dark: #073d8f;
  --pink: #ef496d;
  --pink-dark: #b9284b;
  --yellow: #ffd761;
  --mint: #c9f0df;
  --content: 1200px;
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: 4px; }
button, input, select, textarea { font: inherit; }
button, .button { min-height: 48px; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 16px;
  padding: 10px 14px;
  transform: translateY(-150%);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
}
.skip-link:focus { transform: translateY(0); }
.shell { width: min(var(--content), calc(100% - 48px)); margin: 0 auto; }
.narrow { width: min(820px, calc(100% - 48px)); margin: 0 auto; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(23, 24, 36, 0.1);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}
.nav-shell {
  width: min(var(--content), calc(100% - 48px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}
.brand img { width: 44px; height: 44px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  position: relative;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--pink);
  transition: transform 160ms ease;
}
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav .nav-cta {
  padding: 11px 17px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: #ffffff;
  transition: background 160ms ease, color 160ms ease;
}
.site-nav .nav-cta:hover { background: #ffffff; color: var(--ink); }
.language-link { padding-left: 28px; border-left: 1px solid var(--line); }
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  content: "";
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}
.menu-open .menu-button span { opacity: 0; }
.menu-open .menu-button::before { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-button::after { transform: translateY(-7px) rotate(-45deg); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary, .button.dark { border-color: var(--ink); background: var(--ink); color: #ffffff; }
.button.primary:hover, .button.dark:hover { border-color: #ffffff; background: #ffffff; color: var(--ink); }
.button.light { border-color: #ffffff; background: #ffffff; color: var(--ink); }
.button.outline { border-color: rgba(255, 255, 255, 0.65); background: transparent; color: #ffffff; }

.eyebrow, .section-kicker {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 620px;
  height: min(760px, calc(100svh - 104px));
  overflow: hidden;
  isolation: isolate;
  background: var(--blue);
  color: #ffffff;
}
.hero::after {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 51%;
  width: 2px;
  content: "";
  transform: rotate(7deg);
  background: rgba(255, 255, 255, 0.42);
}
.hero-photo {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 56%;
  overflow: hidden;
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
  background: var(--ink);
}
.hero-photo::after { position: absolute; inset: 0; content: ""; background: rgba(23, 24, 36, 0.15); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 34%; }
.hero-mark {
  position: absolute;
  z-index: 0;
  top: -160px;
  left: -40px;
  color: rgba(255, 255, 255, 0.11);
  font-family: Georgia, serif;
  font-size: 560px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--content), calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: 60px;
  padding: 52px 0 82px;
}
.hero-copy { max-width: 625px; }
.hero-copy .eyebrow { display: flex; align-items: center; gap: 12px; color: var(--yellow); }
.hero-copy .eyebrow span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 8px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  color: #ffffff;
  font-size: 11px;
}
.hero h1 {
  max-width: 610px;
  margin: 0;
  font-size: 78px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}
.hero h1 > span { display: block; color: var(--yellow); }
.hero-detail {
  max-width: 570px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.55;
}
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 34px; }
.hero .button.primary { border-color: #ffffff; background: #ffffff; color: var(--ink); }
.hero .button.primary:hover { border-color: var(--yellow); background: var(--yellow); }
.text-link, .inline-link { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; text-decoration: none; }
.text-link { color: #ffffff; }
.text-link span, .inline-link span { transition: transform 160ms ease; }
.text-link:hover span, .inline-link:hover span { transform: translate(3px, -2px); }
.hero-profile { align-self: end; justify-self: end; width: min(420px, 100%); margin-bottom: 10px; }
.profile-meta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin: 0 18px 14px;
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.48);
}
.profile-meta strong { font-size: 31px; line-height: 1; }
.profile-meta span { font-size: 14px; font-weight: 700; }
.question-panel {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 24px 25px 26px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background: rgba(23, 24, 36, 0.88);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}
.quote-mark { color: var(--pink); font-family: Georgia, serif; font-size: 55px; font-weight: 800; line-height: 0.85; }
.question-panel small {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.question-panel p { margin: 0; color: #ffffff; font-size: 24px; font-weight: 700; line-height: 1.3; }
.hero-cue {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 52px;
  padding: 15px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.manifesto { padding: 120px 0; background: #ffffff; }
.manifesto-grid { display: grid; grid-template-columns: 150px minmax(0, 1fr) 300px; align-items: start; gap: 54px; }
.manifesto .section-kicker { margin-top: 11px; color: var(--pink-dark); }
.manifesto h2 { max-width: 720px; margin: 0; font-size: 54px; font-weight: 800; letter-spacing: 0; line-height: 1.05; }
.manifesto-copy { margin: 10px 0 0; color: var(--ink-soft); font-size: 18px; line-height: 1.65; }
.question-strip { overflow: hidden; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); background: var(--pink); color: #ffffff; }
.question-track {
  min-width: 1500px;
  min-height: 94px;
  padding: 20px 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  white-space: nowrap;
}
.question-track span { font-size: 24px; font-weight: 800; }
.question-track i { color: var(--yellow); font-family: Georgia, serif; font-size: 52px; font-style: normal; font-weight: 800; line-height: 1; }

.section { padding: 118px 0; }
.section.compact { padding-top: 72px; padding-bottom: 72px; }
.section-heading { max-width: 780px; margin-bottom: 72px; }
.section-heading .section-kicker, .showcase-copy .section-kicker, .games-copy .section-kicker, .faq-section .section-kicker { color: var(--pink-dark); }
.section-heading h2, .showcase-copy h2, .games-copy h2, .safety-band h2, .faq-section h2, .closing-cta h2, .page-intro h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.04;
}
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 42px; }
.step { padding-top: 22px; border-top: 3px solid var(--ink); }
.step-number { display: block; margin-bottom: 48px; color: var(--pink); font-size: 15px; font-weight: 800; }
.step h3 { margin: 0 0 10px; font-size: 32px; line-height: 1.1; }
.step p { max-width: 280px; margin: 0; color: var(--ink-soft); font-size: 17px; }

.showcase { position: relative; min-height: 800px; overflow: hidden; padding: 110px 0; }
.showcase-answer { background: var(--yellow); }
.showcase-match { background: var(--quiet); }
.showcase-grid { display: grid; grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr); align-items: center; gap: 90px; }
.showcase-grid.reverse { grid-template-columns: minmax(520px, 1.14fr) minmax(0, 0.86fr); }
.showcase-copy h2, .games-copy h2 { max-width: 590px; }
.showcase-copy > p:not(.section-kicker), .games-copy > p:not(.section-kicker), .safety-grid > div > p:not(.section-kicker) {
  max-width: 570px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.65;
}
.feature-points { margin: 34px 0 0; padding: 0; list-style: none; }
.feature-points li { padding: 13px 0; border-top: 1px solid rgba(23, 24, 36, 0.35); font-size: 16px; font-weight: 750; }
.feature-points li:last-child { border-bottom: 1px solid rgba(23, 24, 36, 0.35); }
.device-stage { position: relative; min-height: 700px; display: flex; align-items: center; justify-content: center; }
.device {
  position: relative;
  width: 330px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 9px solid #ffffff;
  border-radius: 46px;
  background: #ffffff;
  box-shadow: 0 28px 75px rgba(23, 24, 36, 0.24);
}
.device::after { position: absolute; inset: 0; border: 1px solid rgba(23, 24, 36, 0.12); border-radius: 37px; content: ""; pointer-events: none; }
.device img { width: 100%; height: auto; }
.stage-note {
  position: absolute;
  right: 0;
  bottom: 68px;
  width: 230px;
  margin: 0;
  padding: 20px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--pink);
  color: #ffffff;
  box-shadow: 10px 10px 0 var(--ink);
}
.stage-note strong, .stage-note span { display: block; }
.stage-note strong { margin-bottom: 8px; color: var(--yellow); font-size: 22px; }
.stage-note span { font-size: 14px; font-weight: 700; line-height: 1.4; }
.inline-link { margin-top: 34px; color: var(--blue); font-size: 17px; }
.device-pair { position: relative; min-height: 720px; }
.device-pair::before {
  position: absolute;
  top: 72px;
  right: 42px;
  bottom: 12px;
  left: 18px;
  content: "";
  transform: rotate(-3deg);
  background: var(--blue);
}
.device-pair .device { position: absolute; width: 290px; }
.device-front { z-index: 2; top: 0; left: 40px; }
.device-back { z-index: 1; top: 110px; right: 0; transform: rotate(3deg); }

.games-band { position: relative; min-height: 820px; overflow: hidden; padding: 110px 0 0; background: var(--ink); color: #ffffff; }
.games-band::before { position: absolute; top: 0; right: 0; width: 34%; height: 100%; content: ""; background: var(--pink); }
.games-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 440px; align-items: center; gap: 95px; }
.games-copy { align-self: center; padding-bottom: 100px; }
.games-copy .section-kicker { color: var(--yellow); }
.games-copy > p:not(.section-kicker) { color: rgba(255, 255, 255, 0.72); }
.games-device { align-self: end; width: 355px; margin: 0 auto -150px; transform: rotate(2deg); }
.mode-list { margin-top: 42px; border-top: 1px solid rgba(255, 255, 255, 0.28); }
.mode-list > div { display: grid; grid-template-columns: 90px 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.28); }
.mode-list strong { color: var(--pink); font-size: 24px; }
.mode-list span { color: rgba(255, 255, 255, 0.78); font-size: 16px; }

.safety-band { padding: 120px 0; background: var(--blue); color: #ffffff; }
.safety-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(400px, 0.8fr); gap: 100px; }
.safety-band .section-kicker { color: var(--yellow); }
.safety-band h2 { max-width: 650px; }
.safety-grid > div > p:not(.section-kicker) { color: rgba(255, 255, 255, 0.8); }
.safety-list { margin: 0; padding: 0; border-top: 2px solid #ffffff; list-style: none; }
.safety-list li { display: grid; grid-template-columns: 42px 1fr; gap: 4px 16px; padding: 22px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.34); }
.safety-list li > span { grid-row: 1 / span 2; color: var(--yellow); font-size: 13px; font-weight: 800; }
.safety-list strong { font-size: 19px; }
.safety-list p { margin: 1px 0 0; color: rgba(255, 255, 255, 0.72); }

.faq-section { background: #ffffff; }
.faq-section h2 { margin-bottom: 48px; }
.faq-list { border-top: 2px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  position: relative;
  padding: 25px 54px 25px 0;
  font-size: 19px;
  font-weight: 750;
  list-style: none;
  cursor: pointer;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  position: absolute;
  top: 22px;
  right: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  content: "+";
  font-size: 20px;
  line-height: 1;
}
.faq-list details[open] summary::after { content: "−"; background: var(--ink); color: #ffffff; }
.faq-list details p { max-width: 700px; margin: 0; padding: 0 54px 28px 0; color: var(--ink-soft); font-size: 16px; }

.closing-cta { position: relative; min-height: 560px; overflow: hidden; padding: 108px 0; display: flex; align-items: center; background: var(--pink); color: #ffffff; }
.closing-cta .shell { position: relative; z-index: 1; }
.closing-cta .section-kicker { color: var(--yellow); }
.closing-cta h2 { max-width: 900px; margin-bottom: 38px; font-size: 64px; }
.closing-mark {
  position: absolute;
  top: -240px;
  right: 5%;
  color: rgba(23, 24, 36, 0.16);
  font-family: Georgia, serif;
  font-size: 760px;
  font-weight: 800;
  line-height: 1;
}

.page-intro { position: relative; min-height: 410px; overflow: hidden; padding: 96px 0; display: flex; align-items: center; background: var(--blue); color: #ffffff; }
.page-intro::after {
  position: absolute;
  top: -175px;
  right: 7%;
  content: "?";
  color: rgba(255, 255, 255, 0.11);
  font-family: Georgia, serif;
  font-size: 520px;
  font-weight: 800;
  line-height: 1;
}
.page-intro .shell { position: relative; z-index: 1; }
.page-intro .eyebrow { color: var(--yellow); }
.page-intro h1 { max-width: 920px; }
.page-intro .lead, .section-lead { max-width: 780px; margin: 25px 0 0; color: rgba(255, 255, 255, 0.78); font-size: 19px; line-height: 1.65; }

.article-grid {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px minmax(0, 740px);
  justify-content: space-between;
  align-items: start;
  gap: 80px;
}
.article-grid aside { position: sticky; top: 108px; }
.article-index { margin: 0; padding: 0; border-top: 2px solid var(--ink); list-style: none; }
.article-index li { border-bottom: 1px solid var(--line); }
.article-index a { display: block; padding: 13px 0; color: var(--ink-soft); font-size: 14px; font-weight: 700; text-decoration: none; }
.article-index a:hover { color: var(--pink-dark); }
.legal h2, .prose h2 { margin: 64px 0 16px; font-size: 32px; line-height: 1.18; scroll-margin-top: 112px; }
.legal h2:first-child, .prose h2:first-child { margin-top: 0; }
.legal h3, .prose h3 { margin: 34px 0 12px; font-size: 22px; line-height: 1.25; }
.legal p, .legal li, .prose p, .prose li { color: var(--ink-soft); font-size: 17px; line-height: 1.72; }
.legal ul, .prose ul { padding-left: 22px; }
.legal li + li, .prose li + li { margin-top: 10px; }
.legal a, .prose a { color: var(--blue-dark); font-weight: 700; }
.legal-note, .notice { margin: 0 0 34px; padding: 22px 24px; border-left: 5px solid var(--pink); background: var(--quiet); }
.meta-line { color: #777b8c !important; font-size: 14px !important; font-weight: 700; }

.support-layout { display: grid; grid-template-columns: minmax(0, 0.86fr) minmax(430px, 1.14fr); align-items: start; gap: 90px; }
.support-contact {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--quiet);
  box-shadow: 10px 10px 0 var(--blue);
}
.support-contact h2 { margin: 0 0 10px; font-size: 32px; line-height: 1.2; }
.support-contact > p { margin: 0 0 26px; color: var(--ink-soft); }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.field { margin-top: 18px; }
.field label, .field > span { display: block; margin-bottom: 7px; font-size: 14px; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  border: 1px solid #bcc2cf;
  border-radius: 5px;
  background: #ffffff;
  color: var(--ink);
}
.field textarea { min-height: 170px; resize: vertical; }
.field small, .form-note { display: block; margin-top: 8px; color: #6c7182; font-size: 12px; line-height: 1.5; }
.check-field { margin: 22px 0; display: grid; grid-template-columns: 21px 1fr; align-items: start; gap: 10px; color: var(--ink-soft); font-size: 13px; }
.check-field input { width: 18px; height: 18px; margin: 2px 0 0; }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0 0 0 0) !important; }
.form-error, .form-success { margin: 18px 0; padding: 13px 15px; border-radius: 5px; font-size: 14px; font-weight: 700; }
.form-error { border: 1px solid #ed9aad; background: #ffe9ee; color: #80162e; }
.form-success { border: 1px solid #78c5a6; background: #e1f7ed; color: #174f3b; }
.quick-links { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px; }
.quick-links a { padding: 9px 12px; border: 1px solid var(--line); border-radius: 5px; color: var(--ink); font-size: 13px; font-weight: 800; text-decoration: none; }

.site-footer { padding: 78px 0 28px; background: var(--ink); color: #ffffff; }
.footer-grid, .footer-bottom { width: min(var(--content), calc(100% - 48px)); margin-right: auto; margin-left: auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 64px; }
.site-footer .brand { color: #ffffff; }
.footer-brand p { max-width: 300px; margin: 20px 0 0; color: rgba(255, 255, 255, 0.62); font-size: 15px; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-column strong { margin-bottom: 8px; color: var(--yellow); font-size: 13px; text-transform: uppercase; }
.footer-column a { color: rgba(255, 255, 255, 0.74); font-size: 14px; text-decoration: none; }
.footer-column a:hover { color: #ffffff; }
.footer-bottom {
  margin-top: 62px;
  padding-top: 23px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

@media (max-width: 1040px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr) 350px; gap: 35px; }
  .hero h1 { font-size: 64px; }
  .hero-photo { width: 54%; }
  .manifesto-grid { grid-template-columns: 120px 1fr; }
  .manifesto-copy { grid-column: 2; max-width: 660px; }
  .showcase-grid, .showcase-grid.reverse { grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr); gap: 48px; }
  .section-heading h2, .showcase-copy h2, .games-copy h2, .safety-band h2, .faq-section h2, .page-intro h1 { font-size: 48px; }
  .games-grid { grid-template-columns: minmax(0, 1fr) 360px; gap: 60px; }
  .safety-grid { gap: 60px; }
}

@media (max-width: 820px) {
  .site-nav {
    position: absolute;
    z-index: 99;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    height: calc(100svh - 68px);
    padding: 34px 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-y: auto;
    background: #ffffff;
  }
  .menu-open .site-nav { display: flex; }
  .site-nav a { padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 21px; }
  .site-nav a:not(.nav-cta)::after { display: none; }
  .site-nav .nav-cta { margin-top: 24px; padding: 15px 18px; text-align: center; }
  .language-link { padding-left: 0; border-left: 0; }
  .menu-button { display: block; }
  .nav-shell { min-height: 68px; }
  .hero { min-height: 690px; height: calc(100svh - 86px); max-height: 790px; }
  .hero::before { position: absolute; z-index: 1; inset: 0; content: ""; background: rgba(7, 62, 144, 0.74); }
  .hero::after { display: none; }
  .hero-photo { width: 100%; clip-path: none; }
  .hero-photo::after { background: rgba(23, 24, 36, 0.2); }
  .hero-mark { z-index: 1; top: -100px; left: -65px; font-size: 400px; }
  .hero-inner { z-index: 2; grid-template-columns: 1fr; align-content: space-between; gap: 24px; padding: 50px 0 76px; }
  .hero-copy { max-width: 620px; }
  .hero h1 { max-width: 560px; font-size: 56px; }
  .hero-detail { max-width: 530px; margin-top: 20px; font-size: 17px; }
  .hero-actions { margin-top: 24px; }
  .hero-profile { justify-self: stretch; width: 100%; margin: 0; }
  .profile-meta { display: none; }
  .question-panel { max-width: 570px; margin-left: auto; }
  .manifesto, .section, .safety-band { padding-top: 88px; padding-bottom: 88px; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 24px; }
  .manifesto-copy { grid-column: auto; max-width: 660px; }
  .manifesto h2 { font-size: 44px; }
  .question-track { justify-content: flex-start; transform: translateX(-180px); }
  .steps { grid-template-columns: 1fr; gap: 42px; }
  .step-number { margin-bottom: 24px; }
  .step p { max-width: 520px; }
  .showcase { min-height: 0; padding: 88px 0; }
  .showcase-grid, .showcase-grid.reverse, .games-grid, .safety-grid, .support-layout { grid-template-columns: 1fr; gap: 64px; }
  .showcase-grid.reverse .device-pair { order: 2; }
  .device-stage { min-height: 680px; }
  .device-pair { min-height: 700px; }
  .device-pair::before { right: 8%; left: 8%; }
  .device-front { left: 14%; }
  .device-back { right: 10%; }
  .games-band { min-height: 0; padding-top: 88px; }
  .games-band::before { top: auto; bottom: 0; width: 100%; height: 44%; }
  .games-copy { padding-bottom: 0; }
  .games-device { margin-bottom: -180px; }
  .safety-grid { gap: 58px; }
  .page-intro { min-height: 360px; padding: 76px 0; }
  .article-grid { grid-template-columns: 1fr; gap: 48px; }
  .article-grid aside { position: static; }
  .article-index { columns: 2; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .shell, .narrow, .nav-shell, .footer-grid, .footer-bottom, .article-grid, .hero-inner { width: min(100% - 32px, var(--content)); }
  .brand { font-size: 21px; }
  .brand img { width: 38px; height: 38px; }
  .hero { min-height: 650px; height: calc(100svh - 84px); max-height: 760px; }
  .hero-inner { padding: 34px 0 70px; }
  .hero h1 { font-size: 45px; line-height: 1; }
  .hero-detail { font-size: 15px; line-height: 1.45; }
  .hero-actions { align-items: stretch; gap: 12px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { justify-content: center; min-height: 44px; }
  .question-panel { grid-template-columns: 28px 1fr; gap: 8px; padding: 18px; }
  .quote-mark { font-size: 40px; }
  .question-panel p { font-size: 18px; }
  .question-panel small { font-size: 10px; }
  .hero-cue { min-height: 48px; padding: 13px 16px; font-size: 11px; }
  .manifesto, .section, .safety-band { padding-top: 72px; padding-bottom: 72px; }
  .manifesto h2, .section-heading h2, .showcase-copy h2, .games-copy h2, .safety-band h2, .faq-section h2, .page-intro h1 { font-size: 38px; }
  .section-heading { margin-bottom: 52px; }
  .question-track { min-width: 1200px; min-height: 78px; gap: 24px; transform: translateX(-260px); }
  .question-track span { font-size: 19px; }
  .question-track i { font-size: 40px; }
  .showcase { padding: 72px 0; }
  .showcase-copy > p:not(.section-kicker), .games-copy > p:not(.section-kicker), .safety-grid > div > p:not(.section-kicker) { font-size: 17px; }
  .device-stage { min-height: 590px; }
  .device { width: 275px; border-width: 7px; border-radius: 39px; }
  .device::after { border-radius: 31px; }
  .stage-note { right: -2px; bottom: 48px; width: 180px; padding: 15px; box-shadow: 7px 7px 0 var(--ink); }
  .stage-note strong { font-size: 18px; }
  .stage-note span { font-size: 12px; }
  .device-pair { min-height: 590px; }
  .device-pair .device { width: 225px; }
  .device-front { left: 0; }
  .device-back { top: 100px; right: 0; }
  .games-band { padding-top: 72px; }
  .games-grid { gap: 46px; }
  .games-device { width: 275px; margin-bottom: -135px; }
  .mode-list > div { grid-template-columns: 70px 1fr; }
  .safety-list li { grid-template-columns: 32px 1fr; }
  .cta-actions { align-items: stretch; }
  .cta-actions .button { width: 100%; }
  .faq-list summary { padding-right: 46px; font-size: 17px; }
  .closing-cta { min-height: 500px; padding: 78px 0; }
  .closing-cta h2 { font-size: 43px; }
  .closing-mark { top: -80px; right: -100px; font-size: 480px; }
  .page-intro { min-height: 330px; padding: 64px 0; }
  .page-intro .lead { font-size: 16px; }
  .page-intro::after { top: -70px; right: -40px; font-size: 360px; }
  .article-index { columns: 1; }
  .legal h2, .prose h2 { margin-top: 50px; font-size: 27px; }
  .legal p, .legal li, .prose p, .prose li { font-size: 16px; }
  .support-contact { padding: 24px 18px; box-shadow: 6px 6px 0 var(--blue); }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 42px 26px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

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