/* ============================================
   GOLDBET CASINO - DESIGN SYSTEM
   Ultra-luxury: Monte Carlo meets Berlin
   Single dark theme · Mobile-first
   ============================================ */

:root {
    /* Brand color tokens */
    --background: #0a0f24;
    --background-2: #0d1430;
    --foreground: #f5ecd9;
    --card: #141a33;
    --card-foreground: #f5ecd9;
    --popover: #141a33;
    --popover-foreground: #f5ecd9;

    --primary: #d4a84a;          /* polished gold */
    --primary-foreground: #0a0f24;
    --gold-light: #e8c878;
    --gold-deep: #b8893a;

    --secondary: #1e2542;        /* slate marble */
    --secondary-foreground: #f5ecd9;

    --muted: #1a2140;
    --muted-foreground: #b8c0d8;  /* steel - passes 4.5:1 on dark */

    --accent: #b388e0;            /* amethyst violet */
    --accent-foreground: #0a0f24;
    --accent-deep: #6e3fb3;

    --destructive: #a01029;
    --destructive-foreground: #ffffff;

    --border: #2d3556;
    --border-gold: rgba(212, 168, 74, 0.35);
    --input: #1e2542;
    --ring: #d4a84a;

    /* Typography */
    --font-serif: "Cormorant Garamond", "Times New Roman", serif;
    --font-sans: "Inter Tight", system-ui, -apple-system, sans-serif;

    /* Scale */
    --fs-eyebrow: 13px;
    --fs-body: 17px;
    --fs-small: 14px;
    --fs-h3: clamp(22px, 2.4vw, 28px);
    --fs-h2: clamp(28px, 4vw, 44px);
    --fs-h1: clamp(36px, 6vw, 64px);
    --fs-mega: clamp(64px, 10vw, 96px);

    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 72px;
    --space-2xl: 120px;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 14px;

    --header-h: 76px;
    --max-w: 1280px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-slow: cubic-bezier(0.22, 0.61, 0.36, 1);

    /* Gradients */
    --gold-gradient: linear-gradient(135deg, #b8893a 0%, #e8c878 45%, #d4a84a 100%);
    --hairline-gold: linear-gradient(90deg, transparent 0%, rgba(212, 168, 74, 0.6) 50%, transparent 100%);
    --marble-veining:
        radial-gradient(ellipse at 20% 10%, rgba(212, 168, 74, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 90%, rgba(179, 136, 224, 0.05) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 50%, rgba(245, 236, 217, 0.015) 0%, transparent 70%);
}

/* ============================================
   RESET & GLOBALS
   ============================================ */

*, *::before, *::after { box-sizing: border-box; }

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

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: var(--fs-body);
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    background-image:
        radial-gradient(ellipse at 30% 0%, rgba(110, 63, 179, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 100%, rgba(184, 137, 58, 0.06) 0%, transparent 60%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, video, iframe, svg { max-width: 100%; height: auto; display: block; }

p, li, td, th { overflow-wrap: break-word; }

a { color: var(--primary); text-decoration: none; transition: color 0.35s var(--ease); }
a:hover { color: var(--gold-light); }

section { overflow: clip; }

::selection { background: var(--primary); color: var(--primary-foreground); }

.skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--primary); color: var(--primary-foreground);
    padding: 12px 20px; z-index: 9999; font-weight: 600;
}
.skip-link:focus { left: 16px; top: 16px; }

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--foreground);
    letter-spacing: -0.01em;
    line-height: 1.15;
    margin: 0 0 var(--space-md);
}

h1 { font-size: var(--fs-h1); font-weight: 500; letter-spacing: -0.015em; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 500; }
h4 { font-size: 18px; font-weight: 600; }

h1 em, h2 em, h3 em {
    font-style: italic;
    color: var(--primary);
    font-weight: 400;
}

p { margin: 0 0 var(--space-md); max-width: 72ch; }

.eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: var(--fs-eyebrow);
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: var(--space-md);
}
.eyebrow--center { display: block; text-align: center; }

.lede { font-size: 19px; color: var(--muted-foreground); max-width: 64ch; }

