/* ============================================
   V.VEGAS CASINO - DESIGN SYSTEM
   Single fixed dark theme (Vegas night):
   deep near-black burgundy surfaces, gold
   primary accent, neon red secondary accent.
   No theme switcher (per brief).
   ============================================ */

:root {
    /* Surfaces */
    --background: #0b0709;
    --background-deep: #070406;
    --background-wine: #1a0a12;
    --surface: #141014;
    --card: #191317;
    --card-raised: #211a20;
    --border: #33272f;
    --border-strong: #4a3742;

    /* Text */
    --foreground: #f4eef2;
    --muted-foreground: #b7a9b3;
    --heading: #ffffff;

    /* Brand accents */
    --gold: #e7bd63;
    --gold-bright: #ffd98a;
    --gold-deep: #a9822f;
    --gold-foreground: #241703;
    --neon-red: #ec001c;
    --neon-red-soft: #ff6b7c;
    --neon-red-foreground: #22040a;
    --neon-blue: #4ea6ff;
    --neon-violet: #a06bff;

    /* Semantic action tokens */
    --primary: var(--gold);
    --primary-foreground: var(--gold-foreground);
    --secondary: var(--neon-red);
    --secondary-foreground: #ffffff;
    --accent: var(--neon-violet);
    --accent-foreground: #aa64e1;
    --muted: #221b21;

    /* Effects */
    --glow-gold: 0 0 0 1px rgba(231, 189, 99, .35), 0 12px 40px -12px rgba(231, 189, 99, .45);
    --glow-red: 0 0 0 1px rgba(255, 59, 82, .35), 0 12px 40px -12px rgba(255, 59, 82, .5);
    --shadow-card: 0 18px 40px -24px rgba(0, 0, 0, .9);

    /* Radii */
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 20px;
    --radius-pill: 999px;

    /* Spacing */
    --space-xs: .5rem;
    --space-sm: .75rem;
    --space-md: 1.25rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4.5rem;

    /* Layout */
    --container: 1280px;
    --header-height: 64px;

    /* Type */
    --font-display: "Sora", "Segoe UI", sans-serif;
    --font-body: "Inter", "Segoe UI", Arial, sans-serif;
}

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

details {
    height: fit-content;
}

:where(p, li, blockquote, figcaption, dd, .prose, .seo-text, article)
  a:not([class]) {
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

input, textarea, select {
    max-width: 100%;
}

section {
    overflow: clip;
}

/* ============================================
   BASE TYPOGRAPHY & PAGE SHELL
   Body: Inter 16px+, Headings: Sora
   ============================================ */

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

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--foreground);
    background-color: var(--background);
    background-image:
        radial-gradient(120% 60% at 10% -5%, rgba(120, 20, 55, .35), transparent 60%),
        radial-gradient(90% 50% at 95% 0%, rgba(70, 25, 90, .28), transparent 65%);
    background-repeat: no-repeat;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--heading);
    line-height: 1.2;
    margin: 0 0 .6em;
    letter-spacing: -.01em;
}

h1 { font-size: clamp(1.85rem, calc(1.2rem + 3vw), 3.25rem); }
h2 { font-size: clamp(1.5rem, calc(1.05rem + 1.9vw), 2.35rem); }
h3 { font-size: clamp(1.15rem, calc(1rem + .7vw), 1.4rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1.1em; }

a {
    color: var(--gold-bright);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--gold-bright);
    outline-offset: 3px;
    border-radius: 4px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 1200;
    background: var(--gold);
    color: var(--gold-foreground);
    padding: .75rem 1.25rem;
    font-weight: 700;
}

.skip-link:focus {
    left: 0;
}

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

/* ============================================
   LAYOUT PRIMITIVES
   .container  - centered max-width wrapper
   .section    - vertical rhythm band
   .prose      - readable measure for long copy
   ============================================ */

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--space-md);
}

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

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

.section--wine {
    background: linear-gradient(180deg, rgba(46, 8, 26, .85), rgba(11, 7, 9, .2));
}

.section--panel {
    background: linear-gradient(180deg, rgba(25, 19, 23, .85), rgba(11, 7, 9, .4));
    border-block: 1px solid var(--border);
}

.prose {
    max-width: 72ch;
}

