@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800&family=Nunito+Sans:wght@400;600;700;800&display=swap');

:root {
  --night-ink: #17130d;
  --charcoal-brown: #211b13;
  --oak-surface: #2b2319;
  --oak-raised: #33291d;
  --parchment: #efe2c1;
  --parchment-soft: #e5d4ab;
  --paper-light: #f6edda;
  --ink-primary: #241c12;
  --ink-secondary: #554633;
  --ink-tertiary: #79684e;
  --ink-muted: #9c8b6d;
  --gold: #c79a47;
  --gold-bright: #e3bd69;
  --gold-deep: #8c6325;
  --ember: #9f3c24;
  --border-soft: rgba(93, 67, 33, .18);
  --border-standard: rgba(93, 67, 33, .28);
  --border-emphasis: rgba(140, 99, 37, .56);
  --border-night: rgba(227, 189, 105, .2);
  --focus-ring: #f1c76d;
  --font-display: 'Cinzel', Georgia, serif;
  --font-body: 'Nunito Sans', Arial, sans-serif;
  --shadow-paper: 0 18px 45px rgba(24, 17, 8, .14), 0 2px 4px rgba(24, 17, 8, .08);
  --shadow-raised: 0 26px 65px rgba(12, 8, 3, .35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink-primary); background: var(--paper-light); font-family: var(--font-body); line-height: 1.6; }
body.modal-open { overflow: hidden; }
button, a { font: inherit; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button { color: inherit; }
:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 4px; }
[hidden] { display: none !important; }

