/* ============================================
   DESIGN TOKENS
   Cyberpunk neon palette - Martin Casino
   ============================================ */

:root {
    --background: #05080f;
    --foreground: #f5f7fb;
    --card: #0d1530;
    --card-foreground: #f5f7fb;
    --popover: #0d1530;
    --popover-foreground: #f5f7fb;
    --primary: #22d3ee;
    --primary-foreground: #03121a;
    --secondary: #141b3d;
    --secondary-foreground: #e6ecff;
    --muted: #1f2937;
    --muted-foreground: #c3cce0;
    --accent: #ff7a18;
    --accent-foreground: #1a0a00;
    --destructive: #f43f5e;
    --destructive-foreground: #1a0307;
    --border: #243049;
    --input: #0f1730;
    --ring: #22d3ee;

    --glow-cyan: 0 0 12px rgba(34, 211, 238, 0.55), 0 0 28px rgba(34, 211, 238, 0.3);
    --glow-orange: 0 0 12px rgba(255, 122, 24, 0.55), 0 0 28px rgba(255, 122, 24, 0.3);
    --glow-double: 0 0 0 1px rgba(34, 211, 238, 0.6), 0 0 18px rgba(34, 211, 238, 0.45), 0 0 32px rgba(255, 122, 24, 0.35);

    --radius-card: 16px;
    --radius-pill: 999px;
    --container-wide: 1240px;
    --container-narrow: 880px;

    --font-display: "Audiowide", "Impact", sans-serif;
    --font-body: "Rubik", system-ui, -apple-system, sans-serif;

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

    --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
    --header-h: 68px;
}

.dark {
    --background: #05080f;
    --foreground: #f5f7fb;
    --card: #0d1530;
    --card-foreground: #f5f7fb;
    --primary: #22d3ee;
    --primary-foreground: #03121a;
    --secondary: #141b3d;
    --secondary-foreground: #e6ecff;
    --muted: #1f2937;
    --muted-foreground: #c3cce0;
    --accent: #ff7a18;
    --accent-foreground: #1a0a00;
    --border: #243049;
    --input: #0f1730;
    --ring: #22d3ee;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::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 { 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; }

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);
    background-image:
        radial-gradient(ellipse 80% 50% at 20% 0%, rgba(34, 211, 238, 0.08), transparent 60%),
        radial-gradient(ellipse 60% 40% at 100% 30%, rgba(255, 122, 24, 0.06), transparent 60%);
    background-attachment: fixed;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; transition: color 200ms var(--ease); }
a:hover { color: var(--accent); text-shadow: 0 0 8px rgba(255, 122, 24, 0.5); }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.15;
    margin: 0 0 var(--space-3);
    color: var(--foreground);
    font-weight: 400;
}

h1 { font-size: clamp(2.4rem, 5vw + 1rem, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3vw + 0.8rem, 3.25rem); }
h3 { font-size: clamp(1.35rem, 1.5vw + 0.8rem, 2.125rem); }
h4 { font-size: 1.125rem; }

.neon-headline {
    color: var(--primary);
    text-shadow:
        0 0 6px rgba(34, 211, 238, 0.7),
        0 0 18px rgba(34, 211, 238, 0.4),
        0 0 32px rgba(255, 122, 24, 0.25);
}

.neon-orange { color: var(--accent); text-shadow: 0 0 8px rgba(255, 122, 24, 0.6), 0 0 22px rgba(255, 122, 24, 0.35); }

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

small, .small { font-size: 0.875rem; }

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

.skip-link {
    position: absolute; top: -100px; left: 8px; z-index: 2000;
    background: var(--primary); color: var(--primary-foreground);
    padding: 12px 16px; border-radius: 8px; font-weight: 600;
}
.skip-link:focus { top: 8px; }

/* ============================================
   LAYOUT - Container & Sections
   ============================================ */
.container-wide, .container-narrow {
    width: 100%;
    margin: 0 auto;
    padding-left: var(--space-3);
    padding-right: var(--space-3);
}
.container-wide { max-width: var(--container-wide); }
.container-narrow { max-width: var(--container-narrow); }

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

.section-title-row { text-align: center; margin-bottom: var(--space-5); }
.eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.875rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
    padding: 6px 14px;
    border: 1px solid var(--primary);
    border-radius: var(--radius-pill);
    box-shadow: var(--glow-cyan);
    margin-bottom: var(--space-3);
}

