/*
 * ROBY CASINO - Cyberpunk Neon Design System
 * Fonts: Orbitron (headings), Rajdhani (body)
 * Dark-first neon aesthetic. Single dark theme (no theme switcher).
 */

:root {
    --background: #0b0f19;
    --background-alt: #0f1524;
    --foreground: #f8fafc;
    --card: #111827;
    --card-alt: #151e30;
    --card-foreground: #f8fafc;
    --popover: #111827;
    --popover-foreground: #f8fafc;
    --primary: #1c6ef5;
    --primary-bright: #60a5fa;
    --primary-foreground: #ffffff;
    --secondary: #8554f6;
    --secondary-bright: #a78bfa;
    --secondary-foreground: #ffffff;
    --muted: #1e293b;
    --muted-foreground: #b8c5d6;
    --accent: #4ade80;
    --accent-bright: #86efac;
    --accent-foreground: #000000;
    --gold: #fbbf24;
    --destructive: #f43052;
    --destructive-foreground: #ffffff;
    --border: #334155;
    --input: #1e293b;
    --ring: #1c6ef5;

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

    --maxw: 1200px;
    --radius: 10px;
    --radius-lg: 16px;
    --header-h: 68px;

    --glow-blue: 0 0 14px rgba(59, 130, 246, 0.55);
    --glow-violet: 0 0 14px rgba(139, 92, 246, 0.55);
    --glow-green: 0 0 14px rgba(74, 222, 128, 0.55);

    --font-head: "Orbitron", sans-serif;
    --font-body: "Rajdhani", sans-serif;
}

/* Single dark theme: keep .dark identical to :root */
.dark {
    --background: #0b0f19;
    --background-alt: #0f1524;
    --foreground: #f8fafc;
    --card: #111827;
    --card-alt: #151e30;
    --card-foreground: #f8fafc;
    --primary: #1c6ef5;
    --primary-foreground: #ffffff;
    --secondary: #8554f6;
    --secondary-foreground: #ffffff;
    --muted: #1e293b;
    --muted-foreground: #b8c5d6;
    --accent: #4ade80;
    --accent-foreground: #000000;
    --border: #334155;
    --input: #1e293b;
    --ring: #1c6ef5;
}

/* ============================================
   OVERFLOW PREVENTION - Safety Net
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }

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

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

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

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

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

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

section { overflow: clip; }

/* ============================================
   BASE / RESET
   ============================================ */
html { scroll-behavior: smooth; }

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

a { color: var(--primary-bright); text-decoration: none; }
a:hover { text-decoration: underline; }

ul { margin: 0; padding: 0; list-style: none; }

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 2000;
    background: var(--accent);
    color: var(--accent-foreground);
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
    font-family: var(--font-head);
    line-height: 1.2;
    margin: 0 0 var(--space-sm);
    color: var(--foreground);
    letter-spacing: 0.04em;
}

h1 {
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
h2 { font-size: 24px; font-weight: 700; }
h3 { font-size: 20px; font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; }

p { margin: 0 0 var(--space-md); max-width: 68ch; }

.neon-text-blue { color: var(--primary-bright); text-shadow: var(--glow-blue); }
.neon-text-green { color: var(--accent); text-shadow: var(--glow-green); }
.neon-text-violet { color: var(--secondary-bright); text-shadow: var(--glow-violet); }

@media (min-width: 1024px) {
    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
    h3 { font-size: 28px; }
    p { margin-bottom: 28px; }
    body { font-size: 17px; }
}

/* ============================================
   LAYOUT HELPERS
   ============================================ */
.container, .max-w-1200 {
    width: 100%;
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: var(--space-sm);
}

.dark-cyberpunk-layout { background: var(--background); }

.section {
    padding-block: var(--space-xl);
    position: relative;
}
@media (min-width: 1024px) {
    .section { padding-block: var(--space-lg); }
}

.section--alt { background: var(--background-alt); }

/* Diagonal neon grid decoration */
.grid-lines::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent 0, transparent 38px, rgba(59, 130, 246, 0.06) 39px, rgba(59, 130, 246, 0.06) 40px);
    pointer-events: none;
    z-index: 0;
}
.grid-lines > * { position: relative; z-index: 1; }

