/*
 * MILLIONER CASINO - Design System
 * Opulent nocturnal luxury: espresso-black, bullion gold, champagne accents.
 * Fonts: Cinzel (display), Manrope (body/UI).
 * Single fixed dark theme - no toggle.
 */

:root {
    --background: #0e0a08;
    --foreground: #f5ead6;
    --card: #17100d;
    --card-foreground: #f5ead6;
    --popover: #120c0a;
    --popover-foreground: #f5ead6;
    --primary: #d4af37;
    --primary-foreground: #171008;
    --secondary: #1f4a3a;
    --secondary-foreground: #f5ead6;
    --muted: #2a1d15;
    --muted-foreground: #c9b29a;
    --accent: #8a5a2b;
    --accent-foreground: #fff6e6;
    --destructive: #c81e3a;
    --destructive-foreground: #fff1f2;
    --border: #6b4f2a;
    --input: #18100d;
    --ring: #e6c15a;

    /* Extended luxury palette */
    --gold: #d4af37;
    --gold-bright: #e6c15a;
    --champagne: #f0dca0;
    --bronze: #6b4f2a;
    --bronze-line: rgba(139, 90, 43, 0.5);
    --burgundy: #4a1420;
    --emerald: #1f4a3a;
    --ruby-glow: rgba(200, 30, 58, 0.35);
    --velvet: #0a0705;

    /* Fonts */
    --font-display: "Cinzel", Georgia, serif;
    --font-body: "Manrope", system-ui, sans-serif;

    /* Spacing (8px base) */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 72px;
    --space-2xl: 128px;

    /* Layout */
    --measure: 1180px;
    --radius: 6px;
    --header-h: 68px;

    /* Motion */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --dur: 240ms;

    --gold-gradient: linear-gradient(135deg, #f0dca0 0%, #d4af37 45%, #a8801f 100%);
    --halo: radial-gradient(circle at 50% 40%, rgba(212, 175, 55, 0.22), transparent 60%);
}

/* ============================================
   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 / RESET
   ============================================ */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background-color: var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 16.5px;
    line-height: 1.58;
    font-weight: 400;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 15% -10%, rgba(212, 175, 55, 0.06), transparent 45%),
        radial-gradient(circle at 85% 5%, rgba(139, 90, 43, 0.08), transparent 40%);
}

@media (min-width: 1024px) {
    body { font-size: 18px; }
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 var(--space-sm);
    color: var(--foreground);
}

p { margin: 0 0 var(--space-sm); }

a { color: var(--gold-bright); text-decoration: none; transition: color var(--dur) var(--ease); }
a:hover { color: var(--champagne); }

ul, ol { margin: 0; padding: 0; }

img { display: block; }

.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(--gold); color: var(--primary-foreground);
    padding: 12px 20px; border-radius: 0 0 var(--radius) 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

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

/* ============================================
   TYPOGRAPHY UTILITIES
   .eyebrow - small wide-tracked label
   .section-heading - H2 with gold rule
   .gold-text - gold gradient display fill
   ============================================ */
.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: var(--space-sm);
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-heading {
    font-size: 28px;
    margin-bottom: var(--space-md);
}
@media (min-width: 1024px) {
    .section-heading { font-size: 44px; }
}

.lead {
    font-size: 1.1em;
    color: var(--muted-foreground);
    max-width: 68ch;
}

.prose p, .prose li { max-width: 72ch; }
.prose h2 { font-size: 28px; margin-top: var(--space-lg); }
@media (min-width: 1024px) { .prose h2 { font-size: 40px; } }
.prose h3 {
    font-family: var(--font-body);
    font-size: 22px; font-weight: 700;
    margin-top: var(--space-md);
}
@media (min-width: 1024px) { .prose h3 { font-size: 26px; } }
.prose ul { list-style: none; margin: 0 0 var(--space-md); }
.prose ul li {
    position: relative; padding-left: 26px; margin-bottom: 10px;
    color: var(--muted-foreground);
}
.prose ul li::before {
    content: "◆"; position: absolute; left: 0; top: 0;
    color: var(--gold); font-size: 0.8em;
}

