/*
 * GambleZen Casino - Design System
 * Dark midnight indigo aesthetic with vivid violet and turquoise accents.
 * Typography: Unbounded (display) + Outfit (body).
 */

/* ============================================
   DESIGN TOKENS
   ============================================ */

:root {
    /* Light theme - used as fallback; site defaults to dark */
    --background: #faf9f7;
    --foreground: #1a1a2e;
    --card: #ffffff;
    --card-foreground: #1a1a2e;
    --popover: #ffffff;
    --popover-foreground: #1a1a2e;
    --primary: #7c3aed;
    --primary-foreground: #ffffff;
    --secondary: #14b8a6;
    --secondary-foreground: #000000;
    --muted: #e5e7eb;
    --muted-foreground: #64748b;
    --accent: #ec4899;
    --accent-foreground: #000000;
    --destructive: #ef4444;
    --destructive-foreground: #000000;
    --border: #e5e7eb;
    --input: #e5e7eb;
    --ring: #7c3aed;

    /* Semantic tokens */
    --midnight-indigo: #0f172a;
    --midnight-indigo-light: #1e293b;
    --soft-cream: #f1f5f9;
    --slate-gray: #334155;
    --slate-gray-light: #475569;
    --vivid-violet: #c084fc;
    --bright-turquoise: #22d3ee;
    --electric-pink: #f472b6;
    --neon-glow: 0 0 20px rgba(34, 211, 238, 0.4);
    --neon-glow-violet: 0 0 20px rgba(192, 132, 252, 0.4);

    /* Typography */
    --font-display: "Unbounded", sans-serif;
    --font-body: "Outfit", sans-serif;

    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 96px;

    /* Mobile spacing */
    --space-mobile-section: 56px;
    --space-desktop-section: 96px;

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

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

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

.dark {
    --background: #0f172a;
    --foreground: #f1f5f9;
    --card: #1e293b;
    --card-foreground: #f1f5f9;
    --popover: #1e293b;
    --popover-foreground: #f1f5f9;
    --primary: #c084fc;
    --primary-foreground: #1e1b3a;
    --secondary: #22d3ee;
    --secondary-foreground: #0f172a;
    --muted: #334155;
    --muted-foreground: #a0aec0;
    --accent: #f472b6;
    --accent-foreground: #1e1b3a;
    --destructive: #ea0d33;
    --destructive-foreground: #ffffff;
    --border: #334155;
    --input: #334155;
    --ring: #c084fc;
}

/* ============================================
   OVERFLOW PREVENTION - Safety Net
   ============================================ */

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

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

[class*="grid"] > *,
[class*="flex"] > * {
    min-width: 0;
}

pre, code, .code-block, [class*="code"] {
    max-width: 100%;
    overflow-x: auto;
}

pre code,
.code-block code {
    display: block;
    min-width: 0;
}

.table-wrapper,
[class*="table-"] {
    max-width: 100%;
    overflow-x: auto;
}

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

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

section {
    overflow: clip;
}

a {
    word-break: break-all;
}

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

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

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color var(--transition-base), color var(--transition-base);
}

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

h1 { font-size: clamp(1.75rem, calc(3vw + 1rem), 3rem); }
h2 { font-size: clamp(1.5rem, calc(2.5vw + 0.75rem), 2.25rem); }
h3 { font-size: clamp(1.25rem, calc(1.5vw + 0.5rem), 1.5rem); }

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

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

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

ul, ol {
    margin: 0 0 var(--space-sm);
    padding-left: var(--space-md);
}

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

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

.container--narrow {
    max-width: 800px;
}

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

.section-heading {
    text-align: center;
    margin-bottom: var(--space-lg);
}

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

/* ============================================
   BUTTONS
   .btn - base button styles
   .btn--primary - vivid violet filled
   .btn--secondary - turquoise filled
   .btn--lg - larger touch target
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    text-decoration: none;
    min-height: 44px;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast);
    will-change: transform;
}

.btn:hover {
    transform: scale(1.02);
    text-decoration: none;
}

.btn--primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: var(--neon-glow-violet);
}

.btn--primary:hover {
    box-shadow: 0 0 30px rgba(192, 132, 252, 0.6);
    color: var(--primary-foreground);
}

.btn--secondary {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
    box-shadow: var(--neon-glow);
}

.btn--secondary:hover {
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.6);
    color: var(--secondary-foreground);
}

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

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

.btn--lg {
    padding: 16px 40px;
    font-size: 1.125rem;
    min-height: 48px;
}

/* ============================================
   BADGES
   .badge - small inline label
   .badge--accent - electric pink
   ============================================ */

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    background-color: var(--muted);
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge--accent {
    background-color: var(--accent);
    color: var(--accent-foreground);
}

