/* ============================================
   GIZBO CASINO - CYBERPUNK DESIGN SYSTEM
   Anime-cyberpunk, neon scanlines, Neo-Tokyo
   ============================================ */

:root {
    /* Single dark theme - tokens consolidated */
    --background: #0a0514;
    --foreground: #ece4f5;
    --card: #150a26;
    --card-foreground: #ece4f5;
    --popover: #150a26;
    --popover-foreground: #ece4f5;
    --primary: #ff2d95;
    --primary-foreground: #000000;
    --secondary: #22d3ee;
    --secondary-foreground: #0a0514;
    --muted: #2a1f3d;
    --muted-foreground: #c5b8dc;
    --accent: #39ff7a;
    --accent-foreground: #0a0514;
    --destructive: #f43f5e;
    --destructive-foreground: #000000;
    --border: #3a2a52;
    --input: #1f1430;
    --ring: #ff2d95;

    /* Spacing scale (8px base grid) */
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-pill: 999px;

    /* Layout */
    --container: 1240px;
    --header-h: 72px;

    /* Motion */
    --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
    --t-fast: 160ms;
    --t-base: 240ms;
    --t-slow: 400ms;

    /* Neon glows */
    --glow-pink: 0 0 24px rgba(255, 45, 149, 0.45), 0 0 48px rgba(255, 45, 149, 0.2);
    --glow-cyan: 0 0 24px rgba(34, 211, 238, 0.45), 0 0 48px rgba(34, 211, 238, 0.2);
    --glow-green: 0 0 18px rgba(57, 255, 122, 0.5);

    /* Fonts */
    --font-display: "Orbitron", "Segoe UI", system-ui, sans-serif;
    --font-body: "Rajdhani", "Segoe UI", system-ui, sans-serif;
}

.dark {
    --background: #0a0514;
    --foreground: #ece4f5;
    --card: #150a26;
    --card-foreground: #ece4f5;
    --popover: #150a26;
    --popover-foreground: #ece4f5;
    --primary: #ff2d95;
    --primary-foreground: #000000;
    --secondary: #22d3ee;
    --secondary-foreground: #0a0514;
    --muted: #2a1f3d;
    --muted-foreground: #c5b8dc;
    --accent: #39ff7a;
    --accent-foreground: #0a0514;
    --destructive: #f43f5e;
    --destructive-foreground: #000000;
    --border: #3a2a52;
    --input: #1f1430;
    --ring: #ff2d95;
}

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

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

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

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    min-height: 100vh;
    background-image:
        radial-gradient(ellipse at top left, rgba(255, 45, 149, 0.08), transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(34, 211, 238, 0.06), transparent 50%),
        var(--background);
}

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

[class*="grid"] > *, [class*="flex"] > * { min-width: 0; }
pre, code { max-width: 100%; overflow-x: auto; }
.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; position: relative; }

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 12px 20px;
    z-index: 9999;
}
.skip-link:focus { left: 8px; top: 8px; }

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

::selection { background: var(--primary); color: var(--primary-foreground); }

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 var(--space-md);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(28px, 5.2vw, 44px);
    font-weight: 800;
    letter-spacing: 0.01em;
    background: linear-gradient(90deg, #ff2d95 0%, #c084fc 50%, #22d3ee 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: clamp(24px, 3.6vw, 34px);
    color: var(--foreground);
}

h3 {
    font-size: clamp(18px, 2.4vw, 24px);
    font-weight: 600;
    color: var(--foreground);
}

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

.lead {
    font-size: clamp(18px, 2.2vw, 20px);
    line-height: 1.55;
    color: var(--muted-foreground);
}

.gradient-text {
    background: linear-gradient(90deg, #ff2d95 0%, #22d3ee 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.glitch-num {
    display: inline-block;
    position: relative;
    color: #ff2d95;
    text-shadow:
        2px 0 #22d3ee,
        -2px 0 #39ff7a,
        0 0 18px rgba(255, 45, 149, 0.4);
    -webkit-text-fill-color: #ff2d95;
}

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

/* ============================================
   LAYOUT - CONTAINER
   ============================================ */

.container,
.container-max-1240 {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--space-lg);
}

@media (min-width: 768px) {
    .container, .container-max-1240 { padding-inline: var(--space-xl); }
}

section,
.section {
    padding-block: clamp(40px, 8vw, 96px);
}