/* ============================================
   HEADER & NAV
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 8, 15, 0.88);
    border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) {
    .site-header { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
}

.header-inner {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 12px var(--space-3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    min-height: var(--header-h);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--foreground);
    font-family: var(--font-display);
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.site-brand:hover { color: var(--primary); text-shadow: none; }
.logo, .logo-sm { display: block; filter: drop-shadow(0 0 6px rgba(34, 211, 238, 0.5)); }
.brand-text { color: var(--foreground); }
.brand-text-accent { color: var(--accent); }

.primary-nav {
    display: none;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
    gap: var(--space-3);
}
.nav-list {
    list-style: none;
    display: flex;
    gap: var(--space-3);
    margin: 0;
    padding: 0;
}
.nav-link {
    color: var(--foreground);
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    padding: 8px 4px;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 220ms var(--ease);
    box-shadow: var(--glow-cyan);
}
.nav-link:hover { color: var(--primary); text-shadow: none; }
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; gap: 10px; align-items: center; }

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

/* Mobile toggle */
.mobile-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 36px;
    padding: 8px 6px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    z-index: 1001;
}
.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: transform 220ms var(--ease), opacity 220ms var(--ease);
    box-shadow: var(--glow-cyan);
}
.mobile-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }

/* Mobile drawer */
@media (max-width: 1023px) {
    .primary-nav {
        display: none;
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0; bottom: 0;
        background: var(--background);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: var(--space-3);
        overflow-y: auto;
        z-index: 999;
        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;
        align-items: center;
        min-height: 48px;
        padding: 14px 0;
        font-size: 1.1rem;
    }
    .nav-cta {
        margin-top: var(--space-3);
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 12px;
    }
}

/* ============================================
   BUTTONS - Cyan fill + orange halo
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.95rem;
    padding: 12px 22px;
    min-height: 48px;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease);
    white-space: nowrap;
}
.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: 0 0 0 2px rgba(255, 122, 24, 0.35), 0 0 22px rgba(255, 122, 24, 0.55), 0 0 14px rgba(34, 211, 238, 0.45);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 0 2px rgba(255, 122, 24, 0.6), 0 0 36px rgba(255, 122, 24, 0.7), 0 0 22px rgba(34, 211, 238, 0.6);
}
.btn-ghost {
    background: transparent;
    color: var(--foreground);
    border-color: var(--border);
}
.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--glow-cyan);
}
.btn-sm { padding: 10px 16px; min-height: 42px; font-size: 0.85rem; }
.btn-lg { padding: 16px 32px; min-height: 56px; font-size: 1.05rem; }

.btn-pulse { animation: btn-pulse 4s ease-in-out infinite; }
@keyframes btn-pulse {
    0%, 100% { box-shadow: 0 0 0 2px rgba(255, 122, 24, 0.35), 0 0 22px rgba(255, 122, 24, 0.55), 0 0 14px rgba(34, 211, 238, 0.45); }
    50% { box-shadow: 0 0 0 2px rgba(255, 122, 24, 0.55), 0 0 34px rgba(255, 122, 24, 0.75), 0 0 22px rgba(34, 211, 238, 0.6); }
}

/* ============================================
   INFO CARD
   ============================================ */
