/*
 * GambleZen Casino - Zen-neon-lounge design system
 * Fonts: Sora (display), Manrope (body)
 * Single dark theme (brief: no theme switcher)
 */

:root {
    --background: #0d0a1a;
    --foreground: #f4f2fb;
    --card: #171331;
    --card-foreground: #f4f2fb;
    --popover: #171331;
    --popover-foreground: #f4f2fb;
    --primary: #a855f7;
    --primary-foreground: #12081f;
    --secondary: #22d3ee;
    --secondary-foreground: #04222a;
    --muted: #221d3f;
    --muted-foreground: #cdc7e4;
    --accent: #f472b6;
    --accent-foreground: #2a0716;
    --destructive: #f43f5e;
    --destructive-foreground: #1a0509;
    --border: #2e2850;
    --input: #2e2850;
    --ring: #a855f7;

    /* spacing rhythm (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;
    --max-w: 1200px;
    --header-h: 68px;

    --font-display: "Sora", system-ui, sans-serif;
    --font-body: "Manrope", system-ui, sans-serif;

    --neon-grad: linear-gradient(120deg, #a855f7 0%, #22d3ee 55%, #f472b6 100%);
    --glow-violet: 0 0 24px rgba(168, 85, 247, 0.55);
    --glow-cyan: 0 0 18px rgba(34, 211, 238, 0.35);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Single theme: .dark tokens identical to :root */
.dark {
    --background: #0d0a1a;
    --foreground: #f4f2fb;
    --card: #171331;
    --card-foreground: #f4f2fb;
    --popover: #171331;
    --popover-foreground: #f4f2fb;
    --primary: #a855f7;
    --primary-foreground: #12081f;
    --secondary: #22d3ee;
    --secondary-foreground: #04222a;
    --muted: #221d3f;
    --muted-foreground: #cdc7e4;
    --accent: #f472b6;
    --accent-foreground: #2a0716;
    --destructive: #f43f5e;
    --destructive-foreground: #1a0509;
    --border: #2e2850;
    --input: #2e2850;
    --ring: #a855f7;
}

/* ============================================
   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 { max-width: 100%; overflow-x: auto; }
p, li, td, th { overflow-wrap: break-word; }
input, textarea, select { max-width: 100%; }
section { overflow: clip; }

/* ============================================
   BASE
   ============================================ */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    background-image:
        radial-gradient(60% 40% at 12% 0%, rgba(168, 85, 247, 0.14), transparent 60%),
        radial-gradient(55% 45% at 92% 8%, rgba(34, 211, 238, 0.1), transparent 60%);
    background-attachment: fixed;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--foreground);
    margin: 0 0 var(--space-sm);
}
h1 { font-size: 28px; font-weight: 700; }
h2 { font-size: 24px; font-weight: 600; }
h3 { font-size: 20px; font-weight: 500; }
p { margin: 0 0 var(--space-md); max-width: 72ch; }
a { color: var(--secondary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { margin: 0 0 var(--space-md); padding-left: 1.4em; }
li { margin-bottom: var(--space-xs); }
small, .small { font-size: 14px; }

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

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: var(--space-sm);
    z-index: 2000;
    border-radius: var(--radius);
}
.skip-link:focus { left: var(--space-sm); top: var(--space-sm); }

.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;
}

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

/* ============================================
   LAYOUT HELPERS
   ============================================ */
.section-wrap {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-md);
}
.section {
    padding: var(--space-xl) 0;
}
@media (min-width: 1024px) {
    .section { padding: var(--space-2xl) 0; }
    .section-wrap { padding: 0 var(--space-lg); }
}
.section--muted { background: var(--muted); }
.section-title { font-size: 24px; margin-bottom: var(--space-lg); }
.section-title--sm { font-size: 20px; }
@media (min-width: 1024px) { .section-title { font-size: 32px; } }

