/* ============================================
   DESIGN TOKENS - Cold Luxury / Glass Skyscraper
   Dark obsidian background, electric blue accents,
   vivid cyan highlights. Single dark theme (no toggle).
   ============================================ */

:root {
    /* Backgrounds */
    --background: #0c0a09;
    --foreground: #fafaf9;
    --card: #1e293b;
    --card-foreground: #fafaf9;
    --popover: #0f172a;
    --popover-foreground: #fafaf9;

    /* Brand */
    --primary: #4466e0;
    --primary-foreground: #ffffff;
    --primary-hover: #1d4ed8;
    --secondary: #1e293b;
    --secondary-foreground: #fafaf9;

    /* Neutrals */
    --muted: #334155;
    --muted-foreground: #a0aec0;
    --border: #334155;
    --input: #1e293b;
    --ring: #4466e0;

    /* Accents */
    --accent: #feffff;
    --accent-foreground: #0c0a09;
    --destructive: #ea0d33;
    --destructive-foreground: #ffffff;

    /* Typography */
    --font-heading: "Syne", sans-serif;
    --font-body: "Outfit", sans-serif;

    /* Spacing - 8px base grid */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 60px;
    --space-3xl: 100px;

    /* Layout */
    --container-max: 1200px;
    --header-height: 64px;

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

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

/* .dark mirrors :root - no visual difference, kept for compatibility */
.dark {
    --background: #0c0a09;
    --foreground: #fafaf9;
    --card: #1e293b;
    --card-foreground: #fafaf9;
    --popover: #0f172a;
    --popover-foreground: #fafaf9;
    --primary: #4466e0;
    --primary-foreground: #ffffff;
    --secondary: #1e293b;
    --secondary-foreground: #fafaf9;
    --muted: #334155;
    --muted-foreground: #a0aec0;
    --accent: #feffff;
    --accent-foreground: #0c0a09;
    --destructive: #ea0d33;
    --destructive-foreground: #ffffff;
    --border: #334155;
    --input: #1e293b;
    --ring: #4466e0;
}

@media (min-width: 768px) {
    :root {
        --header-height: 72px;
    }
}

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

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

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

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

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

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

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

section {
    overflow: clip;
}

ul, ol {
    list-style: none;
}

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

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

/* ============================================
   ACCESSIBILITY
   ============================================ */

.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;
    top: -48px;
    left: 0;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 12px 24px;
    z-index: 2000;
    font-weight: 500;
    border-radius: 0 0 var(--radius-sm) 0;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 0;
    color: var(--primary-foreground);
}

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

/* ============================================
   TYPOGRAPHY
   Syne for headings, Outfit for body.
   H1: 28px mobile / 56px desktop
   H2: 28px mobile / 40px desktop
   H3: 22px mobile / 28px desktop
   ============================================ */

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

h1 {
    font-size: clamp(28px, 5vw + 1rem, 56px);
    font-weight: 800;
    overflow-wrap: break-word;
}

h2 {
    font-size: clamp(28px, 3vw + 1rem, 40px);
    font-weight: 600;
}

h3 {
    font-size: clamp(22px, 2vw + 1rem, 28px);
    font-weight: 500;
}

h4 {
    font-size: 20px;
    font-weight: 600;
}

p {
    max-width: 65ch;
}

.eyebrow {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    width: 100%;
}

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

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

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    margin-bottom: var(--space-sm);
}

.section-header p {
    color: var(--muted-foreground);
    margin: 0 auto;
}

/* ============================================
   HEADER & NAVIGATION
   Frosted glass header with logo, nav, and actions.
   Mobile: hamburger toggle reveals slide-in drawer.
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    background: var(--background);
    border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
    .site-header {
        background: rgba(12, 10, 9, 0.8);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
}

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

.site-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.site-brand .logo {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--foreground);
    letter-spacing: -0.02em;
}

/* Desktop navigation */
.primary-nav {
    display: none;
    align-items: center;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .primary-nav {
        display: flex;
    }
}

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

.nav-list a {
    font-size: 16px;
    font-weight: 500;
    color: var(--muted-foreground);
    padding: 8px 0;
    position: relative;
    transition: color var(--transition);
}

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

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

.nav-list a:hover::after {
    width: 100%;
}

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

