/*
 * GOLAZZO CASINO - DESIGN SYSTEM
 * Stadium-nightgame aesthetic: near-black arena, electric lime + gold accents.
 * Anton display headlines, Barlow body. Single dark theme (no switcher).
 */

:root {
    --background: #0d0f0c;
    --foreground: #f5f7f2;
    --card: #181b16;
    --card-foreground: #f5f7f2;
    --popover: #181b16;
    --popover-foreground: #f5f7f2;
    --primary: #a3e635;
    --primary-foreground: #0d0f0c;
    --secondary: #232720;
    --secondary-foreground: #f5f7f2;
    --muted: #2a2f26;
    --muted-foreground: #c3cdb8;
    --accent: #fbbf24;
    --accent-foreground: #0d0f0c;
    --destructive: #ea0d33;
    --destructive-foreground: #ffffff;
    --border: #39402f;
    --input: #39402f;
    --ring: #a3e635;

    /* Spacing scale (8px base) */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 104px;

    --radius: 16px;
    --radius-sm: 10px;
    --max-width: 1200px;
    --header-h: 64px;

    --streak: linear-gradient(115deg, transparent 0%, var(--primary) 45%, var(--accent) 75%, transparent 100%);
}

/* Single dark theme - keep .dark identical to :root */
.dark {
    --background: #0d0f0c;
    --foreground: #f5f7f2;
    --card: #181b16;
    --card-foreground: #f5f7f2;
    --popover: #181b16;
    --popover-foreground: #f5f7f2;
    --primary: #a3e635;
    --primary-foreground: #0d0f0c;
    --secondary: #232720;
    --secondary-foreground: #f5f7f2;
    --muted: #2a2f26;
    --muted-foreground: #c3cdb8;
    --accent: #fbbf24;
    --accent-foreground: #0d0f0c;
    --destructive: #ea0d33;
    --destructive-foreground: #ffffff;
    --border: #39402f;
    --input: #39402f;
    --ring: #a3e635;
}

/* ============================================
   OVERFLOW PREVENTION - Safety Net
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
img, video, iframe, embed, object, svg { max-width: 100%; height: auto; }
[class*="grid"] > *, [class*="flex"] > * { min-width: 0; }
pre, code, .code-block, [class*="code"] { max-width: 100%; overflow-x: auto; }
pre code, .code-block code { display: block; min-width: 0; }
.table-wrapper, [class*="table-"] { max-width: 100%; overflow-x: auto; }
p, li, td, th { overflow-wrap: break-word; }
input, textarea, select { max-width: 100%; }
section { overflow: clip; }

/* ============================================
   BASE / TYPOGRAPHY
   Anton display, Barlow body
   ============================================ */
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: "Barlow", system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: "Anton", "Barlow", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.1;
    margin: 0 0 var(--space-sm);
    color: var(--foreground);
}
h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(1.875rem, 4vw, 2.75rem); line-height: 1.15; }
h3 { font-size: clamp(1.375rem, 2.5vw, 1.875rem); }
h4 { font-size: 1.25rem; }

p { margin: 0 0 var(--space-md); }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.text-lime { color: var(--primary); }
.text-gold { color: var(--accent); }

/* Inline SEO body links */
.content-prose a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.content-prose a:hover { color: var(--accent); }

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 2000;
    background: var(--primary); color: var(--primary-foreground);
    padding: var(--space-xs) var(--space-md); border-radius: 0 0 var(--radius-sm) 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--ring); outline-offset: 2px; }

/* ============================================
   LAYOUT HELPERS
   .wrap - centered max-width container
   ============================================ */