.hairline {
    height: 1px; width: 100%;
    background: var(--hairline-gold);
    border: 0; margin: var(--space-xl) 0;
}

/* ============================================
   LAYOUT - CONTAINERS, SECTIONS
   ============================================ */

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-md);
}
@media (min-width: 768px) { .container { padding: 0 var(--space-lg); } }
@media (min-width: 1024px) { .container { padding: 0 80px; } }

main { padding-top: var(--header-h); }

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

.section-header { text-align: center; max-width: 820px; margin: 0 auto var(--space-lg); }
.section-header p { margin-left: auto; margin-right: auto; color: var(--muted-foreground); }

.luxe-canvas { position: relative; }
.luxe-canvas::before {
    content: "";
    position: absolute; inset: 0;
    background: var(--marble-veining);
    pointer-events: none; z-index: 0;
}
.luxe-canvas > * { position: relative; z-index: 1; }

.marble-grain {
    background-image:
        radial-gradient(circle at 15% 25%, rgba(245, 236, 217, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(212, 168, 74, 0.03) 0%, transparent 40%);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(10, 15, 36, 0.85);
    border-bottom: 1px solid var(--border);
}
@media (min-width: 1024px) {
    .site-header { backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
}
.site-header::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0;
    height: 1px; background: var(--hairline-gold);
}

.header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-md);
    height: 100%;
    display: flex; align-items: center; justify-content: space-between;
    gap: var(--space-md);
}
@media (min-width: 1024px) { .header-inner { padding: 0 80px; } }

.site-brand {
    display: inline-flex; align-items: baseline; gap: 8px;
    font-family: var(--font-serif); font-size: 24px; font-weight: 500;
    color: var(--foreground); white-space: nowrap;
}
.site-brand:hover { color: var(--foreground); }
.brand-diamond { color: var(--primary); font-size: 14px; transform: translateY(-2px); }
.brand-mark { letter-spacing: 0.01em; }
.brand-mark-accent {
    background: var(--gold-gradient);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
}
.brand-tag {
    font-family: var(--font-sans); font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.22em;
    color: var(--muted-foreground); margin-left: 4px;
}

.primary-nav {
    display: none;
}

@media (min-width: 1024px) {
    .primary-nav {
        display: flex; align-items: center; gap: var(--space-lg);
    }
    .nav-list {
        list-style: none; margin: 0; padding: 0;
        display: flex; gap: var(--space-lg);
    }
    .nav-link {
        font-family: var(--font-sans); font-size: 13px; font-weight: 500;
        text-transform: uppercase; letter-spacing: 0.16em;
        color: var(--foreground); position: relative;
        padding: 8px 0;
    }
    .nav-link::after {
        content: ""; position: absolute; left: 0; bottom: 0;
        height: 1px; width: 0;
        background: var(--gold-gradient);
        transition: width 0.4s var(--ease-slow);
    }
    .nav-link:hover { color: var(--primary); }
    .nav-link:hover::after { width: 100%; }
    .nav-actions { display: flex; gap: var(--space-sm); align-items: center; }
}

/* Mobile drawer */
@media (max-width: 1023px) {
    .primary-nav {
        position: fixed;
        top: var(--header-h); left: 0; right: 0; bottom: 0;
        background: var(--background);
        z-index: 999;
        flex-direction: column;
        padding: var(--space-lg) var(--space-md) var(--space-xl);
        overflow-y: auto;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.45s var(--ease-slow), opacity 0.35s var(--ease), visibility 0.35s;
        display: flex;
    }
    .primary-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-list {
        list-style: none; margin: 0 0 var(--space-lg); padding: 0;
        display: flex; flex-direction: column; align-items: stretch; gap: 0;
        width: 100%;
    }
    .nav-list li { border-bottom: 1px solid var(--border); }
    .nav-link {
        display: flex; align-items: center; min-height: 56px;
        font-family: var(--font-serif); font-size: 24px; font-weight: 500;
        color: var(--foreground); padding: var(--space-sm) 0;
    }
    .nav-actions {
        display: flex; flex-direction: column; gap: var(--space-sm);
        width: 100%; margin-top: var(--space-md);
    }
    .nav-actions .btn { width: 100%; justify-content: center; }
}

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