/* ============================================
   MOBILE MENU - Hamburger + Slide-in Drawer
   Opaque panel, full-width, below header.
   ============================================ */

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    z-index: 1001;
    flex-shrink: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

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

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

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

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

/* Mobile drawer - hidden by default, shown when .is-open */
.primary-nav.is-open {
    display: flex;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    z-index: 999;
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-lg) var(--space-md);
    overflow-y: auto;
    gap: var(--space-md);
}

.primary-nav.is-open .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

.primary-nav.is-open .nav-list a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 0;
    font-size: 18px;
    color: var(--foreground);
    border-bottom: 1px solid var(--border);
}

.primary-nav.is-open .nav-list a::after {
    display: none;
}

.primary-nav.is-open .nav-actions {
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.primary-nav.is-open .nav-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    padding: 14px 24px;
    font-size: 16px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: background var(--transition), color var(--transition),
                border-color var(--transition), transform var(--transition),
                box-shadow var(--transition);
    min-height: 44px;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--primary-hover);
    color: var(--primary-foreground);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--foreground);
    border-color: var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 18px;
    min-height: 52px;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 14px;
    min-height: 40px;
}

/* ============================================
   HERO - Full-bleed with parallax background
   Premium model at glass skyscraper window,
   night city skyline, blue neon reflections.
   ============================================ */

.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: clip;
}

@media (min-width: 1024px) {
    .hero {
        min-height: 700px;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.08);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg,
        rgba(12, 10, 9, 0.92) 0%,
        rgba(12, 10, 9, 0.7) 50%,
        rgba(12, 10, 9, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-md);
    width: 100%;
}

.hero-content h1 {
    margin-bottom: var(--space-md);
    max-width: 700px;
}

.hero-subtext {
    font-size: 18px;
    color: var(--muted-foreground);
    max-width: 540px;
    margin-bottom: var(--space-lg);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    align-items: center;
}

.hero-microcopy {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-foreground);
    margin-top: var(--space-sm);
    width: 100%;
}

/* ============================================
   GLASS CARDS - Frosted containers
   ============================================ */

.glass-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(51, 65, 85, 0.6);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    min-width: 0;
}

@media (min-width: 1024px) {
    .glass-card {
        padding: var(--space-lg);
    }
}

.glass-card a:not(.btn) {
    color: #4d94f6;
}

.glass-card a:not(.btn):hover {
    color: var(--accent);
}

/* ============================================
   STAT BLOCK - Large numbers with labels
   ============================================ */

.stat-block-section {
    padding: var(--space-md) 0;
}

.stat-block-row {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .stat-block-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
    }
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: var(--space-md);
    min-width: 0;
}

@media (min-width: 768px) {
    .stat-item + .stat-item {
        border-left: 1px solid var(--border);
    }
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted-foreground);
}

.stat-source {
    display: block;
    font-size: 12px;
    color: var(--muted-foreground);
    margin-top: var(--space-xs);
    opacity: 0.7;
}

/* ============================================
   PROMO CARDS - Image + heading + body + link
   ============================================ */

.card-grid {
    display: grid;
    grid-template-columns: 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.cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.promo-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition),
                border-color var(--transition);
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.promo-card:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
}

.promo-card-image {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

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

.promo-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(30, 41, 59, 0.8) 100%);
}