.skip-link { position: fixed; top: 12px; left: 12px; z-index: 999; padding: 10px 16px; background: var(--parchment); transform: translateY(-160%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: absolute; inset: 0 0 auto; z-index: 20; border-bottom: 1px solid rgba(227,189,105,.14); color: var(--parchment); }
.nav-shell { width: min(1180px, calc(100% - 40px)); height: 88px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: inherit; text-decoration: none; }
.brand-mark { width: 40px; height: 46px; display: grid; place-items: center; color: var(--gold-bright); }
.brand-mark svg { width: 100%; fill: none; stroke: currentColor; stroke-width: 1.6; }
.brand strong { display: block; font-family: var(--font-display); font-size: 15px; letter-spacing: .075em; text-transform: uppercase; }
.brand small { display: block; color: rgba(239,226,193,.6); font-size: 10px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 34px; margin-left: auto; }
.nav-links a, .nav-cta { font-size: 13px; font-weight: 800; letter-spacing: .06em; text-decoration: none; }
.nav-links a { color: rgba(239,226,193,.72); }
.nav-links a:hover { color: var(--gold-bright); }
.nav-cta { display: inline-flex; align-items: center; gap: 12px; padding: 10px 0 8px; color: var(--parchment); border-bottom: 1px solid var(--gold); }
.nav-cta span { color: var(--gold-bright); }

.hero { position: relative; min-height: 800px; padding: 185px max(24px, calc((100vw - 1180px)/2)) 120px; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr); align-items: center; gap: 80px; overflow: hidden; color: var(--parchment); background-color: var(--night-ink); background-image: radial-gradient(circle at 78% 39%, rgba(199,154,71,.09), transparent 28%), radial-gradient(circle at 11% 100%, rgba(159,60,36,.09), transparent 27%), repeating-linear-gradient(115deg, rgba(255,255,255,.009) 0 1px, transparent 1px 8px); }
.hero::before { content: ''; position: absolute; inset: auto 0 0; height: 10px; opacity: .7; background: repeating-linear-gradient(90deg, var(--gold-deep) 0 18px, transparent 18px 32px); clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%); }
.hero-ornament { position: absolute; left: 4vw; top: 48%; color: rgba(199,154,71,.18); font-size: 92px; }
.hero-content { position: relative; z-index: 2; min-width: 0; width: 100%; }
.eyebrow { margin: 0 0 18px; color: var(--gold-deep); font-family: var(--font-display); font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.hero .eyebrow { color: var(--gold-bright); }
.hero .eyebrow span { display: inline-flex; align-items: center; gap: 12px; }
.hero .eyebrow span::before { content: ''; width: 30px; height: 1px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 760px; margin-bottom: 26px; font-family: var(--font-display); font-size: clamp(46px, 5.4vw, 76px); line-height: 1.06; letter-spacing: -.035em; text-transform: uppercase; }
h1 em { color: var(--gold-bright); font-style: normal; }
.hero-copy { max-width: 650px; margin-bottom: 34px; color: rgba(239,226,193,.7); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; border: 0; border-radius: 2px; padding: 13px 22px; font-weight: 800; letter-spacing: .025em; text-decoration: none; cursor: pointer; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button-primary { color: var(--night-ink); background: var(--gold-bright); box-shadow: inset 0 0 0 1px rgba(255,255,255,.22), 5px 5px 0 var(--gold-deep); }
.button-primary:hover { color: var(--night-ink); background: #f0cd7d; transform: translate(-2px, -2px); }
.button-primary:active { transform: translate(3px, 3px); box-shadow: inset 0 0 0 1px rgba(255,255,255,.22), 2px 2px 0 var(--gold-deep); }
.text-link { color: var(--parchment); font-size: 14px; font-weight: 800; letter-spacing: .045em; text-underline-offset: 6px; }
.text-link:hover { color: var(--gold-bright); }
.hero-facts { margin: 70px 0 0; padding: 0; display: flex; gap: 44px; list-style: none; }
.hero-facts li { display: grid; grid-template-columns: auto auto; align-items: baseline; column-gap: 9px; }
.hero-facts strong { color: var(--gold-bright); font-family: var(--font-display); font-size: 28px; }
.hero-facts span { color: rgba(239,226,193,.5); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.hero-map { position: relative; width: 100%; max-width: 500px; aspect-ratio: .86; justify-self: end; border: 1px solid rgba(227,189,105,.28); background-color: #d7c493; background-image: repeating-linear-gradient(0deg, rgba(72,49,22,.035) 0 1px, transparent 1px 6px); box-shadow: var(--shadow-raised); transform: rotate(1.5deg); }
.hero-map::before, .hero-map::after { content: ''; position: absolute; inset: 11px; border: 1px solid rgba(71,47,18,.38); pointer-events: none; }
.hero-map::after { inset: 17px; border-color: rgba(71,47,18,.12); }
.map-title { position: absolute; left: 38px; top: 32px; color: #5e4524; font-family: var(--font-display); font-size: 12px; font-weight: 800; letter-spacing: .24em; }
.map-land { position: absolute; display: block; border: 1px solid rgba(81,56,24,.15); background: rgba(91,106,67,.12); filter: blur(.2px); }
.land-a { width: 42%; height: 29%; top: 16%; left: 12%; border-radius: 42% 58% 49% 51%; transform: rotate(-13deg); }
.land-b { width: 46%; height: 34%; right: 8%; bottom: 14%; border-radius: 56% 44% 63% 37%; transform: rotate(8deg); }
.land-c { width: 24%; height: 20%; left: 10%; bottom: 21%; border-radius: 55% 45% 39% 61%; }
.map-path { position: absolute; display: block; border-top: 3px dotted rgba(105,69,27,.63); transform-origin: left center; }
.map-path-a { width: 48%; left: 21%; top: 31%; transform: rotate(28deg); }
.map-path-b { width: 39%; left: 52%; top: 52%; transform: rotate(32deg); }
.map-path-c { width: 39%; left: 22%; top: 70%; transform: rotate(-14deg); }
.map-node { position: absolute; z-index: 2; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid #6f4b1e; border-radius: 50%; color: var(--parchment); background: var(--ember); box-shadow: 0 0 0 5px rgba(159,60,36,.15); font-family: var(--font-display); font-size: 13px; font-weight: 800; }
.node-a { left: 16%; top: 26%; }.node-b { left: 50%; top: 46%; }.node-c { right: 9%; bottom: 15%; }
.map-note { position: absolute; color: #6e5129; font-family: var(--font-display); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.note-a { left: 12%; top: 38%; }.note-b { left: 52%; top: 58%; }.note-c { right: 5%; bottom: 8%; }
.compass { position: absolute; left: 10%; bottom: 9%; width: 78px; height: 78px; border: 1px solid rgba(75,48,17,.35); border-radius: 50%; color: #6b4c26; display: grid; place-items: center; }
.compass::before, .compass::after { content: ''; position: absolute; background: rgba(75,48,17,.3); }.compass::before { width: 1px; height: 90%; }.compass::after { width: 90%; height: 1px; }
.compass span { position: absolute; top: -18px; font: 800 10px var(--font-display); }.compass i { width: 16px; height: 52px; background: var(--ember); clip-path: polygon(50% 0, 100% 50%, 50% 42%, 0 50%); transform: rotate(25deg); }.compass b { position: absolute; font-size: 12px; }

.quest-section, .benefits-section { padding: 110px max(24px, calc((100vw - 1180px)/2)); background-color: var(--paper-light); background-image: radial-gradient(rgba(83,60,30,.055) .7px, transparent .7px); background-size: 7px 7px; }
.section-heading { max-width: 1180px; margin: 0 auto 56px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 430px); align-items: end; gap: 60px; }
.section-heading h2, .faq-intro h2, .featured-copy h2 { margin-bottom: 0; font-family: var(--font-display); font-size: clamp(34px, 4vw, 52px); line-height: 1.1; letter-spacing: -.035em; text-transform: uppercase; }
.section-heading > p { margin-bottom: 5px; color: var(--ink-tertiary); }

.quest-log { position: relative; max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 80px; }
.quest-log::before { content: ''; position: absolute; left: 50%; top: 45px; bottom: 45px; border-left: 2px dotted rgba(140,99,37,.32); transform: translateX(-1px); }
.quest-card { position: relative; width: 100%; min-width: 0; display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 22px; border: 1px solid var(--border-standard); border-radius: 2px; padding: 14px; color: var(--ink-primary); background: var(--parchment); box-shadow: var(--shadow-paper); text-align: left; cursor: pointer; overflow: visible; transition: transform .22s ease, border-color .22s ease, background .22s ease; }
.quest-card:nth-child(even) { margin-top: 68px; }
.quest-card:nth-child(odd)::after, .quest-card:nth-child(even)::before { content: ''; position: absolute; top: 50%; width: 40px; border-top: 2px dotted rgba(140,99,37,.32); }
.quest-card:nth-child(odd)::after { right: -41px; }.quest-card:nth-child(even)::before { left: -41px; }
.quest-card:hover { border-color: var(--border-emphasis); background: #f2e4c1; transform: translateY(-5px) rotate(-.25deg); }
.quest-card:active { transform: translateY(-1px); }
.quest-number { position: absolute; z-index: 4; left: 24px; top: -12px; padding: 5px 10px 4px; color: var(--parchment); background: var(--ember); font-family: var(--font-display); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; box-shadow: 3px 3px 0 rgba(87,39,25,.2); }
.quest-cover { position: relative; align-self: stretch; min-height: 148px; overflow: hidden; background: var(--ink-secondary); }
.quest-cover::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(246,237,218,.18); pointer-events: none; }
.quest-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.quest-card:hover .quest-cover img { transform: scale(1.045); }
.play-stamp { position: absolute; right: 8px; bottom: 8px; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(246,237,218,.7); border-radius: 50%; color: var(--paper-light); background: rgba(23,19,13,.76); backdrop-filter: blur(4px); font: 800 9px var(--font-display); letter-spacing: .06em; text-transform: uppercase; }
.quest-info { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.quest-kind { margin-bottom: 9px; color: var(--gold-deep); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.quest-info strong { display: block; margin-bottom: 8px; font-family: var(--font-display); font-size: 18px; line-height: 1.2; }
.quest-info > span:nth-child(3) { color: var(--ink-secondary); font-size: 13px; line-height: 1.5; }
.quest-action { margin-top: auto; padding-top: 13px; color: var(--ember); font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.quest-action b { margin-left: 5px; }
.quest-card-featured { border-color: var(--gold-deep); }
.quest-card-featured .quest-number { color: var(--night-ink); background: var(--gold-bright); }

.steps-section { padding: 104px max(24px, calc((100vw - 1180px)/2)); color: var(--parchment); background: var(--charcoal-brown); }
.section-heading-light .eyebrow { color: var(--gold-bright); }
.section-heading-light > p { color: rgba(239,226,193,.6); }
.steps-list { max-width: 1180px; margin: 0 auto; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--border-night); list-style: none; }
.steps-list li { position: relative; min-height: 230px; display: grid; grid-template-columns: 58px 1fr; gap: 22px; padding: 40px 38px 28px 0; border-right: 1px solid var(--border-night); }
.steps-list li + li { padding-left: 38px; }
.steps-list li:last-child { border-right: 0; }
.step-roman { width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid rgba(227,189,105,.42); border-radius: 50%; color: var(--gold-bright); font-family: var(--font-display); font-size: 14px; }
.steps-list strong { display: block; margin: 8px 0 12px; font-family: var(--font-display); font-size: 18px; letter-spacing: .01em; }
.steps-list p { color: rgba(239,226,193,.58); font-size: 14px; line-height: 1.65; }

.featured-section { padding: 100px max(24px, calc((100vw - 1180px)/2)); background: var(--parchment-soft); }
.featured-card { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.08fr .92fr; border: 1px solid var(--border-standard); background: var(--paper-light); box-shadow: var(--shadow-paper); }
.featured-image { position: relative; min-height: 490px; overflow: hidden; }
.featured-image::after { content: ''; position: absolute; inset: 16px; border: 1px solid rgba(246,237,218,.52); pointer-events: none; }
.featured-image img { width: 100%; height: 100%; object-fit: cover; }
.featured-ribbon { position: absolute; left: 0; top: 32px; padding: 9px 20px; color: var(--paper-light); background: var(--ember); font: 800 10px var(--font-display); letter-spacing: .13em; text-transform: uppercase; }
.featured-copy { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 68px; }
.featured-copy::before { content: 'X'; position: absolute; right: 42px; top: 24px; color: rgba(140,99,37,.09); font: 800 110px var(--font-display); }
.featured-lede { margin: 25px 0 24px; color: var(--ink-secondary); font-size: 18px; line-height: 1.7; }
.feature-tags { margin: 0 0 34px; padding: 0; display: flex; gap: 8px; flex-wrap: wrap; list-style: none; }
.feature-tags li { padding: 6px 10px; border: 1px solid var(--border-standard); color: var(--ink-tertiary); font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.featured-copy .button { align-self: flex-start; }

.benefits-section { padding-top: 105px; padding-bottom: 115px; }
.benefit-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--border-standard); border-bottom: 1px solid var(--border-standard); }
.benefit-grid article { position: relative; min-height: 280px; padding: 34px 28px; border-right: 1px solid var(--border-standard); }
.benefit-grid article:last-child { border-right: 0; }
.benefit-icon { width: 45px; height: 45px; display: grid; place-items: center; margin-bottom: 38px; border: 1px solid var(--border-standard); border-radius: 50%; color: var(--ember); font-family: var(--font-display); font-size: 18px; }
.benefit-no { position: absolute; right: 18px; top: 20px; color: var(--ink-muted); font: 800 10px var(--font-display); letter-spacing: .08em; }
.benefit-grid h3 { margin-bottom: 12px; font-family: var(--font-display); font-size: 17px; }
.benefit-grid article > p:last-child { color: var(--ink-tertiary); font-size: 14px; }

.faq-section { padding: 105px max(24px, calc((100vw - 1180px)/2)); display: grid; grid-template-columns: 350px minmax(0, 1fr); gap: 100px; color: var(--parchment); background-color: var(--night-ink); background-image: radial-gradient(circle at 7% 30%, rgba(199,154,71,.08), transparent 20%); }
.faq-intro { position: sticky; top: 40px; align-self: start; }
.faq-intro .eyebrow { color: var(--gold-bright); }
.faq-intro p:last-child { margin-top: 22px; color: rgba(239,226,193,.52); }
.faq-list { border-top: 1px solid var(--border-night); }
.faq-list details { border-bottom: 1px solid var(--border-night); }
.faq-list summary { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: var(--parchment); font-family: var(--font-display); font-size: 15px; font-weight: 700; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid rgba(227,189,105,.3); border-radius: 50%; color: var(--gold-bright); font-family: var(--font-body); font-size: 19px; font-style: normal; transition: transform .2s ease; }
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list details p { max-width: 700px; margin: -7px 60px 25px 0; color: rgba(239,226,193,.6); font-size: 15px; }

.site-footer { padding: 72px max(24px, calc((100vw - 1180px)/2)) 24px; color: var(--parchment); background: #100d09; }
.footer-top { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.45fr .55fr .65fr 1.1fr; gap: 54px; }
.brand-footer { margin-bottom: 20px; }
.footer-brand > p { max-width: 330px; color: rgba(239,226,193,.47); font-size: 13px; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-links p, .footer-note span { margin-bottom: 8px; color: var(--gold-bright); font-family: var(--font-display); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-links a { color: rgba(239,226,193,.56); font-size: 13px; text-decoration: none; }
.footer-links a:hover { color: var(--parchment); text-decoration: underline; text-underline-offset: 4px; }
.footer-note { padding: 18px; border: 1px solid var(--border-night); }
.footer-note p { margin: 8px 0 0; color: rgba(239,226,193,.52); font-size: 12px; line-height: 1.6; }
.footer-bottom { max-width: 1180px; margin: 55px auto 0; padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(227,189,105,.12); color: rgba(239,226,193,.36); font-size: 11px; }
.footer-bottom p { margin: 0; }

.game-modal { position: fixed; inset: 0; z-index: 1000; display: grid; grid-template-rows: auto minmax(0, 1fr); color: var(--parchment); background: var(--night-ink); }
.game-modal-bar { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 12px 24px; border-bottom: 1px solid var(--border-night); background: var(--charcoal-brown); }
.modal-kicker { display: block; margin-bottom: 2px; color: var(--gold-bright); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.game-modal-bar h2 { margin: 0; font: 700 18px var(--font-display); }
.modal-close { display: inline-flex; align-items: center; gap: 9px; border: 1px solid rgba(227,189,105,.35); border-radius: 2px; padding: 9px 14px; color: var(--parchment); background: transparent; font-size: 12px; font-weight: 800; cursor: pointer; }
.modal-close:hover { color: var(--night-ink); background: var(--gold-bright); }
.modal-close span { font-size: 19px; line-height: 1; }
.game-frame-wrap { min-height: 0; padding: 12px; background: #070604; }
#game-iframe { width: 100%; height: 100%; display: block; border: 0; background: #000; }

@media (max-width: 1050px) {
  .hero { min-height: 760px; grid-template-columns: minmax(0, 1.2fr) minmax(310px, .8fr); gap: 35px; }
  .hero-map { max-width: 400px; }
  .quest-log { column-gap: 56px; }
  .quest-card { grid-template-columns: 145px minmax(0, 1fr); gap: 16px; }
  .quest-card:nth-child(odd)::after { right: -29px; width: 28px; }.quest-card:nth-child(even)::before { left: -29px; width: 28px; }
  .featured-copy { padding: 45px; }
  .footer-top { grid-template-columns: 1.3fr .6fr .75fr; }.footer-note { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .nav-links { display: none; }
  .hero { min-height: auto; padding-top: 150px; grid-template-columns: 1fr; }
  .hero-content { max-width: 650px; }
  .hero-map { display: none; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .quest-log { grid-template-columns: 1fr; gap: 28px; padding-left: 34px; }
  .quest-log::before { left: 10px; top: 20px; bottom: 20px; transform: none; }
  .quest-card:nth-child(even) { margin-top: 0; }
  .quest-card:nth-child(odd)::after, .quest-card:nth-child(even)::before { left: -25px; right: auto; top: 50%; width: 24px; }
  .steps-list { grid-template-columns: 1fr; }
  .steps-list li, .steps-list li + li { min-height: 0; padding: 30px 0; border-right: 0; border-bottom: 1px solid var(--border-night); }
  .steps-list li:last-child { border-bottom: 0; }
  .featured-card { grid-template-columns: 1fr; }
  .featured-image { min-height: 380px; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }.benefit-grid article:nth-child(2) { border-right: 0; }.benefit-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--border-standard); }
  .faq-section { grid-template-columns: 1fr; gap: 40px; }.faq-intro { position: static; }
}

@media (max-width: 560px) {
  .nav-shell { width: calc(100% - 30px); height: 76px; }
  .brand-mark { width: 34px; height: 38px; }.brand strong { font-size: 12px; }.brand small { font-size: 8px; }
  .nav-cta { font-size: 0; }.nav-cta span { font-size: 18px; }
  .hero { padding: 128px 20px 84px; }
  h1 { max-width: 100%; font-size: clamp(32px, 9.2vw, 38px); overflow-wrap: normal; }
  .hero-copy { max-width: 100%; font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-facts { width: 100%; margin-top: 48px; gap: 22px; justify-content: space-between; flex-wrap: wrap; }.hero-facts li { display: block; }.hero-facts strong, .hero-facts span { display: block; }
  .quest-section, .steps-section, .featured-section, .benefits-section, .faq-section { padding: 76px 20px; }
  .section-heading { margin-bottom: 40px; }
  .quest-log { padding-left: 22px; }
  .quest-log::before { left: 5px; }
  .quest-card { grid-template-columns: 1fr; padding: 11px; gap: 14px; }
  .quest-card:nth-child(odd)::after, .quest-card:nth-child(even)::before { left: -18px; width: 17px; }
  .quest-cover { min-height: 0; aspect-ratio: 16/9; }
  .quest-info { padding: 4px 5px 7px; }.quest-info > span:nth-child(3) { font-size: 14px; }.quest-action { margin-top: 4px; }
  .steps-list li, .steps-list li + li { grid-template-columns: 48px 1fr; gap: 16px; }.step-roman { width: 48px; height: 48px; }
  .featured-image { min-height: 280px; }.featured-copy { padding: 38px 24px 42px; }.featured-copy::before { font-size: 80px; }
  .featured-copy .button { width: 100%; }
  .benefit-grid { grid-template-columns: 1fr; }.benefit-grid article { min-height: 235px; border-right: 0; border-bottom: 1px solid var(--border-standard); }.benefit-grid article:nth-child(2) { border-right: 0; }.benefit-grid article:last-child { border-bottom: 0; }
  .faq-list summary { min-height: 88px; font-size: 13px; }.faq-list details p { margin-right: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px 25px; }.footer-brand, .footer-note { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .game-modal-bar { min-height: 64px; padding: 9px 12px; }.game-modal-bar h2 { font-size: 13px; }.modal-kicker { font-size: 8px; }.modal-close { padding: 8px 10px; }.game-frame-wrap { padding: 0; }
}

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