/* ============================================
   DESIGN TOKENS - Dark cinematic Joker theme
   Obsidian background, neon green/red/yellow accents
   ============================================ */

:root {
    /* Background - obsidian black */
    --background: #0c0a09;
    --background-elevated: #18181b;
    --foreground: #fafaf9;
    --foreground-muted: #d4d4d8;

    /* Card surfaces - deep graphite */
    --card: #1e1e23;
    --card-foreground: #fafaf9;
    --card-border: #3f3f46;

    /* Primary - neon green for CTAs */
    --primary: #00e676;
    --primary-foreground: #0c0a09;
    --primary-glow: rgba(0, 230, 118, 0.4);

    /* Secondary - graphite surface */
    --secondary: #1e293b;
    --secondary-foreground: #fafaf9;

    /* Muted - thundercloud gray */
    --muted: #27272a;
    --muted-foreground: #c4c4c8;

    /* Accent - neon red and yellow */
    --accent: #ff003c;
    --accent-foreground: #000000;
    --accent-yellow: #fde047;
    --accent-yellow-foreground: #0c0a09;

    /* Border and input */
    --border: #3f3f46;
    --input: #27272a;
    --ring: #00e676;

    /* Spacing - 8px base grid */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6.25rem;

    /* Section spacing */
    --section-gap: 60px;
    --section-padding: 24px;
    --component-padding: 24px;

    /* Border radius */
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;

    /* Transitions */
    --transition: 250ms ease-out;

    /* Max width */
    --max-width: 1200px;
    --max-width-text: 800px;

    /* Font families */
    --font-heading: "Cinzel", serif;
    --font-body: "Manrope", sans-serif;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

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

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    background-color: var(--background);
    color: var(--foreground);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, video, iframe, embed, object, 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 var(--transition);
}

a:hover {
    color: var(--accent-yellow);
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

section {
    overflow: clip;
}

/* ============================================
   TYPOGRAPHY - Cinzel headings, Manrope body
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--foreground);
    letter-spacing: 0.02em;
}

h1 {
    font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: var(--space-lg);
}

h2 {
    font-size: clamp(1.75rem, 3vw + 1rem, 2.5rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: var(--space-md);
}

h3 {
    font-size: clamp(1.375rem, 2vw + 0.5rem, 1.75rem);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

p {
    margin-bottom: var(--space-md);
    max-width: 70ch;
}

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

blockquote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    line-height: 1.4;
    color: var(--accent-yellow);
    border-left: 4px solid var(--accent);
    padding-left: var(--space-lg);
    margin: var(--space-xl) 0;
    max-width: 800px;
}

blockquote cite {
    display: block;
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: var(--space-sm);
}

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */

.layout-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.layout-container.wide {
    max-width: 1280px;
}

.full-width-hero {
    width: 100%;
    position: relative;
}

.section {
    padding: var(--section-gap) var(--section-padding);
    padding-top: calc(var(--section-gap) + 20px);
    position: relative;
}

.section-narrow {
    padding: var(--section-gap) var(--section-padding);
    max-width: var(--max-width-text);
    margin: 0 auto;
}

@media (min-width: 768px) {
    :root {
        --section-gap: 56px;
        --section-padding: 32px;
        --component-padding: 32px;
    }
    .layout-container {
        padding: 0 var(--space-lg);
    }
}

@media (min-width: 1024px) {
    :root {
        --section-gap: 56px;
    }
    .layout-container {
        max-width: var(--max-width);
    }
}

/* ============================================
   HEADER - Fixed blurred dark bar
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(12, 10, 9, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

/* Remove backdrop-filter on mobile to avoid creating a containing block
   that traps the fixed-position nav drawer */
@media (max-width: 1023px) {
    .site-header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: var(--background);
    }
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex-shrink: 0;
}

.site-brand .logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--foreground);
    letter-spacing: 0.03em;
}

.brand-name:hover {
    color: var(--primary);
}

.primary-nav {
    display: none;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-list a {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--foreground-muted);
    transition: color var(--transition);
}

.nav-list a:hover {
    color: var(--primary);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

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

.btn-primary, .btn-ghost, .btn-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    text-align: center;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    min-height: 44px;
    padding: 0.625rem 1.5rem;
    font-size: 1rem;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-primary:hover {
    background: #00c853;
    color: var(--primary-foreground);
    box-shadow: 0 0 30px var(--primary-glow);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 230, 118, 0.08);
}

