/* ============================================
   DESIGN TOKENS - Dark Theme Only
   Neon Rock Garden aesthetic: obsidian background,
   violet-turquoise accents, electric green highlights.
   No light/dark toggle - single dark theme.
   ============================================ */

:root {
    /* Backgrounds */
    --background: #0c0a09;
    --background-elevated: #1c1917;
    --card: #1c1917;
    --card-elevated: #292524;

    /* Text */
    --foreground: #fafaf9;
    --foreground-muted: #94a3b8;
    --foreground-soft: #cbd5e1;

    /* Brand colors */
    --primary: #8554f6;          /* vibrant violet */
    --primary-dark: #6d28d9;
    --primary-glow: rgba(139, 92, 246, 0.4);
    --secondary: #14b8a6;        /* bright turquoise */
    --secondary-glow: rgba(20, 184, 166, 0.35);
    --accent: #4ade80;           /* electric green */
    --accent-glow: rgba(74, 222, 128, 0.3);

    /* Borders */
    --border: #475569;           /* storm cloud gray */
    --border-subtle: #334155;
    --border-hover: #8554f6;

    /* Semantic */
    --destructive: #ef4444;
    --ring: #8554f6;

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

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

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

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

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

    /* Shadows */
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-lift: 0 12px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow-violet: 0 0 24px rgba(139, 92, 246, 0.25);
    --shadow-glow-turquoise: 0 0 24px rgba(20, 184, 166, 0.2);
}

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

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

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

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

ul, ol {
    list-style: none;
}

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

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

/* ============================================
   TYPOGRAPHY SYSTEM
   Outfit for display headings, DM Sans for body.
   Mobile-first scale, scaling up at breakpoints.
   ============================================ */

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

h1 {
    font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.75rem, 3vw + 1rem, 2.5rem);
}

h3 {
    font-size: clamp(1.375rem, 2vw + 0.5rem, 1.75rem);
}

h4 {
    font-size: clamp(1.125rem, 1.5vw + 0.5rem, 1.375rem);
}

p {
    margin-bottom: var(--space-sm);
    overflow-wrap: break-word;
}

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

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

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

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

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

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

.text-center { text-align: center; }
.text-muted { color: var(--foreground-muted); }
.text-soft { color: var(--foreground-soft); }

.neon-heading {
    text-shadow: 0 0 30px var(--secondary-glow), 0 0 60px rgba(20, 184, 166, 0.15);
}

.neon-accent {
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent-glow);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    min-height: 44px;
    padding: 12px 28px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), border-color var(--transition);
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 16px var(--primary-glow);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 0 32px var(--primary-glow), 0 4px 16px var(--primary-glow);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.btn-outline:hover {
    background-color: var(--secondary);
    color: var(--background);
    transform: scale(1.05);
    box-shadow: 0 0 24px var(--secondary-glow);
}

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(12, 10, 9, 0.98);
    border-bottom: 1px solid var(--border-subtle);
}

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

.site-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--foreground);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    flex-shrink: 0;
}

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

.site-brand__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 800;
    box-shadow: 0 0 16px var(--primary-glow);
}

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

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

.nav-link {
    color: var(--foreground-soft);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 4px;
    transition: color var(--transition);
    white-space: nowrap;
}

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

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

.nav-login {
    min-height: 40px;
    padding: 8px 20px;
    font-size: 0.9rem;
}

.nav-register {
    min-height: 40px;
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Mobile toggle */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    z-index: 1001;
    background: transparent;
}

.mobile-toggle__line {
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: var(--foreground);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
    margin: 0 auto;
}

.mobile-toggle[aria-expanded="true"] .mobile-toggle__line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.mobile-toggle[aria-expanded="true"] .mobile-toggle__line:nth-child(2) {
    opacity: 0;
}
.mobile-toggle[aria-expanded="true"] .mobile-toggle__line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================
   MOBILE NAV DRAWER
   ============================================ */

@media (max-width: 1023px) {
    .primary-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--background);
        flex-direction: column;
        align-items: stretch;
        padding: var(--space-lg) var(--space-md);
        gap: var(--space-md);
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform var(--transition);
        z-index: 999;
    }

    .primary-nav.is-open {
        transform: translateX(0);
        display: flex;
    }

    .primary-nav:not(.is-open) {
        display: none;
    }

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

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

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

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

    .nav-actions .btn {
        width: 100%;
    }
}

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

    .primary-nav {
        display: flex;
    }
}

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