.section-head {
    max-width: 820px;
    margin: 0 auto var(--space-2xl);
    text-align: center;
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: var(--space-md);
    padding: 6px 14px;
    border: 1px solid rgba(34, 211, 238, 0.4);
    border-radius: var(--radius-pill);
    background: rgba(34, 211, 238, 0.08);
}

/* Neon grid background utility */
.neon-grid-bg {
    position: relative;
}
.neon-grid-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 45, 149, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.neon-grid-bg > * { position: relative; z-index: 1; }

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 12px 22px;
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), background var(--t-base) var(--ease);
    min-height: 44px;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #ff2d95 0%, #c81d8c 100%);
    color: #ffffff;
    box-shadow: var(--glow-pink);
    animation: pulse-pink 3s ease-in-out infinite;
}
.btn-primary:hover,
.btn-primary:focus-visible {
    transform: scale(1.02);
    box-shadow: 0 0 32px rgba(255, 45, 149, 0.7), 0 0 64px rgba(255, 45, 149, 0.35);
    color: #ffffff;
}

.btn-secondary {
    background: linear-gradient(135deg, #22d3ee 0%, #0891b2 100%);
    color: #0a0514;
    box-shadow: var(--glow-cyan);
}
.btn-secondary:hover { transform: scale(1.02); color: #0a0514; }

.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border-color: var(--border);
}
.btn-ghost:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    box-shadow: 0 0 16px rgba(34, 211, 238, 0.3);
}

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

.btn-arrow { transition: transform var(--t-base) var(--ease); display: inline-block; }
.btn:hover .btn-arrow { transform: translateX(4px); }

@keyframes pulse-pink {
    0%, 100% { box-shadow: 0 0 24px rgba(255, 45, 149, 0.45), 0 0 48px rgba(255, 45, 149, 0.2); }
    50% { box-shadow: 0 0 32px rgba(255, 45, 149, 0.6), 0 0 64px rgba(255, 45, 149, 0.3); }
}

/* ============================================
   HEADER & NAV
   ============================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 5, 20, 0.85);
    border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
    .site-header { backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }
}

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

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--foreground);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.site-brand:hover { color: var(--foreground); }

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 36px; height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ff2d95 0%, #22d3ee 100%);
    color: #0a0514;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 20px;
    box-shadow: var(--glow-pink);
}
.brand-text { color: var(--foreground); }
.brand-accent { color: var(--secondary); margin-left: 2px; }

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

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

.nav-link {
    color: var(--foreground);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 4px;
    position: relative;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}
.nav-link::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 4px;
    height: 2px;
    background: linear-gradient(90deg, #ff2d95, #22d3ee);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-base) var(--ease);
}
.nav-link:hover { color: var(--foreground); }
.nav-link:hover::after { transform: scaleX(1); }

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

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

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

/* Mobile drawer */
@media (max-width: 1023.98px) {
    .primary-nav {
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0; bottom: 0;
        z-index: 999;
        background: var(--background);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: var(--space-xl) var(--space-lg);
        overflow-y: auto;
        display: none;
        border-top: 1px solid var(--border);
    }
    .primary-nav.is-open { display: flex; }
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }
    .nav-list li { border-bottom: 1px solid var(--border); }
    .nav-link {
        display: flex;
        padding: 16px 4px;
        font-size: 16px;
        min-height: 48px;
    }
    .nav-actions {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-sm);
        margin-top: var(--space-xl);
    }
    .nav-actions .btn { width: 100%; }
}

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

.site-footer {
    margin-top: var(--space-4xl);
    background: linear-gradient(180deg, var(--background) 0%, #050208 100%);
    border-top: 1px solid var(--border);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--space-lg);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-xl); }
    .footer-brand-col { grid-column: 1 / -1; }
}