.section__eyebrow {
    font-family: var(--font-head);
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-xs);
    display: block;
}

.text-center { text-align: center; }
.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;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 12px 22px;
    border-radius: var(--radius);
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform .3s ease-out, box-shadow .3s ease-out, background .3s ease-out;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn--accent {
    background: var(--accent);
    color: var(--accent-foreground);
    box-shadow: var(--glow-green);
}
.btn--accent:hover { background: var(--accent-bright); box-shadow: 0 0 22px rgba(74, 222, 128, 0.8); }

.btn--ghost {
    background: transparent;
    color: var(--foreground);
    border-color: var(--primary);
}
.btn--ghost:hover { background: rgba(59,130,246,0.12); box-shadow: var(--glow-blue); }

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

.btn--lg { min-height: 54px; padding: 16px 34px; font-size: 16px; }

.btn--pulse { animation: pulse-glow 2.2s ease-in-out infinite; }
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 12px rgba(74, 222, 128, 0.45); }
    50% { box-shadow: 0 0 26px rgba(74, 222, 128, 0.9); }
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 15, 25, 0.92);
    border-bottom: 1px solid var(--border);
}
@media (min-width: 1024px) {
    .site-header { backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
}

.site-header__inner {
    max-width: var(--maxw);
    margin-inline: auto;
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: var(--space-sm);
    gap: var(--space-sm);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 20px;
    color: var(--foreground);
    text-decoration: none;
    letter-spacing: 0.05em;
}
.site-brand:hover { text-decoration: none; }
.site-brand__mark {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 2px solid var(--primary);
    border-radius: 8px;
    color: var(--primary-bright);
    box-shadow: var(--glow-blue);
    clip-path: polygon(0 0, 100% 0, 100% 78%, 82% 100%, 0 100%);
}
.site-brand__accent { color: var(--accent); }

/* Nav container: mobile drawer default */
.primary-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--background);
    border-top: 1px solid var(--border);
    padding: var(--space-lg) var(--space-sm);
    overflow-y: auto;
    flex-direction: column;
    gap: var(--space-md);
}
.primary-nav.is-open { display: flex; }

.primary-nav__list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-xs);
}
.primary-nav__link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 10px 14px;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--foreground);
    border-radius: var(--radius);
    border: 1px solid transparent;
}
.primary-nav__link:hover {
    text-decoration: none;
    border-color: var(--primary);
    color: var(--primary-bright);
    box-shadow: var(--glow-blue);
}

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

.nav-toggle {
    position: relative;
    z-index: 1001;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--foreground);
    transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 1024px) {
    .nav-toggle { display: none; }
    .primary-nav {
        display: flex;
        position: static;
        flex-direction: row;
        align-items: center;
        gap: var(--space-lg);
        background: transparent;
        border: none;
        padding: 0;
        overflow: visible;
    }
    .primary-nav__list { flex-direction: row; gap: var(--space-md); }
    .primary-nav__link { min-height: 44px; }
    .primary-nav__actions { flex-direction: row; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    padding-top: var(--hero-pad);
    padding-bottom: var(--space-xl);
    overflow: clip;
    background: var(--background);
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: clip;
}
.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}
.hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,15,25,0.6) 0%, rgba(11,15,25,0.92) 100%);
}
.hero__inner {
    position: relative;
    z-index: 2;
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: var(--space-sm);
    display: grid;
    gap: var(--space-lg);
    align-items: center;
}
.hero__eyebrow {
    font-family: var(--font-head);
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
}
.hero h1 { text-shadow: var(--glow-blue); }
.hero__lead { font-size: 19px; color: var(--muted-foreground); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); }
.hero__media img {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 2px solid var(--secondary);
    box-shadow: var(--glow-violet);
}
@media (min-width: 1024px) {
    .hero { padding-bottom: var(--space-xl); }
    .hero__inner { grid-template-columns: 1.1fr 0.9fr; gap: var(--space-2xl); }
}

/* ============================================
   STAT BLOCK
   ============================================ */