.site-footer {
    background-color: var(--background-elevated);
    border-top: 1px solid var(--border-subtle);
    padding: var(--space-xl) 0;
}

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

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: var(--space-sm);
}

.footer-text {
    font-size: 0.875rem;
    color: var(--foreground-muted);
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-links a {
    color: var(--foreground-soft);
    font-size: 0.875rem;
    transition: color var(--transition);
}

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

.footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.pay-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--foreground-soft);
    background-color: var(--card);
}

.footer-license,
.footer-18,
.footer-copyright {
    font-size: 0.75rem;
    color: var(--foreground-muted);
    line-height: 1.5;
    margin-bottom: var(--space-sm);
}

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

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

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

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    overflow: clip;
    padding: var(--space-xl) 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(139, 92, 246, 0.15), transparent 60%),
                radial-gradient(ellipse at 70% 40%, rgba(20, 184, 166, 0.1), transparent 50%);
}

.hero__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
    z-index: 1;
}

.hero__content {
    max-width: 600px;
}

.hero__title {
    margin-bottom: var(--space-md);
}

.hero__subtitle {
    font-size: 1.0625rem;
    color: var(--foreground-soft);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.hero__image {
    margin-top: var(--space-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hero__image img {
    width: 100%;
    border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
    .hero {
        padding: var(--space-2xl) 0;
    }
    .hero__inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
        align-items: center;
    }
    .hero__image {
        margin-top: 0;
    }
}

/* Hero awards row */
.hero-awards {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.hero-award {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    background-color: var(--card);
    box-shadow: 0 0 12px var(--accent-glow);
}

/* Bonus visual panel */
.bonus-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.18), transparent 70%);
    border-color: transparent;
}

.bonus-visual img {
    width: 100%;
    max-width: 460px;
}

/* ============================================
   STAT BLOCK COMPONENT
   ============================================ */

.stat-block {
    background-color: var(--background-elevated);
    border: 1px solid var(--border-subtle);
    border-top: 2px solid var(--secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-card);
}

.stat-block__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.stat-item__number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw + 1rem, 3.5rem);
    font-weight: 800;
    color: var(--accent);
    text-shadow: 0 0 24px var(--accent-glow);
    line-height: 1;
    letter-spacing: -0.03em;
}

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

.stat-item__source {
    font-size: 0.6875rem;
    color: var(--foreground-muted);
    margin-top: 4px;
}

.stat-block__source {
    text-align: center;
    font-size: 0.6875rem;
    color: var(--foreground-muted);
    margin-top: var(--space-md);
}

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

/* ============================================
   INFO CARD GRID COMPONENT
   ============================================ */

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

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

.info-card:hover {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: var(--shadow-lift), var(--shadow-glow-violet);
}

.info-card__image {
    margin-bottom: var(--space-md);
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

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

.info-card__icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
    line-height: 1;
}

.info-card__title {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--foreground);
}

.info-card__text {
    font-size: 1rem;
    color: var(--foreground-soft);
    line-height: 1.6;
}

.info-card__extra {
    margin-top: var(--space-sm);
}

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

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

/* ============================================
   FAQ ACCORDION COMPONENT
   ============================================ */

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

.faq-panel {
    background-color: var(--background-elevated);
    border: 1px solid var(--border-subtle);
    border-left: 3px solid transparent;
    border-radius: var(--radius-md);
    padding: var(--space-md);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-panel[open] {
    border-left-color: var(--primary);
    box-shadow: 0 0 16px rgba(139, 92, 246, 0.15);
}

.faq-panel__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    cursor: pointer;
    list-style: none;
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--foreground);
}

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

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

.faq-panel__chevron {
    flex-shrink: 0;
    color: var(--secondary);
    transition: transform var(--transition);
    display: flex;
    align-items: center;
}

.faq-panel[open] .faq-panel__chevron {
    transform: rotate(180deg);
}

.faq-panel__answer {
    margin-top: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--border-subtle);
    font-size: 1rem;
    color: var(--foreground-soft);
    line-height: 1.6;
}