/* ============================================
   LAYOUT
   .container - centered 1180px measure
   .section - vertical rhythm
   ============================================ */
.container {
    width: 100%;
    max-width: var(--measure);
    margin: 0 auto;
    padding-inline: var(--space-md);
}

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

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

.section-head {
    max-width: 760px;
    margin-bottom: var(--space-lg);
}
.section-head--center {
    margin-inline: auto;
    text-align: center;
}

/* ============================================
   BUTTONS
   .btn--gold - dominant CTA (bullion gold)
   .btn--ghost - bordered secondary
   .btn--lg - larger CTA
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 26px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.01em;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    text-align: center;
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
                background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.btn--gold {
    background: var(--gold-gradient);
    color: var(--primary-foreground);
    box-shadow: 0 6px 22px rgba(212, 175, 55, 0.28);
}
.btn--gold:hover {
    color: var(--primary-foreground);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(212, 175, 55, 0.45);
}

.btn--ghost {
    background: transparent;
    color: var(--foreground);
    border-color: var(--bronze);
}
.btn--ghost:hover {
    color: var(--champagne);
    border-color: var(--gold-bright);
    background: rgba(212, 175, 55, 0.06);
}

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

@media (max-width: 639px) {
    .btn--block-mobile { width: 100%; }
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(14, 10, 8, 0.94);
    border-bottom: 1px solid var(--bronze-line);
}
@media (min-width: 1024px) {
    .site-header {
        background: rgba(14, 10, 8, 0.82);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
}

.site-header__inner {
    max-width: var(--measure);
    margin: 0 auto;
    min-height: var(--header-h);
    padding-inline: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--foreground);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.03em;
    z-index: 1001;
}
.site-brand:hover { color: var(--foreground); }

.site-brand__mark {
    display: grid;
    place-items: center;
    width: 38px; height: 38px;
    background: var(--gold-gradient);
    color: var(--primary-foreground);
    border-radius: 8px;
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 2px 12px rgba(212, 175, 55, 0.3);
}
.site-brand__text { font-size: 19px; }
.site-brand__accent { color: var(--gold); }

/* Burger */
.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 48px; height: 48px;
    background: transparent;
    border: 1px solid var(--bronze-line);
    border-radius: var(--radius);
    cursor: pointer;
    z-index: 1001;
    padding: 0 12px;
}
.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--gold-bright);
    transition: transform var(--dur) var(--ease), opacity var(--dur) 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); }

/* Mobile drawer default */
.primary-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0; bottom: 0;
    z-index: 999;
    background: var(--background);
    border-top: 1px solid var(--bronze-line);
    padding: var(--space-lg) var(--space-md);
    overflow-y: auto;
    flex-direction: column;
    gap: var(--space-lg);
}
.primary-nav.is-open { display: flex; }

.primary-nav__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
}
.primary-nav__link {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 12px;
    color: var(--foreground);
    font-weight: 600;
    font-size: 18px;
    border-bottom: 1px solid var(--bronze-line);
}
.primary-nav__link:hover { color: var(--champagne); }

.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;
        position: static;
        flex-direction: row;
        align-items: center;
        gap: var(--space-lg);
        padding: 0;
        background: transparent;
        border: none;
        overflow: visible;
    }
    .primary-nav__list { flex-direction: row; gap: var(--space-md); align-items: center; }
    .primary-nav__link {
        min-height: 40px;
        font-size: 15px;
        font-weight: 600;
        border: none;
        padding: 0;
        position: relative;
    }
    .primary-nav__link::after {
        content: ""; position: absolute; left: 0; bottom: -4px;
        width: 0; height: 2px; background: var(--gold);
        transition: width var(--dur) var(--ease);
    }
    .primary-nav__link:hover::after { width: 100%; }
    .primary-nav__actions { flex-direction: row; }
    .primary-nav__actions .btn { width: auto; min-height: 44px; }
}

/* ============================================
   HERO
   .hero - full-bleed dark hero with model bg
   ============================================ */