.badge--live {
    background-color: var(--accent);
    color: var(--accent-foreground);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ============================================
   HEADER / NAVIGATION
   .site-header - fixed top bar
   .primary-nav - desktop nav, mobile drawer
   .mobile-menu-toggle - hamburger button
   ============================================ */

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

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

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--foreground);
    text-decoration: none;
    flex-shrink: 0;
    letter-spacing: -0.02em;
}

.site-brand:hover {
    color: var(--secondary);
}

.site-brand__text {
    background: linear-gradient(135deg, var(--vivid-violet), var(--bright-turquoise));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--foreground);
    text-decoration: none;
    padding: 8px 0;
    transition: color var(--transition-fast);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--secondary);
}

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

.nav-cta .btn {
    padding: 8px 20px;
    font-size: 0.875rem;
}

/* Theme toggle */
.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    background-color: transparent;
    color: var(--foreground);
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color var(--transition-fast), color var(--transition-fast);
    margin-left: auto;
}

.theme-toggle:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.theme-toggle__icon {
    font-size: 1.125rem;
    line-height: 1;
}

.theme-toggle__icon--moon { display: none; }

.dark .theme-toggle__icon--sun { display: none; }
.dark .theme-toggle__icon--moon { display: inline; }

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background-color: transparent;
    cursor: pointer;
    flex-shrink: 0;
    padding: 10px;
    transition: border-color var(--transition-fast);
}

.mobile-menu-toggle:hover {
    border-color: var(--secondary);
}

.mobile-menu-toggle__line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--foreground);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-base);
    transform-origin: center;
}

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

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

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

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

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

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

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

.primary-nav.is-open .nav-cta .btn {
    width: 100%;
    justify-content: center;
}

/* Mobile header tightening - ensure all controls fit inside narrow viewports */
@media (max-width: 1023px) {
    .header-inner {
        padding: 0 var(--space-sm);
        gap: var(--space-sm);
    }
    .site-brand {
        font-size: 1rem;
    }
}

/* Desktop: show nav inline, hide hamburger */
@media (min-width: 1024px) {
    .primary-nav {
        display: flex;
    }
    .mobile-menu-toggle {
        display: none;
    }
    .theme-toggle {
        margin-left: 0;
    }
}

/* ============================================
   MAIN CONTENT
   ============================================ */

main {
    min-height: 60vh;
}

/* ============================================
   SECTION SPACING
   ============================================ */

section {
    padding-top: var(--space-mobile-section);
    padding-bottom: var(--space-mobile-section);
}

@media (min-width: 768px) {
    section {
        padding-top: var(--space-desktop-section);
        padding-bottom: var(--space-desktop-section);
    }
}

/* ============================================
   HERO SECTION
   .hero - full-bleed dark hero
   ============================================ */

.hero {
    position: relative;
    background-color: var(--midnight-indigo);
    color: var(--soft-cream);
    padding: var(--space-mobile-section) var(--space-md);
    overflow: clip;
}

.hero__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

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

.hero__title {
    color: var(--soft-cream);
    font-size: clamp(2rem, calc(4vw + 1rem), 3.5rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero__subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 60ch;
    line-height: 1.6;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.hero__visual {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

@media (min-width: 768px) {
    .hero__inner {
        flex-direction: row;
        align-items: center;
    }
    .hero__content {
        flex: 1 1 55%;
    }
    .hero__visual {
        flex: 1 1 45%;
    }
}

/* ============================================
   STAT BLOCK
   .stat-block - horizontal row of large numbers
   ============================================ */

.stat-block-section {
    background-color: var(--background);
}

.stat-block-section__heading {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.stat-block {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.stat-block__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-sm) 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-base), transform var(--transition-base);
}

.stat-block__item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-block__number {
    font-family: var(--font-display);
    font-size: clamp(2rem, calc(4vw + 1rem), 3rem);
    font-weight: 800;
    line-height: 1;
    color: var(--vivid-violet);
    text-shadow: var(--neon-glow-violet);
    margin-bottom: var(--space-xs);
}

.stat-block__item:nth-child(even) .stat-block__number {
    color: var(--bright-turquoise);
    text-shadow: var(--neon-glow);
}

.stat-block__label {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    font-weight: 500;
}

@media (min-width: 768px) {
    .stat-block {
        flex-direction: row;
        justify-content: space-around;
        align-items: stretch;
    }
    .stat-block__item {
        flex: 1;
        border-right: 1px solid var(--border);
    }
    .stat-block__item:last-child {
        border-right: none;
    }
}

/* ============================================
   CARDS
   .card - base content container
   .feature-card - icon + title + desc
   .game-card - thumbnail + title + provider + tag
   ============================================ */

.card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    min-width: 0;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.card:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary);
}