.card-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-3);
}
@media (min-width: 768px) { .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.card-grid-4 { display: grid; grid-template-columns: minmax(0, 1fr); gap: var(--space-3); }
@media (min-width: 640px) { .card-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .card-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.card-grid-5 { display: grid; grid-template-columns: minmax(0,1fr); gap: var(--space-3); }
@media (min-width: 640px) { .card-grid-5 { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (min-width: 1024px) { .card-grid-5 { grid-template-columns: repeat(5,minmax(0,1fr)); } }
.card-grid-6 { display: grid; grid-template-columns: minmax(0,1fr); gap: var(--space-3); }
@media (min-width: 640px) { .card-grid-6 { grid-template-columns: repeat(2,minmax(0,1fr)); } }
@media (min-width: 1024px) { .card-grid-6 { grid-template-columns: repeat(3,minmax(0,1fr)); } }

.info-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
    min-width: 0;
}
.info-card:hover {
    transform: translateY(-4px) rotate(-0.6deg);
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(34, 211, 238, 0.5), 0 0 24px rgba(34, 211, 238, 0.25);
}
.card-badge {
    position: absolute;
    top: 12px; right: 12px;
    z-index: 2;
    background: var(--accent);
    color: var(--accent-foreground);
    font-family: var(--font-display);
    font-size: 0.75rem;
    padding: 5px 10px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: var(--glow-orange);
}
.card-media {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--secondary);
}
.card-media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 400ms var(--ease);
}
.info-card:hover .card-media img { transform: scale(1.05); }
.card-icon {
    width: 64px; height: 64px;
    margin: var(--space-3) var(--space-3) 0;
    color: var(--primary);
    filter: drop-shadow(var(--glow-cyan));
}
.card-icon svg { width: 100%; height: 100%; }
.card-body { padding: var(--space-3); display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card-meta {
    font-family: var(--font-display);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
}
.card-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin: 0;
    color: var(--foreground);
    text-transform: uppercase;
}
.card-desc { color: var(--muted-foreground); margin: 0; font-size: 1rem; }
.card-body .btn { align-self: flex-start; margin-top: auto; }

/* ============================================
   STAT HIGHLIGHT
   ============================================ */
.stat-highlight {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-3);
}
@media (min-width: 640px) { .stat-highlight { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .stat-highlight { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.stat-block {
    text-align: center;
    padding: var(--space-3);
    background: rgba(13, 21, 48, 0.5);
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
}
.stat-line {
    width: 48px; height: 2px;
    background: var(--primary);
    margin: 0 auto 14px;
    box-shadow: var(--glow-cyan);
}
.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw + 1rem, 3.75rem);
    color: var(--accent);
    text-shadow: 0 0 12px rgba(255, 122, 24, 0.55), 0 0 28px rgba(255, 122, 24, 0.3);
    line-height: 1;
    margin-bottom: 10px;
}
.stat-label {
    display: block;
    font-size: 1rem;
    color: var(--foreground);
}
.stat-source {
    display: block;
    margin-top: 6px;
    font-size: 0.85rem;
    color: var(--muted-foreground);
}

/* ============================================
   LOGO ROW
   ============================================ */
.logo-row {
    background: var(--secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: var(--space-5) var(--space-3);
    border-radius: var(--radius-card);
}
.logo-caption {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.05rem;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 0.1em;
    margin-bottom: var(--space-3);
}
.logo-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-3);
}
.logo-item {
    font-family: var(--font-display);
    text-transform: uppercase;
    color: var(--foreground);
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    padding: 10px 18px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(5, 8, 15, 0.6);
    transition: all 220ms var(--ease);
    min-height: 48px;
    display: inline-flex;
    align-items: center;
}
.logo-item:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--glow-cyan);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: var(--space-3);
    max-width: 880px;
    margin: 0 auto;
}
@media (min-width: 768px) { .faq-accordion { padding: var(--space-4); } }
.faq-heading {
    margin-bottom: var(--space-3);
    color: var(--primary);
    text-shadow: var(--glow-cyan);
}
.faq-item {
    border-bottom: 1px solid var(--border);
    padding: var(--space-2) 0;
}
.faq-item:last-child { border-bottom: 0; }
.faq-question {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
    font-family: var(--font-display);
    font-size: 1.05rem;
    text-transform: uppercase;
    color: var(--primary);
    padding: 12px 0;
    min-height: 48px;
    letter-spacing: 0.04em;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-icon {
    position: relative;
    width: 20px; height: 20px;
    flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background: var(--primary);
    box-shadow: var(--glow-cyan);
    border-radius: 2px;
    transition: transform 220ms var(--ease);
}
.faq-icon::before { top: 9px; left: 0; right: 0; height: 2px; }
.faq-icon::after { left: 9px; top: 0; bottom: 0; width: 2px; }
.faq-item[open] .faq-icon::after { transform: scaleY(0); }
.faq-item[open] { border-left: 2px solid var(--primary); padding-left: 12px; }
.faq-answer {
    padding: 4px 0 12px;
    color: var(--foreground);
}
.faq-answer p { margin: 0; max-width: none; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    position: relative;
    background: var(--secondary);
    border-radius: var(--radius-card);
    padding: var(--space-6) var(--space-3);
    text-align: center;
    overflow: hidden;
    border: 1px solid var(--border);
    margin: var(--space-5) 0;
}
@media (min-width: 1024px) { .cta-banner { padding: var(--space-7) var(--space-4); } }
.cta-glow {
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(ellipse 40% 40% at 30% 50%, rgba(34, 211, 238, 0.25), transparent 60%),
        radial-gradient(ellipse 40% 40% at 70% 50%, rgba(255, 122, 24, 0.22), transparent 60%);
    pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-headline {
    font-size: clamp(1.8rem, 3vw + 1rem, 3.25rem);
    margin-bottom: var(--space-3);
    color: var(--foreground);
    text-shadow: 0 0 12px rgba(34, 211, 238, 0.4);
}
.cta-subtext {
    max-width: 640px;
    margin: 0 auto var(--space-3);
    color: var(--muted-foreground);
    font-size: 1.05rem;
}
.cta-micro {
    margin-top: var(--space-3);
    font-size: 0.85rem;
    color: var(--muted-foreground);
}
.cta-mascot {
    position: absolute;
    bottom: 16px; right: 16px;
    color: var(--primary);
    filter: drop-shadow(var(--glow-cyan));
    opacity: 0.55;
    pointer-events: none;
}

/* ============================================
   HERO - Generic hero pattern
   ============================================ */
.hero {
    position: relative;
    padding: var(--space-6) 0 var(--space-6);
    overflow: hidden;
}
@media (min-width: 1024px) { .hero { padding: 120px 0 var(--space-7); } }
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-5);
    align-items: center;
}
@media (min-width: 1024px) {
    .hero-grid { grid-template-columns: 1.2fr 1fr; gap: var(--space-6); }
}
.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--space-2);
}
.hero-title {
    margin-bottom: var(--space-3);
}
.hero-title .accent { color: var(--accent); text-shadow: var(--glow-orange); }
.hero-lead {
    font-size: 1.15rem;
    color: var(--muted-foreground);
    margin-bottom: var(--space-4);
    max-width: 56ch;
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: var(--space-3); }
.hero-trust {
    display: flex; flex-wrap: wrap; gap: 14px;
    font-size: 0.9rem;
    color: var(--muted-foreground);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trust span::before { content: '✓'; color: var(--primary); font-weight: 700; }

.hero-visual {
    position: relative;
    aspect-ratio: 1/1;
    max-width: 520px;
    margin: 0 auto;
}
.hero-visual img {
    width: 100%; height: 100%; object-fit: contain;
    filter: drop-shadow(0 0 24px rgba(34, 211, 238, 0.45)) drop-shadow(0 0 48px rgba(255, 122, 24, 0.3));
    position: relative;
    z-index: 2;
}
.hero-trail {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.hero-trail svg { width: 100%; height: 100%; }

/* ============================================
   TABLES
   ============================================ */
.table-wrapper {
    border-radius: var(--radius-card);
    border: 1px solid var(--border);
    background: var(--card);
}
.table-wrapper:focus { outline: 2px solid var(--primary); outline-offset: 2px; }
table.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}
.data-table thead {
    background: var(--secondary);
}
.data-table th, .data-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    color: var(--foreground);
}
.data-table th {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    color: var(--primary);
}
.data-table tr:last-child td { border-bottom: 0; }
.data-table tr.highlight { background: rgba(255, 122, 24, 0.08); }
.data-table tr.highlight td { color: var(--foreground); }
.data-table tr.highlight td:first-child { color: var(--accent); font-weight: 600; }