.prose p,
.prose li {
    color: var(--foreground);
}

.grid {
    display: grid;
    gap: var(--space-md);
    align-items: start;
}

.grid--1 { grid-template-columns: minmax(0, 1fr); }
.grid--2 { grid-template-columns: minmax(0, 1fr); }
.grid--3 { grid-template-columns: minmax(0, 1fr); }
.grid--4 { grid-template-columns: minmax(0, 1fr); }

.lede {
    font-size: 1.05rem;
    color: var(--muted-foreground);
}

.divider {
    height: 1px;
    border: 0;
    margin: var(--space-lg) 0;
    background: linear-gradient(90deg, transparent, var(--gold-deep), transparent);
}

/* ============================================
   SECTION HEADING
   .section-heading with optional kicker + lead
   ============================================ */

.section-heading {
    margin-bottom: var(--space-lg);
    max-width: 60ch;
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading__kicker {
    font-family: var(--font-display);
    font-size: .78rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .5rem;
}

.section-heading__title { margin-bottom: .5rem; }

.section-heading__lead {
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* ============================================
   BUTTONS
   .btn--gold  primary conversion CTA
   .btn--red   neon secondary CTA
   .btn--ghost outlined (Login, tertiary)
   sizes: --sm --lg
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 48px;
    padding: .8rem 1.6rem;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.btn--gold {
    background: linear-gradient(180deg, var(--gold-bright), var(--gold));
    color: var(--gold-foreground);
    box-shadow: var(--glow-gold);
}

.btn--gold:hover,
.btn--gold:focus-visible {
    background: linear-gradient(180deg, #ffe6ab, var(--gold-bright));
    transform: translateY(-1px);
}

.btn--red {
    background: linear-gradient(180deg, var(--neon-red-soft), var(--neon-red));
    color: var(--secondary-foreground);
    box-shadow: var(--glow-red);
}

.btn--red:hover,
.btn--red:focus-visible {
    transform: translateY(-1px);
}

.btn--ghost {
    background: transparent;
    border-color: var(--gold-deep);
    color: var(--gold-bright);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
    border-color: var(--gold);
    background: rgba(231, 189, 99, .12);
}

.btn--sm {
    min-height: 44px;
    padding: .55rem 1.1rem;
    font-size: .92rem;
}

.btn--lg {
    min-height: 56px;
    padding: 1rem 2.4rem;
    font-size: 1.05rem;
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

/* ============================================
   HEADER + PRIMARY NAV + MOBILE DRAWER
   z-index: header 1000, toggle 1001, drawer 999
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--background-deep);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 0 rgba(231, 189, 99, .18);
}

.site-header__inner {
    max-width: var(--container);
    margin-inline: auto;
    min-height: var(--header-height);
    padding: .5rem var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    text-decoration: none;
    color: var(--foreground);
    flex-shrink: 0;
}

.site-brand__mark {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--gold-foreground);
    background: linear-gradient(160deg, var(--gold-bright), var(--gold-deep));
    box-shadow: 0 0 18px -4px rgba(231, 189, 99, .8);
}

.site-brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.site-brand__name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: .02em;
    color: var(--gold-bright);
}

.site-brand__sub {
    font-size: .62rem;
    letter-spacing: .34em;
    text-transform: uppercase;
    color: var(--muted-foreground);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: .4rem;
    margin-left: auto;
}

.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 0 10px;
    z-index: 1001;
    background: transparent;
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    cursor: pointer;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--gold-bright);
    border-radius: 2px;
    transition: transform .22s ease, opacity .18s 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: block;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--background-deep);
    border-top: 1px solid var(--border);
    overflow-y: auto;
    padding: var(--space-md);
}

.primary-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: .25rem;
}

.primary-nav__list a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: .5rem .75rem;
    border-radius: var(--radius-sm);
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
}

.primary-nav__list a:hover,
.primary-nav__list a:focus-visible {
    color: var(--gold-bright);
    background: rgba(231, 189, 99, .09);
}

@media (max-width: 400px) {
    .site-brand__sub { display: none; }
    .site-header__actions .btn--ghost { display: none; }
}

@media (min-width: 1024px) {
    :root { --header-height: 78px; }

    .nav-toggle { display: none; }

    .site-header__inner {
        gap: var(--space-lg);
        padding-inline: var(--space-lg);
    }

    .primary-nav {
        display: block;
        margin-left: var(--space-md);
    }

    .primary-nav__list {
        flex-direction: row;
        align-items: center;
        gap: 1.1rem;
        flex-wrap: wrap;
    }

    .primary-nav__list a {
        min-height: 40px;
        padding: .35rem 0;
        border-bottom: 2px solid transparent;
        font-size: .95rem;
        background: none;
    }

    .primary-nav__list a:hover,
    .primary-nav__list a:focus-visible {
        background: none;
        border-bottom-color: var(--gold);
    }

    .site-header__actions { gap: .75rem; }
    .site-brand__name { font-size: 1.35rem; }
}

/* ============================================
   HERO - model artwork + glass offer panel
   .hero / .hero__media / .hero__panel
   ============================================ */

.hero {
    position: relative;
    padding-block: 0 var(--space-xl);
}

.hero__frame {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(80% 90% at 20% 20%, rgba(90, 20, 60, .6), transparent 70%),
        linear-gradient(180deg, #1c0a15, #0b0709);
}

.hero__media {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: 55% 30%;
}

.hero__panel {
    position: relative;
    margin: -3.5rem var(--space-md) 0;
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(231, 189, 99, .25);
    background: linear-gradient(160deg, rgba(30, 22, 28, .96), rgba(12, 8, 11, .96));
    box-shadow: var(--shadow-card);
}

.hero__eyebrow {
    font-family: var(--font-display);
    font-size: .75rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--neon-red-soft);
    margin-bottom: .5rem;
}

.hero__offer {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, calc(1.1rem + 4.4vw), 3rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--gold-bright);
    margin: 0 0 .6rem;
    text-shadow: 0 0 30px rgba(231, 189, 99, .35);
}

.hero__text {
    color: var(--muted-foreground);
    margin-bottom: var(--space-md);
}

.hero__panel .btn { width: 100%; }

.hero__title {
    margin-top: var(--space-lg);
}

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

    .hero__frame {
        max-width: var(--container);
        margin-inline: auto;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-strong);
        display: grid;
        grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
        align-items: center;
    }

    .hero__media {
        aspect-ratio: 16 / 12;
        height: 100%;
        border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    }

    .hero__panel {
        margin: 0;
        margin-inline: var(--space-lg);
        padding: var(--space-lg);
        backdrop-filter: blur(6px);
    }

    .hero__panel .btn { width: auto; min-width: 260px; }
}

/* ============================================
   CARDS - bonus, category, info, media panels
   ============================================ */

.card,
.info-card,
.bonus-card,
.category-card,
.media-panel {
    min-width: 0;
}

.info-card {
    background: linear-gradient(170deg, var(--card-raised), var(--card));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-md);
    box-shadow: var(--shadow-card);
}

