/* ============================================================
   B9 GAME — Page-specific overrides
   ============================================================ */

/* ---------- Download page ---------- */
.dl-hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 900px) { .dl-hero { grid-template-columns: 1fr; text-align: center; } }

.req-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
@media (max-width: 860px) { .req-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .req-grid { grid-template-columns: 1fr; } }
.req { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.4rem; text-align: center; box-shadow: var(--sh-sm); }
.req .req-ic { width: 50px; height: 50px; margin: 0 auto .8rem; border-radius: 14px; background: var(--em-050); color: var(--em-700); display: grid; place-items: center; }
.req b { display: block; font-family: var(--font-display); color: var(--ink-900); font-size: 1.05rem; }
.req span { font-size: .84rem; color: var(--muted); }

.dl-steps { display: grid; gap: 1.1rem; }
.dl-step { display: flex; gap: 1.1rem; align-items: flex-start; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.4rem 1.5rem; box-shadow: var(--sh-sm); transition: transform var(--t) var(--ease), box-shadow var(--t); }
.dl-step:hover { transform: translateX(6px); box-shadow: var(--sh-md); }
.dl-step .n { flex-shrink: 0; width: 46px; height: 46px; border-radius: 14px; background: var(--grad-brand); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; box-shadow: var(--sh-glow); }
.dl-step h3 { font-size: 1.12rem; margin-bottom: .3rem; }
.dl-step p { font-size: .95rem; margin: 0; }

.os-tabs { display: inline-flex; padding: .35rem; border-radius: var(--r-pill); background: var(--mist); border: 1px solid var(--line); gap: .25rem; }
.os-tabs button { padding: .6rem 1.3rem; border-radius: var(--r-pill); font-weight: 700; font-family: var(--font-display); font-size: .92rem; color: var(--ink-600); display: inline-flex; align-items: center; gap: .5rem; transition: all var(--t); }
.os-tabs button.is-active { background: var(--white); color: var(--em-700); box-shadow: var(--sh-sm); }

/* ---------- About: timeline / values ---------- */
.timeline { position: relative; display: grid; gap: 1.4rem; padding-left: 2rem; }
.timeline::before { content: ""; position: absolute; left: 8px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--em-300), var(--em-100)); }
.tl-item { position: relative; }
.tl-item::before { content: ""; position: absolute; left: -2rem; top: 4px; width: 18px; height: 18px; border-radius: 50%; background: var(--white); border: 3px solid var(--em-400); box-shadow: 0 0 0 4px var(--em-050); }
.tl-item .yr { font-family: var(--font-display); font-weight: 800; color: var(--em-700); font-size: .9rem; letter-spacing: .04em; }
.tl-item h3 { font-size: 1.15rem; margin: .2rem 0 .4rem; }
.tl-item p { font-size: .95rem; margin: 0; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 860px) { .value-grid { grid-template-columns: 1fr; } }

.mv-card { padding: 2rem; border-radius: var(--r-lg); background: var(--white); border: 1px solid var(--line); box-shadow: var(--sh-sm); }
.mv-card .mv-ic { width: 56px; height: 56px; border-radius: 16px; background: var(--grad-brand); color: #fff; display: grid; place-items: center; margin-bottom: 1.1rem; box-shadow: var(--sh-glow); }

/* Compliance badges */
.badge-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 860px) { .badge-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .badge-row { grid-template-columns: 1fr; } }
.trust-badge { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .6rem; padding: 1.5rem 1rem; border-radius: var(--r-lg); background: var(--white); border: 1px solid var(--line); box-shadow: var(--sh-sm); transition: transform var(--t) var(--ease); }
.trust-badge:hover { transform: translateY(-5px); }
.trust-badge .tb-ic { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(150deg, var(--em-050), var(--em-100)); color: var(--em-700); display: grid; place-items: center; }
.trust-badge b { font-family: var(--font-display); color: var(--ink-900); font-size: 1rem; }
.trust-badge span { font-size: .8rem; color: var(--muted); }

/* Comparison / feature table */
.feature-table { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); }
.feature-table th, .feature-table td { padding: 1rem 1.2rem; text-align: left; border-bottom: 1px solid var(--line); font-size: .95rem; }
.feature-table thead th { background: var(--em-050); color: var(--ink-900); font-family: var(--font-display); font-weight: 700; }
.feature-table tbody tr:last-child td { border-bottom: none; }
.feature-table td:first-child { font-weight: 600; color: var(--ink-800); }
.feature-table .yes { color: var(--em-600); font-weight: 700; }
.feature-table-wrap { overflow-x: auto; }

/* Guide / tutorial list */
.guide-list { display: grid; gap: 1rem; counter-reset: g; }
.guide-item { display: flex; gap: 1rem; align-items: flex-start; }
.guide-item .g-n { counter-increment: g; flex-shrink: 0; width: 34px; height: 34px; border-radius: 10px; background: var(--em-050); color: var(--em-700); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; }
.guide-item .g-n::before { content: counter(g); }
.guide-item h4 { font-size: 1.02rem; margin-bottom: .2rem; }
.guide-item p { font-size: .92rem; margin: 0; }

/* Bonus tiers */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
@media (max-width: 860px) { .tier-grid { grid-template-columns: 1fr; } }
.tier { position: relative; padding: 2rem; border-radius: var(--r-lg); background: var(--white); border: 1px solid var(--line); box-shadow: var(--sh-sm); overflow: hidden; }
.tier.featured { border-color: var(--em-300); box-shadow: var(--sh-md); }
.tier.featured::before { content: "Most Popular"; position: absolute; top: 1.1rem; right: -2.4rem; transform: rotate(45deg); background: var(--grad-cta); color: #fff; font-size: .68rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; padding: .3rem 2.6rem; }
.tier .t-name { font-family: var(--font-display); font-weight: 700; color: var(--em-700); text-transform: uppercase; letter-spacing: .06em; font-size: .82rem; }
.tier .t-amt { font-family: var(--font-display); font-weight: 800; font-size: 2.2rem; color: var(--ink-900); margin: .4rem 0 .2rem; }
.tier .t-sub { font-size: .85rem; color: var(--muted); margin-bottom: 1.2rem; }
.tier ul { display: grid; gap: .6rem; margin-bottom: 1.4rem; }
.tier ul li { display: flex; gap: .55rem; align-items: flex-start; font-size: .9rem; color: var(--ink-700); }
.tier ul li svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--em-500); margin-top: 2px; }

/* QR / download box */
.qr-box { display: flex; gap: 1.4rem; align-items: center; padding: 1.6rem; border-radius: var(--r-lg); background: var(--white); border: 1px solid var(--line); box-shadow: var(--sh-sm); }
.qr-box .qr { flex-shrink: 0; width: 110px; height: 110px; border-radius: var(--r-md); background: repeating-conic-gradient(var(--ink-900) 0% 25%, #fff 0% 50%) 50% / 14px 14px; border: 6px solid #fff; box-shadow: var(--sh-sm); position: relative; }
.qr-box .qr::after { content: ""; position: absolute; inset: 38%; background: var(--grad-brand); border-radius: 4px; }

/* Anchor offset for sticky header */
:target { scroll-margin-top: calc(var(--header-h) + 1.5rem); }
[id] { scroll-margin-top: calc(var(--header-h) + 1.5rem); }

/* FAQ split (contact) */
.mini-faq { display: grid; gap: .7rem; }

/* newsletter/join row */
.join-row { display: flex; flex-wrap: wrap; gap: 1rem; }
