/* ============================================
   FUGU CASINO - DEEP-SEA DESIGN SYSTEM
   Dark underwater aesthetic, mobile-first
   Fonts: Sora (headlines) + Outfit (body)
   ============================================ */

/* ============================================
   DESIGN TOKENS - Dark theme only (no switcher)
   Deep midnight blue base, gold/turquoise/coral accents
   ============================================ */
:root {
    /* Backgrounds */
    --background: #020617;
    --background-elevated: #0F172A;
    --card: #0F2738;
    --card-elevated: #13334A;

    /* Text */
    --foreground: #F8FAFC;
    --foreground-secondary: #CBD5E1;
    --muted-foreground: #94A3B8;

    /* Accents */
    --primary: #2DD4BF;       /* turquoise */
    --primary-foreground: #FFFFFF;
    --secondary: #FBBF24;     /* gold */
    --secondary-foreground: #1F2937;
    --accent: #BE123C;        /* coral - darkened further so axe estimated visited-link bg also passes WCAG AA */
    --accent-foreground: #FFFFFF;

    /* Borders */
    --border: #1E3A52;
    --border-subtle: #14304A;

    /* Functional */
    --destructive: #EF4444;
    --ring: #2DD4BF;

    /* Gradients */
    --gradient-hero: radial-gradient(ellipse at 50% 100%, #0C4A6E 0%, #020617 70%);
    --gradient-card: linear-gradient(145deg, #0F2738 0%, #0A1F30 100%);

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

    /* Spacing scale (8px base) */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-section: 60px;
    --space-section-desktop: 100px;

    /* Layout */
    --max-width: 1200px;
    --content-max: 800px;
    --header-height: 64px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;

    /* Transitions */
    --transition: 300ms ease-out;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: calc(var(--header-height) + 16px);
}

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

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

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

a:hover {
    color: #5EEAD4;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--foreground);
    line-height: 1.2;
}

h1 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 600;
}

p {
    margin-bottom: 28px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--muted-foreground);
    max-width: 700px;
}

.text-center { text-align: center; }
.text-gold { color: var(--secondary); }
.text-coral { color: var(--accent); }

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

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

.section {
    padding: var(--space-section) 0;
    scroll-margin-top: calc(var(--header-height) + 16px);
}

/* Adjacent sections: previous section's padding-bottom creates the gap */
.section + .section,
.hero + .section {
    padding-top: 0;
}

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

.full-bleed {
    width: 100%;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #020617;
    border-bottom: 1px solid var(--border-subtle);
    min-height: var(--header-height);
}

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

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

.site-brand .logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 26px;
    line-height: 1;
    background: linear-gradient(135deg, #0C4A6E 0%, #0F2738 100%);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: var(--radius-sm);
}

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

.brand-name span {
    color: var(--secondary);
}

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

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

.nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--foreground-secondary);
    padding: 8px 4px;
    transition: color var(--transition);
}

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

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

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

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: all 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: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

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

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

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

    .nav-list li {
        border-bottom: 1px solid var(--border-subtle);
    }

    .nav-link {
        display: flex;
        align-items: center;
        min-height: 48px;
        font-size: 18px;
        padding: 12px 4px;
    }

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

    .nav-cta-group .btn {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    min-height: 44px;
    line-height: 1.4;
}

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

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

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

.btn-accent:hover {
    background: #9F0F2E;
    color: var(--accent-foreground);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244, 63, 94, 0.3);
}

/* Ensure visited links keep button colors */
.btn-accent:visited {
    color: #FFFFFF !important;
    background-color: #BE123C !important;
}

.btn-accent:visited:hover {
    background-color: #9F0F2E !important;
    color: #FFFFFF !important;
}

/* Ensure all button types keep their colors when visited */
.btn:visited {
    color: inherit;
}
.btn-primary:visited {
    color: #FFFFFF !important;
    background-color: #0D9488 !important;
}
.btn-ghost:visited {
    color: var(--foreground) !important;
}
.btn-secondary:visited {
    color: var(--secondary-foreground) !important;
    background-color: var(--secondary) !important;
}

.btn-primary {
    background: #0D9488;
    color: #FFFFFF;
}

.btn-primary:hover {
    background: #0F766E;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.3);
}

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

.btn-ghost:hover {
    background: var(--card);
    color: var(--primary);
}

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