.faq-panel__answer a {
    color: var(--secondary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ============================================
   CTA BANNER COMPONENT
   ============================================ */

.cta-banner {
    position: relative;
    overflow: clip;
    background: linear-gradient(135deg, var(--primary-dark), var(--background));
    text-align: center;
    padding: var(--space-xl) var(--space-md);
}

.cta-banner__decor {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.4;
}

.cta-banner__decor--tl {
    top: 10%;
    left: 5%;
    background: var(--primary);
}

.cta-banner__decor--br {
    bottom: 10%;
    right: 5%;
    background: var(--secondary);
}

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

.cta-banner__heading {
    font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
    color: var(--foreground);
    text-shadow: 0 0 30px var(--secondary-glow);
    margin-bottom: var(--space-md);
}

.cta-banner__subtext {
    font-size: 1rem;
    color: var(--foreground-soft);
    margin-bottom: var(--space-lg);
}

.cta-banner__button {
    margin-bottom: var(--space-sm);
}

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

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

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

/* Summary / TL;DR box */
.tldr-box {
    background-color: var(--background-elevated);
    border: 1px solid var(--border-subtle);
    border-left: 3px solid var(--secondary);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin: var(--space-lg) 0;
}

.tldr-box__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: var(--space-sm);
}

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

.tldr-box li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xs);
    color: var(--foreground-soft);
    font-size: 0.9375rem;
}

.tldr-box li::before {
    content: "\2713";
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}

/* Callout / highlight box */
.callout {
    background-color: var(--background-elevated);
    border: 1px solid var(--border-subtle);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin: var(--space-lg) 0;
}

.callout--warning {
    border-left-color: #f59e0b;
}

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

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

.callout__text {
    font-size: 0.9375rem;
    color: var(--foreground-soft);
}

/* Trust badges row */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background-color: var(--background-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    background-color: var(--card);
    transition: box-shadow var(--transition), border-color var(--transition);
    min-width: 120px;
}

.trust-badge:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-glow-turquoise);
}

.trust-badge__name {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
}

.trust-badge__label {
    font-size: 0.75rem;
    color: var(--foreground-muted);
}

/* Pull quote */
.pull-quote {
    border-left: 4px solid var(--primary);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--foreground);
    line-height: 1.4;
    background-color: var(--background-elevated);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

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

/* Comparison table */
.table-wrapper {
    overflow-x: auto;
    max-width: 100%;
    margin: var(--space-lg) 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
}

table.data-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--background-elevated);
    min-width: 480px;
}

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

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

.data-table td {
    color: var(--foreground-soft);
}

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

.data-table tr:hover td {
    background-color: var(--card);
}

/* Payment strip */
.payment-strip {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    align-items: center;
    padding: var(--space-md);
    background-color: var(--background-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
}

.payment-strip__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground-soft);
    background-color: var(--card);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.payment-strip__item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow-violet);
}

/* Provider logo strip (horizontal scroll) */
.provider-strip {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--space-md);
    align-items: center;
    overflow-x: auto;
    padding: var(--space-md);
    background-color: var(--background-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    scrollbar-width: thin;
}

.provider-strip img {
    flex: 0 0 auto;
    width: 140px;
    height: 60px;
    object-fit: contain;
    padding: 8px 12px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    background-color: var(--card);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.provider-strip img:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-glow-turquoise);
}

/* Badge row (lobby categories, currencies, etc.) */
.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
}

.badge-row__item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 8px 16px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground-soft);
    background-color: var(--card);
    transition: border-color var(--transition), color var(--transition);
}

.badge-row__item:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

/* Split layout */
.split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    align-items: center;
}

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

.split-layout__panel {
    background-color: var(--background-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

/* Step list */
.step-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

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

.step-list__number {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--accent);
    color: var(--background);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
}

.step-list__title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 4px;
}

.step-list__text {
    font-size: 0.9375rem;
    color: var(--foreground-soft);
    line-height: 1.6;
}

/* Info panel */
.info-panel {
    background-color: var(--background-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.info-panel__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: var(--space-sm);
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

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

/* Floating decorative animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.float-anim {
    animation: float 4s ease-in-out infinite;
}

/* ============================================
   SCROLLBAR
   ============================================ */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    padding: var(--space-sm) var(--space-md);
    background-color: var(--primary);
    color: #ffffff;
    z-index: 2000;
    border-radius: 0 0 var(--radius-md) 0;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 0;
    color: #ffffff;
}

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