.hero {
    position: relative;
    padding-block: var(--space-xl);
    isolation: isolate;
}
@media (min-width: 1024px) {
    .hero { padding-block: var(--space-2xl); min-height: 78vh; display: flex; align-items: center; }
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}
.hero__bg img {
    width: 100%; height: 100%; object-fit: cover; object-position: center right;
}
.hero__overlay {
    position: absolute; inset: 0; z-index: -1;
    background:
        linear-gradient(90deg, rgba(14,10,8,0.96) 0%, rgba(14,10,8,0.82) 45%, rgba(14,10,8,0.45) 100%),
        var(--halo);
}

.hero__inner {
    max-width: var(--measure);
    margin: 0 auto;
    padding-inline: var(--space-md);
    width: 100%;
}
.hero__content { max-width: 640px; }

.hero__title {
    font-size: 34px;
    margin-bottom: var(--space-md);
}
@media (min-width: 768px) { .hero__title { font-size: 48px; } }
@media (min-width: 1024px) { .hero__title { font-size: 64px; } }

.hero__subline {
    font-size: 1.05em;
    color: var(--foreground);
    max-width: 56ch;
    margin-bottom: var(--space-lg);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}
@media (max-width: 639px) {
    .hero__actions .btn { width: 100%; }
}

.hero__micro {
    font-size: 14px;
    color: var(--muted-foreground);
    letter-spacing: 0.02em;
    margin: 0;
}

/* ============================================
   TRUST RIBBON
   ============================================ */
.trust-ribbon {
    border-block: 1px solid var(--bronze-line);
    background: var(--velvet);
}
.trust-ribbon__grid {
    max-width: var(--measure);
    margin: 0 auto;
    padding: var(--space-md);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
}
@media (min-width: 768px) {
    .trust-ribbon__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.trust-ribbon__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: var(--space-sm);
    position: relative;
}
.trust-ribbon__item + .trust-ribbon__item::before {
    content: none;
}
.trust-ribbon__icon { width: 30px; height: 30px; color: var(--gold); }
.trust-ribbon__label { font-size: 14px; font-weight: 600; color: var(--foreground); }

/* ============================================
   CARDS / GRID
   .card-grid - responsive card grid
   .info-card - universal premium card
   ============================================ */
.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--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .card-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.info-card {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    background: var(--card);
    border: 1px solid var(--bronze-line);
    border-radius: var(--radius);
    padding: var(--space-md);
    clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
    transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
@media (min-width: 1024px) {
    .info-card { padding: var(--space-lg); }
}
.info-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-bright);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
}

.info-card__media {
    margin: calc(-1 * var(--space-md)) calc(-1 * var(--space-md)) var(--space-md);
    border-bottom: 1px solid var(--bronze-line);
    overflow: hidden;
}
@media (min-width: 1024px) {
    .info-card__media { margin: calc(-1 * var(--space-lg)) calc(-1 * var(--space-lg)) var(--space-md); }
}
.info-card__media img { width: 100%; height: 220px; object-fit: cover; }

.info-card__media--transparent {
    margin: 0 0 var(--space-sm);
    border: none;
    background: var(--halo);
    border-radius: var(--radius);
}
.info-card__media--transparent img { height: 180px; object-fit: contain; padding: 12px; }

.info-card__icon {
    width: 56px; height: 56px;
    display: grid; place-items: center;
    margin-bottom: var(--space-sm);
    color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--bronze-line);
    border-radius: 10px;
}
.info-card__icon svg { width: 30px; height: 30px; }

.info-card__body { display: flex; flex-direction: column; flex: 1; }
.info-card__title {
    font-family: var(--font-body);
    font-size: 20px; font-weight: 700;
    margin-bottom: 10px;
}
.info-card__text { color: var(--muted-foreground); margin-bottom: var(--space-sm); }
.info-card__link {
    margin-top: auto;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.info-card__link::after { content: "→"; transition: transform var(--dur) var(--ease); }
.info-card__link:hover::after { transform: translateX(4px); }

/* Featured single card (bonus teaser) */
.feature-panel {
    display: grid;
    gap: var(--space-lg);
    background: var(--card);
    border: 1px solid var(--bronze-line);
    border-radius: var(--radius);
    padding: var(--space-lg);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}
@media (min-width: 1024px) {
    .feature-panel { grid-template-columns: 1.2fr 1fr; align-items: start; padding: var(--space-xl); }
}
.feature-panel__media { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--bronze-line); }
.feature-panel__media img { width: 100%; height: 100%; object-fit: cover; max-height: 340px; }

