/* ============================================
   DESIGN TOKENS - Dark theme (no toggle)
   Football stadium aesthetic: near-black night sky,
   electric lime-green floodlights, neon yellow accents.
   Single theme - no .dark overrides needed.
   ============================================ */
:root {
    /* Backgrounds */
    --background: #020617;
    --foreground: #fafaf9;
    --card: #111827;
    --card-foreground: #fafaf9;
    --popover: #111827;
    --popover-foreground: #fafaf9;

    /* Brand */
    --primary: #a3e635;
    --primary-foreground: #020617;
    --secondary: #1e293b;
    --secondary-foreground: #fafaf9;

    /* Muted */
    --muted: #334155;
    --muted-foreground: #a0aec0;

    /* Accent */
    --accent: #facc15;
    --accent-foreground: #020617;

    /* States */
    --destructive: #ee0d34;
    --destructive-foreground: #ffffff;

    /* Borders */
    --border: #334155;
    --input: #1e293b;
    --ring: #a3e635;

    /* Typography */
    --font-heading: "Anton", sans-serif;
    --font-body: "Inter", sans-serif;

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

    /* Header */
    --header-height: 64px;

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

    /* Shadows */
    --shadow-lift: 0 8px 32px rgba(163, 230, 53, 0.12);

    /* Container */
    --container-max: 1200px;
}

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

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

body {
    margin: 0;
    padding: 0;
    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;
}

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

section {
    overflow-x: clip;
}

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

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

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

/* ============================================
   TYPOGRAPHY SYSTEM
   Anton: uppercase, tight letter-spacing for headlines
   Inter: 17px/1.6 for body, 28px paragraph spacing
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 var(--space-md) 0;
    color: var(--foreground);
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 18px;
}

p {
    margin: 0 0 28px 0;
}

p:last-child {
    margin-bottom: 0;
}

strong {
    color: var(--primary);
    font-weight: 600;
}

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

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

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

.full-bleed {
    width: 100%;
}

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

/* ============================================
   HEADER & NAVIGATION
   Sticky header, logo left, nav center, CTA right.
   Mobile: hamburger toggles slide-in drawer.
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.95);
    border-bottom: 1px solid var(--border);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.header-inner {
    width: 100%;
    max-width: var(--container-max);
    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 {
    height: 40px;
    width: 40px;
    border-radius: 8px;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--foreground);
}

/* Primary nav - mobile drawer by default */
.primary-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    z-index: 999;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-lg) var(--space-md);
    gap: var(--space-md);
    transform: translateX(100%);
    transition: transform var(--transition);
    visibility: hidden;
}

.primary-nav.is-open {
    transform: translateX(0);
    visibility: visible;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.nav-list a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: var(--space-sm);
    font-size: 18px;
    font-weight: 500;
    color: var(--foreground);
    border-radius: 8px;
    transition: background var(--transition), color var(--transition);
}

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

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

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

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

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

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

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

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

/* ============================================
   DESKTOP NAVIGATION (≥1024px)
   Inline nav, hide hamburger
   ============================================ */
@media (min-width: 1024px) {
    :root {
        --header-height: 72px;
    }

    .mobile-toggle {
        display: none;
    }

    .primary-nav {
        position: static;
        transform: none;
        visibility: visible;
        flex-direction: row;
        align-items: center;
        padding: 0;
        gap: var(--space-lg);
        background: transparent;
        overflow: visible;
    }

    .nav-list {
        flex-direction: row;
        gap: var(--space-lg);
    }

    .nav-list a {
        min-height: auto;
        padding: var(--space-xs) var(--space-sm);
        font-size: 16px;
        background: transparent;
    }

    .header-cta {
        flex-direction: row;
        gap: var(--space-sm);
    }

    .header-cta .btn {
        width: auto;
    }
}

/* ============================================
   FOOTER
   4 columns desktop, 1 column mobile.
   Internal links, Seitenübersicht, payment methods,
   Curaçao license, 18+ notice.
   ============================================ */
.site-footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: var(--space-xl) 0 var(--space-lg) 0;
}

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

.footer-heading {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

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

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

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

.footer-text {
    font-size: 14px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.footer-18 {
    color: var(--accent);
    font-weight: 500;
}

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

.payment-badge {
    display: inline-block;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted-foreground);
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 6px;
}

.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);
    margin: 0;
}

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

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