.stat-block-wrap { position: relative; z-index: 1; }
.stat-block__heading { text-align: center; }
.stat-block__intro { text-align: center; margin-inline: auto; color: var(--muted-foreground); }

.stat-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-xs);
    margin-top: var(--space-lg);
}
@media (min-width: 768px) { .stat-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .stat-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); } }

.stat-card {
    min-width: 0;
    padding: 20px;
    text-align: center;
    background: var(--card);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    box-shadow: var(--glow-blue);
    transition: transform .3s ease-out, box-shadow .3s ease-out;
}
.stat-card:hover { transform: scale(1.05); box-shadow: 0 0 24px rgba(59,130,246,0.85); }
.stat-card--violet { border-color: var(--secondary); box-shadow: var(--glow-violet); }
.stat-card--violet:hover { box-shadow: 0 0 24px rgba(139,92,246,0.85); }
.stat-card--green { border-color: var(--accent); box-shadow: var(--glow-green); }
.stat-card--green:hover { box-shadow: 0 0 24px rgba(74,222,128,0.85); }

.stat-card__number {
    display: block;
    font-family: var(--font-head);
    font-size: 34px;
    font-weight: 800;
    color: var(--accent);
    text-shadow: var(--glow-green);
    line-height: 1.1;
}
.stat-card--violet .stat-card__number { color: var(--secondary-bright); text-shadow: var(--glow-violet); }
.stat-card__label { display: block; margin-top: 8px; color: var(--muted-foreground); font-weight: 500; font-size: 15px; }
.stat-card__note { display: block; margin-top: 4px; font-size: 13px; color: var(--muted-foreground); }
@media (min-width: 1024px) {
    .stat-card { padding: 32px; }
    .stat-card__number { font-size: 42px; }
}

/* ============================================
   CARDS - generic content containers
   .card base, .neon-card with glowing border variants
   ============================================ */
.card-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-sm);
}
@media (min-width: 768px) { .card-grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 768px) { .card-grid--3, .card-grid--4 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .card-grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (min-width: 1024px) { .card-grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); } }

.neon-card {
    min-width: 0;
    background: var(--card);
    border: 2px solid var(--secondary);
    border-radius: var(--radius);
    padding: var(--space-md);
    box-shadow: 0 0 10px rgba(139,92,246,0.35);
    transition: transform .3s ease-out, box-shadow .3s ease-out;
    height: 100%;
}
.neon-card:hover { transform: scale(1.03); box-shadow: var(--glow-violet); }
.neon-card--blue { border-color: var(--primary); box-shadow: 0 0 10px rgba(59,130,246,0.35); }
.neon-card--blue:hover { box-shadow: var(--glow-blue); }
.neon-card--green { border-color: var(--accent); box-shadow: 0 0 10px rgba(74,222,128,0.35); }
.neon-card--green:hover { box-shadow: var(--glow-green); }
.neon-card--gold { border-color: var(--gold); box-shadow: 0 0 10px rgba(251,191,36,0.35); }

.neon-card__icon { width: 56px; height: 56px; object-fit: contain; margin-bottom: var(--space-sm); }
.neon-card__media {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: var(--space-sm);
    border: 1px solid var(--border);
}
.neon-card h3 { color: var(--primary-bright); }
.neon-card p:last-child { margin-bottom: 0; }
.neon-card__price {
    display: inline-block;
    margin-top: var(--space-xs);
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--accent);
}

.two-col {
    display: grid;
    grid-template-columns: minmax(0,1fr);
    gap: var(--space-lg);
    align-items: center;
}
@media (min-width: 1024px) { .two-col { grid-template-columns: repeat(2, minmax(0,1fr)); gap: var(--space-2xl); } }

/* ============================================
   VIP LADDER
   ============================================ */