@media (min-width: 1024px) {
    .footer-brand-col { grid-column: auto; }
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.footer-tagline {
    color: var(--muted-foreground);
    font-size: 15px;
    margin-bottom: var(--space-md);
    max-width: 380px;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.badge-license {
    background: rgba(34, 211, 238, 0.12);
    color: #67e8f9;
    border: 1px solid rgba(34, 211, 238, 0.4);
}
.badge-age {
    background: rgba(255, 45, 149, 0.12);
    color: #ff6db5;
    border: 1px solid rgba(255, 45, 149, 0.4);
}

.footer-title {
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: var(--space-md);
}

.footer-list,
.footer-payments {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-list a {
    color: var(--muted-foreground);
    font-size: 15px;
}
.footer-list a:hover { color: var(--primary); }
.footer-payments li {
    color: var(--muted-foreground);
    font-size: 15px;
}

.footer-bottom {
    max-width: var(--container);
    margin: var(--space-2xl) auto 0;
    padding: var(--space-lg) var(--space-lg) 0;
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--space-md);
}

.footer-meta {
    color: var(--muted-foreground);
    font-size: 13px;
    margin: 0;
}
.footer-sitemap {
    color: var(--muted-foreground);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.footer-sitemap:hover { color: var(--secondary); }

/* ============================================
   COMPONENT: INFO CARD
   ============================================ */

.info-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0;
    overflow: hidden;
    transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
    min-width: 0;
    height: 100%;
}

.info-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 45, 149, 0.4) 50%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--t-base) var(--ease);
    pointer-events: none;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(34, 211, 238, 0.18), 0 0 0 1px rgba(255, 45, 149, 0.3);
    border-color: transparent;
}
.info-card:hover::before { opacity: 1; }

.info-card__inner {
    padding: clamp(20px, 3vw, 32px);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    height: 100%;
}

.info-card__media {
    margin: calc(clamp(20px, 3vw, 32px) * -1) calc(clamp(20px, 3vw, 32px) * -1) 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--muted);
}
.info-card__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform var(--t-slow) var(--ease);
}
.info-card:hover .info-card__media img { transform: scale(1.05); }

.info-card__icon {
    font-size: 36px;
    line-height: 1;
    width: 56px; height: 56px;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(255, 45, 149, 0.15), rgba(34, 211, 238, 0.15));
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.info-card__badge {
    align-self: flex-start;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    background: rgba(57, 255, 122, 0.15);
    color: #5fff95;
    border: 1px solid rgba(57, 255, 122, 0.4);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.info-card__title {
    margin: 0;
    font-size: clamp(18px, 2.4vw, 22px);
    color: var(--foreground);
    background: linear-gradient(90deg, #ff2d95 0%, #22d3ee 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-card__desc {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 15px;
    line-height: 1.55;
    flex: 1;
}

.info-card__code {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 8px 14px;
    background: rgba(10, 5, 20, 0.7);
    border: 1px dashed rgba(57, 255, 122, 0.5);
    border-radius: var(--radius-sm);
    align-self: flex-start;
}
.code-label {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted-foreground);
}
.code-value {
    font-family: "Courier New", monospace;
    font-weight: 700;
    color: #5fff95;
    letter-spacing: 0.1em;
}

.info-card__btn {
    margin-top: auto;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, #ff2d95 0%, #c81d8c 100%);
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    min-height: 44px;
    transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.info-card__btn:hover {
    transform: scale(1.03);
    box-shadow: var(--glow-pink);
    color: #ffffff;
}

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

.stat-block {
    position: relative;
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    background: rgba(21, 10, 38, 0.4);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    min-width: 0;
}

.stat-block__number {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(32px, 6vw, 52px);
    line-height: 1;
    background: linear-gradient(180deg, #ff2d95 0%, #22d3ee 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 45, 149, 0.3);
    margin-bottom: var(--space-sm);
    animation: stat-pulse 3.5s ease-in-out infinite;
}

@keyframes stat-pulse {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.stat-block__label {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted-foreground);
}

.stat-block__source {
    margin-top: var(--space-xs);
    font-size: 11px;
    color: var(--muted-foreground);
    opacity: 0.85;
}

.stat-block--accent .stat-block__number {
    background: linear-gradient(180deg, #39ff7a 0%, #22d3ee 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.cta-banner {
    position: relative;
    margin-block: var(--space-3xl);
    padding: clamp(40px, 7vw, 80px) clamp(20px, 4vw, 60px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 45, 149, 0.18) 0%, rgba(34, 211, 238, 0.18) 100%),
        radial-gradient(ellipse at top, rgba(192, 132, 252, 0.2), transparent 60%),
        #0f0820;
    border: 1px solid var(--border);
    text-align: center;
}

.cta-banner__slash {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 30%, rgba(255, 45, 149, 0.1) 45%, rgba(34, 211, 238, 0.1) 55%, transparent 70%);
    pointer-events: none;
}

.cta-banner__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 45, 149, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 75%);
}