.wrap, .site-header__inner, .site-footer__inner {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
}
.section { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }
.section--tight { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.section__head { max-width: 760px; margin-bottom: var(--space-lg); }
.section__eyebrow {
    display: inline-block; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
    font-size: 0.85rem; color: var(--accent); margin-bottom: var(--space-xs);
}
.content-prose { max-width: 72ch; }
.content-prose p { color: var(--muted-foreground); }

@media (min-width: 1024px) {
    .wrap, .site-header__inner, .site-footer__inner { padding-left: var(--space-lg); padding-right: var(--space-lg); }
    .section { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }
    .section--tight { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
}

/* Diagonal energy streak divider */
.streak-divider {
    height: 4px; border: 0; margin: 0;
    background: var(--streak);
    opacity: 0.8;
}

/* ============================================
   BUTTONS
   .btn--primary lime CTA, .btn--ghost outlined
   ============================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: var(--space-xs);
    min-height: 48px; padding: 0 var(--space-md);
    font-family: "Barlow", sans-serif; font-weight: 700; font-size: 1rem;
    text-transform: uppercase; letter-spacing: 0.5px;
    border-radius: var(--radius-sm); border: 2px solid transparent; cursor: pointer;
    text-decoration: none; transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, background 0.2s ease-out;
}
.btn:hover { text-decoration: none; }
.btn--primary { background: var(--primary); color: var(--primary-foreground); }
.btn--primary:hover { transform: scale(1.04); box-shadow: 0 8px 28px rgba(163, 230, 53, 0.4); }
.btn--ghost { background: transparent; color: var(--foreground); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); transform: scale(1.04); }
.btn--lg { min-height: 56px; padding: 0 var(--space-xl); font-size: 1.125rem; }

/* ============================================
   HEADER / NAV
   Sticky header, mobile drawer
   ============================================ */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(13, 15, 12, 0.95);
    border-bottom: 1px solid var(--border);
}
.site-header__inner {
    display: flex; align-items: center; justify-content: space-between;
    min-height: var(--header-h);
}
.site-brand {
    display: inline-flex; align-items: center; gap: var(--space-xs);
    color: var(--foreground); text-decoration: none; font-family: "Anton", sans-serif;
    text-transform: uppercase; font-size: 1.35rem; letter-spacing: 0.5px;
}
.site-brand:hover { text-decoration: none; }
.site-brand__mark {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--primary); color: var(--primary-foreground);
    font-family: "Anton", sans-serif; font-size: 1.3rem;
    border: 2px solid var(--accent);
}
.site-brand__accent { color: var(--primary); }

.primary-nav { display: none; }
.primary-nav__list {
    display: flex; align-items: center; gap: var(--space-md);
    list-style: none; margin: 0; padding: 0;
}
.primary-nav__list a {
    color: var(--foreground); font-weight: 600; text-transform: uppercase;
    font-size: 0.9rem; letter-spacing: 0.5px; text-decoration: none;
    display: inline-flex; align-items: center; min-height: 44px;
}
.primary-nav__list a:hover { color: var(--primary); }
.primary-nav__cta { display: flex; align-items: center; gap: var(--space-xs); }

.nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 48px; height: 48px; padding: 0 12px;
    background: transparent; border: 0; cursor: pointer; z-index: 1001;
}
.nav-toggle span {
    display: block; height: 3px; width: 100%; background: var(--foreground);
    border-radius: 2px; transition: transform 0.25s ease-out, opacity 0.2s ease-out;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile drawer */
@media (max-width: 1023px) {
    .primary-nav {
        position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
        z-index: 999; background: var(--background);
        flex-direction: column; align-items: stretch; gap: 0;
        padding: var(--space-md) var(--space-sm);
        overflow-y: auto;
        transform: translateX(100%); transition: transform 0.25s ease-out;
    }
    .primary-nav.is-open { display: flex; transform: translateX(0); }
    .primary-nav__list { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
    .primary-nav__list li { border-bottom: 1px solid var(--border); }
    .primary-nav__list a { min-height: 52px; font-size: 1.1rem; }
    .primary-nav__cta { flex-direction: column; align-items: stretch; margin-top: var(--space-md); gap: var(--space-sm); }
    .primary-nav__cta .btn { width: 100%; }
}

@media (min-width: 1024px) {
    .nav-toggle { display: none; }
    .primary-nav { display: flex; align-items: center; gap: var(--space-lg); }
}

/* ============================================
   HERO
   Full-bleed floodlit banner with model image
   ============================================ */
.hero {
    position: relative; overflow: clip;
    min-height: 78vh; display: flex; align-items: center;
    padding: var(--space-2xl) 0;
    background: var(--background);
}
.hero__media {
    position: absolute; inset: 0; z-index: 0;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(90deg, rgba(13,15,12,0.94) 0%, rgba(13,15,12,0.75) 45%, rgba(13,15,12,0.35) 100%);
}
.hero__streak {
    position: absolute; z-index: 2; top: -20%; left: -10%; width: 130%; height: 20px;
    transform: rotate(-8deg); background: var(--streak); opacity: 0.5;
    filter: blur(1px);
}
.hero__inner { position: relative; z-index: 3; max-width: 640px; }
.hero__eyebrow {
    display: inline-block; background: var(--muted); color: var(--accent);
    font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.8rem;
    padding: var(--space-xs) var(--space-sm); border-radius: 999px; margin-bottom: var(--space-md);
    border: 1px solid var(--border);
}
.hero__title { margin-bottom: var(--space-md); }
.hero__lead { font-size: 1.2rem; color: var(--foreground); margin-bottom: var(--space-lg); max-width: 52ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); }
.hero__micro { margin-top: var(--space-md); font-size: 0.9rem; color: var(--foreground); opacity: 0.9; }

/* ============================================
   GRIDS
   ============================================ */
.grid { display: grid; gap: var(--space-md); grid-template-columns: minmax(0, 1fr); }
.grid--2 { grid-template-columns: minmax(0, 1fr); }
.grid--3 { grid-template-columns: minmax(0, 1fr); }
.grid--4 { grid-template-columns: minmax(0, 1fr); }
@media (min-width: 768px) {
    .grid--2, .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ============================================
   CARDS
   .feature-card, .bonus-card, .info-card, .tile
   ============================================ */
.feature-card {
    min-width: 0; background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: var(--space-md);
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out;
}
.feature-card:hover {
    transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.5);
    border-color: var(--accent);
}
.feature-card__icon {
    display: inline-flex; width: 72px; height: 72px; margin-bottom: var(--space-sm);
}
.feature-card__icon img { width: 72px; height: 72px; object-fit: contain; }
.feature-card__title { margin-bottom: var(--space-xs); }
.feature-card__desc { color: var(--muted-foreground); margin-bottom: var(--space-sm); }
.feature-card__link { font-weight: 700; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.5px; }

.bonus-card {
    position: relative; overflow: clip; min-width: 0;
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: var(--space-md);
    display: flex; flex-direction: column; align-items: flex-start;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out;
}
.bonus-card:hover {
    transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.5); border-color: var(--accent);
}
.bonus-card__streak {
    position: absolute; top: -30px; right: -40px; width: 160px; height: 24px;
    transform: rotate(-40deg); background: var(--streak); opacity: 0.55;
}
.bonus-card__label {
    position: relative; z-index: 1; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; font-size: 0.8rem; color: var(--muted-foreground); margin-bottom: var(--space-xs);
}
.bonus-card__figure {
    position: relative; z-index: 1; font-family: "Anton", sans-serif;
    font-size: clamp(2.25rem, 6vw, 3.25rem); line-height: 1; color: var(--primary);
    margin-bottom: var(--space-sm); display: block;
}
.bonus-card__figure-suffix { font-size: 0.4em; color: var(--foreground); margin-left: 4px; }
.bonus-card__desc { color: var(--card-foreground); margin-bottom: var(--space-xs); }
.bonus-card__terms { color: var(--muted-foreground); font-size: 0.85rem; margin-bottom: var(--space-md); }
.bonus-card__cta { margin-top: auto; }

/* Generic info card / callout */
.info-card {
    min-width: 0; background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: var(--space-md);
}
.callout {
    background: var(--card); border-left: 4px solid var(--primary);
    border-radius: var(--radius-sm); padding: var(--space-md);
    margin: var(--space-lg) 0;
}
.callout--gold { border-left-color: var(--accent); }
.callout h3 { margin-bottom: var(--space-xs); }
.callout p:last-child { margin-bottom: 0; }

