:root {
  --bg: #070708;
  --bg-soft: #0d0b0b;
  --panel: #131010;
  --panel-2: #1a1411;
  --red: #ef173f;
  --red-bright: #ff385c;
  --red-dim: rgba(239, 23, 63, 0.16);
  --gold: #f6c452;
  --gold-bright: #ffe08d;
  --gold-dim: rgba(246, 196, 82, 0.14);
  --green: #56d69a;
  --blue: #65baff;
  --text: #fffaf0;
  --muted: #c7b9ad;
  --quiet: #8f8178;
  --border: rgba(246, 196, 82, 0.2);
  --border-red: rgba(239, 23, 63, 0.35);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 24px;
  --max: 1220px;
  --font-display: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  --font-body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(239,23,63,.09), transparent 28rem),
    radial-gradient(circle at 10% 30%, rgba(246,196,82,.06), transparent 25rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
a, button { touch-action: manipulation; -webkit-tap-highlight-color: rgba(246,196,82,.22); }
a:focus-visible, button:focus-visible { outline: 3px solid var(--gold-bright); outline-offset: 3px; }
[id] { scroll-margin-top: 96px; }
ul, ol { margin: 0; padding: 0; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3, h4 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  line-height: .98;
  letter-spacing: .015em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.75rem, 7.3vw, 6.7rem); }