@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; min-height: 48px;
    padding: 12px 28px;
    font-family: var(--font-sans); font-size: 13px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.16em;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.4s var(--ease);
    text-decoration: none;
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--primary-foreground);
    box-shadow: 0 4px 18px rgba(212, 168, 74, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212, 168, 74, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    color: var(--primary-foreground);
}

.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border-color: var(--border-gold);
}
.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(212, 168, 74, 0.06);
}

.btn-lg { min-height: 56px; padding: 16px 40px; font-size: 14px; }

/* ============================================
   INFO CARD
   ============================================ */

.info-card {
    position: relative;
    background: var(--card);
    background-image: var(--marble-veining);
    padding: 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: transform 0.4s var(--ease-slow), box-shadow 0.4s var(--ease-slow), border-color 0.4s var(--ease-slow);
    overflow: hidden;
    min-width: 0;
}
.info-card::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: var(--hairline-gold);
}
.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(212, 168, 74, 0.18), 0 0 0 1px rgba(179, 136, 224, 0.15);
    border-color: var(--border-gold);
}
.info-card__title {
    font-family: var(--font-serif); font-size: 24px; font-weight: 500;
    color: var(--foreground); margin: 0 0 12px;
    line-height: 1.2;
}
.info-card__desc {
    font-size: 15px; color: var(--muted-foreground);
    line-height: 1.65; margin: 0 0 var(--space-sm);
}
.info-card__value {
    display: flex; align-items: baseline; gap: 12px;
    margin: 0 0 var(--space-sm);
}
.info-card__number {
    font-family: var(--font-serif); font-size: clamp(48px, 7vw, 72px);
    font-weight: 500; line-height: 1;
    background: var(--gold-gradient);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
}
.info-card__value-label {
    font-family: var(--font-sans); font-size: 12px; font-weight: 600;
    color: var(--muted-foreground);
    text-transform: uppercase; letter-spacing: 0.16em;
}
.info-card__icon {
    font-size: 28px; color: var(--primary);
    margin-bottom: 16px;
}
.info-card__meta {
    list-style: none; margin: var(--space-sm) 0 0; padding: 0;
    display: flex; flex-direction: column; gap: 8px;
}
.info-card__meta li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; color: var(--muted-foreground);
}
.meta-dot { color: var(--primary); font-size: 9px; line-height: 1.8; flex-shrink: 0; }
.info-card__link {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: var(--space-md);
    font-family: var(--font-sans); font-size: 12px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.18em;
    color: var(--primary);
}
.info-card__link:hover { gap: 12px; color: var(--gold-light); }

.info-card--violet {
    border-left: 2px solid var(--accent);
}
.info-card--violet::before { background: linear-gradient(90deg, transparent, rgba(179, 136, 224, 0.6), transparent); }

.info-card--wide { grid-column: 1 / -1; }

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

/* ============================================
   FAQ ACCORDION
   ============================================ */

.faq-accordion {
    max-width: 880px; margin: 0 auto;
    border-top: 1px solid var(--border-gold);
}
.faq-item {
    border-bottom: 1px solid var(--border-gold);
    transition: border-color 0.35s var(--ease);
}
.faq-item[open] { border-left: 2px solid var(--accent); padding-left: 0; }
.faq-question {
    list-style: none;
    display: flex; align-items: center; justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-md) var(--space-md) var(--space-md);
    cursor: pointer;
    font-family: var(--font-serif); font-size: clamp(19px, 2.2vw, 22px);
    font-weight: 500; color: var(--foreground);
    transition: color 0.35s var(--ease);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--primary); }