.text-col { max-width: 68ch; }
.lead { font-size: 19px; color: var(--muted-foreground); }
.neon-text {
    background: var(--neon-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ============================================
   BUTTONS
   .btn base; --primary filled; --ghost outline; --glow neon; --lg large
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    min-height: 44px;
    padding: 12px 24px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform 250ms var(--ease), box-shadow 250ms var(--ease), background 250ms var(--ease);
    white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn--primary { background: var(--primary); color: var(--primary-foreground); }
.btn--primary:hover { background: #b972f9; transform: scale(1.03); }
.btn--glow { box-shadow: var(--glow-violet); }
.btn--glow:hover { box-shadow: 0 0 34px rgba(168, 85, 247, 0.8); }
.btn--ghost {
    background: transparent;
    color: var(--foreground);
    border-color: var(--border);
}
.btn--ghost:hover { border-color: var(--secondary); color: var(--secondary); transform: scale(1.03); }
.btn--lg { min-height: 54px; padding: 16px 40px; font-size: 18px; }

/* ============================================
   HEADER + NAV
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #0d0a1a;
    border-bottom: 1px solid var(--border);
}
.site-header__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-md);
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}
.site-brand {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 19px;
    color: var(--foreground);
    text-decoration: none;
    flex-shrink: 0;
}
.site-brand:hover { text-decoration: none; }
.site-brand__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--neon-grad);
    color: #0d0a1a;
    font-weight: 800;
    box-shadow: var(--glow-violet);
}
.site-brand__accent { color: var(--secondary); }

.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 250ms var(--ease), opacity 250ms 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;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--background);
    padding: var(--space-md);
    gap: var(--space-md);
    overflow-y: auto;
}
.primary-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-xs);
}
.primary-nav__list a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 var(--space-sm);
    color: var(--foreground);
    font-family: var(--font-display);
    font-weight: 500;
    border-radius: var(--radius);
    border: 1px solid transparent;
}
.primary-nav__list a:hover {
    text-decoration: none;
    color: var(--secondary);
    border-color: var(--border);
    background: var(--muted);
}
.primary-nav__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}
.primary-nav__actions .btn { width: 100%; }

@media (min-width: 1024px) {
    .nav-toggle { display: none; }
    .primary-nav {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: var(--space-lg);
        position: static;
        background: transparent;
        padding: 0;
    }
    .primary-nav__list { flex-direction: row; align-items: center; gap: var(--space-md); }
    .primary-nav__list a { min-height: 40px; padding: 0 var(--space-xs); border: none; }
    .primary-nav__list a:hover { background: transparent; }
    .primary-nav__actions { flex-direction: row; gap: var(--space-sm); }
    .primary-nav__actions .btn { width: auto; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    padding: var(--space-xl) 0 var(--space-2xl);
    background:
        radial-gradient(70% 60% at 80% 30%, rgba(168, 85, 247, 0.22), transparent 65%),
        radial-gradient(60% 50% at 10% 80%, rgba(34, 211, 238, 0.14), transparent 60%);
}
.hero__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid;
    gap: var(--space-xl);
    align-items: center;
}
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: var(--space-sm);
}
.hero h1 { margin-bottom: var(--space-md); }
.hero__sub { color: var(--foreground); font-size: 18px; margin-bottom: var(--space-lg); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-bottom: var(--space-md); }
.hero__media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--glow-violet);
}
.hero__media img { display: block; width: 100%; height: auto; }
.hero__note { font-size: 14px; color: var(--muted-foreground); }

@media (min-width: 1024px) {
    .hero { padding: var(--space-xl) 0; }
    .hero__inner { grid-template-columns: 1.1fr 1fr; }
}

/* ============================================
   SPLIT BAND (image + text)
   ============================================ */
.split {
    display: grid;
    gap: var(--space-lg);
    align-items: center;
}
.split__media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--glow-cyan);
}
.split__media img { display: block; width: 100%; }
@media (min-width: 768px) {
    .split { grid-template-columns: 1fr 1fr; }
    .split--reverse .split__media { order: 2; }
}

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

.info-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.08);
    transition: transform 250ms var(--ease), box-shadow 250ms var(--ease), border-color 250ms var(--ease);
}
.info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 211, 238, 0.5);
    box-shadow: var(--glow-cyan);
}
.info-card__media img { display: block; width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.info-card__icon {
    font-size: 34px;
    padding: var(--space-md) var(--space-md) 0;
}
.info-card__body { padding: var(--space-md); }
@media (min-width: 1024px) { .info-card__body { padding: var(--space-lg); } }
.info-card__title { font-size: 20px; margin-bottom: var(--space-xs); }
.info-card__text { color: var(--muted-foreground); font-size: 16px; margin-bottom: var(--space-sm); }
.info-card__link {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--primary);
}