.promo-card-body {
    padding: var(--space-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .promo-card-body {
        padding: var(--space-lg);
    }
}

.promo-card-title {
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

.promo-card-text {
    color: var(--muted-foreground);
    font-size: 17px;
    line-height: 1.6;
    max-width: 65ch;
    margin-bottom: var(--space-md);
    flex: 1;
}

.promo-card-link {
    font-size: 16px;
    font-weight: 500;
    color: #4d94f6;
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    transition: color var(--transition), gap var(--transition);
}

.promo-card-link:hover {
    color: var(--accent);
    gap: 10px;
}

.promo-card-link .arrow {
    transition: transform var(--transition);
}

/* ============================================
   FAQ ACCORDION - Collapsible Q&A pairs
   ============================================ */

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

.faq-item {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-left: 3px solid transparent;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
    border-left-color: var(--primary);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    width: 100%;
    padding: var(--space-md);
    font-family: var(--font-heading);
    font-size: clamp(18px, 1.5vw, 22px);
    font-weight: 600;
    color: var(--foreground);
    text-align: left;
    min-height: 44px;
    transition: color var(--transition);
}

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

.faq-chevron {
    flex-shrink: 0;
    color: var(--muted-foreground);
    transition: transform var(--transition), color var(--transition);
}

.faq-question[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 350ms ease-out;
}

.faq-answer-inner {
    padding: 0 var(--space-md) var(--space-md);
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted-foreground);
}

.faq-answer-inner p {
    max-width: none;
    margin-bottom: var(--space-sm);
}

.faq-answer-inner p:last-child {
    margin-bottom: 0;
}

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

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

@media (min-width: 1024px) {
    .cta-banner-section {
        padding: var(--space-3xl) var(--space-md);
    }
}

.cta-banner-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-banner-headline {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.cta-banner-subtext {
    font-size: 17px;
    color: var(--muted-foreground);
    margin-bottom: var(--space-lg);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner-microcopy {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-foreground);
    margin-top: var(--space-md);
}

/* ============================================
   TWO-COLUMN LAYOUT - Text + visual
   ============================================ */

.two-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
}

@media (min-width: 768px) {
    .two-column {
        grid-template-columns: 1fr 1fr;
    }
}

.two-column-text-block {
    border-left: 3px solid var(--primary);
    padding-left: var(--space-md);
}

.two-column-text-block h2 {
    margin-bottom: var(--space-md);
}

.two-column-text-block p {
    color: var(--muted-foreground);
    margin-bottom: var(--space-sm);
}

.two-column-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.two-column-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   VIP TIMELINE - Vertical level progression
   ============================================ */

.vip-timeline {
    position: relative;
    padding-left: var(--space-lg);
    max-width: 700px;
    margin: 0 auto;
}

.vip-timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 16px;
    bottom: 16px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
}

.vip-level-card {
    position: relative;
    margin-bottom: var(--space-md);
    padding: var(--space-md);
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    min-width: 0;
}

.vip-level-card::before {
    content: '';
    position: absolute;
    left: -29px;
    top: 24px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--background);
    z-index: 1;
}

.vip-level-card h3 {
    font-size: 22px;
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.vip-cashback {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
}

.vip-level-card ul {
    list-style: none;
    padding: 0;
}

.vip-level-card li {
    color: var(--muted-foreground);
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
}

.vip-level-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.6;
}

/* ============================================
   TRUST SIGNALS - Security & licensing cards
   ============================================ */

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

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

.trust-card {
    text-align: center;
    padding: var(--space-md);
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    min-width: 0;
}

.trust-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.15);
    color: var(--primary);
}

.trust-card h3 {
    font-size: 18px;
    margin-bottom: var(--space-xs);
}

.trust-card p {
    font-size: 15px;
    color: var(--muted-foreground);
    max-width: none;
}

/* ============================================
   PAYMENT METHODS - Footer badges strip
   ============================================ */

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted-foreground);
    background: rgba(51, 65, 85, 0.4);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    white-space: nowrap;
}

/* ============================================
   TABLES - Deposit methods, comparisons
   ============================================ */

.table-wrapper {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

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

th {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--foreground);
    font-size: 16px;
    background: rgba(30, 41, 59, 0.5);
}

td {
    color: var(--muted-foreground);
    font-size: 16px;
}

tbody tr {
    transition: background var(--transition);
}

tbody tr:hover {
    background: rgba(59, 130, 246, 0.05);
}

/* Comparison table - highlighted column */
.comparison-table th.recommended,
.comparison-table td.recommended {
    background: rgba(59, 130, 246, 0.1);
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
}

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

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

/* TL;DR / Summary box */
.tldr-box {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin: var(--space-lg) 0;
}

.tldr-box-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #4d94f6;
    margin-bottom: var(--space-sm);
}

.tldr-box p {
    color: var(--foreground);
    max-width: none;
}

/* Callout / highlight box */
.callout {
    background: rgba(34, 211, 238, 0.08);
    border: 1px solid rgba(34, 211, 238, 0.25);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin: var(--space-lg) 0;
}

.callout p {
    color: var(--foreground);
    max-width: none;
    margin: 0;
}

/* Pull quote */
.pull-quote {
    position: relative;
    padding: var(--space-lg) var(--space-md);
    margin: var(--space-xl) 0;
    text-align: center;
}

.pull-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 72px;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
}

