/* ============================================
   VAVADA CASINO - DESIGN SYSTEM
   Heist aesthetic · neon · dark purple-navy
   ============================================ */

:root {
    --background: #0e0a24;
    --foreground: #f5f0e8;
    --card: #1a1438;
    --card-foreground: #f5f0e8;
    --primary: #c8268a;
    --primary-foreground: #ffffff;
    --secondary: #22d3ee;
    --secondary-foreground: #0e0a24;
    --muted: #2a1f4d;
    --muted-foreground: #cfc6e8;
    --accent: #facc15;
    --accent-foreground: #0e0a24;
    --destructive: #f43f5e;
    --destructive-foreground: #000000;
    --border: #2a1f4d;
    --input: #1a1438;
    --ring: #e833a8;

    --grad-neon: linear-gradient(135deg, #22d3ee 0%, #e833a8 100%);
    --grad-gold: linear-gradient(135deg, #facc15 0%, #ffae00 100%);
    --grad-panel: linear-gradient(180deg, rgba(26,20,56,0.95) 0%, rgba(14,10,36,0.95) 100%);

    --shadow-card: 0 6px 24px rgba(0,0,0,0.45);
    --shadow-neon: 0 0 24px rgba(232,51,168,0.5), 0 0 48px rgba(34,211,238,0.25);
    --shadow-gold: 0 0 18px rgba(250,204,21,0.55);

    --radius: 12px;
    --radius-pill: 999px;

    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 48px;
    --space-6: 64px;
    --space-7: 96px;

    --header-h: 68px;
    --max-w: 1240px;

    --font-display: "Orbitron", "Arial Black", sans-serif;
    --font-body: "Rajdhani", "Segoe UI", sans-serif;
}

.dark {
    /* Same tokens - site is dark-only per brief */
}

/* ============================================
   OVERFLOW PREVENTION
   ============================================ */
*,
*::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 { 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; }

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

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    background-image:
        radial-gradient(circle at 10% 0%, rgba(232,51,168,0.18), transparent 40%),
        radial-gradient(circle at 90% 30%, rgba(34,211,238,0.14), transparent 45%),
        radial-gradient(circle at 50% 100%, rgba(124,58,237,0.18), transparent 50%);
    background-attachment: fixed;
    min-height: 100vh;
}

a { color: var(--secondary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--primary); }

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 var(--space-2);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

h1 { font-size: clamp(28px, 5vw, 44px); font-weight: 900; }
h2 { font-size: clamp(24px, 4vw, 34px); font-weight: 700; }
h3 { font-size: clamp(20px, 3vw, 24px); font-weight: 600; }
h4 { font-size: clamp(18px, 2.5vw, 20px); font-weight: 600; }

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

.text-gradient {
    background: var(--grad-neon);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.text-gold {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.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, sections
   ============================================ */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-3);
}

main { padding-top: var(--header-h); }

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

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

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

.section-eyebrow {
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: var(--space-1);
    display: block;
}

/* ============================================
   HEADER - Sticky, translucent
   ============================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-h);
    background: rgba(14,10,36,0.85);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

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

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

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

.brand-mark {
    width: 38px; height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--grad-neon);
    box-shadow: 0 0 16px rgba(232,51,168,0.55);
    position: relative;
}
.brand-mark::before {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--background);
}
.brand-mark-letter {
    position: relative;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 18px;
    color: var(--accent);
    text-shadow: 0 0 8px rgba(250,204,21,0.6);
}
.brand-text-accent { color: var(--primary); margin-left: 2px; }

.primary-nav {
    display: none;
}

@media (min-width: 1024px) {
    .primary-nav {
        display: flex;
        align-items: center;
        gap: var(--space-4);
        flex: 1;
        justify-content: flex-end;
    }
}

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

.nav-link {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--foreground);
    padding: 8px 4px;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: var(--grad-neon);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}
.nav-link:hover { color: var(--secondary); }
.nav-link:hover::after { transform: scaleX(1); }

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

.nav-login {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--foreground);
    letter-spacing: 0.1em;
}

.nav-cta {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #ffffff;
    background: var(--primary);
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    box-shadow: 0 0 18px rgba(232,51,168,0.5);
    transition: transform .2s ease, box-shadow .2s ease;
}
.nav-cta:hover {
    color: #ffffff;
    transform: scale(1.04);
    box-shadow: 0 0 28px rgba(232,51,168,0.8);
}

/* Mobile burger */
.menu-toggle {
    width: 44px; height: 44px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 1001;
    position: relative;
}
.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--foreground);
    transition: transform .25s ease, opacity .25s 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) {
    .menu-toggle { display: none; }
}