/* ============================================
   STAT HIGHLIGHT
   ============================================ */
.stat-highlight {
    position: relative;
    padding: var(--space-xl) 0;
    background: var(--background);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
@media (min-width: 1024px) { .stat-highlight { padding: var(--space-2xl) 0; } }
.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-md);
}
@media (min-width: 768px) {
    .stat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.stat-item {
    text-align: center;
    padding: var(--space-md);
    border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-item__number {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 36px;
    line-height: 1.1;
    background: var(--neon-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 22px rgba(168, 85, 247, 0.3);
    margin-bottom: var(--space-xs);
}
@media (min-width: 1024px) { .stat-item__number { font-size: 48px; } }
.stat-item__label { font-size: 15px; color: var(--foreground); }

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-badges {
    padding: var(--space-xl) 0;
    background: var(--muted);
    background-image: radial-gradient(50% 80% at 50% 0%, rgba(168, 85, 247, 0.12), transparent 70%);
}
.trust-badges__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
}
.trust-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-md);
    min-height: 56px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    filter: grayscale(0.4);
    transition: filter 250ms var(--ease), border-color 250ms var(--ease);
}
.trust-badge:hover { filter: grayscale(0); border-color: var(--secondary); }
.trust-badge img { display: block; max-height: 44px; width: auto; }
.trust-badge__text { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--foreground); }
.trust-badges__caption {
    text-align: center;
    margin: var(--space-md) 0 0;
    font-size: 14px;
    color: var(--muted-foreground);
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
    position: relative;
    padding: var(--space-xl) var(--space-md);
    text-align: center;
    background:
        radial-gradient(60% 100% at 50% 0%, rgba(168, 85, 247, 0.28), transparent 70%),
        #0a0716;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
@media (min-width: 1024px) { .cta-band { padding: var(--space-2xl) var(--space-md); } }
.cta-band__inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.cta-band__title { font-size: 28px; font-weight: 700; color: var(--primary); text-shadow: var(--glow-violet); }
@media (min-width: 1024px) { .cta-band__title { font-size: 36px; } }
.cta-band__text { color: var(--foreground); margin: 0 auto var(--space-lg); }
.cta-band__micro { font-size: 13px; color: var(--muted-foreground); margin: var(--space-md) 0 0; }
.cta-band__particles span {
    position: absolute;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--secondary);
    opacity: 0.5;
    animation: drift 9s var(--ease) infinite;
}
.cta-band__particles span:nth-child(1) { left: 8%; top: 20%; background: var(--primary); animation-delay: 0s; }
.cta-band__particles span:nth-child(2) { left: 22%; top: 70%; animation-delay: 1.5s; }
.cta-band__particles span:nth-child(3) { left: 68%; top: 25%; background: var(--accent); animation-delay: 3s; }
.cta-band__particles span:nth-child(4) { left: 84%; top: 62%; animation-delay: 2.2s; }
.cta-band__particles span:nth-child(5) { left: 50%; top: 15%; background: var(--primary); animation-delay: 4s; }