/* Card grid */
.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

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

/* Feature card */
.feature-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    border-color: var(--slate-gray);
    border-width: 1px;
}

.feature-card__icon {
    font-size: 2rem;
    line-height: 1;
}

.feature-card__title {
    margin: 0 0 var(--space-xs);
    font-size: 1.25rem;
}

.feature-card__desc {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 0.9375rem;
}

.feature-card__link {
    margin-top: auto;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Game card */
.game-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    overflow: hidden;
}

.game-card__media {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background-color: var(--muted);
}

.game-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.game-card__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.game-card__title {
    font-size: 1.125rem;
    margin: 0;
}

.game-card__provider {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
}

.game-card__tag {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
}

/* ============================================
   CTA BANNER
   .cta-banner - full-width conversion section
   ============================================ */

.cta-banner {
    position: relative;
    background-color: var(--midnight-indigo);
    color: var(--soft-cream);
    text-align: center;
    overflow: clip;
    padding: var(--space-mobile-section) var(--space-md);
}

.cta-banner__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.cta-banner__inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.cta-banner__heading {
    color: var(--soft-cream);
    font-size: clamp(1.75rem, calc(3vw + 0.75rem), 2.5rem);
    margin: 0;
}

.cta-banner__subheading {
    color: var(--muted-foreground);
    font-size: 1.0625rem;
    margin: 0;
    max-width: 60ch;
}

.cta-banner__micro {
    font-size: 0.8125rem;
    color: var(--muted-foreground);
    margin: 0;
}

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

/* ============================================
   BONUS TEASER
   .bonus-teaser - split layout with large amount
   ============================================ */

.bonus-teaser {
    position: relative;
    background-color: var(--midnight-indigo);
    border-radius: var(--radius-lg);
    overflow: clip;
    padding: var(--space-lg);
    max-width: var(--max-width);
    margin: 0 auto;
}

.bonus-teaser__glow {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.bonus-teaser__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

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

.bonus-teaser__number {
    font-family: var(--font-display);
    font-size: clamp(3rem, calc(6vw + 1rem), 5rem);
    font-weight: 800;
    color: var(--vivid-violet);
    text-shadow: var(--neon-glow-violet);
    line-height: 1;
}

.bonus-teaser__spins {
    font-size: 1rem;
    padding: 6px 16px;
}

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

.bonus-teaser__heading {
    color: var(--soft-cream);
    margin: 0;
}

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

@media (min-width: 768px) {
    .bonus-teaser__inner {
        flex-direction: row;
        align-items: center;
    }
    .bonus-teaser__amount {
        flex: 0 0 40%;
        justify-content: center;
    }
    .bonus-teaser__content {
        flex: 1;
    }
}

/* ============================================
   VIP PROGRESSION
   .vip-progression - horizontal/vertical tier bar
   ============================================ */

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

.vip-progression__track {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    position: relative;
}

.vip-progression__track::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--vivid-violet), var(--bright-turquoise));
    z-index: 0;
}

.vip-progression__node {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity var(--transition-base), transform var(--transition-base);
}

.vip-progression__node.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.vip-progression__circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--midnight-indigo-light);
    border: 2px solid var(--bright-turquoise);
    box-shadow: var(--neon-glow);
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--bright-turquoise);
    flex-shrink: 0;
}

.vip-progression__name {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--foreground);
}

.vip-progression__desc {
    display: block;
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    margin-top: 4px;
}