.cta-banner__content {
    position: relative;
    max-width: 720px;
    margin-inline: auto;
}

.cta-banner__title {
    font-size: clamp(26px, 4.5vw, 40px);
    margin-bottom: var(--space-md);
    background: linear-gradient(90deg, #ff2d95 0%, #22d3ee 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-banner__subtitle {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--muted-foreground);
    margin-bottom: var(--space-xl);
}

.cta-banner__btn { font-size: 16px; }

.cta-banner__micro {
    margin-top: var(--space-md);
    font-size: 12px;
    letter-spacing: 0.05em;
    color: var(--muted-foreground);
}

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

.faq-accordion {
    max-width: 920px;
    margin-inline: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(21, 10, 38, 0.45);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    position: relative;
}
.faq-item:last-child { border-bottom: none; }

.faq-item__question {
    list-style: none;
    cursor: pointer;
    padding: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 17px;
    color: var(--foreground);
    min-height: 48px;
    transition: background var(--t-base) var(--ease);
}
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item__question:hover { background: rgba(255, 45, 149, 0.04); }

.faq-item[open] {
    background: rgba(255, 45, 149, 0.04);
}
.faq-item[open]::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #ff2d95, #22d3ee);
}

.faq-item__icon {
    color: #5fff95;
    transition: transform var(--t-base) var(--ease);
    flex-shrink: 0;
}
.faq-item[open] .faq-item__icon { transform: rotate(135deg); }

.faq-item__answer {
    padding: 0 var(--space-lg) var(--space-lg);
    color: var(--muted-foreground);
    font-size: 16px;
    line-height: 1.65;
}
.faq-item__answer p { margin: 0; }

/* ============================================
   GRID UTILITIES
   ============================================ */

.grid {
    display: grid;
    gap: var(--space-lg);
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 640px) {
    .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 768px) {
    .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(21, 10, 38, 0.3);
}
.stats-row .stat-block {
    border: none;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    background: transparent;
}
.stats-row .stat-block:nth-child(2n) { border-right: none; }
.stats-row .stat-block:nth-last-child(-n+2) { border-bottom: none; }

@media (min-width: 1024px) {
    .stats-row { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .stats-row .stat-block:nth-child(2n) { border-right: 1px solid var(--border); }
    .stats-row .stat-block { border-bottom: none; }
    .stats-row .stat-block:last-child { border-right: none; }
}

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

.hero {
    position: relative;
    padding: clamp(48px, 9vw, 96px) 0 clamp(40px, 7vw, 80px);
    overflow: hidden;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(255, 45, 149, 0.18), transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(34, 211, 238, 0.16), transparent 55%),
        linear-gradient(180deg, #0a0514 0%, #150a26 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 45, 149, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 85%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 85%);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    align-items: center;
}
@media (min-width: 1024px) {
    .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: var(--space-3xl); }
}

.hero-content { order: 2; }
.hero-media { order: 1; }
@media (min-width: 1024px) {
    .hero-content { order: 1; }
    .hero-media { order: 2; }
}

.hero h1 {
    margin-bottom: var(--space-lg);
}

.hero-lead {
    font-size: clamp(17px, 2vw, 20px);
    color: var(--muted-foreground);
    margin-bottom: var(--space-xl);
    max-width: 540px;
}

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

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    align-items: center;
    font-size: 13px;
    color: var(--muted-foreground);
}
.hero-trust__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.hero-trust__dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #5fff95;
    box-shadow: 0 0 12px rgba(57, 255, 122, 0.6);
}

.hero-media__frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--muted);
    box-shadow: 0 30px 80px rgba(255, 45, 149, 0.25), 0 0 0 1px rgba(34, 211, 238, 0.3);
}
.hero-media__frame img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-media__frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10, 5, 20, 0.6));
    pointer-events: none;
}