/* ============================================
   BUTTONS
   .btn-primary: lime-green fill, dark text
   .btn-outline: transparent with border
   .btn-large: 44px+ touch target
   .btn-sm: compact for header
   .btn-pulse: glowing yellow pulse on hover
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 12px 24px;
    min-height: 44px;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

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

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

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

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

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

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

.btn-pulse:hover {
    animation: pulse-glow 1.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 16px rgba(250, 204, 21, 0.3);
    }
    50% {
        box-shadow: 0 0 32px rgba(250, 204, 21, 0.6);
    }
}

/* ============================================
   HERO SECTIONS
   Full-bleed dark background with model imagery,
   stadium floodlights, confetti, diagonal slash.
   ============================================ */
.hero {
    position: relative;
    width: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: var(--background);
    overflow: clip;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.45;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.92) 0%, rgba(2, 6, 23, 0.7) 50%, rgba(2, 6, 23, 0.85) 100%);
    z-index: 1;
}

.hero-slash {
    position: absolute;
    bottom: 15%;
    left: -10%;
    width: 120%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: rotate(-4deg);
    z-index: 2;
    pointer-events: none;
}

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

.hero-headline {
    font-size: 36px;
    color: var(--foreground);
    max-width: 650px;
    margin-bottom: var(--space-md);
}

.hero-headline .accent {
    color: var(--primary);
}

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

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

@media (min-width: 768px) {
    .hero {
        min-height: 600px;
    }

    .hero-headline {
        font-size: 48px;
    }
}

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

    .hero-headline {
        font-size: 56px;
    }

    .hero-content {
        padding: var(--space-2xl) var(--space-md);
    }
}

/* ============================================
   STAT BLOCK
   Horizontal row of highlight numbers.
   Anton 48px lime-green, dark charcoal cards.
   ============================================ */
.stat-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.stat-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: var(--space-lg);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    min-width: 0;
}

.stat-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lift);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--primary);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: var(--space-xs);
}

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

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

.stat-caption {
    text-align: center;
    font-size: 15px;
    color: var(--muted-foreground);
    margin-top: var(--space-md);
}

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

    .stat-number {
        font-size: 48px;
    }
}

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

/* ============================================
   FEATURE CARD GRID
   2-col desktop, 2-col tablet, 1-col mobile.
   16:9 image, Anton title, Inter description.
   ============================================ */
.feature-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    min-width: 0;
    transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lift);
}

.feature-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--secondary);
}

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

.feature-card-body {
    padding: var(--space-md);
}

.feature-card-body h3 {
    margin-bottom: var(--space-sm);
}

.feature-card-body p {
    color: var(--muted-foreground);
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
    transition: color var(--transition), gap var(--transition);
}

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

.card-link::after {
    content: '\2192';
    font-size: 18px;
}

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

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

/* ============================================
   CTA BANNER
   Full-width dark charcoal section with lime-green
   diagonal slash overlay and pulsing button.
   ============================================ */
.cta-banner {
    position: relative;
    background: var(--card);
    padding: var(--space-xl) var(--space-md);
    overflow: clip;
}

.cta-slash {
    position: absolute;
    top: 50%;
    left: -10%;
    width: 120%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: rotate(-3deg);
    pointer-events: none;
    opacity: 0.5;
}

.cta-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
}

.cta-headline {
    font-size: 28px;
    color: var(--foreground);
    margin-bottom: var(--space-sm);
}

.cta-subtext {
    font-size: 17px;
    color: var(--muted-foreground);
    margin-bottom: var(--space-lg);
}

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

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

    .cta-headline {
        font-size: 40px;
    }
}

/* ============================================
   FAQ ACCORDION
   Native details/summary with styled toggle.
   Lime-green plus/minus, neon-yellow left border.
   ============================================ */
.faq-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: var(--space-md);
    border-left: 3px solid transparent;
    transition: border-color var(--transition);
}

.faq-item[open] {
    border-left-color: var(--accent);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    cursor: pointer;
    list-style: none;
    font-family: var(--font-heading);
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--foreground);
}

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

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

.faq-toggle {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

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

.faq-toggle::before {
    width: 16px;
    height: 3px;
}

.faq-toggle::after {
    width: 3px;
    height: 16px;
}

.faq-item[open] .faq-toggle::after {
    transform: rotate(90deg) scaleX(0);
}

.faq-answer {
    padding-top: var(--space-md);
    border-top: 1px solid var(--border);
    margin-top: var(--space-md);
}

.faq-answer p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted-foreground);
    margin: 0;
}

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

    .faq-question {
        font-size: 22px;
    }
}