@media (min-width: 768px) {
    .vip-progression__track {
        flex-direction: row;
        justify-content: space-between;
        gap: var(--space-sm);
    }
    .vip-progression__track::before {
        left: 0;
        right: 0;
        top: 20px;
        bottom: auto;
        width: 100%;
        height: 2px;
        background: linear-gradient(to right, var(--vivid-violet), var(--bright-turquoise));
    }
    .vip-progression__node {
        flex-direction: column;
        align-items: center;
        text-align: center;
        flex: 1;
    }
}

/* ============================================
   TRUST BADGES
   .trust-badges - grayscale logo strip
   ============================================ */

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

.trust-badges__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
}

.trust-badges__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-sm) var(--space-md);
    filter: grayscale(1);
    transition: filter var(--transition-fast);
}

.trust-badges__item:hover {
    filter: grayscale(0);
}

.trust-badges__name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    letter-spacing: 0.02em;
}

/* ============================================
   FAQ ACCORDION
   .faq-accordion - collapsible Q&A
   ============================================ */

.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.faq-section__heading {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.faq-accordion {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background-color: var(--card);
    overflow: hidden;
}

.faq-accordion__item {
    border-bottom: 1px solid var(--border);
}

.faq-accordion__item:last-child {
    border-bottom: none;
}

.faq-accordion__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    text-align: left;
    transition: background-color var(--transition-fast);
}

.faq-accordion__trigger:hover {
    background-color: rgba(34, 211, 238, 0.05);
}

.faq-accordion__question {
    flex: 1;
    min-width: 0;
}

.faq-accordion__chevron {
    flex-shrink: 0;
    margin-left: var(--space-sm);
    font-size: 1.25rem;
    color: var(--secondary);
    transition: transform var(--transition-base);
    display: inline-block;
}

.faq-accordion__trigger[aria-expanded="true"] .faq-accordion__chevron {
    transform: rotate(90deg);
}

.faq-accordion__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-accordion__answer {
    padding: 0 20px 20px;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.faq-accordion__answer p {
    margin: 0;
}

/* ============================================
   DATA TABLE
   .data-table - styled comparison table
   ============================================ */

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

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

.data-table th {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--foreground);
    background-color: var(--card);
}

.data-table tbody tr:nth-child(odd) {
    background-color: rgba(34, 211, 238, 0.03);
}

.data-table tbody tr:hover {
    background-color: rgba(34, 211, 238, 0.07);
}

/* ============================================
   CALLOUT BOX
   .callout - attention-grabbing inline block
   ============================================ */

.callout {
    border-left: 4px solid var(--secondary);
    background-color: var(--card);
    border-radius: var(--radius-sm);
    padding: var(--space-md);
    margin: var(--space-md) 0;
}

.callout--info {
    border-left-color: var(--secondary);
}

.callout--warning {
    border-left-color: var(--accent);
}

.callout--tip {
    border-left-color: var(--primary);
}

.callout__title {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: var(--space-xs);
    color: var(--foreground);
}

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

/* ============================================
   SUMMARY BOX
   .summary-box - key takeaways container
   ============================================ */

.summary-box {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin: var(--space-md) 0;
    background-color: var(--card);
}

.summary-box__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0 0 var(--space-sm);
    color: var(--foreground);
}

.summary-box__list {
    margin: 0;
    padding-left: var(--space-md);
}

.summary-box__item {
    color: var(--muted-foreground);
    margin-bottom: var(--space-xs);
}

/* ============================================
   PULL QUOTE
   .pull-quote - oversized quote with attribution
   ============================================ */

.pull-quote {
    margin: var(--space-lg) 0;
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.pull-quote__text {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, calc(2vw + 0.5rem), 1.75rem);
    font-weight: 500;
    line-height: 1.4;
    color: var(--foreground);
    margin: 0 0 var(--space-sm);
    max-width: 70ch;
    margin-left: auto;
    margin-right: auto;
}

.pull-quote__attribution {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    font-style: normal;
}

/* ============================================
   FOOTER
   .site-footer - bottom of every page
   ============================================ */

.site-footer {
    background-color: var(--midnight-indigo);
    color: var(--soft-cream);
    padding: var(--space-xl) var(--space-md);
    margin-top: var(--space-xl);
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
}

.footer-brand__text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    background: linear-gradient(135deg, var(--vivid-violet), var(--bright-turquoise));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

.footer-link {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--bright-turquoise);
}

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

@media (min-width: 768px) {
    .footer-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }
    .footer-nav {
        justify-content: flex-end;
    }
}