.pull-quote blockquote {
    font-family: var(--font-heading);
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 500;
    line-height: 1.4;
    color: var(--foreground);
    max-width: 700px;
    margin: 0 auto;
}

.pull-quote cite {
    display: block;
    margin-top: var(--space-sm);
    font-size: 15px;
    color: var(--muted-foreground);
    font-style: normal;
}

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

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--muted-foreground);
    font-size: 14px;
    font-weight: 500;
}

/* Provider grid */
.provider-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-sm);
}

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

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

.provider-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--muted-foreground);
    text-align: center;
    min-height: 60px;
    transition: border-color var(--transition), color var(--transition),
                transform var(--transition);
}

.provider-item:hover {
    border-color: var(--primary);
    color: var(--foreground);
    transform: translateY(-2px);
}

/* ============================================
   SITEMAP LIST - Simple vertical page list
   ============================================ */

.sitemap-list {
    display: flex;
    flex-direction: column;
}

.sitemap-item {
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border);
}

.sitemap-item:first-child {
    border-top: 1px solid var(--border);
}

.sitemap-item a {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 500;
    color: var(--foreground);
    text-decoration: none;
    transition: color var(--transition);
    display: inline-block;
    margin-bottom: var(--space-xs);
}

.sitemap-item a:hover {
    color: var(--primary);
}

.sitemap-item p {
    color: var(--muted-foreground);
    font-size: 17px;
    line-height: 1.6;
    max-width: 65ch;
    margin: 0;
}

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

.site-footer {
    background: #0a0908;
    border-top: 1px solid var(--border);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

@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: 16px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: var(--space-sm);
}

.footer-links li {
    margin-bottom: var(--space-xs);
}

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

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

.footer-text {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-bottom: var(--space-xs);
    max-width: none;
}

.footer-text.age-restriction {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-top: var(--space-sm);
}

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

.footer-bottom p {
    font-size: 14px;
    color: var(--muted-foreground);
    max-width: none;
    margin: 0 auto;
}

/* ============================================
   ANIMATIONS - Fade-in slide-up on scroll
   ============================================ */

.no-js .animate-on-scroll {
    opacity: 1;
    transform: none;
}

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

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

/* Staggered children */
.animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.animate-on-scroll:nth-child(2) { transition-delay: 50ms; }
.animate-on-scroll:nth-child(3) { transition-delay: 100ms; }
.animate-on-scroll:nth-child(4) { transition-delay: 150ms; }
.animate-on-scroll:nth-child(5) { transition-delay: 200ms; }
.animate-on-scroll:nth-child(6) { transition-delay: 250ms; }

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

    .hero-bg img {
        transform: none !important;
    }

    html {
        scroll-behavior: auto;
    }
}

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

.text-center { text-align: center; }
.text-muted { color: var(--muted-foreground); }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

.full-bleed {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.content-narrow {
    max-width: 800px;
    margin: 0 auto;
}

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

.content-narrow h2 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.content-narrow h3 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.content-narrow ul {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-md);
}

.content-narrow ul li {
    color: var(--muted-foreground);
    padding: 6px 0 6px 24px;
    position: relative;
}

.content-narrow ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.content-narrow blockquote {
    border-left: 3px solid var(--primary);
    padding-left: var(--space-md);
    margin: var(--space-md) 0;
    font-style: italic;
    color: var(--foreground);
}

.content-narrow strong {
    color: var(--foreground);
    font-weight: 600;
}

.content-narrow a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(59, 130, 246, 0.3);
    text-underline-offset: 2px;
}

.content-narrow a:hover {
    color: var(--accent);
    text-decoration-color: var(--accent);
}

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

/* a11y-autofix: color-contrast for links in muted text on dark background */
/* Links inside .text-muted inherit --primary (#4466e0) which achieves
   ~4.97:1 on the dark background. The brighter #4d94f6 already present
   in the design system (.glass-card links, .promo-card-link, .tldr-box-title)
   achieves ~6.37:1 contrast. */
.text-muted a:not(.btn) {
  color: #4d94f6;
}

/* a11y-autofix: color-contrast for links in section-header paragraphs */
/* Links inside .section-header p inherit --primary (#4466e0) on the dark
   --background (#0c0a09), achieving only ~3.97:1 contrast. Use the brighter
   #4d94f6 already present in the design system for ~6.37:1 contrast. */
.section-header p a:not(.btn) {
  color: #4d94f6;
}
