/*
 * OnlySpins Casino - Design System
 * Tropical-island luxury: turquoise/teal + gold, coral sunset accents,
 * deep ocean-night background. Playfair Display headings, Manrope body.
 * Dark theme is the shipped theme (no theme switcher in brief).
 */

/* ============================================
   DESIGN TOKENS
   Single shipped theme (dark). :root and .dark share values.
   ============================================ */
:root {
    --background: #060d14;
    --foreground: #f5efe4;
    --card: #0d1f26;
    --card-foreground: #f5efe4;
    --popover: #0d1f26;
    --popover-foreground: #f5efe4;
    --primary: #2fd4d0;
    --primary-foreground: #04121a;
    --secondary: #122a30;
    --secondary-foreground: #f5efe4;
    --muted: #1a2f36;
    --muted-foreground: #b3c1c8;
    --accent: #e0b155;
    --accent-foreground: #1a1204;
    --destructive: #f4635a;
    --destructive-foreground: #1a0605;
    --border: #22383f;
    --input: #1a2f36;
    --ring: #2fd4d0;

    /* Palette helpers */
    --coral: #f0824d;
    --gold: #e0b155;
    --gold-strong: #f0c778;

    /* Spacing (8px grid) */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 56px;
    --space-2xl: 96px;

    --radius: 8px;
    --radius-lg: 16px;

    --maxw: 1200px;
    --header-h: 64px;

    --sunset-glow: radial-gradient(120% 100% at 50% 0%, rgba(240,130,77,0.28) 0%, rgba(224,177,85,0.12) 35%, rgba(6,13,20,0) 70%);
    --gold-hairline: linear-gradient(90deg, rgba(224,177,85,0) 0%, rgba(224,177,85,0.8) 50%, rgba(224,177,85,0) 100%);

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.dark {
    --background: #060d14;
    --foreground: #f5efe4;
    --card: #0d1f26;
    --card-foreground: #f5efe4;
    --popover: #0d1f26;
    --popover-foreground: #f5efe4;
    --primary: #2fd4d0;
    --primary-foreground: #04121a;
    --secondary: #122a30;
    --secondary-foreground: #f5efe4;
    --muted: #1a2f36;
    --muted-foreground: #b3c1c8;
    --accent: #e0b155;
    --accent-foreground: #1a1204;
    --destructive: #f4635a;
    --destructive-foreground: #1a0605;
    --border: #22383f;
    --input: #1a2f36;
    --ring: #2fd4d0;
}

/* ============================================
   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; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* ============================================
   BASE TYPOGRAPHY
   ============================================ */
body {
    margin: 0;
    font-family: "Manrope", system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    background-image:
        radial-gradient(80% 50% at 80% 0%, rgba(47,212,208,0.06) 0%, rgba(6,13,20,0) 60%),
        radial-gradient(70% 40% at 10% 100%, rgba(224,177,85,0.05) 0%, rgba(6,13,20,0) 60%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
    font-family: "Playfair Display", Georgia, serif;
    color: var(--foreground);
    line-height: 1.2;
    margin: 0 0 var(--space-sm);
    letter-spacing: -0.01em;
}

h1 { font-size: 30px; font-weight: 700; }
h2 { font-size: 26px; font-weight: 600; }
h3 { font-size: 20px; font-weight: 600; }

p { margin: 0 0 26px; max-width: 72ch; }

a { color: var(--primary); text-decoration: none; transition: color 200ms var(--ease); }
a:hover { color: var(--gold-strong); }

ul, ol { margin: 0 0 26px; padding-left: 1.25em; }
li { margin-bottom: var(--space-xs); }

strong { color: var(--foreground); font-weight: 700; }

hr { border: none; height: 1px; background: var(--gold-hairline); margin: var(--space-lg) 0; }

@media (min-width: 1024px) {
    h1 { font-size: 44px; }
    h2 { font-size: 34px; }
    h3 { font-size: 24px; }
}

.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: -999px; top: 0; z-index: 2000;
    background: var(--accent); color: var(--accent-foreground);
    padding: var(--space-sm); border-radius: var(--radius);
}
.skip-link:focus { left: var(--space-sm); top: var(--space-sm); }

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

/* ============================================
   LAYOUT CONTAINERS
   .container - centered max-width 1200px text column
   .section - vertical rhythm block
   .full-bleed - edge-to-edge zone
   ============================================ */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--space-sm); }

