:root {
  --bg: #08090c;
  --bg-soft: #0e1015;
  --surface: #13151b;
  --surface-2: #191c23;
  --text: #f7f7f8;
  --muted: #a6aab3;
  --subtle: #717783;
  --line: rgba(255, 255, 255, .1);
  --red: #f31335;
  --red-dark: #a8001e;
  --red-soft: #ff6c82;
  --gold: #f0c86b;
  --green: #45d68a;
  --header: 68px;
  --radius: 24px;
  --shadow: 0 22px 65px rgba(0, 0, 0, .38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header) + 20px); }
body {
  margin: 0;
  padding-top: var(--header);
  overflow-x: clip;
  color: var(--text);
  background:
    radial-gradient(circle at 88% 3%, rgba(243, 19, 53, .12), transparent 28rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { max-width: 100%; height: auto; display: block; }
.shell { width: min(100% - 32px, 1180px); margin-inline: auto; }
.skip-link { position: fixed; left: 14px; top: -70px; z-index: 100; padding: 12px 16px; border-radius: 10px; color: #000; background: #fff; }
.skip-link:focus { top: 10px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 11, .9);
  backdrop-filter: blur(18px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 0; }
.brand-mark { width: 40px; height: 40px; flex: 0 0 auto; overflow: hidden; border-radius: 12px; box-shadow: 0 0 24px rgba(243, 19, 53, .16); }
.brand-mark img { width: 100%; height: 100%; display: block; object-fit: cover; }
.brand-copy { display: flex; flex-direction: column; }
.brand-copy strong { font-size: 17px; line-height: 1; letter-spacing: .03em; }
.brand-copy small { margin-top: 4px; color: var(--subtle); font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.nav-toggle { position: relative; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 14px; color: white; background: rgba(255,255,255,.04); cursor: pointer; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { content: ""; position: absolute; left: 12px; top: 21px; width: 20px; height: 2px; display: block; border-radius: 3px; background: currentColor; transition: transform .2s, opacity .2s; }
.nav-toggle::before { transform: translateY(-6px); }
.nav-toggle::after { transform: translateY(6px); }
.nav-open .nav-toggle::before { transform: rotate(45deg); }
.nav-open .nav-toggle span { opacity: 0; }
.nav-open .nav-toggle::after { transform: rotate(-45deg); }
.site-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: calc(100dvh - var(--header));
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px 16px calc(100px + env(safe-area-inset-bottom));
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  background: #08090c;
  transition: opacity .2s, transform .2s, visibility .2s;
}
.nav-open .site-nav { visibility: visible; opacity: 1; transform: translateY(0); }
.site-nav a { min-height: 52px; padding: 0 15px; display: flex; align-items: center; border-radius: 14px; color: #c8cbd1; font-size: 15px; font-weight: 700; }
.site-nav a[aria-current="page"] { color: white; background: rgba(255,255,255,.06); }
.site-nav .nav-cta { justify-content: center; margin-top: 8px; color: white; background: linear-gradient(135deg, var(--red), var(--red-dark)); }

.eyebrow, .section-kicker { margin: 0 0 14px; color: var(--red-soft); font-size: 10px; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ""; width: 24px; height: 2px; border-radius: 9px; background: var(--red); }
.button { min-height: 52px; padding: 0 20px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; border: 1px solid transparent; border-radius: 999px; font-size: 14px; font-weight: 800; text-align: center; }
.button-primary { color: white; background: linear-gradient(135deg, #ff2749, #b90022); box-shadow: 0 14px 35px rgba(243, 19, 53, .24); }
.button-secondary { border-color: var(--line); background: rgba(255,255,255,.045); }
.text-link { min-height: 44px; margin-top: 18px; display: inline-flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--red); font-size: 14px; font-weight: 800; }
.muted { color: var(--muted); }

.hero { padding-block: 28px 42px; }
.hero-grid { display: grid; gap: 22px; }
.hero h1, .page-hero h1 { margin: 0; font-size: clamp(40px, 11vw, 86px); line-height: .96; letter-spacing: -.065em; }
.hero h1 em { color: var(--red); font-style: normal; }
.hero-lede, .page-summary { margin: 22px 0 0; color: #b8bbc3; font-size: 16px; line-height: 1.72; }
.hero-actions { display: grid; gap: 10px; margin-top: 28px; }
.source-note { margin-top: 18px; display: flex; gap: 9px; align-items: flex-start; color: #858a94; font-size: 11px; line-height: 1.5; }
.source-note::before { content: ""; width: 7px; height: 7px; flex: 0 0 auto; margin-top: 5px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(69,214,138,.09); }
.hero-copy { min-width: 0; }
.hero-device { position: relative; width: min(66vw, 270px); margin: 0 auto; padding: 18px 12px 22px; display: grid; justify-items: center; border: 1px solid var(--line); border-radius: 34px; background: radial-gradient(circle at 50% 10%, rgba(243,19,53,.28), transparent 14rem), linear-gradient(155deg,#25080f,#08090c 58%); box-shadow: var(--shadow); }
.hero-phone { width: 100%; padding: 5px; overflow: hidden; border: 1px solid rgba(255,255,255,.22); border-radius: 28px; background: #020304; box-shadow: 0 24px 60px rgba(0,0,0,.58), 0 0 40px rgba(243,19,53,.12); }
.hero-phone img { width: 100%; border-radius: 22px; }
.hero-screen-label { width: calc(100% - 24px); margin-top: -48px; padding: 10px 12px; position: relative; z-index: 1; border: 1px solid rgba(255,255,255,.13); border-radius: 13px; background: rgba(7,8,10,.86); backdrop-filter: blur(12px); }
.hero-screen-label span { display: block; color: var(--red-soft); font-size: 8px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.hero-screen-label strong { display: block; margin-top: 4px; font-size: 12px; }
.hero-support { min-width: 0; }

.quick-path { display: grid; gap: 10px; padding-bottom: 54px; }
.quick-card { min-height: 132px; padding: 20px; display: grid; grid-template-columns: 34px 1fr auto; gap: 8px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.quick-card > span { color: var(--red); font-size: 10px; font-weight: 850; }
.quick-card h2 { margin: 0 0 7px; font-size: 18px; }
.quick-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.quick-card b { color: var(--subtle); }

.fact-strip { border-block: 1px solid var(--line); background: rgba(255,255,255,.025); }
.fact-strip-grid { display: grid; grid-template-columns: 1fr 1fr; }
.fact-strip-grid > div { min-height: 98px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.fact-strip-grid > div:nth-child(odd) { padding-right: 16px; border-right: 1px solid var(--line); }
.fact-strip-grid > div:nth-child(even) { padding-left: 16px; }
.fact-strip-grid > div:nth-last-child(-n+2) { border-bottom: 0; }
.fact-strip span, .meta-label { display: block; color: var(--subtle); font-size: 8px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.fact-strip strong { display: block; margin-top: 8px; font-size: 13px; line-height: 1.35; }

.section { padding-block: 72px; }
.section-alt { border-block: 1px solid var(--line); background: var(--bg-soft); }
.section-heading { max-width: 720px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading h2 { margin: 0; font-size: clamp(34px, 9vw, 58px); line-height: 1.04; letter-spacing: -.055em; }
.section-heading > p:last-child { margin: 17px 0 0; color: var(--muted); font-size: 15px; line-height: 1.72; }
.two-col { display: grid; gap: 32px; }
.body-copy { color: #adb1ba; font-size: 15px; line-height: 1.78; }
.body-copy p { margin: 0 0 16px; }
.visual-panel { position: relative; min-height: 310px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #050607; }
.visual-panel img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: contain; }

.app-showcase { display: grid; gap: 34px; align-items: center; }
.device-stage { min-height: 520px; padding: 26px 18px; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: radial-gradient(circle at 50% 8%, rgba(243,19,53,.24), transparent 18rem), linear-gradient(155deg,#240810,#08090c 58%); }
.device-frame { width: min(78vw, 330px); padding: 7px; border: 1px solid rgba(255,255,255,.2); border-radius: 38px; background: #020304; box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 0 50px rgba(243,19,53,.12); }
.device-frame img { width: 100%; border-radius: 31px; }
.media-copy .section-heading { max-width: 640px; }
.media-copy .body-copy { margin-top: 24px; }
.media-points { margin: 24px 0 0; padding: 0; display: grid; gap: 10px; list-style: none; }
.media-points li { padding: 14px 16px; border: 1px solid var(--line); border-radius: 14px; color: #c3c6cd; background: rgba(255,255,255,.025); font-size: 12px; line-height: 1.55; }
.media-points strong { color: white; }
.image-disclaimer { margin: 13px 0 0; color: var(--subtle); font-size: 10px; line-height: 1.55; text-align: center; }
.poster-panel { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #050607; box-shadow: var(--shadow); }
.poster-panel img { width: 100%; }
.poster-panel figcaption { padding: 15px 17px; border-top: 1px solid var(--line); color: var(--subtle); background: var(--surface); font-size: 10px; line-height: 1.55; }
.answer-grid { display: grid; gap: 12px; margin-top: 34px; }
.answer-card { padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.answer-card span { color: var(--red-soft); font-size: 9px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.answer-card h3 { margin: 14px 0 9px; font-size: 20px; }
.answer-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.intent-grid, .task-grid, .feature-grid, .facts-grid, .related-grid, .game-grid { display: grid; gap: 12px; margin-top: 34px; }
.intent-card, .task-card, .feature-card, .fact-card, .related-card { padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(150deg, rgba(255,255,255,.05), rgba(255,255,255,.018)); }
.intent-card span, .task-card > span, .feature-card > span, .related-card > span { color: var(--red-soft); font-size: 9px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.intent-card h3, .task-card h2, .feature-card h2, .related-card h2 { margin: 16px 0 9px; font-size: 21px; letter-spacing: -.025em; }
.intent-card p, .task-card p, .feature-card p, .related-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.task-card, .related-card { min-height: 190px; display: flex; flex-direction: column; }
.task-card b, .related-card b { margin-top: auto; padding-top: 22px; color: var(--red-soft); font-size: 11px; }

.game-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.game-card { margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); box-shadow: 0 12px 30px rgba(0,0,0,.2); }
.game-card img, .game-card .game-art { width: 100%; display: block; aspect-ratio: 13 / 14; object-fit: cover; object-position: center; background: #090a0d; }
.game-card figcaption { padding: 13px; }
.game-card small { display: block; color: var(--red-soft); font-size: 8px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.game-card strong { display: block; margin-top: 5px; font-size: 13px; line-height: 1.3; }
.content-note { margin-top: 24px; padding: 18px; border-left: 3px solid var(--gold); color: #b8b2a5; background: rgba(240,200,107,.06); font-size: 12px; line-height: 1.65; }

.trust-grid { display: grid; gap: 12px; margin-top: 34px; }
.trust-card { padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.025); }
.trust-card.confirmed { border-color: rgba(69,214,138,.28); background: rgba(69,214,138,.055); }
.trust-card h3 { margin: 12px 0 15px; font-size: 21px; }
.trust-card ul { margin: 0; padding: 0; display: grid; gap: 10px; list-style: none; color: var(--muted); font-size: 13px; line-height: 1.55; }
.trust-card li { position: relative; padding-left: 18px; }
.trust-card li::before { content: ""; position: absolute; left: 0; top: .55em; width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
.trust-card.confirmed li::before { background: var(--green); }

.page-hero { padding-block: 34px 48px; }
.breadcrumb { min-height: 40px; margin-bottom: 40px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; color: var(--subtle); font-size: 11px; }
.breadcrumb strong { color: #b7bbc3; }
.page-hero-grid { display: grid; gap: 26px; }
.review-card { padding: 20px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.review-card strong { display: block; margin-top: 13px; font-size: 16px; }
.review-card p { margin: 7px 0 0; color: var(--muted); font-size: 11px; line-height: 1.55; }

.download-box { display: grid; gap: 18px; padding: 22px; border: 1px solid rgba(243,19,53,.35); border-radius: 24px; background: radial-gradient(circle at 90% 10%, rgba(243,19,53,.18), transparent 18rem), var(--surface); }
.download-box h2 { margin: 12px 0 9px; font-size: clamp(28px, 8vw, 45px); line-height: 1.06; letter-spacing: -.04em; }
.download-box p { color: var(--muted); font-size: 13px; line-height: 1.65; }
.route { padding: 14px; overflow-wrap: anywhere; border: 1px solid var(--line); border-radius: 14px; color: #d4d6db; background: rgba(0,0,0,.22); font: 11px/1.55 ui-monospace, SFMono-Regular, Menlo, monospace; }
.download-action { padding: 22px; border: 1px solid var(--line); border-radius: 20px; text-align: center; background: rgba(2,3,5,.45); }
.download-action img { width: 62px; height: 62px; display: block; margin: 0 auto 12px; border-radius: 18px; }
.download-action strong { display: block; margin: 8px 0 16px; font-size: 22px; }
.download-action .button { width: 100%; }
.download-action small { display: block; margin-top: 12px; color: var(--subtle); font-size: 10px; line-height: 1.5; }

.fact-card { min-height: 138px; }
.fact-card strong { display: block; margin-top: 22px; font-size: 18px; overflow-wrap: anywhere; }
.fact-card small { display: block; margin-top: 7px; color: #858b96; font-size: 10px; line-height: 1.45; }
.steps { margin: 34px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.steps li { min-height: 118px; padding: 22px 0; display: grid; grid-template-columns: 42px 1fr; gap: 8px; border-bottom: 1px solid var(--line); }
.steps > li > span { color: var(--red-soft); font-size: 10px; font-weight: 850; }
.steps h2 { margin: 0 0 7px; font-size: 19px; }
.steps p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.notice { margin-top: 22px; padding: 20px; border: 1px solid rgba(240,200,107,.28); border-radius: 18px; background: rgba(240,200,107,.055); }
.notice strong { display: block; color: var(--gold); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.notice h2 { margin: 9px 0 7px; font-size: 20px; }
.notice p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.faq-list { margin-top: 30px; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 14px; cursor: pointer; list-style: none; font-size: 15px; font-weight: 760; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--red-soft); font-size: 22px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: -2px 30px 20px 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.cta-band { margin-bottom: 86px; padding: 30px 22px; border: 1px solid rgba(243,19,53,.34); border-radius: 24px; background: radial-gradient(circle at 88% 50%, rgba(243,19,53,.25), transparent 15rem), linear-gradient(145deg,#2d070f,#0d0f14 65%); }
.cta-band h2 { margin: 10px 0 8px; font-size: 31px; letter-spacing: -.04em; }
.cta-band p { margin: 0 0 22px; color: var(--muted); font-size: 13px; line-height: 1.6; }

.site-footer { padding-top: 56px; border-top: 1px solid var(--line); background: #050609; }
.footer-grid { display: grid; gap: 34px; padding-bottom: 38px; }
.footer-brand p { max-width: 440px; color: #898e98; font-size: 12px; line-height: 1.65; }
.footer-brand > small { color: #616772; font-size: 10px; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.footer-links h2 { margin: 0 0 12px; color: var(--subtle); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.footer-links a { min-height: 38px; display: flex; align-items: center; color: #b2b6bf; font-size: 12px; }
.footer-bottom { min-height: 76px; padding-block: 16px; display: flex; flex-direction: column; justify-content: center; gap: 7px; border-top: 1px solid var(--line); color: #626872; font-size: 9px; line-height: 1.5; }
.mobile-download { position: fixed; z-index: 45; left: 12px; right: 12px; bottom: calc(10px + env(safe-area-inset-bottom)); min-height: 54px; display: flex; align-items: center; justify-content: center; gap: 12px; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; color: white; background: linear-gradient(135deg, #ff2749, #b40020); box-shadow: 0 18px 45px rgba(0,0,0,.5); font-size: 14px; font-weight: 850; }
body { padding-bottom: calc(84px + env(safe-area-inset-bottom)); }

.legal { max-width: 800px; }
.legal h2 { margin: 42px 0 12px; font-size: 24px; }
.legal p, .legal li { color: var(--muted); font-size: 14px; line-height: 1.75; }
.legal ul { padding-left: 20px; }
.error-page { min-height: calc(100vh - var(--header) - 190px); display: grid; place-items: center; text-align: center; }
.error-page strong { color: rgba(243,19,53,.25); font-size: clamp(100px, 32vw, 240px); line-height: .8; }
.error-page h1 { margin: -12px 0 12px; font-size: 36px; }
.error-page p { max-width: 480px; margin: 0 auto 24px; color: var(--muted); line-height: 1.65; }

@media (min-width: 560px) {
  .shell { width: min(100% - 48px, 1180px); }
  .hero-actions { display: flex; flex-wrap: wrap; }
  .intent-grid, .task-grid, .feature-grid, .facts-grid, .related-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .game-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .trust-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .answer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 860px) {
  :root { --header: 76px; }
  body { padding-bottom: 0; }
  .nav-toggle, .mobile-download { display: none; }
  .site-nav { position: static; inset: auto; padding: 0; visibility: visible; opacity: 1; transform: none; background: transparent; flex-direction: row; align-items: center; gap: 2px; }
  .site-nav a { min-height: 42px; padding-inline: 14px; font-size: 12px; }
  .site-nav .nav-cta { margin: 0 0 0 7px; padding-inline: 19px; }
  .hero { padding-block: 60px 58px; }
  .hero-grid { grid-template-columns: minmax(0,1fr) minmax(360px,.72fr); grid-template-rows: auto auto; column-gap: 76px; row-gap: 0; align-items: center; }
  .hero-copy { grid-column: 1; grid-row: 1; align-self: end; }
  .hero-support { grid-column: 1; grid-row: 2; align-self: start; }
  .hero-device { width: min(100%, 360px); grid-column: 2; grid-row: 1 / span 2; }
  .hero-lede { max-width: 650px; font-size: 17px; }
  .quick-path { grid-template-columns: repeat(3, minmax(0,1fr)); padding-bottom: 76px; }
  .fact-strip-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .fact-strip-grid > div { min-height: 112px; padding: 24px; border-right: 1px solid var(--line); border-bottom: 0 !important; }
  .fact-strip-grid > div:first-child { padding-left: 0; }
  .fact-strip-grid > div:nth-child(even) { padding-left: 24px; }
  .fact-strip-grid > div:last-child { border-right: 0; }
  .section { padding-block: 104px; }
  .two-col { grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: 76px; align-items: center; }
  .app-showcase { grid-template-columns: minmax(340px,.8fr) minmax(0,1.2fr); gap: 78px; }
  .app-showcase.reverse { grid-template-columns: minmax(0,1.15fr) minmax(340px,.85fr); }
  .app-showcase.reverse .device-stage, .app-showcase.reverse .poster-panel { order: 2; }
  .answer-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .visual-panel { min-height: 470px; }
  .intent-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .task-grid { grid-template-columns: repeat(5, minmax(0,1fr)); }
  .task-card { min-height: 255px; padding: 24px; }
  .game-grid { grid-template-columns: repeat(6, minmax(0,1fr)); }
  .page-hero { padding-block: 58px 70px; }
  .page-hero-grid { grid-template-columns: minmax(0,1fr) 320px; gap: 70px; align-items: end; }
  .page-summary { max-width: 760px; font-size: 17px; }
  .download-box { grid-template-columns: minmax(0,1.25fr) minmax(290px,.75fr); padding: 34px; gap: 38px; }
  .facts-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .feature-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .related-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .steps-wrap { display: grid; grid-template-columns: minmax(0,.75fr) minmax(0,1.25fr); gap: 82px; align-items: start; }
  .steps { margin-top: 0; }
  .cta-band { padding: 46px 50px; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
  .cta-band p { margin-bottom: 0; }
  .footer-grid { grid-template-columns: 1.4fr 1fr; align-items: start; gap: 80px; }
}

@media (hover:hover) {
  .site-nav a:hover { color: white; background: rgba(255,255,255,.05); }
  .quick-card:hover, .task-card:hover, .related-card:hover { border-color: rgba(243,19,53,.4); transform: translateY(-3px); }
  .quick-card, .task-card, .related-card { transition: transform .2s, border-color .2s; }
  .game-card img, .game-card .game-art { transition: transform .35s; }
  .game-card:hover img, .game-card:hover .game-art { transform: scale(1.035); }
}

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