.faq-question__icon {
    width: 18px; height: 18px;
    position: relative; flex-shrink: 0;
}
.faq-question__icon::before,
.faq-question__icon::after {
    content: ""; position: absolute; background: var(--primary);
    transition: transform 0.35s var(--ease);
}
.faq-question__icon::before { left: 0; right: 0; top: 50%; height: 1.5px; transform: translateY(-50%); }
.faq-question__icon::after { top: 0; bottom: 0; left: 50%; width: 1.5px; transform: translateX(-50%); }
.faq-item[open] .faq-question__icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-answer {
    padding: 0 var(--space-md) var(--space-md);
    color: var(--muted-foreground); font-size: 16px; line-height: 1.7;
}
.faq-answer p { margin: 0 0 12px; }
.faq-answer p:last-child { margin: 0; }
.faq-answer a { color: var(--primary); text-decoration: underline; text-decoration-color: var(--border-gold); text-underline-offset: 3px; }

/* ============================================
   STAT HIGHLIGHT
   ============================================ */

.stat-highlight {
    text-align: center;
    padding: 0;
}
.stat-highlight__heading {
    text-align: center; margin: 0 auto var(--space-md);
    max-width: 820px;
}
.stat-highlight__rule {
    width: 0; height: 1px;
    background: var(--hairline-gold);
    margin: 0 auto var(--space-lg);
    transition: width 1.2s var(--ease-slow);
}
.stat-highlight.is-visible .stat-highlight__rule { width: 100%; max-width: 480px; }

.stat-highlight__grid {
    list-style: none; margin: 0; padding: 0;
    display: grid; gap: var(--space-lg);
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .stat-highlight__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .stat-highlight__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--space-md); }
}

.stat-block { text-align: center; padding: var(--space-md) var(--space-sm); }
.stat-block__number {
    display: block;
    font-family: var(--font-serif);
    font-size: var(--fs-mega);
    font-weight: 500; line-height: 1;
    background: var(--gold-gradient);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.stat-block__label {
    display: block;
    font-family: var(--font-sans); font-size: 13px; font-weight: 600;
    color: var(--muted-foreground);
    text-transform: uppercase; letter-spacing: 0.18em;
}
.stat-block__source {
    display: block; margin-top: 8px;
    font-family: var(--font-serif); font-style: italic;
    font-size: 13px; color: var(--muted-foreground);
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
    position: relative;
    padding: var(--space-lg) var(--space-md);
    margin: var(--space-lg) 0 0;
    background: var(--background-2);
    background-image: var(--marble-veining);
    text-align: center;
    overflow: hidden;
}
@media (min-width: 1024px) { .cta-banner { padding: var(--space-xl) var(--space-md); } }
.cta-banner::before,
.cta-banner::after {
    content: ""; position: absolute; left: 0; right: 0;
    height: 1px; background: var(--hairline-gold);
}
.cta-banner::before { top: 0; }
.cta-banner::after { bottom: 0; }

.cta-banner__inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.cta-banner__heading {
    font-size: clamp(32px, 5vw, 52px);
    margin: 0 0 var(--space-md);
}
.cta-banner__subtext {
    font-size: 18px; color: var(--muted-foreground);
    margin: 0 auto var(--space-lg); max-width: 560px;
}
.cta-banner__disclaimer {
    margin: var(--space-md) 0 0;
    font-family: var(--font-sans); font-size: 11px;
    color: var(--gold-light);
    text-transform: uppercase; letter-spacing: 0.18em;
    opacity: 0.85;
}

.cta-banner--secondary { background: var(--card); }

/* ============================================
   LOGO STRIP
   ============================================ */

.logo-strip {
    background: var(--card);
    background-image: var(--marble-veining);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    border-radius: var(--radius-md);
    margin: var(--space-md) 0;
}
.logo-strip__list {
    list-style: none; margin: 0; padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-sm);
    align-items: center;
}
@media (min-width: 600px) {
    .logo-strip__list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .logo-strip__list {
        display: flex; flex-wrap: wrap; justify-content: center;
        gap: 0;
    }
    .logo-strip__item {
        padding: 0 32px;
        border-right: 1px solid var(--border-gold);
    }
    .logo-strip__item:last-child { border-right: 0; }
}
.logo-strip__item {
    min-height: 56px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.4s var(--ease);
}
.logo-strip__label {
    font-family: var(--font-serif); font-size: 22px; font-weight: 500;
    color: var(--muted-foreground);
    letter-spacing: 0.02em;
    transition: all 0.4s var(--ease);
    white-space: nowrap;
}
.logo-strip__item:hover .logo-strip__label {
    background: var(--gold-gradient);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    transform: scale(1.04);
}