.section { padding: var(--space-xl) 0; }
@media (min-width: 1024px) { .section { padding: var(--space-xl) 0; } }

.section--tight { padding: var(--space-lg) 0; }

.full-bleed { width: 100%; }

/* Signature: gold hairline + sunset glow section heading */
.section-head { margin-bottom: var(--space-lg); }
.section-head__eyebrow {
    display: inline-block; font-family: "Manrope", sans-serif; font-weight: 700;
    font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--accent); margin-bottom: var(--space-xs);
}
.section-head h2 { position: relative; padding-bottom: var(--space-sm); }
.section-head h2::after {
    content: ""; position: absolute; left: 0; bottom: 0; width: 120px; height: 2px;
    background: var(--gold-hairline);
}
.section-head p { color: var(--muted-foreground); }

.lead { font-size: 19px; color: var(--foreground); }

/* ============================================
   HEADER + NAV
   ============================================ */
.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(6,13,20,0.88);
    border-bottom: 1px solid var(--border);
}
.site-header__inner {
    max-width: var(--maxw); margin: 0 auto; padding: 0 var(--space-sm);
    height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: var(--space-sm);
}

.site-brand { display: inline-flex; align-items: center; gap: 8px; color: var(--foreground); font-family: "Playfair Display", serif; }
.site-brand__mark { color: var(--gold); font-size: 22px; line-height: 1; }
.site-brand__text { font-weight: 700; font-size: 20px; letter-spacing: -0.01em; }
.site-brand__accent { color: var(--gold); }
.site-brand:hover { color: var(--foreground); }

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

.primary-nav { display: none; }
.primary-nav.is-open {
    display: flex; flex-direction: column; gap: var(--space-md);
    position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: var(--background); z-index: 999; overflow-y: auto;
    padding: var(--space-lg) var(--space-sm); border-top: 1px solid var(--border);
}
.primary-nav__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; align-items: stretch; gap: 4px; }
.primary-nav__list a {
    display: flex; align-items: center; min-height: 48px; padding: 0 var(--space-sm);
    color: var(--foreground); font-weight: 600; border-radius: var(--radius);
    border-bottom: 1px solid var(--border);
}
.primary-nav__list a:hover { color: var(--gold-strong); background: var(--secondary); }
.primary-nav__cta { display: flex; flex-direction: column; gap: var(--space-xs); margin-top: auto; }

@media (min-width: 1024px) {
    .nav-toggle { display: none; }
    .primary-nav, .primary-nav.is-open {
        display: flex; flex-direction: row; align-items: center; gap: var(--space-lg);
        position: static; inset: auto; background: transparent; padding: 0; border: none; overflow: visible;
    }
    .primary-nav__list { flex-direction: row; align-items: center; gap: var(--space-md); }
    .primary-nav__list a { min-height: auto; padding: 4px 0; border: none; }
    .primary-nav__cta { flex-direction: row; margin-top: 0; }
}

/* ============================================
   BUTTONS
   .btn--primary gold-coral CTA, .btn--ghost outline
   ============================================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 48px; padding: 12px var(--space-md); border-radius: var(--radius);
    font-family: "Manrope", sans-serif; font-weight: 700; font-size: 16px;
    cursor: pointer; border: 1px solid transparent; text-align: center;
    transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), filter 200ms var(--ease), background 200ms var(--ease);
}
.btn--primary {
    color: #1a1204;
    background: linear-gradient(135deg, var(--gold-strong) 0%, var(--coral) 100%);
    box-shadow: 0 6px 20px rgba(240,130,77,0.28);
}
.btn--primary:hover { filter: brightness(1.08); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(240,130,77,0.4); color: #1a1204; }
.btn--ghost { color: var(--foreground); background: transparent; border-color: var(--gold); }
.btn--ghost:hover { background: var(--secondary); color: var(--gold-strong); transform: translateY(-2px); }
.btn--lg { min-height: 54px; padding: 16px var(--space-lg); font-size: 18px; }

/* ============================================
   HERO
   ============================================ */