.btn-large {
    background: var(--primary);
    color: var(--primary-foreground);
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    min-height: 56px;
    box-shadow: 0 0 30px var(--primary-glow);
}

.btn-large:hover {
    background: #00c853;
    color: var(--primary-foreground);
    transform: translateY(-2px);
    box-shadow: 0 0 40px var(--primary-glow);
}

/* ============================================
   MOBILE MENU - Slide-down drawer
   ============================================ */

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 8px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    z-index: 1001;
}

.burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--foreground);
    border-radius: 2px;
    transition: all var(--transition);
}

.mobile-menu-toggle[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
    .primary-nav {
        display: flex;
        align-items: center;
        gap: var(--space-xl);
    }
    .primary-nav .nav-list {
        gap: var(--space-lg);
    }
}

@media (max-width: 1023px) {
    .primary-nav {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--background);
        flex-direction: column;
        align-items: stretch;
        padding: var(--space-md);
        overflow-y: auto;
        z-index: 999;
        display: none;
        gap: var(--space-md);
    }

    .primary-nav.is-open {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list a {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding: var(--space-sm) 0;
        border-bottom: 1px solid var(--border);
        font-size: 1.0625rem;
        color: var(--foreground);
    }

    .nav-cta {
        flex-direction: column;
        gap: var(--space-sm);
        width: 100%;
        margin-top: var(--space-md);
    }

    .nav-cta .btn-primary,
    .nav-cta .btn-ghost {
        width: 100%;
        min-height: 48px;
    }
}

/* ============================================
   HERO SECTIONS - Cinematic full-width
   ============================================ */

.hero {
    position: relative;
    width: 100%;
    min-height: auto;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0c0a09 0%, #18181b 40%, #1a0a0e 100%);
    overflow: clip;
    padding: calc(var(--space-2xl) + 20px) var(--space-md) var(--space-2xl);
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 60, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(253, 224, 71, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-xl) var(--space-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.hero-text {
    max-width: 600px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
    margin-bottom: var(--space-md);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--foreground-muted);
    margin-bottom: var(--space-xl);
    max-width: 50ch;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    align-items: flex-start;
}

.hero-mascot {
    position: absolute;
    right: -5%;
    bottom: 0;
    width: 45%;
    max-width: 550px;
    z-index: 1;
    opacity: 0.95;
}

@media (max-width: 1023px) {
    .hero-mascot {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 400px;
        margin: var(--space-lg) auto 0;
        opacity: 0.7;
    }
    .hero {
        min-height: auto;
        padding-top: calc(var(--space-xl) + 20px);
    }
    .hero-content {
        text-align: left;
        padding-top: 0;
    }
}

/* ============================================
   INFO CARDS - Graphite content cards
   ============================================ */

.info-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    min-width: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.info-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(0, 230, 118, 0.15), 0 0 0 1px var(--primary);
    border-color: var(--primary);
}

.info-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 5 / 3;
    overflow: hidden;
    background: var(--secondary);
}

.info-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent);
    color: var(--accent-foreground);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-card-body {
    padding: var(--component-padding);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.info-card-title {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--foreground);
}

.info-card-stat {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: var(--space-sm);
}

.info-card-stat .stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.info-card-stat .stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-card-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin-bottom: var(--space-md);
    flex: 1;
}

.info-card-link {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9375rem;
    align-self: flex-start;
}

.info-card-link:hover {
    color: var(--accent-yellow);
}

/* ============================================
   GRID SYSTEM - Responsive card layouts
   ============================================ */

.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));
        gap: var(--space-lg);
    }
}

@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));
    }
}

/* ============================================
   CTA BANNER - Full-width neon section
   ============================================ */

.cta-banner-section {
    position: relative;
    background: linear-gradient(135deg, #0c0a09 0%, #1a0a0e 50%, #0c0a09 100%);
    padding: var(--space-2xl) var(--space-md);
    text-align: center;
    overflow: clip;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-banner-diagonal {
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform: rotate(-2deg);
    box-shadow: 0 0 20px var(--accent);
}

.cta-banner-diagonal-2 {
    top: auto;
    bottom: 0;
    background: linear-gradient(90deg, transparent, var(--accent-yellow), transparent);
    box-shadow: 0 0 20px var(--accent-yellow);
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-width-text);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.cta-banner-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw + 1rem, 2.5rem);
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--foreground);
    text-align: center;
}