/* Mobile nav drawer */
@media (max-width: 1023px) {
    .primary-nav.is-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0; bottom: 0;
        background: var(--background);
        padding: var(--space-4) var(--space-3);
        gap: var(--space-3);
        z-index: 999;
        overflow-y: auto;
        align-items: stretch;
    }
    .primary-nav.is-open .nav-list {
        flex-direction: column;
        gap: 0;
    }
    .primary-nav.is-open .nav-list li {
        border-bottom: 1px solid var(--border);
    }
    .primary-nav.is-open .nav-link {
        display: flex;
        align-items: center;
        min-height: 56px;
        font-size: 18px;
        padding: var(--space-2) 0;
    }
    .primary-nav.is-open .nav-actions {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-2);
        margin-top: var(--space-3);
    }
    .primary-nav.is-open .nav-login {
        padding: 14px;
        text-align: center;
        border: 1px solid var(--border);
        border-radius: var(--radius-pill);
    }
    .primary-nav.is-open .nav-cta {
        padding: 14px;
        text-align: center;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
    text-decoration: none;
    min-height: 48px;
}

.btn-primary {
    background: #6a1352;
    color: #ffffff !important;
    box-shadow: 0 0 22px rgba(232,51,168,0.55);
}
.btn-primary,
.btn-primary * {
    color: #ffffff !important;
    text-shadow: none;
    opacity: 1 !important;
}
.btn-primary:hover {
    color: #ffffff !important;
    background: #7d1761;
    transform: scale(1.04);
    box-shadow: 0 0 36px rgba(232,51,168,0.85), 0 0 60px rgba(232,51,168,0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}
.btn-secondary:hover {
    background: var(--secondary);
    color: var(--secondary-foreground);
    transform: scale(1.04);
}

.btn-gold {
    background: var(--grad-gold);
    color: var(--accent-foreground);
    box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
    color: var(--accent-foreground);
    transform: scale(1.04);
    box-shadow: 0 0 30px rgba(250,204,21,0.85);
}

/* ============================================
   CARDS - info_card, generic
   ============================================ */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-3);
    min-width: 0;
}

.info-card {
    position: relative;
    background: var(--card);
    border-radius: var(--radius);
    padding: 20px;
    min-width: 0;
    overflow: hidden;
    transition: transform .28s ease, box-shadow .28s ease;
    background-clip: padding-box;
    border: 1px solid transparent;
    background-image:
        linear-gradient(var(--card), var(--card)),
        var(--grad-neon);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border: 1px solid transparent;
}
.info-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent 0, transparent 3px, rgba(255,255,255,0.015) 3px, rgba(255,255,255,0.015) 4px);
    pointer-events: none;
    border-radius: var(--radius);
}
.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(34,211,238,0.25), 0 0 0 1px rgba(34,211,238,0.4);
}

@media (min-width: 1024px) {
    .info-card { padding: 28px; }
}

.info-card-badge {
    position: absolute;
    top: 12px; right: 12px;
    background: var(--grad-gold);
    color: var(--accent-foreground);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.08em;
    z-index: 2;
}

.info-card-media {
    position: relative;
    margin-bottom: var(--space-2);
    border-radius: 10px;
    overflow: hidden;
}

.info-card-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.info-card-icon {
    font-size: 42px;
    display: inline-flex;
    width: 64px; height: 64px;
    align-items: center;
    justify-content: center;
    background: var(--muted);
    border-radius: 14px;
    box-shadow: inset 0 0 14px rgba(232,51,168,0.2);
}

.info-card-coin {
    position: absolute;
    top: 8px; right: 8px;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--grad-gold);
    box-shadow: var(--shadow-gold);
}

.info-card-body { position: relative; z-index: 1; }

.info-card-title {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--foreground);
}

.info-card-text {
    color: var(--foreground);
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: var(--space-2);
}

.info-card-link {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--secondary);
    letter-spacing: 0.1em;
}
.info-card-link:hover { color: var(--primary); }

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

/* ============================================
   STAT BLOCK
   ============================================ */
.stat-block-wrap { padding: var(--space-5) 0; }

.stat-block-title {
    text-align: center;
    margin-bottom: var(--space-4);
}

.stat-block {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-3);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-4) var(--space-3);
}

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

@media (min-width: 1024px) {
    .stat-block {
        grid-template-columns: repeat(4, minmax(0,1fr));
        gap: 0;
    }
    .stat-cell + .stat-cell {
        border-left: 1px solid var(--border);
    }
}