/* ============================================
   HERO PATTERNS
   ============================================ */

.hero {
    position: relative;
    padding: var(--space-lg) 0 var(--space-xl);
    overflow: hidden;
}
.hero::before {
    content: ""; position: absolute; left: 0; right: 0; top: 0;
    height: 1px; background: var(--hairline-gold);
}
.hero::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0;
    height: 1px; background: var(--hairline-gold);
}
.hero__inner {
    max-width: 960px; margin: 0 auto; text-align: center;
    padding: 0 var(--space-md);
}
.hero h1 {
    font-size: var(--fs-h1);
    margin: 0 0 var(--space-md);
    font-weight: 400;
}
.hero__lede {
    font-size: clamp(17px, 2vw, 20px);
    color: var(--muted-foreground);
    max-width: 640px; margin: 0 auto var(--space-lg);
}
.hero__badges {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: var(--space-sm); margin-top: var(--space-lg);
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 16px;
    border: 1px solid var(--border-gold);
    border-radius: 99px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--gold-light);
    background: rgba(212, 168, 74, 0.04);
}
.hero__actions {
    display: flex; flex-wrap: wrap; gap: var(--space-sm);
    justify-content: center; margin-top: var(--space-lg);
}

/* ============================================
   CONTENT PATTERNS
   ============================================ */

.tldr-box {
    background: var(--card);
    border-left: 3px solid var(--primary);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.tldr-box__title {
    font-family: var(--font-sans); font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.22em;
    color: var(--primary); margin: 0 0 8px;
}

.callout {
    background: var(--card);
    border: 1px solid var(--border-gold);
    border-left: 3px solid var(--accent);
    padding: var(--space-md);
    margin: var(--space-md) 0;
    border-radius: var(--radius-md);
}
.callout a,
.tldr-box a,
p > a {
    text-decoration: underline;
    text-decoration-color: var(--border-gold);
    text-underline-offset: 3px;
}

.pull-quote {
    font-family: var(--font-serif);
    font-size: clamp(22px, 3vw, 32px);
    font-style: italic;
    color: var(--foreground);
    border-left: 2px solid var(--primary);
    padding: var(--space-sm) 0 var(--space-sm) var(--space-md);
    margin: var(--space-lg) 0;
    line-height: 1.4;
}
.pull-quote cite {
    display: block; margin-top: var(--space-sm);
    font-family: var(--font-sans); font-size: 13px; font-style: normal;
    text-transform: uppercase; letter-spacing: 0.18em;
    color: var(--muted-foreground);
}

.data-table {
    width: 100%; border-collapse: collapse;
    margin: var(--space-md) 0;
    background: var(--card); border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
}
.table-wrapper { width: 100%; overflow-x: auto; }
.data-table thead { background: var(--secondary); }
.data-table th {
    padding: 14px 16px; text-align: left;
    font-family: var(--font-sans); font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--primary);
    border-bottom: 1px solid var(--border-gold);
}
.data-table td {
    padding: 14px 16px; font-size: 15px;
    color: var(--foreground);
    border-bottom: 1px solid var(--border);
}
.data-table tr:last-child td { border-bottom: 0; }
.data-table tr.recommended { background: rgba(212, 168, 74, 0.06); }

details.expand-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin: var(--space-sm) 0;
    padding: 0 var(--space-md);
}
details.expand-box summary {
    list-style: none; cursor: pointer;
    padding: var(--space-md) 0;
    font-weight: 600; color: var(--foreground);
}
details.expand-box summary::-webkit-details-marker { display: none; }