.btn-secondary:hover {
    background: #F59E0B;
    color: var(--secondary-foreground);
    transform: translateY(-2px);
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
    position: relative;
    background: var(--gradient-hero);
    padding: 80px 0 60px;
    overflow: clip;
    scroll-margin-top: var(--header-height);
}

@media (min-width: 1024px) {
    .hero {
        padding: 100px 0 100px;
    }
}

.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(28px, 5vw, 48px);
    margin-bottom: var(--space-md);
}

.hero h2 {
    font-size: clamp(24px, 4vw, 40px);
    margin-bottom: var(--space-md);
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--foreground-secondary);
    max-width: 600px;
    margin-bottom: var(--space-xl);
}

.hero-mascot {
    width: 100%;
    max-width: 500px;
    margin: var(--space-xl) auto 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hero-mascot img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: var(--secondary);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

/* Hero grid - two columns on desktop */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: var(--space-2xl);
    }
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.hero-micro {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: var(--space-sm);
    margin-bottom: 0;
}

/* Gamification panels */
.gamification-panels {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

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

.gami-panel {
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    min-width: 0;
    transition: all var(--transition);
}

.gami-panel:hover {
    transform: scale(1.03);
    border-color: rgba(45, 212, 191, 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.gami-panel-icon {
    font-size: 32px;
    margin-bottom: var(--space-md);
    display: block;
}

.gami-panel h3 {
    font-size: 18px;
    margin-bottom: var(--space-sm);
}

.gami-panel p {
    color: var(--muted-foreground);
    font-size: 16px;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Payment methods grid */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .payment-methods-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pay-method-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    transition: all var(--transition);
}

.pay-method-card:hover {
    transform: scale(1.03);
    border-color: rgba(45, 212, 191, 0.4);
}

.pay-method-icon {
    font-size: 28px;
    margin-bottom: var(--space-xs);
}

.pay-method-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--foreground);
}

.pay-method-time {
    font-size: 13px;
    color: var(--secondary);
    font-weight: 500;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, #0A1628 0%, #020617 50%, #0A1628 100%);
    padding: 60px var(--space-lg);
    text-align: center;
    overflow: clip;
    position: relative;
    scroll-margin-top: calc(var(--header-height) + 16px);
}

.cta-banner::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    max-width: 100%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* Ensure CTA banner button visited state keeps contrast */
.cta-banner .btn-accent:visited {
    color: #FFFFFF !important;
    background-color: #BE123C !important;
}

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

.cta-banner-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.cta-banner-subtitle {
    font-size: 18px;
    color: var(--muted-foreground);
    margin-bottom: var(--space-xl);
}

.cta-banner-micro {
    font-size: 14px;
    color: var(--muted-foreground);
    margin-top: var(--space-md);
    margin-bottom: 0;
}

/* ============================================
   STAT BLOCK
   ============================================ */
.stat-block-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    justify-content: center;
    padding: var(--space-xl) 0;
}

.stat-block-item {
    flex: 1 1 100%;
    text-align: center;
    min-width: 0;
}

@media (min-width: 768px) {
    .stat-block-item {
        flex: 1 1 45%;
    }
}

@media (min-width: 1024px) {
    .stat-block-item {
        flex: 1 1 22%;
    }
}

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

.stat-label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--foreground-secondary);
}

/* ============================================
   FEATURE GRID & CARDS
   ============================================ */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

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

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

.feature-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    min-width: 0;
    transition: all var(--transition);
}

.feature-card:hover {
    transform: scale(1.03);
    border-color: rgba(45, 212, 191, 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(45, 212, 191, 0.2);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    width: 56px;
    height: 56px;
    background: rgba(251, 191, 36, 0.12);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.feature-description {
    font-size: 16px;
    color: var(--muted-foreground);
    margin-bottom: 0;
    line-height: 1.5;
}

.feature-meta {
    display: inline-block;
    margin-top: var(--space-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary);
    background: rgba(251, 191, 36, 0.1);
    padding: 4px 12px;
    border-radius: 999px;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

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

.faq-item:hover {
    border-color: rgba(244, 63, 94, 0.3);
}

.faq-details {
    border: none;
}

.faq-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: var(--space-lg);
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--foreground);
    list-style: none;
    transition: background var(--transition);
}

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

.faq-summary:hover {
    background: rgba(251, 191, 36, 0.05);
}

.faq-summary > span:first-child {
    flex: 1;
    min-width: 0;
}

.faq-icon {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--secondary);
    transition: all var(--transition);
}