.stat-highlight__particles span {
    position: absolute;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--secondary); opacity: 0.35;
    animation: drift 11s var(--ease) infinite;
}
.stat-highlight__particles span:nth-child(1) { left: 15%; top: 30%; }
.stat-highlight__particles span:nth-child(2) { left: 55%; top: 65%; background: var(--primary); animation-delay: 2s; }
.stat-highlight__particles span:nth-child(3) { left: 82%; top: 25%; background: var(--accent); animation-delay: 4s; }

/* ============================================
   ENGAGEMENT PATTERNS
   ============================================ */
/* Summary / TL;DR */
.tldr {
    background: var(--muted);
    border: 1px solid var(--border);
    border-left: 4px solid var(--secondary);
    border-radius: var(--radius);
    padding: var(--space-md);
    margin: 0 0 var(--space-lg);
}
.tldr__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: var(--space-xs);
}
.tldr p:last-child { margin-bottom: 0; }

/* Callout / highlight */
.callout {
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    padding: var(--space-md);
    margin: var(--space-lg) 0;
}
.callout--accent { border-left-color: var(--accent); background: rgba(244, 114, 182, 0.08); }
.callout__title { font-family: var(--font-display); font-weight: 600; margin-bottom: var(--space-xs); }
.callout p:last-child { margin-bottom: 0; }

/* Pull quote */
.pullquote {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 22px;
    line-height: 1.35;
    color: var(--foreground);
    border-left: 4px solid var(--accent);
    padding: var(--space-sm) 0 var(--space-sm) var(--space-md);
    margin: var(--space-lg) 0;
}
@media (min-width: 1024px) { .pullquote { font-size: 26px; } }
.pullquote cite { display: block; font-size: 15px; font-weight: 500; font-style: normal; color: var(--muted-foreground); margin-top: var(--space-sm); }

/* details / summary + FAQ */
.faq-section { padding: var(--space-xl) 0; }
@media (min-width: 1024px) { .faq-section { padding: var(--space-2xl) 0; } }
.faq-list { display: flex; flex-direction: column; gap: var(--space-sm); }
.faq-item {
    background: var(--muted);
    border: 1px solid var(--border);
    border-left: 3px solid var(--secondary);
    border-radius: var(--radius);
    overflow: hidden;
}
.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: var(--font-display);
    font-weight: 500;
    font-size: 17px;
    color: var(--foreground);
}
@media (min-width: 1024px) { .faq-item__q { padding: var(--space-lg); } }
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__chevron {
    flex-shrink: 0;
    width: 12px; height: 12px;
    border-right: 2px solid var(--secondary);
    border-bottom: 2px solid var(--secondary);
    transform: rotate(45deg);
    transition: transform 250ms var(--ease);
}
.faq-item[open] .faq-item__chevron { transform: rotate(-135deg); }
.faq-item__a { padding: 0 var(--space-md) var(--space-md); }
@media (min-width: 1024px) { .faq-item__a { padding: 0 var(--space-lg) var(--space-lg); } }
.faq-item__a p { color: var(--foreground); margin-bottom: 0; }

.disclosure {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--muted);
    margin-bottom: var(--space-sm);
}
.disclosure summary {
    padding: var(--space-md);
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 500;
    list-style: none;
}
.disclosure summary::-webkit-details-marker { display: none; }
.disclosure > *:not(summary) { padding: 0 var(--space-md) var(--space-md); }

/* Comparison table */
.table-wrapper { margin: var(--space-lg) 0; border: 1px solid var(--border); border-radius: var(--radius); }
table.compare {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px;
    font-size: 16px;
}
table.compare th, table.compare td {
    padding: var(--space-sm) var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--border);
}
table.compare thead th {
    background: var(--muted);
    font-family: var(--font-display);
    color: var(--secondary);
}
table.compare tbody tr:last-child td { border-bottom: none; }
table.compare .is-recommended { background: rgba(168, 85, 247, 0.1); }