.vip-ladder { display: grid; gap: var(--space-xs); }
.vip-tier {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    min-width: 0;
}
.vip-tier--1 { border-color: #b08d57; }
.vip-tier--2 { border-color: var(--primary); box-shadow: 0 0 10px rgba(59,130,246,0.3); }
.vip-tier--3 { border-color: var(--secondary); box-shadow: 0 0 12px rgba(139,92,246,0.35); }
.vip-tier--4 { border-color: var(--accent); box-shadow: 0 0 14px rgba(74,222,128,0.4); }
.vip-tier--5 { border-color: var(--gold); box-shadow: 0 0 16px rgba(251,191,36,0.5); }
.vip-tier__badge { width: 52px; height: 52px; object-fit: contain; flex-shrink: 0; }
.vip-tier__name { font-family: var(--font-head); font-size: 18px; color: var(--foreground); margin: 0 0 4px; }
.vip-tier__perks { margin: 0; color: var(--muted-foreground); font-size: 15px; }

/* ============================================
   PAYMENT / PROVIDER PILLS
   ============================================ */
.pill-strip {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    justify-content: center;
}
.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid var(--primary);
    border-radius: 999px;
    background: var(--card);
    color: var(--foreground);
    font-family: var(--font-head);
    font-size: 13px;
    letter-spacing: 0.03em;
    box-shadow: 0 0 8px rgba(59,130,246,0.25);
}
.pill img { width: 22px; height: 22px; object-fit: contain; }
.pill--violet { border-color: var(--secondary); box-shadow: 0 0 8px rgba(139,92,246,0.25); }

/* ============================================
   ENGAGEMENT PATTERNS
   TL;DR, callout, pull-quote
   ============================================ */
.tldr {
    background: var(--card-alt);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: var(--space-md);
    margin-bottom: var(--space-lg);
}
.tldr__title {
    font-family: var(--font-head);
    font-size: 14px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}
.tldr p:last-child { margin-bottom: 0; }

.callout {
    display: flex;
    gap: var(--space-sm);
    background: rgba(59,130,246,0.08);
    border: 1px solid var(--primary);
    border-radius: var(--radius);
    padding: var(--space-md);
    margin-block: var(--space-md);
}
.callout--warning { background: rgba(251,191,36,0.08); border-color: var(--gold); }
.callout p:last-child { margin-bottom: 0; }

.pull-quote {
    font-family: var(--font-head);
    font-size: 22px;
    line-height: 1.4;
    color: var(--primary-bright);
    text-shadow: var(--glow-blue);
    border-left: 4px solid var(--secondary);
    padding-left: var(--space-md);
    margin: var(--space-lg) 0;
}
.pull-quote cite { display: block; margin-top: 10px; font-family: var(--font-body); font-size: 15px; color: var(--muted-foreground); font-style: normal; }

.trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
}
.trust-bar__item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted-foreground);
    font-size: 14px;
    font-weight: 500;
}
.trust-bar__badge {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 14px;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section { position: relative; }
.faq-section__inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin-inline: auto;
}
.faq-section__heading { text-align: center; }
.faq-section__intro { text-align: center; color: var(--muted-foreground); margin-inline: auto; }

.faq-list { display: grid; gap: var(--space-xs); margin-top: var(--space-lg); }

.faq-item {
    background: var(--card);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    box-shadow: 0 0 8px rgba(59,130,246,0.25);
    transition: box-shadow .3s ease-out, border-color .3s ease-out;
    overflow: hidden;
}
.faq-item:hover { box-shadow: var(--glow-blue); }
.faq-item[open] { border-left: 4px solid var(--accent); }

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    min-height: 44px;
    padding: 18px 20px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    color: var(--foreground);
    list-style: none;
}
.faq-item__question::-webkit-details-marker { display: none; }

.faq-item__icon {
    position: relative;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
}
.faq-item__icon::before, .faq-item__icon::after {
    content: "";
    position: absolute;
    background: var(--accent);
    box-shadow: var(--glow-green);
    transition: transform .3s ease-out, opacity .3s ease-out;
}
.faq-item__icon::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.faq-item__icon::after { left: 50%; top: 0; width: 2px; height: 100%; transform: translateX(-50%); }
.faq-item[open] .faq-item__icon::after { opacity: 0; transform: translateX(-50%) rotate(90deg); }