.hero { position: relative; overflow: clip; border-bottom: 1px solid var(--border); }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(6,13,20,0.94) 0%, rgba(6,13,20,0.72) 45%, rgba(6,13,20,0.35) 100%), var(--sunset-glow);
}
.hero__inner {
    position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto;
    padding: var(--space-xl) var(--space-sm);
}
.hero__content { max-width: 640px; }
.hero__eyebrow {
    display: inline-block; font-weight: 700; font-size: 13px; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--accent); margin-bottom: var(--space-sm);
}
.hero h1 { margin-bottom: var(--space-sm); }
.hero__sub { color: var(--muted-foreground); font-size: 18px; margin-bottom: var(--space-md); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-bottom: var(--space-sm); }
.hero__micro { font-size: 14px; color: var(--muted-foreground); }
.hero--compact .hero__inner { padding: var(--space-lg) var(--space-sm); }
@media (min-width: 1024px) {
    .hero__inner { padding: var(--space-2xl) var(--space-sm); }
    .hero--compact .hero__inner { padding: var(--space-xl) var(--space-sm); }
}

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

/* Balanced 5-item grid: render as two rows of evenly sized cards
   (3 on the first row, 2 stretched to fill the second) so no blank
   column is left hanging on one side at desktop widths. */
@media (min-width: 1024px) {
    .grid--balance-5 { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); }
    .grid--balance-5 > * { grid-column: span 2; }
    .grid--balance-5 > *:nth-child(4) { grid-column: 2 / span 2; }
    .grid--balance-5 > *:nth-child(5) { grid-column: 4 / span 2; }
}

/* Two-column feature layout (text + media) */
.split { display: grid; grid-template-columns: minmax(0,1fr); gap: var(--space-lg); align-items: center; }
@media (min-width: 1024px) { .split { grid-template-columns: 1.1fr 1fr; gap: var(--space-2xl); } }
.split__media img { width: 100%; border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }

/* ============================================
   INFO CARD
   ============================================ */
.info-card {
    position: relative; min-width: 0; background: var(--card); color: var(--card-foreground);
    padding: 20px; border-radius: var(--radius); border: 1px solid var(--border);
    transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), border-color 200ms var(--ease);
    overflow: clip;
}
.info-card::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold-hairline);
}
.info-card:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 16px 40px rgba(224,177,85,0.16); border-color: var(--gold); }
.info-card__media { margin: -20px -20px 16px; overflow: clip; }
.info-card__media img { width: 100%; height: 200px; object-fit: cover; display: block; }
.info-card__icon { width: 56px; height: 56px; margin-bottom: var(--space-sm); }
.info-card__icon img { width: 56px; height: 56px; object-fit: contain; }
.info-card__badge {
    display: inline-block; margin-bottom: var(--space-xs); padding: 4px 12px; border-radius: 100px;
    background: linear-gradient(135deg, var(--gold-strong), var(--coral)); color: #1a1204;
    font-weight: 700; font-size: 13px;
}
.info-card__title { margin-bottom: 8px; }
.info-card__text { color: var(--muted-foreground); font-size: 15px; margin-bottom: var(--space-sm); }
.info-card__text:last-child { margin-bottom: 0; }
.info-card__link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 15px; color: var(--primary); }
.info-card__link:hover { color: var(--gold-strong); }

/* ============================================
   STAT HIGHLIGHT
   ============================================ */
.stat-highlight { padding: var(--space-lg) 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; }
.stat-highlight::before {
    content: ""; position: absolute; inset: 0; z-index: 0; background: var(--sunset-glow); opacity: 0.5; pointer-events: none;
}
.stat-highlight__heading { position: relative; z-index: 1; text-align: center; color: var(--muted-foreground); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-size: 13px; margin-bottom: var(--space-md); }
.stat-highlight__row { position: relative; z-index: 1; display: flex; flex-direction: column; gap: var(--space-md); }
@media (min-width: 768px) { .stat-highlight__row { flex-direction: row; justify-content: space-around; align-items: flex-start; text-align: center; } }
.stat-block { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; flex: 1; }
.stat-block__number { font-family: "Playfair Display", serif; font-weight: 700; font-size: 40px; line-height: 1; color: var(--gold); }
@media (min-width: 1024px) { .stat-block__number { font-size: 56px; } }
.stat-block__label { color: var(--muted-foreground); font-size: 15px; }