/* Social proof card */
.proof-grid { display: grid; gap: var(--space-md); grid-template-columns: minmax(0,1fr); }
@media (min-width: 768px) { .proof-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.proof-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
}
.proof-card__quote { font-style: italic; color: var(--foreground); }
.proof-card__author { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--muted-foreground); }

/* Step / process list */
.steps { list-style: none; counter-reset: step; padding: 0; }
.steps li {
    position: relative;
    padding-left: 52px;
    margin-bottom: var(--space-md);
}
.steps li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0; top: 0;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--primary-foreground);
    background: var(--primary);
    border-radius: 50%;
    box-shadow: var(--glow-violet);
}

/* ============================================
   TIER STEPS (loyalty levels)
   ============================================ */
.tier-steps {
    list-style: none;
    counter-reset: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-md);
}
@media (min-width: 768px) { .tier-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .tier-steps { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: var(--space-lg); } }
.tier-step {
    margin: 0;
    text-align: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.08);
    transition: transform 250ms var(--ease), box-shadow 250ms var(--ease), border-color 250ms var(--ease);
}
.tier-step:hover {
    transform: translateY(-4px);
    border-color: rgba(244, 114, 182, 0.5);
    box-shadow: var(--glow-violet);
}
.tier-step__badge { display: block; width: 88px; height: 88px; margin: 0 auto var(--space-sm); }
.tier-step h3 { font-size: 18px; margin-bottom: var(--space-xs); }
.tier-step p { font-size: 15px; color: var(--muted-foreground); margin: 0; }

/* ============================================
   SITEMAP LIST
   ============================================ */
.sitemap-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: var(--space-md); }
.sitemap-list li {
    background: var(--muted);
    border: 1px solid var(--border);
    border-left: 4px solid var(--secondary);
    border-radius: var(--radius);
    padding: var(--space-md);
    margin: 0;
}
.sitemap-list h3 { margin-bottom: var(--space-xs); }
.sitemap-list p { color: var(--muted-foreground); margin: 0; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #0a0716;
    border-top: 1px solid var(--border);
    margin-top: var(--space-2xl);
}
.site-footer__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-xl) var(--space-md);
    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: repeat(4, minmax(0,1fr)); } }
.footer-brand { font-family: var(--font-display); font-weight: 700; font-size: 20px; display: inline-block; margin-bottom: var(--space-sm); }
.footer-col__title { font-size: 16px; font-family: var(--font-display); color: var(--secondary); margin-bottom: var(--space-sm); }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: var(--space-xs); }
.footer-col a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: var(--foreground);
}
.footer-col a:hover { color: var(--secondary); }
.footer-note { font-size: 14px; color: var(--muted-foreground); }
.footer-pay { display: flex; flex-wrap: wrap; gap: var(--space-xs); }
.footer-pay li {
    font-size: 13px;
    padding: 4px 10px;
    background: var(--muted);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--foreground);
}
.footer-badges { display: flex; flex-wrap: wrap; gap: var(--space-xs); margin-bottom: var(--space-sm); }
.footer-badge {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid var(--border);
    color: var(--secondary);
}
.footer-badge--age { color: var(--accent); border-color: var(--accent); }
.site-footer__bar {
    border-top: 1px solid var(--border);
    text-align: center;
    padding: var(--space-md);
}
.site-footer__bar p { margin: 0; font-size: 14px; color: var(--muted-foreground); }

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

@keyframes drift {
    0%   { transform: translate(0, 0); }
    50%  { transform: translate(12px, -18px); }
    100% { transform: translate(0, 0); }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .animate-on-scroll { opacity: 1; transform: none; transition: none; }
    .cta-band__particles span, .stat-highlight__particles span { animation: none; }
    .btn { transition: none; }
}

/* a11y-autofix: link-in-text-block */
/* axe link-in-text-block: inline links inside body copy must be
   distinguishable without relying on color. Scope to text containers so
   nav/button/card links (already visually distinct) keep their styling. */
:where(p, li, blockquote, figcaption, dd, .prose, .seo-text, article)
  a:not([class]) {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