.faq-icon::before {
    width: 14px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 14px;
}

.faq-details[open] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--foreground-secondary);
    font-size: 16px;
    line-height: 1.6;
}

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

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

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

/* Callout / highlight box */
.callout {
    background: rgba(244, 63, 94, 0.08);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
}

.callout-turquoise {
    background: rgba(45, 212, 191, 0.08);
    border-left-color: var(--primary);
}

.callout-gold {
    background: rgba(251, 191, 36, 0.08);
    border-left-color: var(--secondary);
}

.callout-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: var(--space-sm);
    color: var(--foreground);
}

.callout p {
    margin-bottom: 0;
    color: var(--foreground-secondary);
}

/* Ensure inline links in callouts and card text are distinguishable without color */
.callout a,
.feature-description a,
.faq-answer a,
.review-card a {
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
}

/* TL;DR / Summary box */
.tldr-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
}

.tldr-box h3 {
    color: var(--secondary);
    margin-bottom: var(--space-md);
}

.tldr-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.tldr-list li {
    padding-left: 24px;
    position: relative;
    color: var(--foreground-secondary);
}

.tldr-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* Pull quote */
.pull-quote {
    font-family: var(--font-heading);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 600;
    line-height: 1.4;
    color: var(--foreground);
    border-left: 4px solid var(--secondary);
    padding-left: var(--space-xl);
    margin: var(--space-2xl) 0;
}

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

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

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 8px 16px;
    background: var(--card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--muted-foreground);
}

/* Star rating */
.star-rating {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.star {
    color: var(--secondary);
    font-size: 18px;
}

.star-empty {
    color: var(--border);
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.table-wrapper {
    overflow-x: auto;
    margin: var(--space-xl) 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
}

.table-wrapper:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

/* Ensure keyboard-accessible scrollable region is visually indicated */
.table-wrapper[tabindex="0"] {
    scroll-behavior: smooth;
}

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

.comparison-table thead {
    background: rgba(251, 191, 36, 0.1);
}

.comparison-table th {
    padding: var(--space-md) var(--space-lg);
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--secondary);
    border-bottom: 1px solid var(--border);
}

.comparison-table td {
    padding: var(--space-md) var(--space-lg);
    color: var(--foreground-secondary);
    border-bottom: 1px solid var(--border-subtle);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: rgba(45, 212, 191, 0.04);
}

.col-highlight {
    background: rgba(45, 212, 191, 0.06);
}

/* ============================================
   STEP CARDS (numbered flow)
   ============================================ */
.step-flow {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

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

.step-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    position: relative;
    min-width: 0;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--secondary);
    color: var(--secondary-foreground);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: var(--space-md);
}

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

.step-card p {
    color: var(--muted-foreground);
    font-size: 16px;
    margin-bottom: 0;
}

/* ============================================
   VIP TIER LADDER
   ============================================ */
.tier-ladder {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.tier-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    background: var(--gradient-card);
    border: 1px solid var(--border-subtle);
    border-left-width: 4px;
    border-radius: var(--radius-md);
    padding: var(--space-lg) var(--space-xl);
}