.stat-cell {
    text-align: center;
    padding: 0 var(--space-2);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(36px, 7vw, 56px);
    font-weight: 900;
    line-height: 1;
    background: var(--grad-neon);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 0 0 24px rgba(232,51,168,0.3);
    margin-bottom: 8px;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--muted-foreground);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-source {
    font-size: 12px;
    color: var(--muted-foreground);
    margin-top: 6px;
    opacity: 0.8;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section { padding: var(--space-5) 0; }

.faq-section-title {
    text-align: center;
    margin-bottom: var(--space-4);
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-item:hover {
    border-color: var(--secondary);
}
.faq-item[open] {
    border-color: var(--primary);
    box-shadow: 0 0 18px rgba(232,51,168,0.25);
}

.faq-question {
    list-style: none;
    cursor: pointer;
    padding: 20px 24px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--foreground);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-2);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.faq-question::-webkit-details-marker { display: none; }

.faq-icon {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--muted);
    flex-shrink: 0;
    position: relative;
    transition: transform .28s ease, background .28s ease;
}
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--secondary);
    border-radius: 2px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.faq-icon::before { width: 12px; height: 2px; }
.faq-icon::after { width: 2px; height: 12px; transition: transform .28s ease; }

.faq-item[open] .faq-icon {
    background: var(--primary);
    transform: rotate(180deg);
}
.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after { background: var(--primary-foreground); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }

.faq-answer {
    padding: 0 24px 22px;
    border-top: 1px solid var(--muted);
    padding-top: 18px;
    color: var(--foreground);
    line-height: 1.65;
}
.faq-answer p { margin: 0; }

/* ============================================
   HOW-TO STEPS
   ============================================ */
.howto-section { padding: var(--space-5) 0; }

.howto-title {
    text-align: center;
    margin-bottom: var(--space-4);
}

.howto-list {
    list-style: none;
    margin: 0; padding: 0;
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    position: relative;
}

.howto-step {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-3);
    position: relative;
}

.howto-num {
    width: 60px; height: 60px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--card);
    border: 2px solid var(--primary);
    box-shadow: 0 0 18px rgba(232,51,168,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 900;
    color: var(--accent);
}

.howto-step-title {
    margin-bottom: 6px;
    font-size: 18px;
}

.howto-step-text {
    color: var(--foreground);
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    padding: var(--space-6) var(--space-3);
    margin: var(--space-5) 0;
    background:
        linear-gradient(180deg, rgba(232,51,168,0.08) 0%, rgba(34,211,238,0.08) 100%),
        var(--card);
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    border-image: var(--grad-neon) 1;
    text-align: center;
}

.cta-banner-inner {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
}

.cta-title {
    font-size: clamp(28px, 5vw, 44px);
    margin-bottom: var(--space-2);
    background: var(--grad-neon);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

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

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 16px 36px;
    background: var(--primary);
    color: #ffffff;
    border-radius: var(--radius-pill);
    box-shadow: 0 0 28px rgba(232,51,168,0.6), 0 0 60px rgba(232,51,168,0.3);
    transition: transform .2s ease, box-shadow .2s ease;
    min-height: 52px;
}
.cta-button:hover {
    color: #ffffff;
    transform: scale(1.04);
    box-shadow: 0 0 40px rgba(232,51,168,0.9), 0 0 80px rgba(232,51,168,0.5);
}

.cta-small {
    margin-top: var(--space-2);
    font-size: 13px;
    color: var(--muted-foreground);
}

.cta-coin {
    position: absolute;
    border-radius: 50%;
    background: var(--grad-gold);
    box-shadow: var(--shadow-gold);
    opacity: 0.85;
    pointer-events: none;
}
.cta-coin-1 { width: 24px; height: 24px; top: 10%; left: 8%; }
.cta-coin-2 { width: 16px; height: 16px; top: 70%; right: 10%; }
.cta-coin-3 { width: 12px; height: 12px; top: 25%; right: 18%; }

/* ============================================
   HERO - Heist banner
   ============================================ */
.hero {
    position: relative;
    padding: var(--space-6) 0 var(--space-7);
    overflow: clip;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-4);
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1.1fr 1fr;
        gap: var(--space-6);
    }
}

.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--secondary);
    padding: 6px 14px;
    border: 1px solid var(--secondary);
    border-radius: var(--radius-pill);
    margin-bottom: var(--space-2);
}