/* ============================================
   HOW-TO STEPS
   ============================================ */
.how-to-steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-md); }
.how-to-step { display: flex; gap: var(--space-sm); position: relative; }
.how-to-step__badge {
    flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: "Playfair Display", serif; font-weight: 700; font-size: 22px;
    color: #1a1204; background: linear-gradient(135deg, var(--gold-strong), var(--coral));
    box-shadow: 0 6px 16px rgba(224,177,85,0.28);
}
.how-to-step:not(:last-child) .how-to-step__badge::after {
    content: ""; position: absolute; left: 23px; top: 48px; bottom: -24px; width: 2px;
    background: linear-gradient(180deg, var(--gold) 0%, rgba(224,177,85,0) 100%);
}
.how-to-step__body { padding-top: 4px; }
.how-to-step__title { margin-bottom: 4px; }
.how-to-step__text { color: var(--muted-foreground); margin-bottom: 0; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner { position: relative; overflow: clip; padding: var(--space-xl) 0; text-align: center; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-banner__bg { position: absolute; inset: 0; z-index: 0; }
.cta-banner__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,13,20,0.82), rgba(6,13,20,0.82)), var(--sunset-glow); }
.cta-banner:not(:has(.cta-banner__bg))::before { content: ""; position: absolute; inset: 0; z-index: 0; background: var(--sunset-glow); }
.cta-banner__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; padding: 0 var(--space-sm); }
.cta-banner__title { margin-bottom: var(--space-sm); }
.cta-banner__subtext { color: var(--foreground); font-size: 18px; margin-bottom: var(--space-md); opacity: 0.95; }
.cta-banner__micro { margin-top: var(--space-sm); margin-bottom: 0; font-size: 14px; color: var(--muted-foreground); }
@media (min-width: 1024px) { .cta-banner { padding: var(--space-xl) 0; } }

/* ============================================
   ENGAGEMENT: TL;DR, callout, pull-quote, details
   ============================================ */
.tldr {
    background: var(--secondary); border: 1px solid var(--border); border-left: 4px solid var(--gold);
    border-radius: var(--radius); padding: var(--space-md); margin-bottom: var(--space-lg);
}
.tldr__title { font-family: "Manrope", sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: var(--space-xs); }
.tldr ul { margin-bottom: 0; }

.callout {
    background: var(--card); border: 1px solid var(--border); border-left: 4px solid var(--coral);
    border-radius: var(--radius); padding: var(--space-md); margin: var(--space-md) 0;
}
.callout__title { margin-bottom: 8px; font-size: 18px; }
.callout p:last-child { margin-bottom: 0; }

.pull-quote {
    font-family: "Playfair Display", serif; font-style: italic; font-size: 22px; line-height: 1.4;
    color: var(--foreground); border: none; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    padding: var(--space-md) 0; margin: var(--space-lg) 0; position: relative;
}
@media (min-width: 1024px) { .pull-quote { font-size: 26px; } }
.pull-quote cite { display: block; margin-top: var(--space-sm); font-style: normal; font-family: "Manrope", sans-serif; font-size: 15px; color: var(--accent); font-weight: 700; }

/* Testimonial / social proof */
.quote-grid { display: grid; grid-template-columns: minmax(0,1fr); gap: var(--space-md); }
@media (min-width: 768px) { .quote-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.quote-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--space-md); }
.quote-card::before { content: ""; display: block; width: 100%; height: 2px; background: var(--gold-hairline); margin-bottom: var(--space-sm); }
.quote-card blockquote { margin: 0; font-family: "Playfair Display", serif; font-style: italic; font-size: 19px; line-height: 1.45; }
.quote-card cite { display: block; margin-top: var(--space-sm); font-style: normal; font-family: "Manrope", sans-serif; font-weight: 700; font-size: 14px; color: var(--accent); }