.tier-card.tier-1 { border-left-color: #475569; }
.tier-card.tier-2 { border-left-color: #2DD4BF; }
.tier-card.tier-3 { border-left-color: #FBBF24; }
.tier-card.tier-4 { border-left-color: #F43F5E; }

.tier-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
}

.tier-perks {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: right;
}

.tier-perk-value {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--secondary);
    font-size: 18px;
}

.tier-perk-label {
    font-size: 14px;
    color: var(--muted-foreground);
}

/* ============================================
   PROS & CONS
   ============================================ */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

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

.pros-card, .cons-card {
    background: var(--card);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
}

.pros-card {
    border: 1px solid rgba(45, 212, 191, 0.3);
}

.cons-card {
    border: 1px solid rgba(244, 63, 94, 0.3);
}

.pros-card h3 {
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.cons-card h3 {
    color: #FB7185;
    margin-bottom: var(--space-md);
}

.pros-list, .cons-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.pros-list li, .cons-list li {
    padding-left: 28px;
    position: relative;
    color: var(--foreground-secondary);
    line-height: 1.5;
}

.pros-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.cons-list li::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* ============================================
   REVIEW QUOTE CARDS
   ============================================ */
.review-card {
    background: var(--card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    margin-bottom: var(--space-md);
}

.review-card blockquote {
    font-style: italic;
    color: var(--foreground-secondary);
    margin-bottom: var(--space-md);
}

.review-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--muted-foreground);
}

/* ============================================
   TIMELINE / HORIZONTAL BAR
   ============================================ */
.timeline-bar {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    margin: var(--space-xl) 0;
}

.timeline-step {
    flex: 1 1 auto;
    text-align: center;
    padding: var(--space-md);
    background: var(--card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    position: relative;
    min-width: 120px;
}

.timeline-step strong {
    display: block;
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 16px;
    margin-bottom: 4px;
}

.timeline-step span {
    font-size: 14px;
    color: var(--muted-foreground);
}

.timeline-arrow {
    color: var(--border);
    padding: 0 var(--space-sm);
    font-size: 20px;
}

/* ============================================
   SECTION HEADINGS
   ============================================ */
.section-heading {
    text-align: center;
    margin-bottom: var(--space-xl);
}

@media (min-width: 1024px) {
    .section-heading {
        margin-bottom: var(--space-2xl);
    }
}

.section-heading h2 {
    margin-bottom: var(--space-md);
}

.section-heading .section-subtitle {
    margin: 0 auto;
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
    margin-bottom: var(--space-sm);
}

/* ============================================
   SEO CONTENT BLOCK
   ============================================ */
.seo-content {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: var(--space-section) var(--space-lg);
    scroll-margin-top: calc(var(--header-height) + 16px);
}

@media (min-width: 1024px) {
    .seo-content {
        padding: var(--space-section-desktop) var(--space-lg);
    }
}

.seo-content h2 {
    margin-bottom: var(--space-lg);
}

.seo-content p {
    color: var(--foreground-secondary);
    font-size: 17px;
    line-height: 1.7;
}

.seo-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
}

.seo-content a:hover {
    color: var(--secondary);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #01040F;
    border-top: 1px solid var(--border-subtle);
    padding: var(--space-2xl) var(--space-lg) var(--space-lg);
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-xl);
    }
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: var(--space-md);
    margin-top: 0;
}

/* Override h2 defaults for footer headings */
.site-footer h2.footer-heading {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

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

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

.payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.pay-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: var(--card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    color: var(--muted-foreground);
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-license,
.footer-disclaimer,
.footer-copyright {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

.footer-disclaimer {
    color: #F43F5E;
    font-weight: 600;
}

/* ============================================
   SITEMAP PAGE
   ============================================ */
.sitemap-page {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: var(--space-section) var(--space-lg);
}

@media (min-width: 1024px) {
    .sitemap-page {
        padding: var(--space-section-desktop) var(--space-lg);
    }
}

.sitemap-list {
    list-style: none;
    counter-reset: sitemap-counter;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.sitemap-list li {
    counter-increment: sitemap-counter;
    padding: var(--space-lg);
    background: var(--card);
    border-left: 3px solid var(--border);
    border-radius: var(--radius-sm);
}

.sitemap-list li::before {
    content: counter(sitemap-counter);
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--secondary);
    margin-right: var(--space-sm);
}

.sitemap-list a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    color: var(--foreground);
}

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

.sitemap-desc {
    display: block;
    margin-top: var(--space-sm);
    color: var(--muted-foreground);
    font-size: 15px;
    line-height: 1.5;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 500ms ease-out, transform 500ms ease-out;
}

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

/* Staggered delays */
.animate-on-scroll:nth-child(2) { transition-delay: 100ms; }
.animate-on-scroll:nth-child(3) { transition-delay: 200ms; }
.animate-on-scroll:nth-child(4) { transition-delay: 300ms; }
.animate-on-scroll:nth-child(5) { transition-delay: 400ms; }
.animate-on-scroll:nth-child(6) { transition-delay: 500ms; }

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

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

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

/* Skip link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 8px 16px;
    z-index: 9999;
    border-radius: 0 0 var(--radius-sm) 0;
}

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