.cta-banner-subheading {
    font-size: 1.0625rem;
    color: var(--foreground-muted);
    text-align: center;
    max-width: 50ch;
}

.cta-micro-copy {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    text-align: center;
    margin-top: var(--space-xs);
}

/* ============================================
   FAQ ACCORDION - details/summary
   ============================================ */

.faq-container {
    max-width: var(--max-width-text);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: border-color var(--transition), box-shadow var(--transition);
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: -4px 0 12px rgba(0, 230, 118, 0.2);
}

.faq-item[open] {
    border-color: var(--primary);
    box-shadow: -4px 0 16px rgba(0, 230, 118, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--component-padding);
    cursor: pointer;
    list-style: none;
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--foreground);
    transition: color var(--transition);
}

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

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform var(--transition);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--primary);
    border-radius: 2px;
}

.faq-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    transform: translateY(-50%);
}

.faq-icon::after {
    left: 50%;
    top: 0;
    width: 3px;
    height: 100%;
    transform: translateX(-50%);
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 var(--component-padding) var(--component-padding);
}

.faq-answer p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--foreground-muted);
    max-width: none;
}

/* ============================================
   ENGAGEMENT PATTERNS
   ============================================ */

/* Summary / TL;DR box */
.summary-box {
    background: var(--secondary);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
}

.summary-box h3 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

/* Callout / highlight box */
.callout-box {
    background: rgba(255, 0, 60, 0.08);
    border: 1px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
}

.callout-box-title {
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
    display: block;
}

/* Stat highlight */
.stat-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-lg);
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.stat-highlight .stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-highlight .stat-label {
    font-size: 1rem;
    color: var(--muted-foreground);
    margin-top: var(--space-sm);
}

.stat-highlight .stat-source {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
}

/* Stat row */
.stat-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

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

/* Trust badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    align-items: center;
    margin: var(--space-lg) 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Comparison table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-xl) 0;
    border-radius: var(--radius);
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    background: var(--secondary);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--foreground);
    font-size: 1rem;
}

.comparison-table td {
    color: var(--foreground-muted);
    font-size: 0.9375rem;
}

.comparison-table .col-recommended {
    background: rgba(0, 230, 118, 0.08);
    border-left: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
}

.comparison-table .col-recommended th {
    color: var(--primary);
}

/* Testimonial cards */
.testimonial-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

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

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

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-lg);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: var(--space-sm);
}

.testimonial-stars .star {
    color: var(--accent-yellow);
    font-size: 1.25rem;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    color: var(--foreground-muted);
    margin-bottom: var(--space-md);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 700;
    color: var(--foreground);
    font-size: 0.875rem;
}

.testimonial-date {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
}

/* ============================================
   HERO EXTRAS - Eyebrow, stats
   ============================================ */

.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.hero-stats {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--foreground-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   SECTION HEADER - Eyebrow + heading + intro
   ============================================ */

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: #ff8a93;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.section-header {
    max-width: var(--max-width);
    margin: 0 auto var(--space-xl);
}

.section-header.text-center {
    text-align: center;
}

.section-header.text-center p {
    margin-left: auto;
    margin-right: auto;
}

.section-header p {
    font-size: 1.0625rem;
    color: var(--foreground-muted);
    max-width: 60ch;
}

/* ============================================
   BONUS SPLIT - Two-column with mascot
   ============================================ */

.bonus-split {
    background: linear-gradient(135deg, #0c0a09 0%, #1a0a0e 100%);
}

.bonus-split-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 768px) {
    .bonus-split-inner {
        grid-template-columns: 1.2fr 1fr;
    }
}

.bonus-split-visual {
    text-align: center;
}

.bonus-split-visual img {
    max-width: 100%;
    border-radius: var(--radius);
    margin: 0 auto;
}

.bonus-features {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    flex-wrap: wrap;
}

.bonus-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: var(--space-md);
    flex: 1;
    min-width: 100px;
}

.bonus-feature-icon {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.bonus-feature-text {
    font-size: 0.875rem;
    color: var(--foreground-muted);
}

/* ============================================
   LIVE PREVIEW CTA
   ============================================ */

.live-preview-cta {
    text-align: center;
    margin-top: var(--space-xl);
    font-size: 1.0625rem;
    color: var(--foreground-muted);
}

/* ============================================
   PAYMENTS & VIP GRID
   ============================================ */

.payments-vip-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-xl);
}

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