/* TL;DR summary box */
.summary-box {
    background: var(--secondary); border: 1px solid var(--border);
    border-radius: var(--radius); padding: var(--space-md); margin-bottom: var(--space-lg);
}
.summary-box__title {
    font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--accent);
    font-size: 0.85rem; margin-bottom: var(--space-sm); display: block;
}
.summary-box ul { margin: 0; padding-left: 0; list-style: none; }
.summary-box li { position: relative; padding-left: 28px; margin-bottom: var(--space-xs); color: var(--foreground); }
.summary-box li::before {
    content: "\26BD"; position: absolute; left: 0; top: 0; color: var(--primary);
}

/* Media tile (image + label) */
.tile {
    min-width: 0; position: relative; overflow: clip;
    border-radius: var(--radius); border: 1px solid var(--border); background: var(--card);
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out;
}
.tile:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.5); border-color: var(--accent); }
.tile img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.tile__body { padding: var(--space-md); }
.tile__body h3 { margin-bottom: var(--space-xs); }
.tile__body p { color: var(--muted-foreground); margin-bottom: 0; }

/* Split band: image + text */
.split { display: grid; gap: var(--space-lg); grid-template-columns: minmax(0, 1fr); align-items: center; }
.split__media { border-radius: var(--radius); overflow: clip; border: 1px solid var(--border); }
.split__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (min-width: 768px) {
    .split { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .split--reverse .split__media { order: 2; }
}

/* ============================================
   STAT HIGHLIGHT
   ============================================ */
.stat-highlight {
    display: grid; gap: var(--space-md); grid-template-columns: repeat(2, minmax(0, 1fr));
    text-align: center; position: relative; padding: var(--space-md) 0;
}
.stat-highlight::after {
    content: ""; position: absolute; bottom: 0; left: 10%; width: 80%; height: 3px;
    background: var(--streak); opacity: 0.7;
}
.stat-highlight__item { min-width: 0; }
.stat-highlight__number {
    display: block; font-family: "Anton", sans-serif; line-height: 1;
    font-size: clamp(2.25rem, 6vw, 3.5rem); color: var(--primary);
}
.stat-highlight__item:nth-child(even) .stat-highlight__number { color: var(--accent); }
.stat-highlight__label {
    display: block; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
    font-size: 0.85rem; color: var(--foreground); margin-top: var(--space-xs);
}
.stat-highlight__note { display: block; font-size: 0.75rem; color: var(--muted-foreground); margin-top: 4px; }
@media (min-width: 768px) {
    .stat-highlight { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative; overflow: clip; text-align: center;
    background: var(--secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    padding: var(--space-2xl) var(--space-sm);
}
.cta-banner__streak {
    position: absolute; top: 50%; left: -10%; width: 130%; height: 40px;
    transform: translateY(-50%) rotate(-6deg); background: var(--streak); opacity: 0.18;
    z-index: 0;
}
.cta-banner__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.cta-banner__heading { margin-bottom: var(--space-sm); }
.cta-banner__subline { color: var(--muted-foreground); font-size: 1.1rem; margin-bottom: var(--space-lg); }
.cta-banner__micro { margin-top: var(--space-md); margin-bottom: 0; font-size: 0.8rem; color: var(--muted-foreground); }
@media (min-width: 1024px) {
    .cta-banner { padding: var(--space-2xl) var(--space-lg); }
}

/* ============================================
   FAQ ACCORDION (native details/summary)
   ============================================ */
.faq-accordion { max-width: 820px; }
.faq-item {
    background: var(--card); border: 1px solid var(--border);
    border-radius: var(--radius-sm); margin-bottom: var(--space-sm); overflow: hidden;
}
.faq-item__question {
    display: flex; align-items: center; justify-content: space-between; gap: var(--space-sm);
    padding: 20px; cursor: pointer; list-style: none; font-weight: 600; color: var(--foreground);
    min-height: 48px;
}
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item__icon {
    position: relative; flex-shrink: 0; width: 22px; height: 22px;
}
.faq-item__icon::before, .faq-item__icon::after {
    content: ""; position: absolute; background: var(--muted-foreground);
    transition: background 0.2s ease-out, transform 0.25s ease-out;
}
.faq-item__icon::before { top: 10px; left: 0; width: 22px; height: 2px; }
.faq-item__icon::after { top: 0; left: 10px; width: 2px; height: 22px; }
.faq-item[open] .faq-item__icon::before,
.faq-item[open] .faq-item__icon::after { background: var(--primary); }
.faq-item[open] .faq-item__icon::after { transform: scaleY(0); }
.faq-item__answer {
    padding: 0 20px 20px 20px; border-left: 3px solid var(--accent);
    background: var(--secondary);
}
.faq-item__answer p { color: var(--muted-foreground); margin: 20px 0 0; }

/* ============================================
   TABLES / LISTS
   ============================================ */
.table-wrapper { max-width: 100%; overflow-x: auto; margin: var(--space-lg) 0; border: 1px solid var(--border); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; min-width: 480px; }
th, td { padding: var(--space-sm); text-align: left; border-bottom: 1px solid var(--border); }
thead th { background: var(--secondary); color: var(--accent); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.5px; }
tbody tr:hover { background: var(--secondary); }

.check-list { list-style: none; padding: 0; margin: 0 0 var(--space-md); }
.check-list li { position: relative; padding-left: 32px; margin-bottom: var(--space-sm); color: var(--foreground); }
.check-list li::before {
    content: "\2714"; position: absolute; left: 0; top: 0; color: var(--primary);
    font-weight: 700; width: 22px; height: 22px;
}

/* Pill / chip row */
.chip-row { display: flex; flex-wrap: wrap; gap: var(--space-xs); list-style: none; padding: 0; margin: 0; }
.chip {
    display: inline-flex; align-items: center; padding: 6px var(--space-sm);
    background: var(--muted); border: 1px solid var(--border); border-radius: 999px;
    font-size: 0.85rem; font-weight: 600; color: var(--foreground);
}

/* Trust badges strip */
.trust-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--space-md); }
.trust-strip img { max-height: 44px; width: auto; height: auto; opacity: 0.92; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--card); border-top: 1px solid var(--border); margin-top: var(--space-2xl); }
.site-footer__inner {
    display: grid; gap: var(--space-lg); grid-template-columns: minmax(0, 1fr);
    padding-top: var(--space-2xl); padding-bottom: var(--space-lg);
}
.site-footer__heading { font-size: 1.05rem; margin-bottom: var(--space-sm); color: var(--accent); }
.site-footer__col ul { list-style: none; margin: 0; padding: 0; }
.site-footer__col li { margin-bottom: var(--space-xs); }
.site-footer__col a { color: var(--muted-foreground); display: inline-flex; align-items: center; min-height: 44px; }
.site-footer__col a:hover { color: var(--primary); }
.site-footer__brand p { color: var(--muted-foreground); font-size: 0.95rem; }
.site-footer__age { font-weight: 600; color: var(--foreground); }
.site-footer__pay { display: flex; flex-wrap: wrap; gap: var(--space-xs); }
.site-footer__pay li {
    padding: 10px 14px; background: var(--muted); border: 1px solid var(--border);
    border-radius: var(--radius-sm); font-size: 0.8rem; color: var(--foreground); margin: 0;
}
.site-footer__license { color: var(--muted-foreground); font-size: 0.85rem; margin-top: var(--space-sm); }
.site-footer__bottom {
    border-top: 1px solid var(--border); padding: var(--space-md) var(--space-sm);
    text-align: center;
}
.site-footer__bottom p { margin: 0; color: var(--muted-foreground); font-size: 0.85rem; }
@media (min-width: 768px) {
    .site-footer__inner { grid-template-columns: 2fr 1fr 1fr; }
}
@media (min-width: 1024px) {
    .site-footer__inner { grid-template-columns: 2.2fr 1fr 1fr 1.4fr; }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .animate-on-scroll { opacity: 1; transform: none; transition: none; }
    .btn:hover, .feature-card:hover, .bonus-card:hover, .tile:hover { transform: none; }
}