/* Two-column split section */
.split {
    display: grid;
    gap: var(--space-lg);
    align-items: center;
}
@media (min-width: 1024px) {
    .split { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-xl); }
    .split--reverse .split__media { order: 2; }
}
.split__media {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--bronze-line);
}
.split__media img { width: 100%; height: auto; object-fit: cover; }
.split__media--transparent {
    border: none;
    background: var(--halo);
    display: grid;
    place-items: center;
    min-height: 260px;
}
.split__media--transparent img { object-fit: contain; max-height: 320px; }

/* ============================================
   STAT BLOCK
   ============================================ */
.stat-block { text-align: center; }
.stat-block__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--bronze-line);
    border: 1px solid var(--bronze-line);
    border-radius: var(--radius);
    overflow: hidden;
}
@media (min-width: 768px) {
    .stat-block__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .stat-block__grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.stat-block__item {
    background: var(--card);
    padding: var(--space-lg) var(--space-md);
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    background-image: radial-gradient(circle at 50% 30%, rgba(212,175,55,0.08), transparent 65%);
}
.stat-block__number {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 700;
    line-height: 1;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.stat-block__label { font-size: 15px; color: var(--foreground); font-weight: 600; }
.stat-block__note { font-size: 14px; color: var(--muted-foreground); }

/* ============================================
   RECENT WINS / SOCIAL PROOF FEED
   Static scroll-snap rail (no infinite marquee)
   ============================================ */
.wins-feed {
    display: flex;
    gap: var(--space-sm);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: var(--space-xs);
    -webkit-overflow-scrolling: touch;
    /* Subtle edge fade on the outermost pixels only: signals horizontal
       scrollability without dimming the last fully visible card. */
    -webkit-mask-image: linear-gradient(90deg, #000 96%, transparent 100%);
    mask-image: linear-gradient(90deg, #000 96%, transparent 100%);
}
.wins-feed__chip {
    flex: 0 0 auto;
    scroll-snap-align: start;
    min-width: 220px;
    background: var(--card);
    border: 1px solid var(--bronze-line);
    border-radius: var(--radius);
    padding: var(--space-sm) var(--space-md);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.wins-feed__player { font-weight: 700; font-size: 15px; color: var(--foreground); }
.wins-feed__game { font-size: 14px; color: var(--muted-foreground); }
.wins-feed__amount {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    color: var(--gold-bright);
}
.wins-feed__time { font-size: 13px; color: var(--muted-foreground); }

/* ============================================
   LOGO / BADGE STRIP
   ============================================ */
.logo-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-sm);
}
@media (max-width: 639px) {
    /* Two wider columns at 375px so long wordmarks
       (Mastercard, Neteller) are never clipped. */
    .logo-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .logo-strip__item { padding: 10px 8px; }
    .logo-strip__text { font-size: 15px; letter-spacing: 0.02em; }
}
@media (min-width: 768px) {
    .logo-strip { grid-template-columns: repeat(6, minmax(0, 1fr)); }
    .logo-strip--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.logo-strip__item {
    display: grid;
    place-items: center;
    background: var(--card);
    border: 1px solid var(--bronze-line);
    border-radius: var(--radius);
    padding: var(--space-sm);
    min-height: 84px;
}
.logo-strip__item img { max-height: 48px; width: auto; object-fit: contain; }

/* ============================================
   STEPS (how-to)
   ============================================ */
.steps {
    display: grid;
    gap: var(--space-md);
}
@media (min-width: 768px) {
    .steps--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.step {
    background: var(--card);
    border: 1px solid var(--bronze-line);
    border-radius: var(--radius);
    padding: var(--space-lg);
}
.step__num {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    margin-bottom: var(--space-sm);
}
.step__title { font-family: var(--font-body); font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.step__text { color: var(--muted-foreground); margin: 0; }

/* ============================================
   TABLES (comparison / limits)
   .lux-table - dense premium table
   .lux-table__col--highlight - recommended column
   ============================================ */
.table-wrapper { margin-bottom: var(--space-md); border-radius: var(--radius); border: 1px solid var(--bronze-line); }

.lux-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
    font-size: 15px;
    min-width: 520px;
}
.lux-table thead th {
    background: var(--muted);
    color: var(--champagne);
    font-family: var(--font-body);
    font-weight: 700;
    text-align: left;
    padding: 16px;
    border-bottom: 1px solid var(--bronze);
    letter-spacing: 0.02em;
}
.lux-table td {
    padding: 16px;
    border-bottom: 1px solid var(--bronze-line);
    color: var(--foreground);
}
.lux-table tbody tr:last-child td { border-bottom: none; }
.lux-table tbody tr:hover td { background: rgba(212, 175, 55, 0.05); }
.lux-table th[scope="row"] {
    text-align: left;
    font-weight: 700;
    color: var(--muted-foreground);
    padding: 16px;
    border-bottom: 1px solid var(--bronze-line);
}
.lux-table__col--highlight {
    background: rgba(212, 175, 55, 0.08);
    color: var(--champagne) !important;
    font-weight: 700;
}

/* ============================================
   ENGAGEMENT PATTERNS
   .tldr-box, .callout, .pull-quote, .stat-highlight
   ============================================ */
.tldr-box {
    background: var(--card);
    border: 1px solid var(--bronze-line);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius);
    padding: var(--space-md) var(--space-lg);
    margin-bottom: var(--space-lg);
}
.tldr-box__label {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 8px;
}
.tldr-box p { margin: 0; color: var(--foreground); }

.callout {
    background: rgba(139, 90, 43, 0.12);
    border: 1px solid var(--bronze-line);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
    padding: var(--space-md);
    margin-block: var(--space-md);
}
.callout__title { font-family: var(--font-body); font-size: 17px; font-weight: 700; color: var(--champagne); margin-bottom: 6px; }
.callout p { margin: 0; color: var(--muted-foreground); }

.pull-quote {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.4;
    color: var(--champagne);
    border-left: 3px solid var(--gold);
    padding-left: var(--space-md);
    margin-block: var(--space-lg);
}
.pull-quote cite {
    display: block;
    font-family: var(--font-body);
    font-size: 15px;
    font-style: normal;
    color: var(--muted-foreground);
    margin-top: var(--space-sm);
}

.stat-highlight {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
}
.stat-highlight__num {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-highlight__label { font-size: 15px; color: var(--muted-foreground); }

/* ============================================
   FAQ ACCORDION (native details)
   ============================================ */
.faq__list { display: flex; flex-direction: column; gap: var(--space-sm); }
.faq__item {
    background: var(--card);
    border: 1px solid var(--bronze-line);
    border-radius: var(--radius);
    transition: border-color var(--dur) var(--ease);
}
.faq__item:hover { border-color: var(--gold-bright); }
.faq__item[open] { border-color: var(--gold); }

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    min-height: 48px;
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 17px;
    color: var(--foreground);
    cursor: pointer;
    list-style: none;
}
.faq__question::-webkit-details-marker { display: none; }

.faq__icon {
    position: relative;
    flex: 0 0 auto;
    width: 20px; height: 20px;
}
.faq__icon::before, .faq__icon::after {
    content: ""; position: absolute; background: var(--gold);
    transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.faq__icon::before { top: 9px; left: 0; width: 20px; height: 2px; }
.faq__icon::after { left: 9px; top: 0; width: 2px; height: 20px; }
.faq__item[open] .faq__icon::after { transform: scaleY(0); opacity: 0; }

.faq__answer {
    padding: 0 var(--space-md) var(--space-md);
    color: var(--muted-foreground);
}
.faq__answer p { margin: 0; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    background: var(--velvet);
    background-image: var(--halo);
    border-block: 1px solid var(--bronze-line);
    padding-block: var(--space-xl);
    text-align: center;
    isolation: isolate;
}
.cta-banner__inner {
    max-width: 760px;
    margin: 0 auto;
    padding-inline: var(--space-md);
}
.cta-banner__heading {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: var(--space-sm);
    background: var(--gold-gradient);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cta-banner__subline { color: var(--foreground); max-width: 56ch; margin: 0 auto var(--space-lg); }
.cta-banner .btn--gold { min-width: 260px; }
@media (max-width: 639px) { .cta-banner .btn--gold { width: 100%; } }
.cta-banner__micro { font-size: 14px; color: var(--muted-foreground); margin: var(--space-sm) 0 0; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--velvet);
    border-top: 1px solid var(--bronze-line);
    padding-top: var(--space-xl);
    margin-top: var(--space-lg);
}
.site-footer__inner {
    max-width: var(--measure);
    margin: 0 auto;
    padding-inline: 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: 1.4fr 1fr 1fr 1.2fr; }
}

.site-brand--footer { margin-bottom: var(--space-sm); }
.footer-blurb { color: var(--muted-foreground); font-size: 15px; max-width: 42ch; }
.footer-age {
    display: inline-grid;
    place-items: center;
    width: 44px; height: 44px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-weight: 800;
    font-family: var(--font-display);
    margin: 0;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--champagne);
    margin-bottom: var(--space-sm);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--muted-foreground); font-size: 15px; }
.footer-links a:hover { color: var(--champagne); }

.footer-badges, .footer-trust {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: var(--space-sm);
}
.footer-badges li, .footer-trust li {
    font-size: 13px;
    padding: 5px 10px;
    border: 1px solid var(--bronze-line);
    border-radius: 4px;
    color: var(--muted-foreground);
    background: var(--card);
}
.footer-trust li { border-color: rgba(212, 175, 55, 0.3); color: var(--champagne); }

.site-footer__legal {
    max-width: var(--measure);
    margin: var(--space-lg) auto 0;
    padding: var(--space-md);
    border-top: 1px solid var(--bronze-line);
    text-align: center;
}
.site-footer__legal p { font-size: 13px; color: var(--muted-foreground); margin: 0 0 8px; }

/* ============================================
   SITEMAP PAGE
   ============================================ */
.sitemap-list { list-style: none; }
.sitemap-list__item {
    padding-block: var(--space-md);
    border-bottom: 1px solid var(--bronze-line);
}
.sitemap-list__item:last-child { border-bottom: none; }
.sitemap-list__title { font-family: var(--font-body); font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.sitemap-list__title a { color: var(--gold-bright); }
.sitemap-list__desc { color: var(--muted-foreground); margin: 0; max-width: 72ch; }

/* ============================================
   HOMEPAGE EXTRAS
   .feature-list - bonus breakdown list
   .vip-ladder - compact VIP tier list
   .logo-strip__text - payment wordmarks
   ============================================ */
.feature-list {
    list-style: none;
    margin: 0 0 var(--space-md);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.feature-list li {
    position: relative;
    padding: 12px 14px 12px 38px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--bronze-line);
    border-radius: var(--radius);
    color: var(--muted-foreground);
    font-size: 15.5px;
}
.feature-list li strong { color: var(--champagne); }
.feature-list li::before {
    content: "";
    position: absolute;
    left: 14px; top: 18px;
    width: 8px; height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
}

.vip-ladder {
    list-style: none;
    margin: 0 0 var(--space-md);
    display: flex;
    flex-direction: column;
    gap: 1px;
    border: 1px solid var(--bronze-line);
    border-radius: var(--radius);
    overflow: hidden;
}
.vip-ladder li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    background: var(--card);
    font-size: 15px;
    color: var(--muted-foreground);
}
@media (min-width: 640px) {
    .vip-ladder li { flex-direction: row; align-items: baseline; gap: 14px; }
}
.vip-ladder__level {
    flex: 0 0 auto;
    min-width: 96px;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--gold-bright);
    letter-spacing: 0.02em;
}

.logo-strip__text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.04em;
    color: var(--champagne);
}

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

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
    .animate-on-scroll { opacity: 1; transform: 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;
}