/* ============================================
   ANIMATIONS - Scroll reveal
   .animate-on-scroll - starts hidden, revealed by JS
   ============================================ */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-base), transform var(--transition-base);
}

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

/* ============================================
   DECORATIVE - Lotus glow pulse
   ============================================ */

@keyframes lotus-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.lotus-glow {
    animation: lotus-pulse 4s ease-in-out infinite;
}

/* ============================================
   FLOATING ELEMENTS - Drift animation
   ============================================ */

@keyframes drift {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(3deg); }
}

.float-element {
    animation: drift 6s ease-in-out infinite;
}

.float-element--delay-1 { animation-delay: 0.5s; }
.float-element--delay-2 { animation-delay: 1s; }
.float-element--delay-3 { animation-delay: 1.5s; }

/* ============================================
   PROVIDER LOGO STRIP
   .provider-strip - horizontal scrolling logos
   ============================================ */

.provider-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-md) var(--space-lg);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.provider-strip__item {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    opacity: 0.7;
    filter: grayscale(1);
    transition: opacity var(--transition-fast), color var(--transition-fast);
    white-space: nowrap;
}

.provider-strip__item:hover {
    opacity: 1;
    color: var(--bright-turquoise);
}

/* ============================================
   PROCESS FLOW - KYC steps etc.
   .process-flow - horizontal/vertical step nodes
   ============================================ */

.process-flow {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

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

.process-flow__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--midnight-indigo-light);
    border: 2px solid var(--bright-turquoise);
    box-shadow: var(--neon-glow);
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--bright-turquoise);
    flex-shrink: 0;
}

.process-flow__content {
    flex: 1;
    min-width: 0;
}

.process-flow__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0 0 var(--space-xs);
}

.process-flow__desc {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    margin: 0;
}

@media (min-width: 768px) {
    .process-flow {
        flex-direction: row;
        justify-content: space-between;
    }
    .process-flow__step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        flex: 1;
        position: relative;
    }
    .process-flow__step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 20px;
        left: 60%;
        width: 80%;
        height: 2px;
        background: linear-gradient(to right, var(--bright-turquoise), transparent);
    }
    .process-flow__content {
        max-width: 240px;
    }
}

/* ============================================
   TIMELINE - VIP levels vertical
   .timeline - alternating left/right nodes
   ============================================ */

.timeline {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
}

.timeline__item {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-md) 0;
    border-left: 2px solid var(--bright-turquoise);
    padding-left: var(--space-lg);
    margin-left: 20px;
    position: relative;
}

.timeline__item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: var(--space-md);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--bright-turquoise);
    box-shadow: var(--neon-glow);
}

.timeline__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.125rem;
    margin: 0;
}

.timeline__desc {
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    margin: 0;
}

@media (min-width: 768px) {
    .timeline__item:nth-child(odd) {
        margin-left: 50%;
        padding-left: var(--space-lg);
    }
    .timeline__item:nth-child(even) {
        margin-left: 0;
        padding-left: 0;
        padding-right: var(--space-lg);
        border-left: none;
        border-right: 2px solid var(--bright-turquoise);
        text-align: right;
    }
    .timeline__item:nth-child(even)::before {
        left: auto;
        right: -8px;
    }
}

/* ============================================
   SPLIT LAYOUT
   .split-layout - two-column content
   ============================================ */

.split-layout {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.split-layout__col {
    flex: 1;
    min-width: 0;
}

@media (min-width: 768px) {
    .split-layout {
        flex-direction: row;
        align-items: center;
    }
}

/* ============================================
   SITEMAP LIST
   .sitemap-list - simple page list
   ============================================ */

.sitemap-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 800px;
}

.sitemap-list__item {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.sitemap-list__item:last-child {
    border-bottom: none;
}

.sitemap-list__link {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--foreground);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.sitemap-list__link:hover {
    color: var(--secondary);
}

.sitemap-list__desc {
    margin: var(--space-xs) 0 0;
    font-size: 0.9375rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

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

/* a11y-autofix: link-in-text-block */
/* axe link-in-text-block: inline links inside body copy must be
   distinguishable without relying on color. Scope to text containers so
   nav/button/card links (already visually distinct) keep their styling. */
:where(p, li, blockquote, figcaption, dd, .prose, .seo-text, article)
  a:not([class]) {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