.payments-block h3,
.vip-block h3 {
    margin-bottom: var(--space-md);
}

.vip-ladder {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.vip-tier {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: var(--space-md);
    gap: var(--space-sm);
}

.vip-tier-top {
    border-color: var(--accent-yellow);
    box-shadow: 0 0 12px rgba(253, 224, 71, 0.2);
}

.vip-tier-name {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--foreground);
    font-size: 1rem;
    flex-shrink: 0;
}

.vip-tier-perk {
    font-size: 0.875rem;
    color: var(--foreground-muted);
    text-align: right;
}

/* ============================================
   FOOTER - Four column layout
   ============================================ */

.site-footer {
    background: var(--background-elevated);
    border-top: 1px solid var(--border);
    padding: var(--space-2xl) var(--space-md) var(--space-lg);
    margin-top: var(--space-2xl);
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-xl);
}

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

@media (min-width: 1024px) {
    .footer-inner {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-md);
    letter-spacing: 0.03em;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--foreground-muted);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-note,
.footer-license {
    display: block;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pay-badge {
    display: inline-flex;
    align-items: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted-foreground);
    letter-spacing: 0.02em;
}

.footer-responsible {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--accent-foreground);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.footer-disclaimer {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin: 0;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: var(--space-xl) auto 0;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin: 0;
}

/* ============================================
   ANIMATIONS - Scroll reveal
   ============================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* ============================================
   UTILITY CLASSES
   ============================================ */

.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; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-yellow { color: var(--accent-yellow); }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* Table wrapper for scroll */
.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    min-width: 0;
    margin: var(--space-xl) 0;
}

.table-wrapper:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* ============================================
   SLOTS PAGE - Clown Coins Feature & Provider Grid
   ============================================ */

.clown-coins-feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-xl);
    align-items: center;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    overflow: hidden;
}

@media (min-width: 768px) {
    .clown-coins-feature {
        grid-template-columns: 1fr 1.1fr;
        padding: var(--space-2xl);
    }
}

.clown-coins-visual img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.clown-coins-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

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

.clown-coins-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: var(--space-md);
}

.clown-coins-stat .stat-value {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.clown-coins-stat .stat-label {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.clown-coins-stats h3 {
    margin-top: var(--space-md);
    margin-bottom: var(--space-sm);
}

.provider-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .provider-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--space-lg);
    }
}

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

/* ============================================
   SITEMAP - Simple list
   ============================================ */

.sitemap-list {
    list-style: none;
    padding: 0;
    max-width: var(--max-width-text);
    margin: 0 auto;
}

.sitemap-list li {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: var(--space-md);
    margin-bottom: var(--space-sm);
    transition: border-color var(--transition);
}

.sitemap-list li:hover {
    border-color: var(--primary);
}

.sitemap-list a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--primary);
}

.sitemap-list p {
    margin-top: 0.5rem;
    margin-bottom: 0;
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    max-width: none;
}

/* ============================================
   ARTICLE / SEO TEXT BLOCKS
   ============================================ */

.article-content {
    max-width: var(--max-width-text);
    margin: 0 auto;
}

.article-content h2 {
    margin-top: var(--space-xl);
}

.article-content h2:first-child {
    margin-top: 0;
}

.article-content p {
    margin-bottom: var(--space-md);
}

.article-content ul,
.article-content ol {
    list-style: disc;
    padding-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

.article-content ol {
    list-style: decimal;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content strong {
    color: var(--accent-yellow);
}

/* ============================================
   INLINE LINKS - Underline for accessibility
   Ensure links in text blocks are distinguishable
   without relying on color alone
   ============================================ */

.article-content a,
.live-preview-cta a,
.payments-block a,
.vip-block a,
.bonus-split-text a,
.sitemap-list + p a,
.section p a[href] {
    text-decoration: underline;
    text-decoration-color: var(--primary);
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
}

.article-content a:hover,
.live-preview-cta a:hover,
.payments-block a:hover,
.vip-block a:hover,
.bonus-split-text a:hover,
.section p a[href]:hover {
    text-decoration-color: var(--accent-yellow);
}

/* Ensure sections are not hidden behind fixed header */
.section {
    scroll-margin-top: 80px;
    padding-top: var(--section-gap);
}

#main-content {
    scroll-margin-top: 80px;
    padding-top: 68px;
}

/* Hero should not add extra top padding since main-content already offsets */
.hero {
    padding-top: 0;
}