/* ============================================
   TABLES - Comparison & data tables
   Lime-green header, dark rows, responsive scroll.
   ============================================ */
.table-wrapper {
    max-width: 100%;
    overflow-x: auto;
    min-width: 0;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    min-width: 0;
}

table thead {
    background: var(--secondary);
}

table th {
    text-align: left;
    padding: var(--space-md);
    font-family: var(--font-heading);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--primary);
    border-bottom: 2px solid var(--border);
}

table td {
    padding: var(--space-md);
    color: var(--muted-foreground);
    border-bottom: 1px solid var(--border);
}

table tbody tr:hover {
    background: var(--secondary);
}

table .col-highlight {
    background: rgba(163, 230, 53, 0.08);
}

table .col-highlight th {
    color: var(--accent);
}

.check-mark {
    color: var(--primary);
    font-weight: 700;
}

.x-mark {
    color: var(--destructive);
    font-weight: 700;
}

@media (max-width: 480px) {
    table {
        font-size: 13px;
    }

    table th,
    table td {
        padding: var(--space-xs);
    }
}

/* ============================================
   CALLOUT / HIGHLIGHT BOX
   Attention-grabbing inline block with accent border.
   ============================================ */
.callout {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
}

.callout-title {
    font-family: var(--font-heading);
    font-size: 18px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

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

/* ============================================
   TL;DR / SUMMARY BOX
   Bordered container for key takeaways.
   ============================================ */
.tldr-box {
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
}

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

.tldr-box ul {
    margin: 0;
    padding-left: var(--space-md);
    color: var(--muted-foreground);
}

.tldr-box li {
    margin-bottom: var(--space-xs);
}

/* ============================================
   PULL QUOTE
   Oversized quote text breaking content flow.
   ============================================ */
.pull-quote {
    border-left: 4px solid var(--primary);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
    font-size: 20px;
    font-style: italic;
    color: var(--foreground);
    line-height: 1.5;
}

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

/* ============================================
   TRUST BADGES ROW
   Horizontal arrangement of logos/icons.
   ============================================ */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
    justify-content: center;
}

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

.trust-badge::before {
    content: '\2713';
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
}

/* ============================================
   PROVIDERS STRIP
   Full-width horizontal strip of provider logos.
   ============================================ */
.providers-strip {
    background: var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: var(--space-lg) 0;
    overflow: clip;
    position: relative;
}

.providers-strip::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    width: 120%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: rotate(-2deg);
    opacity: 0.3;
    pointer-events: none;
}

.provider-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    position: relative;
}

.provider-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 16px;
    text-transform: uppercase;
    color: var(--muted-foreground);
    transition: color var(--transition), border-color var(--transition);
    text-align: center;
}

.provider-logo:hover {
    color: var(--primary);
    border-color: var(--primary);
}

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

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

/* ============================================
   PAYMENT METHODS GRID
   Dark charcoal cards with lime-green checkmarks.
   ============================================ */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-md);
}

.payment-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: border-color var(--transition), box-shadow var(--transition);
    min-width: 0;
}

.payment-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lift);
}

.payment-item::before {
    content: '\2713';
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.payment-item span {
    font-size: 15px;
    color: var(--foreground);
    font-weight: 500;
    min-width: 0;
    overflow-wrap: break-word;
}

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

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

/* ============================================
   STEP-BY-STEP PROCESS
   Numbered steps with lime-green circle badges.
   ============================================ */
.step-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

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

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 18px;
}

.step-content h4 {
    color: var(--foreground);
    margin-bottom: var(--space-xs);
}

.step-content p {
    color: var(--muted-foreground);
    margin: 0;
}

/* ============================================
   TWO-COLUMN LAYOUT
   Split content into two columns on desktop.
   ============================================ */
.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

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

/* ============================================
   SECTION HEADING WRAPPER
   Consistent H2 + intro text block.
   ============================================ */
.section-heading {
    margin-bottom: var(--space-xl);
}

.section-heading h2 {
    font-size: 28px;
    margin-bottom: var(--space-sm);
}

.section-heading p {
    font-size: 17px;
    color: var(--muted-foreground);
    max-width: 700px;
}

@media (min-width: 1024px) {
    .section-heading h2 {
        font-size: 40px;
    }
}