.checklist { list-style: none; padding: 0; margin: var(--space-md) 0; }
.checklist li {
    position: relative; padding-left: 32px; margin-bottom: 12px;
    color: var(--foreground); font-size: 16px;
}
.checklist li::before {
    content: "✓"; position: absolute; left: 0; top: 0;
    width: 22px; height: 22px;
    display: flex; align-items: center; justify-content: center;
    background: var(--gold-gradient);
    color: var(--primary-foreground);
    border-radius: 50%; font-size: 12px; font-weight: 700;
}

.trust-row {
    display: flex; flex-wrap: wrap; gap: var(--space-sm);
    justify-content: center;
    margin: var(--space-lg) 0;
}
.trust-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 18px;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    font-size: 13px; font-weight: 500;
    color: var(--muted-foreground);
    background: rgba(20, 26, 51, 0.6);
}
.trust-badge strong { color: var(--gold-light); }

/* Tier card flourish */
.tier-card { position: relative; }
.tier-card--platinum {
    border: 1px solid var(--primary);
    background: linear-gradient(180deg, var(--card) 0%, rgba(212, 168, 74, 0.06) 100%);
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--background-2);
    background-image: var(--marble-veining);
    border-top: 1px solid var(--border-gold);
    padding: var(--space-xl) 0 var(--space-md);
    margin-top: var(--space-lg);
}
.footer-inner {
    max-width: var(--max-w); margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid; gap: var(--space-xl);
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-lg); }
}
@media (min-width: 1024px) {
    .footer-inner { grid-template-columns: 1.5fr 1fr 1fr 1fr; padding: 0 80px; }
}
.footer-brand {
    display: inline-flex; align-items: baseline; gap: 8px;
    font-family: var(--font-serif); font-size: 26px; font-weight: 500;
    margin-bottom: var(--space-md);
}
.footer-tagline { color: var(--muted-foreground); font-size: 15px; max-width: 360px; }
.footer-license {
    display: flex; flex-wrap: wrap; gap: 12px; margin-top: var(--space-md);
}
.license-badge, .age-badge {
    display: inline-flex; align-items: center;
    padding: 6px 14px;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.16em;
    color: var(--gold-light);
}
.age-badge { color: var(--accent); border-color: var(--accent-deep); }

.footer-heading {
    font-family: var(--font-sans);
    font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.2em;
    color: var(--primary);
    margin: 0 0 var(--space-md);
}
.footer-list, .payment-logos {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-direction: column; gap: 10px;
}
.footer-list a {
    color: var(--muted-foreground); font-size: 14px;
    transition: color 0.35s var(--ease);
}
.footer-list a:hover { color: var(--primary); }

.payment-logos {
    flex-direction: row; flex-wrap: wrap; gap: 8px;
}
.payment-pill {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-serif); font-size: 14px;
    color: var(--muted-foreground);
    background: var(--card);
    transition: all 0.4s var(--ease);
}
.payment-pill:hover {
    color: var(--gold-light);
    border-color: var(--border-gold);
}

.footer-bottom {
    max-width: var(--max-w); margin: var(--space-xl) auto 0;
    padding: var(--space-md) var(--space-md) 0;
    border-top: 1px solid var(--border);
    text-align: center;
}
@media (min-width: 1024px) { .footer-bottom { padding-left: 80px; padding-right: 80px; } }
.footer-copyright, .footer-legal {
    font-size: 13px; color: var(--muted-foreground);
    margin: 0 0 8px;
}
.footer-legal { font-size: 12px; opacity: 0.8; }

/* ============================================
   ANIMATIONS
   ============================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-slow), transform 0.7s var(--ease-slow);
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .animate-on-scroll { opacity: 1; transform: none; }
}

/* ============================================
   UTILITIES
   ============================================ */

.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;
}
.text-center { text-align: center; }
.flow > * + * { margin-top: var(--space-md); }

/* Breadcrumb */
.breadcrumb {
    padding: var(--space-sm) 0;
    font-size: 13px;
}
.breadcrumb ol {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-wrap: wrap; gap: 8px;
    color: var(--muted-foreground);
}
.breadcrumb li + li::before {
    content: "/"; margin-right: 8px; color: var(--border-gold);
}
.breadcrumb a { color: var(--muted-foreground); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb [aria-current="page"] { color: var(--gold-light); }