.info-card__title { margin-bottom: .4rem; }

.info-card__text { color: var(--muted-foreground); margin-bottom: .6rem; }

.info-card__meta {
    font-size: .9rem;
    color: var(--gold);
    margin-bottom: .5rem;
}

.info-card__link {
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: .15em;
}

/* Bonus cards (100% / 75% / 50% style tiles) */
.bonus-card {
    position: relative;
    padding: var(--space-md);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: linear-gradient(165deg, rgba(41, 30, 38, .95), rgba(15, 10, 13, .95));
    box-shadow: var(--shadow-card);
}

.bonus-card--featured {
    border-color: var(--gold);
    box-shadow: var(--glow-gold);
}

.bonus-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    margin-bottom: .75rem;
}

.bonus-card__percent {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, calc(1.4rem + 3.2vw), 3.1rem);
    font-weight: 800;
    line-height: 1;
    color: var(--gold-bright);
    text-shadow: 0 0 26px rgba(231, 189, 99, .4);
}

.bonus-card__chips {
    display: flex;
    align-items: flex-end;
    gap: 3px;
}

.chip {
    display: block;
    width: 16px;
    border-radius: 3px;
    background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
    box-shadow: 0 0 12px -3px rgba(231, 189, 99, .8);
}

.chip--1 { height: 22px; }
.chip--2 { height: 34px; }
.chip--3 { height: 28px; }