/* ============================================
   ENGAGEMENT PATTERNS
   ============================================ */
.tldr-box, .callout {
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-card);
    padding: var(--space-3);
    margin: var(--space-3) 0;
    box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.15);
}
.tldr-box strong, .callout strong { color: var(--primary); }
.callout-accent { border-left-color: var(--accent); }
.callout-accent strong { color: var(--accent); }
.callout a, .tldr-box a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}
.callout a:hover, .tldr-box a:hover { color: var(--primary); }

.pull-quote {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 1.5vw + 0.8rem, 1.75rem);
    line-height: 1.3;
    color: var(--foreground);
    border-left: 3px solid var(--accent);
    padding: var(--space-3);
    margin: var(--space-4) 0;
    background: rgba(255, 122, 24, 0.05);
    border-radius: 0 var(--radius-card) var(--radius-card) 0;
}
.pull-quote cite {
    display: block;
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.9rem;
    color: var(--muted-foreground);
    margin-top: var(--space-2);
}

ul.feature-list { list-style: none; padding: 0; margin: 0 0 var(--space-3); }
ul.feature-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--foreground);
}
ul.feature-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 16px;
    width: 14px; height: 14px;
    border: 2px solid var(--primary);
    border-radius: 3px;
    box-shadow: var(--glow-cyan);
}