h2 { font-size: clamp(2rem, 4.5vw, 4rem); }
h3 { font-size: clamp(1.25rem, 2.3vw, 1.75rem); }
strong { color: var(--text); }
::selection { background: var(--red); color: white; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { position: relative; padding: clamp(76px, 9vw, 128px) 0; }
.section--soft { background: linear-gradient(180deg, rgba(255,255,255,.012), rgba(255,255,255,.025)); border-block: 1px solid rgba(255,255,255,.045); }
.section--tight { padding-block: 64px; }
.skip-link { position: fixed; left: 12px; top: -100px; z-index: 999; padding: 10px 14px; background: #fff; color: #000; border-radius: 8px; }
.skip-link:focus { top: 12px; }

.preview-strip {
  position: relative;
  z-index: 70;
  min-height: 38px;
  display: grid;
  place-items: center;
  padding: 7px 20px;
  background: repeating-linear-gradient(-45deg, #14100c 0 12px, #1b140e 12px 24px);
  border-bottom: 1px solid var(--border);
  color: var(--gold-bright);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
}
.age-bar { padding: 7px 20px; background: #16040a; color: #ead9dc; border-bottom: 1px solid rgba(239,23,63,.22); font-size: .78rem; text-align: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: 74px;
  display: flex;
  align-items: center;
  background: rgba(7,7,8,.88);
  border-bottom: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(18px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand-link { flex: 0 0 auto; display: block; width: 190px; height: 45px; overflow: hidden; position: relative; }
.brand-link img { position: absolute; width: 590px; height: auto; max-width: none; left: -20px; top: -14px; }
.nav-list { display: flex; align-items: center; gap: 3px; list-style: none; }
.nav-link { display: inline-flex; padding: 10px 11px; color: #d5c8c0; border-radius: 8px; font-size: .88rem; font-weight: 700; }
.nav-link:hover, .nav-link.active { color: white; background: var(--red-dim); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.hamburger { display: none; width: 44px; height: 44px; border: 1px solid var(--border); background: #110e0d; border-radius: 10px; padding: 10px; }
.hamburger span { display: block; height: 2px; margin: 5px 0; background: white; transition: .25s ease; }

.mobile-nav { position: fixed; inset: 0; z-index: 100; visibility: hidden; }
.mobile-nav.open { visibility: visible; }
.mobile-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.72); opacity: 0; transition: opacity .25s ease; }
.mobile-nav.open .mobile-backdrop { opacity: 1; }
.mobile-panel { position: absolute; top: 0; right: 0; width: min(92vw, 390px); height: 100%; padding: 24px; background: #0d0b0b; border-left: 1px solid var(--border); transform: translateX(100%); transition: transform .3s ease; overflow-y: auto; }
.mobile-nav.open .mobile-panel { transform: translateX(0); }
.mobile-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 25px; }
.mobile-close { width: 44px; height: 44px; display: grid; place-items: center; border: 0; background: transparent; color: white; font-size: 1.8rem; }
.mobile-list { display: grid; list-style: none; border-top: 1px solid rgba(255,255,255,.07); }
.mobile-list a { min-height: 52px; display: flex; align-items: center; justify-content: space-between; padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,.07); color: #e7ded8; font-weight: 800; }
.mobile-list a::after { content: "↗"; color: var(--red-bright); }
.mobile-cta { margin-top: 24px; }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 12px 18px; border: 1px solid transparent; border-radius: 9px; font-weight: 900; line-height: 1.1; text-align: center; transition: transform .22s ease, box-shadow .22s ease, background .22s ease; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { color: white; background: linear-gradient(135deg, var(--red), #b9092f); border-color: #ff4666; box-shadow: 0 10px 30px rgba(239,23,63,.25); }
.btn--primary:hover { box-shadow: 0 15px 42px rgba(239,23,63,.38); }
.btn--gold { color: #1b1000; background: linear-gradient(135deg, var(--gold-bright), #d99d27); border-color: #ffe6a7; }
.btn--outline { color: var(--text); background: rgba(255,255,255,.02); border-color: rgba(255,255,255,.25); }
.btn--ghost { color: var(--gold-bright); background: var(--gold-dim); border-color: var(--border); }
.btn--small { min-height: 44px; padding: 10px 14px; font-size: .82rem; }
.btn--large { min-height: 54px; padding: 15px 24px; }
.btn--full { width: 100%; }

.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 18px; color: var(--gold-bright); font-size: .78rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--red); box-shadow: 0 0 12px var(--red); }
.highlight { color: var(--red-bright); text-shadow: 0 0 30px rgba(239,23,63,.25); }
.text-gold { color: var(--gold); }
.kicker { display: block; color: var(--gold); font-size: .76rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.section-head { max-width: 790px; margin: 0 auto 46px; text-align: center; }
.section-head p { max-width: 660px; margin: 18px auto 0; font-size: 1.02rem; }
.section-head--left { margin-left: 0; text-align: left; }
.section-head--left p { margin-left: 0; }

.hero { position: relative; min-height: 690px; display: flex; align-items: center; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,.06); }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, #070708 0 48%, rgba(7,7,8,.78) 64%, rgba(7,7,8,.22) 100%); z-index: 1; }
.hero::after { content: ""; position: absolute; width: 50vw; height: 200%; left: 39%; top: -55%; background: linear-gradient(90deg, transparent, rgba(239,23,63,.12), transparent); transform: rotate(16deg); z-index: 1; }
.hero-bg { position: absolute; inset: 0 0 0 44%; width: 56%; height: 100%; object-fit: cover; object-position: center; opacity: .8; filter: saturate(.9) contrast(1.05); }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr); align-items: center; gap: 52px; width: 100%; padding: 78px 0; }
.hero-copy { max-width: 760px; }
.hero-copy h1 { max-width: 840px; text-transform: uppercase; }
.hero-copy p { max-width: 670px; margin-top: 24px; color: #dfd4cd; font-size: clamp(1rem, 1.6vw, 1.18rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.fact-row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; max-width: 760px; margin-top: 38px; }
.fact { min-height: 76px; padding: 13px; background: rgba(10,8,8,.8); border: 1px solid rgba(255,255,255,.1); border-left: 3px solid var(--red); }
.fact strong { display: block; font-family: var(--font-display); font-size: 1rem; text-transform: uppercase; }
.fact span { display: block; color: var(--quiet); font-size: .72rem; }
.hero-source { align-self: end; justify-self: end; max-width: 320px; padding: 17px; background: rgba(9,8,8,.9); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
.hero-source strong { display: block; margin-bottom: 4px; color: var(--gold-bright); }
.hero-source p { margin: 0; font-size: .82rem; }

.page-hero { position: relative; min-height: 390px; display: flex; align-items: center; overflow: hidden; border-bottom: 1px solid var(--border-red); background: linear-gradient(120deg, #17040a, #090809 55%, #181007); }
.page-hero::before { content: ""; position: absolute; width: 520px; height: 520px; right: -120px; top: -230px; border: 70px solid rgba(239,23,63,.08); transform: rotate(25deg); }
.page-hero::after { content: "BONU7"; position: absolute; right: 2%; bottom: -30px; font: 900 clamp(5rem, 16vw, 13rem)/1 var(--font-display); color: rgba(255,255,255,.025); letter-spacing: .03em; }
.page-hero-inner { position: relative; z-index: 2; max-width: 900px; padding-block: 74px; }
.page-hero h1 { font-size: clamp(3rem, 7vw, 6rem); text-transform: uppercase; }
.page-hero p { max-width: 720px; margin-top: 22px; font-size: 1.08rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; color: var(--quiet); font-size: .8rem; }
.breadcrumbs a { color: var(--gold); }

.route-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.route-card { position: relative; min-height: 270px; padding: 27px; overflow: hidden; background: linear-gradient(145deg, #161111, #0d0b0b); border: 1px solid rgba(255,255,255,.08); border-top: 3px solid var(--red); }
.route-card::after { content: attr(data-index); position: absolute; right: 16px; bottom: -18px; color: rgba(255,255,255,.035); font: 900 7rem/1 var(--font-display); }
.route-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 38px; background: var(--red-dim); border: 1px solid var(--border-red); font-size: 1.45rem; }
.route-card h3 { margin-bottom: 12px; text-transform: uppercase; }
.route-card p { position: relative; z-index: 1; font-size: .9rem; }
.route-link { position: relative; z-index: 1; min-height: 44px; display: inline-flex; align-items: center; padding-block: 8px; color: var(--gold-bright); font-size: .82rem; font-weight: 900; }

.media-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.media-card { grid-column: span 4; position: relative; overflow: hidden; min-height: 430px; background: var(--panel); border: 1px solid rgba(255,255,255,.08); box-shadow: var(--shadow); }
.media-card--wide { grid-column: span 8; }
.media-card img { width: 100%; height: 275px; object-fit: cover; }
.media-card--wide img { height: 330px; }
.media-card-content { padding: 22px; }
.media-card h3 { margin: 8px 0 10px; text-transform: uppercase; }
.media-card p { font-size: .88rem; }
.media-meta { display: flex; flex-wrap: wrap; gap: 6px; color: var(--quiet); font-size: .72rem; }
.chip { display: inline-flex; align-items: center; min-height: 26px; padding: 4px 8px; border: 1px solid var(--border); background: var(--gold-dim); color: var(--gold-bright); font-size: .68rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.chip--red { border-color: var(--border-red); background: var(--red-dim); color: #ffb2c0; }
.source-note { margin-top: 14px; padding-top: 13px; border-top: 1px solid rgba(255,255,255,.08); color: var(--quiet); font-size: .74rem; }

.filter-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin: -12px 0 34px; }
.filter-btn { min-height: 44px; padding: 10px 16px; border: 1px solid rgba(255,255,255,.13); background: transparent; color: var(--muted); font-weight: 800; }
.filter-btn:hover, .filter-btn.active { border-color: var(--red); background: var(--red-dim); color: white; }
.game-card[hidden] { display: none; }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(38px, 7vw, 90px); align-items: center; }
.split--top { align-items: start; }
.image-frame { position: relative; padding: 12px; background: #0b0909; border: 1px solid var(--border); box-shadow: var(--shadow); }
.image-frame::before { content: "OFFICIAL SOURCE ARTWORK"; position: absolute; z-index: 2; left: 22px; top: 22px; padding: 6px 9px; background: rgba(7,7,8,.84); border: 1px solid var(--border); color: var(--gold-bright); font-size: .62rem; font-weight: 900; letter-spacing: .09em; }
.image-frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.image-frame--portrait img { aspect-ratio: 1 / 1; object-fit: cover; }
.image-caption { margin: 10px 2px 0; color: var(--quiet); font-size: .72rem; }

.step-list { counter-reset: steps; display: grid; gap: 3px; margin-top: 30px; list-style: none; }
.step-item { counter-increment: steps; display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.1); }
.step-item::before { content: counter(steps, decimal-leading-zero); color: var(--red-bright); font: 900 1.45rem/1 var(--font-display); }
.step-item h3 { margin-bottom: 8px; text-transform: uppercase; }
.step-item p { margin: 0; font-size: .9rem; }

.status-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.status-card { padding: 24px; background: var(--panel); border: 1px solid rgba(255,255,255,.08); border-left: 4px solid var(--gold); }
.status-card--unknown { border-left-color: var(--quiet); }
.status-card--verified { border-left-color: var(--green); }
.status-card--action { border-left-color: var(--red); }
.status-card h3 { margin: 8px 0 10px; text-transform: uppercase; }
.status-card p { margin: 0; font-size: .88rem; }

.notice { padding: 22px 24px; background: linear-gradient(110deg, rgba(246,196,82,.11), rgba(239,23,63,.07)); border: 1px solid var(--border); border-left: 4px solid var(--gold); }
.notice--red { background: var(--red-dim); border-color: var(--border-red); border-left-color: var(--red); }
.notice h3 { margin-bottom: 8px; text-transform: uppercase; }
.notice p:last-child { margin-bottom: 0; }

.table-wrap { overflow-x: auto; border: 1px solid rgba(255,255,255,.08); }
.data-table { width: 100%; min-width: 720px; border-collapse: collapse; background: #0e0c0c; }
.data-table th, .data-table td { padding: 15px 18px; text-align: left; vertical-align: top; border-bottom: 1px solid rgba(255,255,255,.07); }
.data-table th { background: #1a1111; color: var(--gold-bright); font: 900 .78rem/1.2 var(--font-body); letter-spacing: .06em; text-transform: uppercase; }
.data-table td { color: var(--muted); font-size: .88rem; }

.stats-band { padding: 28px 0; background: #12070a; border-block: 1px solid var(--border-red); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { min-height: 90px; display: grid; place-items: center; align-content: center; padding: 10px 22px; text-align: center; border-right: 1px solid rgba(255,255,255,.1); }
.stat:last-child { border-right: 0; }
.stat strong { color: var(--gold-bright); font: 900 2.2rem/1 var(--font-display); }
.stat span { margin-top: 7px; color: var(--quiet); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }

.faq-list { max-width: 900px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,.11); }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.11); }
.faq-question { width: 100%; display: grid; grid-template-columns: 1fr auto; gap: 20px; padding: 22px 4px; border: 0; background: transparent; color: var(--text); text-align: left; font-weight: 900; }
.faq-question::after { content: "+"; color: var(--red-bright); font-size: 1.4rem; }
.faq-item.open .faq-question::after { content: "–"; }
.faq-answer { display: none; padding: 0 42px 23px 4px; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p:last-child { margin-bottom: 0; }

.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 64px; align-items: start; }
.article { max-width: 820px; }
.article .lead { color: #e8ded8; font-size: 1.15rem; }
.article h2 { margin: 54px 0 18px; font-size: clamp(1.75rem, 3.5vw, 2.6rem); text-transform: uppercase; }
.article h3 { margin: 30px 0 12px; }
.article ul, .article ol { padding-left: 1.2rem; color: var(--muted); }
.article li { margin: 9px 0; }
.article a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; }
.toc { position: sticky; top: 96px; padding: 22px; background: var(--panel); border: 1px solid rgba(255,255,255,.08); }
.toc strong { display: block; margin-bottom: 12px; color: var(--gold-bright); text-transform: uppercase; }
.toc a { display: block; padding: 8px 0; color: var(--muted); border-top: 1px solid rgba(255,255,255,.07); font-size: .82rem; }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 28px; }

.cta-banner { position: relative; overflow: hidden; padding: 70px 0; background: linear-gradient(120deg, #1e050b, #0b0808 55%, #231405); border-block: 1px solid var(--border-red); }
.cta-banner::after { content: "7"; position: absolute; right: 5%; top: -82px; color: rgba(246,196,82,.06); font: 900 20rem/1 var(--font-display); }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-inner h2 { max-width: 700px; text-transform: uppercase; }
.cta-inner p { max-width: 660px; margin: 14px 0 0; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 10px; flex: 0 0 auto; }

.site-footer { padding: 66px 0 100px; background: #050505; border-top: 1px solid rgba(255,255,255,.08); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; }
.footer-brand p { max-width: 420px; margin-top: 18px; font-size: .86rem; }
.footer-title { margin-bottom: 17px; color: var(--gold-bright); font: 900 .76rem/1 var(--font-body); letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: grid; gap: 8px; list-style: none; }
.footer-links a { color: var(--muted); font-size: .85rem; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 52px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); color: var(--quiet); font-size: .75rem; }

.sticky-cta { position: fixed; z-index: 55; right: 18px; bottom: 18px; display: flex; align-items: center; gap: 14px; padding: 10px 11px 10px 17px; background: rgba(12,9,9,.94); border: 1px solid var(--border-red); box-shadow: 0 20px 50px rgba(0,0,0,.5); backdrop-filter: blur(12px); }
.sticky-cta span { color: var(--muted); font-size: .78rem; }
.scroll-top { position: fixed; right: 18px; bottom: 86px; z-index: 54; width: 42px; height: 42px; display: none; border: 1px solid var(--border); background: #110d0d; color: white; }
.scroll-top.visible { display: grid; place-items: center; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.revealed { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .main-nav { display: none; }
  .hamburger { display: block; }
  .route-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-source { justify-self: start; }
  .hero-bg { left: 36%; width: 64%; opacity: .46; }
  .hero::before { background: linear-gradient(105deg, #070708 0 42%, rgba(7,7,8,.76) 75%, rgba(7,7,8,.35)); }
}

@media (max-width: 860px) {
  .section { padding-block: 76px; }
  .media-card, .media-card--wide { grid-column: span 6; }
  .media-card--wide img { height: 275px; }
  .split, .article-layout { grid-template-columns: 1fr; }
  .toc { position: static; order: -1; }
  .status-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .footer-grid { grid-template-columns: 1.3fr 1fr; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .cta-actions { width: 100%; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .preview-strip { font-size: .65rem; }
  .age-bar { font-size: .7rem; }
  .site-header { height: 66px; }
  .brand-link { width: 170px; height: 39px; }
  .brand-link img { width: 530px; left: -18px; top: -13px; }
  .header-actions > .btn { display: none; }
  .hero { min-height: 710px; }
  .hero-bg { inset: 0; width: 100%; opacity: .27; }
  .hero::before { background: linear-gradient(180deg, rgba(7,7,8,.75), #070708 82%); }
  .hero-inner { padding-block: 70px; }
  .hero-copy h1 { font-size: clamp(2.65rem, 15vw, 4.5rem); }
  .hero-actions { display: grid; }
  .cta-actions { display: grid; width: 100%; }
  .cta-actions .btn { width: 100%; }
  .fact-row { grid-template-columns: repeat(2, 1fr); }
  .hero-source { max-width: 100%; }
  .route-grid { grid-template-columns: 1fr; }
  .route-card { min-height: 230px; }
  .media-card, .media-card--wide { grid-column: 1 / -1; min-height: 0; }
  .media-card img, .media-card--wide img { height: 260px; }
  .page-hero { min-height: 340px; }
  .page-hero h1 { font-size: clamp(2.6rem, 14vw, 4.1rem); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding-inline: 9px; }
  .stat strong { font-size: 1.8rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .sticky-cta { inset: auto 0 0 0; justify-content: center; padding: 10px 14px max(10px, env(safe-area-inset-bottom)); border-width: 1px 0 0; }
  .sticky-cta span { display: none; }
  .sticky-cta .btn { width: min(100%, 420px); min-height: 52px; }
  .scroll-top { bottom: calc(84px + env(safe-area-inset-bottom)); }
  .site-footer { padding-bottom: calc(136px + env(safe-area-inset-bottom)); }
}