.bonus-card__title { font-size: 1.05rem; margin-bottom: .35rem; }
.bonus-card__text { color: var(--muted-foreground); margin-bottom: .5rem; }

.bonus-card__meta {
    font-size: .88rem;
    color: var(--gold);
    margin: 0;
}

/* Category tiles with neon labels */
.category-card {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    padding: .6rem .6rem 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(38, 26, 34, .9), rgba(12, 8, 11, .95));
    text-align: center;
}

.category-card__media {
    border-radius: 10px;
    overflow: hidden;
    line-height: 0;
}

.category-card__media img {
    width: 100%;
    height: 100%;
    aspect-ratio: 7 / 5;
    object-fit: cover;
}

.category-card__label {
    display: inline-block;
    align-self: center;
    padding: .4rem 1.1rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .95rem;
}

.category-card--gold .category-card__label {
    color: var(--gold-foreground);
    background: var(--gold-bright);
    box-shadow: 0 0 20px -4px rgba(231, 189, 99, .9);
}

.category-card--red .category-card__label {
    color: #ffffff;
    background: var(--neon-red);
    box-shadow: 0 0 20px -4px rgba(255, 59, 82, .9);
}

.category-card--violet .category-card__label {
    color: #ffffff;
    background: #7b3fd6;
    box-shadow: 0 0 20px -4px rgba(160, 107, 255, .9);
}

.category-card__text {
    color: var(--muted-foreground);
    font-size: .95rem;
    margin: 0 .4rem;
    text-align: left;
}

.category-card__link {
    margin: 0 .4rem;
    font-size: .92rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: .15em;
    text-align: left;
}

/* Media panel: image + copy (sportsbook / loyalty style) */
.media-panel {
    display: grid;
    gap: var(--space-md);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: linear-gradient(150deg, rgba(38, 12, 26, .95), rgba(15, 10, 13, .95));
    overflow: hidden;
}

.media-panel__media { line-height: 0; }

.media-panel__media img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.media-panel__body {
    padding: 0 var(--space-md) var(--space-md);
}

.media-panel__title { margin-bottom: .5rem; }

.media-panel__text { color: var(--muted-foreground); }

.media-panel--gold { border-color: rgba(231, 189, 99, .4); }
.media-panel--red { border-color: rgba(255, 59, 82, .4); }

@media (min-width: 768px) {
    .grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .media-panel {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        align-items: center;
        gap: 0;
    }

    .media-panel__media img { height: 100%; aspect-ratio: auto; min-height: 240px; }
    .media-panel__body { padding: var(--space-lg); }
}

@media (min-width: 1024px) {
    .grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .section { padding-block: var(--space-2xl); }
}

/* ============================================
   TABLES - comparison & bonus terms
   .data-table with .is-highlight column
   ============================================ */

.table-wrapper {
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(33, 26, 32, .9), rgba(13, 9, 12, .95));
}

.data-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    font-size: .95rem;
}

.data-table__caption {
    caption-side: top;
    padding: var(--space-sm) var(--space-md);
    text-align: left;
    color: var(--muted-foreground);
    font-size: .9rem;
}

.data-table th,
.data-table td {
    padding: .75rem var(--space-sm);
    text-align: left;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.data-table thead th {
    font-family: var(--font-display);
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(231, 189, 99, .07);
    white-space: nowrap;
}

.data-table tbody th {
    color: var(--foreground);
    font-weight: 600;
}

.data-table td { color: var(--muted-foreground); }

.data-table tbody tr:last-child th,
.data-table tbody tr:last-child td { border-bottom: 0; }

.data-table .is-highlight {
    background: rgba(231, 189, 99, .1);
    color: var(--gold-bright);
    font-weight: 600;
}

/* ============================================
   ENGAGEMENT PATTERNS
   .summary-box .callout .stat-highlight
   .pull-quote .faq-item (details/summary)
   ============================================ */

.summary-box {
    border: 1px solid rgba(231, 189, 99, .35);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
    background: rgba(231, 189, 99, .07);
    padding: var(--space-md);
    margin-bottom: var(--space-md);
}

.summary-box__title {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--gold-bright);
    margin-bottom: .6rem;
}