/* ============================================
   FAQ ACCORDION (native details/summary)
   ============================================ */
.faq-accordion { max-width: var(--maxw); }
.faq-item { border-bottom: 1px solid var(--border); background: var(--card); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item__q {
    display: flex; align-items: center; justify-content: space-between; gap: var(--space-sm);
    min-height: 44px; padding: var(--space-md); cursor: pointer; list-style: none;
    font-family: "Playfair Display", serif; font-weight: 600; font-size: 19px; color: var(--foreground);
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__chevron { color: var(--gold); font-size: 22px; transition: transform 300ms var(--ease); flex-shrink: 0; }
.faq-item[open] .faq-item__chevron { transform: rotate(180deg); }
.faq-item__a { padding: 0 var(--space-md) var(--space-md); color: var(--muted-foreground); }
.faq-item__a p:last-child { margin-bottom: 0; }

/* ============================================
   TABLES
   ============================================ */
.table-wrapper { margin: var(--space-md) 0; border: 1px solid var(--border); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; font-size: 15px; }
thead th { background: var(--secondary); color: var(--foreground); text-align: left; font-family: "Manrope", sans-serif; font-weight: 700; padding: var(--space-sm); border-bottom: 1px solid var(--border); }
tbody td { padding: var(--space-sm); border-bottom: 1px solid var(--border); color: var(--muted-foreground); }
tbody tr:last-child td { border-bottom: none; }
tbody tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.col-recommended { color: var(--gold); font-weight: 700; }

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--space-md); padding: var(--space-md) 0; }
.trust-badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px;
    border: 1px solid var(--border); border-radius: 100px; background: var(--card);
    color: var(--muted-foreground); font-size: 14px; font-weight: 600;
}
.trust-badge__icon { color: var(--gold); }

.logo-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--space-md); }
.logo-strip img { height: 40px; width: auto; opacity: 0.85; filter: saturate(0.6); transition: opacity 200ms var(--ease); }
.logo-strip img:hover { opacity: 1; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--card); border-top: 1px solid var(--border); margin-top: var(--space-2xl); position: relative; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold-hairline); }
.site-footer__inner { max-width: var(--maxw); margin: 0 auto; padding: var(--space-xl) var(--space-sm); display: grid; grid-template-columns: minmax(0,1fr); gap: var(--space-lg); }
@media (min-width: 768px) { .site-footer__inner { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .site-footer__inner { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: var(--space-2xl); } }
.footer-col__title { font-family: "Manrope", sans-serif; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: var(--space-sm); }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: var(--muted-foreground); }
.footer-col a:hover { color: var(--gold-strong); }
.site-brand--footer { margin-bottom: var(--space-sm); }
.footer-note { color: var(--muted-foreground); font-size: 15px; }
.footer-license { color: var(--muted-foreground); font-size: 13px; }
.footer-payments { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.footer-payments li { padding: 6px 12px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 13px; font-weight: 600; color: var(--muted-foreground); background: var(--secondary); margin: 0; }
.site-footer__bar { border-top: 1px solid var(--border); }
.site-footer__bar { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-sm); max-width: var(--maxw); margin: 0 auto; padding: var(--space-md) var(--space-sm); }
.site-footer__bar p { margin: 0; font-size: 13px; color: var(--muted-foreground); }
.age-badge { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--coral); color: var(--coral); font-weight: 800; font-size: 14px; }

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
.animate-on-scroll.is-visible { opacity: 1; transform: none; }

/* staggered children via inline transition-delay set in JS-free way: use nth-child */
.grid .animate-on-scroll:nth-child(2) { transition-delay: 80ms; }
.grid .animate-on-scroll:nth-child(3) { transition-delay: 160ms; }
.grid .animate-on-scroll:nth-child(4) { transition-delay: 240ms; }
.grid .animate-on-scroll:nth-child(5) { transition-delay: 320ms; }
.how-to-step:nth-child(2) { transition-delay: 80ms; }
.how-to-step:nth-child(3) { transition-delay: 160ms; }
.how-to-step:nth-child(4) { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .animate-on-scroll { opacity: 1; transform: none; transition: none; }
    * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