.faq-item__answer {
    padding: 0 20px 20px;
    color: var(--muted-foreground);
    line-height: 1.6;
}
.faq-item__answer p { margin: 0; max-width: none; }
@media (min-width: 1024px) {
    .faq-item__question { padding: 20px 32px; }
    .faq-item__answer { padding: 0 32px 24px; }
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    text-align: center;
    padding: var(--space-xl) var(--space-sm);
    margin-block: var(--space-md);
    background: var(--background-alt);
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    background-clip: padding-box;
}
.cta-banner::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: linear-gradient(120deg, var(--primary), var(--secondary), var(--primary));
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: border-shift 4s linear infinite;
    z-index: 0;
    pointer-events: none;
}
@keyframes border-shift {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}
.cta-banner__inner { position: relative; z-index: 1; max-width: 720px; margin-inline: auto; }
.cta-banner__heading {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-shadow: var(--glow-blue);
}
.cta-banner__subtext { color: var(--muted-foreground); }
.cta-banner__microcopy { margin-top: var(--space-sm); font-size: 14px; color: var(--muted-foreground); margin-bottom: 0; }
.cta-banner--hero { padding-top: var(--space-2xl); }
@media (min-width: 1024px) {
    .cta-banner { padding: var(--space-lg) var(--space-lg); }
}

/* ============================================
   SITEMAP LIST
   ============================================ */
.sitemap-list { display: grid; gap: var(--space-xs); }
.sitemap-entry {
    padding: var(--space-md);
    background: var(--card);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    box-shadow: 0 0 8px rgba(59,130,246,0.2);
}
.sitemap-entry__title { font-family: var(--font-head); font-size: 20px; margin: 0 0 6px; }
.sitemap-entry__title a { color: var(--primary-bright); }
.sitemap-entry p { margin: 0; color: var(--muted-foreground); font-size: 15px; }

/* ============================================
   BONUS STEPS LIST
   ============================================ */
.bonus-steps {
    margin: var(--space-md) 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: var(--space-xs);
}
.bonus-steps li {
    padding: 12px 16px;
    background: var(--card);
    border-left: 3px solid var(--accent);
    border-radius: 6px;
    color: var(--foreground);
    font-size: 16px;
}
.bonus-steps li strong {
    color: var(--accent);
    font-family: var(--font-head);
    font-size: 14px;
    letter-spacing: 0.04em;
}

/* ============================================
   PAYMENT LOGO GRID
   ============================================ */
.payment-logo-grid {
    text-align: center;
}
.payment-logo-grid img {
    width: 100%;
    max-width: 1000px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--background-alt);
    border-top: 1px solid var(--border);
    margin-top: var(--space-2xl);
}
.site-footer__inner {
    max-width: var(--maxw);
    margin-inline: auto;
    padding: var(--space-xl) var(--space-sm);
    display: grid;
    grid-template-columns: minmax(0,1fr);
    gap: var(--space-lg);
}
@media (min-width: 768px) { .site-footer__inner { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .site-footer__inner { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }

.site-footer__brand { font-family: var(--font-head); font-weight: 800; font-size: 22px; }
.site-footer__tagline { color: var(--muted-foreground); font-size: 15px; }
.site-footer__heading {
    font-family: var(--font-head);
    font-size: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--foreground);
    margin-bottom: var(--space-sm);
}
.site-footer__links li { margin-bottom: 4px; }
.site-footer__links a {
    color: var(--muted-foreground);
    display: inline-flex;
    align-items: center;
    min-height: 44px;
}
.site-footer__links a:hover { color: var(--primary-bright); }

.payment-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.payment-badge {
    font-family: var(--font-head);
    font-size: 12px;
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--muted-foreground);
}
.site-footer__license, .site-footer__age { color: var(--muted-foreground); font-size: 14px; }
.age-badge {
    display: inline-block;
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--destructive);
    border: 1px solid var(--destructive);
    border-radius: 6px;
    padding: 2px 8px;
    margin-right: 6px;
}
.site-footer__bottom {
    border-top: 1px solid var(--border);
    text-align: center;
    padding: var(--space-md) var(--space-sm);
    color: var(--muted-foreground);
    font-size: 14px;
}
.site-footer__bottom p { margin: 0; max-width: none; }

/* ============================================
   ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease-out, transform .6s ease-out;
}
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !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;
}