.summary-box__list {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--foreground);
}

.summary-box__list li { margin-bottom: .35rem; }

.callout {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    border-left: 4px solid var(--gold);
    background: var(--card);
    padding: var(--space-md);
    margin-bottom: var(--space-md);
}

.callout--red { border-left-color: var(--neon-red); }
.callout--blue { border-left-color: var(--neon-blue); }

.callout__title {
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: .35rem;
    color: var(--heading);
}

.callout__text { margin: 0; color: var(--muted-foreground); }

.stat-highlight {
    display: flex;
    flex-direction: column;
    gap: .2rem;
    padding: var(--space-md);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: linear-gradient(170deg, rgba(41, 30, 38, .9), rgba(13, 9, 12, .95));
}

.stat-highlight__number {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, calc(1.3rem + 2vw), 2.6rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--gold-bright);
}

.stat-highlight__label {
    font-weight: 600;
    color: var(--foreground);
}

.stat-highlight__note {
    font-size: .87rem;
    color: var(--muted-foreground);
}

.pull-quote {
    margin: var(--space-lg) 0;
    padding: var(--space-md) var(--space-md) var(--space-md) var(--space-lg);
    border-left: 3px solid var(--neon-red);
    background: rgba(255, 59, 82, .07);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.pull-quote p {
    font-family: var(--font-display);
    font-size: 1.15rem;
    line-height: 1.5;
    color: var(--foreground);
    margin-bottom: .5rem;
}

.pull-quote__cite {
    font-style: normal;
    font-size: .9rem;
    color: var(--gold);
}

/* Accordion / FAQ (native details) */
.faq-group {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: .5rem;
    align-items: start;
}

.faq-item {
    align-self: start;
    border-bottom: 1px solid var(--border);
    background: transparent;
}

.faq-item__q {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    min-height: 48px;
    padding: .75rem 0;
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--heading);
}

.faq-item__q::-webkit-details-marker { display: none; }

.faq-item__q::after {
    content: "";
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 1px solid var(--gold-deep);
    border-radius: 50%;
    background:
        linear-gradient(var(--gold-bright), var(--gold-bright)) center / 10px 2px no-repeat,
        linear-gradient(var(--gold-bright), var(--gold-bright)) center / 2px 10px no-repeat;
    transition: transform .2s ease;
}

.faq-item[open] .faq-item__q::after {
    background:
        linear-gradient(var(--gold-bright), var(--gold-bright)) center / 10px 2px no-repeat;
    transform: rotate(180deg);
}

.faq-item__a {
    padding-bottom: .9rem;
}

.faq-item__a p {
    margin: 0;
    color: var(--muted-foreground);
}

/* Numbered steps */
.step-list {
    counter-reset: step;
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-sm);
}

.step-list__item {
    counter-increment: step;
    position: relative;
    padding: var(--space-md) var(--space-md) var(--space-md) 3.6rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
}

.step-list__item::before {
    content: counter(step);
    position: absolute;
    left: var(--space-md);
    top: var(--space-md);
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--gold-foreground);
    background: linear-gradient(160deg, var(--gold-bright), var(--gold-deep));
}

.step-list__title { font-size: 1.02rem; margin-bottom: .3rem; }
.step-list__text { margin: 0; color: var(--muted-foreground); }

@media (min-width: 768px) {
    .step-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ============================================
   CRO PATTERNS
   .cta-band .trust-badges .provider-row
   .licence-badge .age-badge .payment-strip
   ============================================ */

.cta-band {
    margin-block: var(--space-xl);
    padding-block: var(--space-xl);
    background:
        radial-gradient(70% 120% at 50% 0%, rgba(120, 15, 50, .55), transparent 70%),
        linear-gradient(180deg, #1c0812, #0b0709);
    border-top: 1px solid rgba(255, 59, 82, .35);
    text-align: center;
}

.cta-band__inner {
    max-width: 720px;
    margin-inline: auto;
    padding-inline: var(--space-md);
}

.cta-band__title { margin-bottom: .6rem; }

.cta-band__text {
    color: var(--muted-foreground);
    margin-bottom: var(--space-md);
}

.cta-band__note {
    margin-top: var(--space-sm);
    margin-bottom: 0;
    font-size: .85rem;
    color: var(--muted-foreground);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    list-style: none;
    margin: var(--space-sm) 0 0;
    padding: 0;
}

.trust-badges--center { justify-content: center; }

.trust-badges__item {
    padding: .35rem .8rem;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-pill);
    font-size: .82rem;
    letter-spacing: .04em;
    color: var(--muted-foreground);
    background: rgba(255, 255, 255, .03);
}

.provider-row {
    padding: var(--space-md);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .02);
}