/* Footer */
.site-footer {
    background: linear-gradient(180deg, transparent, rgba(13, 21, 48, 0.6));
    border-top: 1px solid var(--border);
    margin-top: var(--space-7);
}
.footer-inner {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: var(--space-5) 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 1.2fr; } }
.footer-brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; font-family: var(--font-display); font-size: 1.1rem; text-transform: uppercase; }
.footer-tag { color: var(--muted-foreground); font-size: 0.95rem; }
.badges-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: var(--space-2); }
.badge-pill {
    display: inline-flex; align-items: center;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--primary);
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: var(--glow-cyan);
}
.badge-pill.badge-age {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: var(--glow-orange);
}
.footer-title {
    font-family: var(--font-display);
    text-transform: uppercase;
    color: var(--primary);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    margin: 0 0 14px;
}
.footer-list, .footer-payments {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 10px;
}
.footer-payments {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-payments li {
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--muted-foreground);
    background: rgba(5, 8, 15, 0.4);
}
.footer-list a { color: var(--foreground); }
.footer-list a:hover { color: var(--primary); }

.footer-legal {
    border-top: 1px solid var(--border);
    padding: var(--space-3);
    max-width: var(--container-wide);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--space-2);
}
.legal-text { font-size: 0.85rem; color: var(--muted-foreground); margin: 0; max-width: none; flex: 1 1 320px; }
.legal-meta { margin: 0; }
.legal-meta a { color: var(--muted-foreground); font-size: 0.85rem; }
.legal-meta a:hover { color: var(--primary); }

/* ============================================
   ANIMATIONS - scroll reveal
   ============================================ */
.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) {
    .animate-on-scroll { opacity: 1; transform: none; transition: none; }
    .btn-pulse { animation: none; }
}

/* SEO prose */
.seo-prose { max-width: 72ch; margin: 0 auto; }
.seo-prose h2 { margin-top: var(--space-5); }
.seo-prose h3 { margin-top: var(--space-4); color: var(--primary); }
.seo-prose p { color: var(--foreground); }
.seo-prose a { color: var(--accent); border-bottom: 1px dashed var(--accent); }
.seo-prose a:hover { text-shadow: var(--glow-orange); }

/* Section dividers and connectors */
.connector-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    box-shadow: var(--glow-cyan);
    margin: var(--space-3) 0;
}

/* ============================================
   SITEMAP - page list
   ============================================ */
.hero-compact { padding: var(--space-6) 0 var(--space-4); }
@media (min-width: 1024px) { .hero-compact { padding: var(--space-7) 0 var(--space-4); } }

.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: sitemap-counter;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    overflow: hidden;
}
.sitemap-item {
    counter-increment: sitemap-counter;
    position: relative;
    padding: var(--space-3) var(--space-3) var(--space-3) 64px;
    border-bottom: 1px solid var(--border);
    transition: background 220ms var(--ease);
}
.sitemap-item:last-child { border-bottom: 0; }
.sitemap-item::before {
    content: counter(sitemap-counter, decimal-leading-zero);
    position: absolute;
    left: var(--space-3);
    top: var(--space-3);
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--accent);
    text-shadow: var(--glow-orange);
    letter-spacing: 0.04em;
}
.sitemap-item:hover { background: rgba(34, 211, 238, 0.04); }
.sitemap-title {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--primary);
    margin-bottom: 10px;
    text-shadow: 0 0 6px rgba(34, 211, 238, 0.45);
    border-bottom: 1px solid transparent;
    transition: border-color 220ms var(--ease);
}
.sitemap-title:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
    text-shadow: var(--glow-orange);
}
.sitemap-desc {
    color: var(--muted-foreground);
    margin: 0;
    font-size: 1rem;
    max-width: none;
}
@media (min-width: 768px) {
    .sitemap-item { padding-left: 80px; }
    .sitemap-item::before { font-size: 1.25rem; left: var(--space-4); }
}