.hero-speech {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    padding: 12px 16px;
    background: rgba(10, 5, 20, 0.85);
    border: 1px solid rgba(255, 45, 149, 0.5);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--foreground);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.hero-speech strong { color: #ff6db5; }

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

.tldr-box,
.summary-box {
    padding: var(--space-lg);
    border-left: 3px solid var(--primary);
    background: rgba(255, 45, 149, 0.06);
    border-radius: var(--radius-sm);
    margin-block: var(--space-xl);
}
.tldr-box h3, .summary-box h3 {
    margin-top: 0;
    margin-bottom: var(--space-sm);
    font-size: 14px;
    letter-spacing: 0.2em;
    color: var(--primary);
}

.callout {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    background: rgba(34, 211, 238, 0.08);
    border: 1px solid rgba(34, 211, 238, 0.3);
    margin-block: var(--space-lg);
}
.callout--warn {
    background: rgba(244, 63, 94, 0.08);
    border-color: rgba(244, 63, 94, 0.3);
}
.callout--success {
    background: rgba(57, 255, 122, 0.08);
    border-color: rgba(57, 255, 122, 0.3);
}

.pullquote {
    margin: var(--space-2xl) 0;
    padding: var(--space-lg) var(--space-xl);
    border-left: 4px solid var(--primary);
    font-family: var(--font-display);
    font-size: clamp(20px, 3vw, 26px);
    line-height: 1.4;
    color: var(--foreground);
    font-style: italic;
}
.pullquote cite {
    display: block;
    margin-top: var(--space-sm);
    font-size: 14px;
    font-style: normal;
    color: var(--muted-foreground);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.eva-dialog,
.max-dialog {
    position: relative;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin-block: var(--space-lg);
    background: rgba(21, 10, 38, 0.65);
    border: 1px solid var(--border);
}
.eva-dialog { border-left: 3px solid #ff2d95; }
.max-dialog { border-left: 3px solid #22d3ee; }

.eva-dialog::before,
.max-dialog::before {
    content: attr(data-speaker);
    display: block;
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: var(--space-xs);
}
.eva-dialog::before { color: #ff6db5; }
.max-dialog::before { color: #67e8f9; }

/* Tables */
.table-wrapper {
    margin-block: var(--space-xl);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow-x: auto;
    background: rgba(21, 10, 38, 0.5);
}
.table-wrapper:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}
thead {
    background: linear-gradient(135deg, rgba(255, 45, 149, 0.15), rgba(34, 211, 238, 0.15));
}
th, td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
th {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--foreground);
}
td { color: var(--muted-foreground); }
tbody tr:hover { background: rgba(255, 45, 149, 0.04); }
tr.recommended td { background: rgba(57, 255, 122, 0.08); color: var(--foreground); }

/* Trust badges row */
.trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: rgba(21, 10, 38, 0.5);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}
.trust-row__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    background: rgba(10, 5, 20, 0.5);
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted-foreground);
}
.trust-row__item strong { color: var(--foreground); font-weight: 700; }

/* SEO content prose */
.prose {
    max-width: 820px;
    margin-inline: auto;
}
.prose p {
    color: var(--muted-foreground);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}
.prose a {
    color: var(--secondary);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(34, 211, 238, 0.4);
}
.prose a:hover {
    color: var(--primary);
    text-decoration-color: var(--primary);
}
.prose h2 { margin-top: var(--space-2xl); }
.prose h3 { margin-top: var(--space-xl); }

/* Timeline */
.timeline {
    position: relative;
    padding-left: 32px;
    margin-block: var(--space-xl);
}
.timeline::before {
    content: "";
    position: absolute;
    left: 8px; top: 8px; bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, #ff2d95, #22d3ee);
}
.timeline-item {
    position: relative;
    padding-bottom: var(--space-lg);
}
.timeline-item::before {
    content: "";
    position: absolute;
    left: -32px;
    top: 4px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--background);
    border: 2px solid #ff2d95;
    box-shadow: var(--glow-pink);
}
.timeline-item h3,
.timeline-item h4 {
    font-family: var(--font-display);
    font-size: 15px;
    margin-bottom: 4px;
    text-transform: uppercase;
    color: var(--foreground);
    letter-spacing: 0.08em;
}
.timeline-item p {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 15px;
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* ============================================
   FOCUS STATES
   ============================================ */

:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 3px;
    border-radius: 4px;
}
.btn:focus-visible {
    outline-color: var(--accent);
}

/* Inline links in paragraphs must be visually distinguishable */
.callout a,
.inline-link {
    color: #67e8f9;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
    font-weight: 600;
}
.callout a:hover,
.inline-link:hover {
    color: #ff6db5;
    text-decoration-color: #ff6db5;
}