.provider-row__title {
    font-size: .82rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .8rem;
}

.provider-row__list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .6rem 1.4rem;
    margin: 0;
    padding: 0;
}

.provider-row__item {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted-foreground);
}

.payment-strip {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin: 0 0 var(--space-sm);
    padding: 0;
}

.payment-strip__item {
    padding: .3rem .65rem;
    border: 1px solid var(--border-strong);
    border-radius: 6px;
    background: rgba(255, 255, 255, .05);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .03em;
    color: var(--foreground);
}

.licence-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .6rem;
}

.licence-row--center { justify-content: center; }

.licence-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .35rem .8rem;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-pill);
    font-size: .8rem;
    color: var(--muted-foreground);
}

.licence-badge::before {
    content: "";
    width: 14px;
    height: 16px;
    border-radius: 3px 3px 6px 6px;
    background: linear-gradient(180deg, var(--neon-blue) 50%, var(--gold) 50%);
}

.age-badge {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--gold-deep);
    border-radius: 50%;
    font-size: .78rem;
    font-weight: 700;
    color: var(--gold-bright);
}

/* ============================================
   SEO / LONG-FORM TEXT
   ============================================ */

.seo-text {
    max-width: 74ch;
}

.seo-text h2 { margin-bottom: .8rem; }

.seo-text p { color: var(--foreground); }

.seo-text a {
    color: var(--gold-bright);
    text-decoration: underline;
    text-underline-offset: .15em;
}

.breadcrumbs {
    font-size: .85rem;
    color: var(--muted-foreground);
    padding-top: var(--space-md);
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin: 0;
    padding: 0;
}

.breadcrumbs li + li::before {
    content: "/";
    margin-right: .4rem;
    color: var(--border-strong);
}

/* Sitemap listing */
.sitemap-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-md);
}

.sitemap-list__item {
    padding: var(--space-md);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
}

.sitemap-list__item h2,
.sitemap-list__item h3 { font-size: 1.1rem; margin-bottom: .4rem; }

.sitemap-list__item p { margin: 0; color: var(--muted-foreground); }

@media (min-width: 768px) {
    .sitemap-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

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

.site-footer {
    margin-top: var(--space-xl);
    border-top: 1px solid var(--border);
    background: var(--background-deep);
}

.site-footer__inner {
    max-width: var(--container);
    margin-inline: auto;
    padding: var(--space-xl) var(--space-md) var(--space-lg);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-lg);
}

.site-footer__title {
    font-size: .85rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .8rem;
}

.site-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .1rem;
}

.site-footer__list a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: var(--foreground);
    text-decoration: none;
}

.site-footer__list a:hover,
.site-footer__list a:focus-visible {
    color: var(--gold-bright);
    text-decoration: underline;
}

.site-footer__note {
    color: var(--muted-foreground);
    font-size: .92rem;
    max-width: 44ch;
    margin-top: var(--space-sm);
}

.site-brand--footer { cursor: default; }

.site-footer__bottom {
    border-top: 1px solid var(--border);
    padding: var(--space-md);
    text-align: center;
    color: var(--muted-foreground);
    font-size: .85rem;
}

.site-footer__bottom p { margin: 0 0 .35rem; }

@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;
        padding-inline: var(--space-lg);
    }
    .site-footer__bottom {
        display: flex;
        justify-content: space-between;
        gap: var(--space-md);
        max-width: var(--container);
        margin-inline: auto;
        text-align: left;
    }
}

/* ============================================
   SCROLL REVEAL (progressive enhancement)
   JS adds .reveal-ready then .is-visible
   ============================================ */

.reveal-ready {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .5s ease, transform .5s ease;
}

.reveal-ready.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    .reveal-ready,
    .reveal-ready.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }

    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
    }
}