.hero-title {
    font-size: clamp(32px, 6vw, 56px);
    line-height: 1.05;
    margin-bottom: var(--space-2);
}

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

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

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-top: var(--space-2);
}
.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--card);
    border: 1px solid var(--border);
    padding: 10px 16px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    color: #e8e0ff;
}
.hero-trust-item strong { color: #ffd84d; font-weight: 700; }

.hero-media {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-neon);
}
.hero-media img {
    width: 100%;
    height: auto;
    display: block;
}
.hero-media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(14,10,36,0.6) 100%);
    pointer-events: none;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: linear-gradient(180deg, var(--background) 0%, #07041a 100%);
    border-top: 1px solid var(--border);
    padding: var(--space-6) 0 0;
    margin-top: var(--space-6);
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-3);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-4);
}

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

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

.footer-col { min-width: 0; }

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

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

.footer-license {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.license-badge, .age-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.license-badge {
    background: var(--muted);
    color: var(--secondary);
    border: 1px solid var(--secondary);
}
.age-badge {
    background: var(--destructive);
    color: var(--destructive-foreground);
}

.footer-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: var(--space-2);
}

.footer-list {
    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(--secondary); }

.footer-static {
    color: var(--muted-foreground);
    font-size: 14px;
}

.footer-payments {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-payments li {
    background: var(--muted);
    border: 1px solid var(--border);
    color: var(--muted-foreground);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-family: var(--font-display);
    letter-spacing: 0.04em;
}

.footer-bottom {
    margin-top: var(--space-5);
    padding: var(--space-3);
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--muted-foreground);
    font-size: 13px;
}

/* ============================================
   CONTENT PATTERNS - Engagement & CRO
   ============================================ */

/* TL;DR / Summary box */
.summary-box {
    background: var(--muted);
    border-left: 4px solid var(--secondary);
    border-radius: 10px;
    padding: var(--space-3);
    margin: var(--space-3) 0;
}
.summary-box h2,
.summary-box h3,
.summary-box-title {
    font-family: var(--font-display);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--secondary);
    margin-bottom: 10px;
}
.summary-box ul {
    margin: 0;
    padding-left: 20px;
}
.summary-box li { margin-bottom: 6px; }

/* Callout box */
.callout {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: 10px;
    padding: var(--space-3);
    margin: var(--space-3) 0;
}
.callout-warning { border-left-color: var(--destructive); }
.callout-success { border-left-color: var(--secondary); }
.callout-gold { border-left-color: var(--accent); }

.callout-title {
    font-family: var(--font-display);
    font-size: 15px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

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

/* Stat highlight inline */
.stat-highlight {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-2) var(--space-3);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin: var(--space-1);
}
.stat-highlight-number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}
.stat-highlight-label {
    font-size: 13px;
    color: var(--muted-foreground);
    margin-top: 4px;
}

/* Comparison table */
.table-wrapper {
    margin: var(--space-3) 0;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow-x: auto;
}
.table-wrapper:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 2px;
}

table.compare {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    min-width: 480px;
}
table.compare thead {
    background: var(--muted);
}
table.compare th,
table.compare td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}
table.compare th {
    font-family: var(--font-display);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--secondary);
}
table.compare tr:last-child td { border-bottom: none; }
table.compare .col-highlight {
    background: rgba(232,51,168,0.06);
}

/* Trust badges row */
.trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) 0;
}
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.trust-badge strong { color: var(--accent); }

/* Lists */
.feature-list {
    list-style: none;
    margin: 0 0 var(--space-3);
    padding: 0;
}
.feature-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    color: var(--foreground);
}
.feature-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 8px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--grad-neon);
    box-shadow: 0 0 10px rgba(34,211,238,0.5);
}

/* Prose container for article text */
.prose {
    max-width: 760px;
    margin: 0 auto;
}
.prose h2 { margin-top: var(--space-5); }
.prose h3 { margin-top: var(--space-4); }
.prose p { color: var(--foreground); }
.prose a {
    color: var(--secondary);
    border-bottom: 1px dotted currentColor;
}
.prose a:hover { color: var(--primary); }

/* Breadcrumbs */
.breadcrumbs {
    padding: var(--space-2) 0;
    font-size: 13px;
    color: var(--muted-foreground);
}
.breadcrumbs ol {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.breadcrumbs li + li::before {
    content: '/';
    margin-right: 6px;
    color: var(--muted-foreground);
}
.breadcrumbs a { color: var(--secondary); }

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

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

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-3 { margin-top: var(--space-3); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }

/* Focus visibility */
:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 3px;
    border-radius: 4px;
}