/* ============================================
   CONTENT ARTICLE
   Prose styling for main content sections.
   ============================================ */
.content-article {
    max-width: 800px;
    min-width: 0;
}

.content-article p {
    margin-bottom: 28px;
}

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

.content-article h3 {
    margin-top: var(--space-lg);
}

.content-article ul, .content-article ol {
    padding-left: var(--space-md);
    margin-bottom: 28px;
}

.content-article li {
    margin-bottom: var(--space-xs);
    color: var(--muted-foreground);
}

.content-article a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: rgba(163, 230, 53, 0.4);
    text-underline-offset: 3px;
}

.content-article a:hover {
    text-decoration-color: var(--primary);
}

.content-article blockquote {
    margin: var(--space-lg) 0;
    padding: var(--space-md) var(--space-lg);
    border-left: 4px solid var(--primary);
    background: var(--card);
    border-radius: 0 8px 8px 0;
}

.content-article blockquote p {
    margin: 0;
    font-size: 18px;
    font-style: italic;
    color: var(--foreground);
}

/* ============================================
   ANIMATIONS
   Fade-in slide-up on viewport entry.
   Staggered 100ms delays for grids.
   ============================================ */
.no-js .animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
}

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

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

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

.stat-row .animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.stat-row .animate-on-scroll:nth-child(2) { transition-delay: 100ms; }
.stat-row .animate-on-scroll:nth-child(3) { transition-delay: 200ms; }
.stat-row .animate-on-scroll:nth-child(4) { transition-delay: 300ms; }

.faq-section .animate-on-scroll:nth-child(1) { transition-delay: 0ms; }
.faq-section .animate-on-scroll:nth-child(2) { transition-delay: 100ms; }
.faq-section .animate-on-scroll:nth-child(3) { transition-delay: 200ms; }
.faq-section .animate-on-scroll:nth-child(4) { transition-delay: 300ms; }
.faq-section .animate-on-scroll:nth-child(5) { transition-delay: 400ms; }
.faq-section .animate-on-scroll:nth-child(6) { transition-delay: 500ms; }

/* ============================================
   RESPONSIVE SECTION SPACING
   60px mobile → 100px desktop
   ============================================ */
.section {
    padding: var(--space-xl) 0;
}

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

/* ============================================
   ACCESSIBILITY
   Screen-reader-only text, focus styles.
   ============================================ */
.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(--primary);
    outline-offset: 2px;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: var(--space-xs) var(--space-md);
    border-radius: 0 0 8px 0;
    z-index: 10000;
    font-weight: 600;
}

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

/* ============================================
   MISC UTILITIES
   ============================================ */
.badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    background: var(--primary);
    color: var(--primary-foreground);
}

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

.badge-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--muted-foreground);
}

.highlight-text {
    color: var(--primary);
    font-weight: 600;
}

.divider {
    height: 1px;
    background: var(--border);
    border: none;
    margin: var(--space-xl) 0;
}

/* Image with rounded corners */
.rounded-img {
    border-radius: 12px;
    overflow: hidden;
}

/* Visually hidden but accessible */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

/* ============================================
   TRUST FEATURES LIST
   Lime-green checkmark bullets for trust signals.
   ============================================ */
.trust-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.trust-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    color: var(--muted-foreground);
    font-size: 16px;
    line-height: 1.6;
}

.trust-features li::before {
    content: '\2713';
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
    font-size: 18px;
    line-height: 1.4;
}

/* ============================================
   STRIP HEADING
   Centered heading for full-width strips like
   the providers strip.
   ============================================ */
.strip-heading {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.strip-heading h2 {
    font-size: 28px;
    margin-bottom: var(--space-sm);
}

.strip-heading p {
    color: var(--muted-foreground);
    max-width: 700px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .strip-heading h2 {
        font-size: 40px;
    }
}

/* ============================================
   CRYPTO GRID
   Grid of cryptocurrency coin icons with labels.
   3-col mobile, 6-col desktop. Dark charcoal cards.
   Lime-green glow on hover.
   ============================================ */
.crypto-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-md);
}

.crypto-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    min-width: 0;
}

.crypto-item:hover {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: var(--shadow-lift);
}

.crypto-item img {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
}

.crypto-item span {
    font-family: var(--font-heading);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--foreground);
    min-width: 0;
    overflow-wrap: break-word;
}

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

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

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