/* ============================================
   DESIGN TOKENS - Cyberpunk Dark Theme
   Single dark theme (no light/dark switcher)
   Neon blue, purple, green on obsidian background
   ============================================ */
:root {
    /* Background - near-black obsidian with blue tint */
    --background: #0a0a1a;
    --background-alt: #0d0d1f;

    /* Foreground - soft white like moonlight */
    --foreground: #e2e8f0;

    /* Card - dark violet */
    --card: #131325;
    --card-alt: #1a1a30;
    --card-foreground: #e2e8f0;

    /* Popover */
    --popover: #0f0f1f;
    --popover-foreground: #e2e8f0;

    /* Primary - neon cyan like glowing circuit lines */
    --primary: #22d3ee;
    --primary-foreground: #0a0a1a;

    /* Secondary - deep violet like shadowed neon */
    --secondary: #4c1d95;
    --secondary-foreground: #e2e8f0;

    /* Muted - medium gray like storm clouds */
    --muted: #1e293b;
    --muted-foreground: #94a3b8;

    /* Accent - bright neon green like laser light */
    --accent: #22c55e;
    --accent-foreground: #0a0a1a;

    /* Destructive */
    --destructive: #ea0d33;
    --destructive-foreground: #ffffff;

    /* Border & input */
    --border: #1e293b;
    --input: #131325;
    --ring: #22d3ee;

    /* Neon glow colors */
    --neon-blue: #22d3ee;
    --neon-purple: #a855f7;
    --neon-green: #22c55e;

    /* Layout */
    --header-height: 60px;
    --max-width: 1200px;

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

    /* Color scheme */
    color-scheme: dark light;
}

/* ============================================
   LIGHT THEME OVERRIDES - prefers-color-scheme
   Overrides all tokens for light mode so the
   browser/system light preference is respected.
   ============================================ */
@media (prefers-color-scheme: light) {
    :root {
        --background: #f8fafc;
        --background-alt: #f1f5f9;

        --foreground: #0f172a;

        --card: #ffffff;
        --card-alt: #f8fafc;
        --card-foreground: #0f172a;

        --popover: #ffffff;
        --popover-foreground: #0f172a;

        --primary: #077893;
        --primary-foreground: #ffffff;

        --secondary: #7c3aed;
        --secondary-foreground: #ffffff;

        --muted: #e2e8f0;
        --muted-foreground: #617086;

        --accent: #117f3a;
        --accent-foreground: #ffffff;

        --destructive: #dc2626;
        --destructive-foreground: #ffffff;

        --border: #cbd5e1;
        --input: #ffffff;
        --ring: #077893;

        --neon-blue: #077893;
        --neon-purple: #9333ea;
        --neon-green: #117f3a;

        color-scheme: light;
    }
}

@media (min-width: 768px) {
    :root {
        --header-height: 72px;
    }
}

/* ============================================
   BASE RESET & TYPOGRAPHY
   Orbitron headings, Rajdhani body text
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: "Rajdhani", sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--background);
    background-image:
        radial-gradient(circle at 20% 50%, rgba(34, 211, 238, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.03) 0%, transparent 50%);
    background-attachment: fixed;
}

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

section {
    overflow: clip;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Orbitron", sans-serif;
    color: var(--foreground);
    line-height: 1.3;
    margin: 0 0 16px 0;
}

h1 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

h3 {
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 500;
    letter-spacing: 0.01em;
}

h4 {
    font-size: 18px;
    font-weight: 500;
}

p {
    margin: 0 0 16px 0;
    overflow-wrap: break-word;
}

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

a:hover {
    color: var(--accent);
    text-decoration: underline;
}

ul, ol {
    padding-left: 24px;
    margin: 0 0 16px 0;
}

li {
    margin-bottom: 8px;
    line-height: 1.6;
    overflow-wrap: break-word;
}

blockquote {
    margin: 24px 0;
    padding-left: 24px;
    border-left: 3px solid var(--primary);
    font-style: italic;
    color: var(--muted-foreground);
}

blockquote cite {
    display: block;
    margin-top: 8px;
    font-style: normal;
    font-size: 14px;
    color: var(--primary);
}

figure {
    margin: 24px 0;
}

figcaption {
    font-family: "Rajdhani", sans-serif;
    font-size: 14px;
    color: var(--muted-foreground);
    text-align: center;
    margin-top: 8px;
}

hr {
    border: none;
    height: 1px;
    background: var(--border);
    margin: 32px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

th, td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    overflow-wrap: break-word;
}

th {
    font-family: "Orbitron", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

td {
    font-family: "Rajdhani", sans-serif;
    font-size: 16px;
    color: var(--foreground);
}

/* ============================================
   LAYOUT - Container, sections, grids
   ============================================ */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

.section {
    padding: 48px 0;
}

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

@media (min-width: 768px) {
    .section {
        padding: 80px 0;
    }
}

.section-header {
    margin-bottom: 40px;
}

.section-title {
    font-family: "Orbitron", sans-serif;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--foreground);
    margin-bottom: 12px;
    line-height: 1.3;
}

.section-subtitle {
    font-family: "Rajdhani", sans-serif;
    font-size: 18px;
    color: var(--muted-foreground);
    margin-bottom: 0;
    line-height: 1.6;
    max-width: 700px;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

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

.section-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.section-grid > * {
    min-width: 0;
}

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

@media (min-width: 1024px) {
    .section-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .section-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .section-grid--auto { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
}

.stat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
}

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

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

/* ============================================
   SKIP LINK - Accessibility
   ============================================ */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 12px 24px;
    font-family: "Orbitron", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2000;
    transition: top var(--transition);
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
    color: var(--primary-foreground);
}

/* ============================================
   HEADER & NAVIGATION
   Sticky header with logo, nav, CTA buttons
   Mobile: hamburger drawer below 1024px
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    flex-shrink: 0;
    background: var(--background);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 0 rgba(34, 211, 238, 0.1);
}

.site-header.is-scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(34, 211, 238, 0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.site-brand {
    font-family: "Orbitron", sans-serif;
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--foreground);
    text-decoration: none;
    flex-shrink: 0;
}

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

.site-brand__text {
    display: inline-block;
}

.site-brand__accent {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
}

/* Hamburger button */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    z-index: 999;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform var(--transition), visibility var(--transition);
    overflow-y: auto;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
}

.main-nav.is-open {
    transform: translateX(0);
    visibility: visible;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
}

.nav-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 16px;
    font-family: "Orbitron", sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--foreground);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: color var(--transition), background var(--transition);
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(34, 211, 238, 0.05);
    text-decoration: none;
}

.header-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

/* Desktop nav */
@media (min-width: 1024px) {
    .site-header {
        background: rgba(10, 10, 26, 0.85);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .hamburger {
        display: none;
    }

    .main-nav {
        position: static;
        transform: none;
        visibility: visible;
        background: transparent;
        flex-direction: row;
        align-items: center;
        padding: 0;
        overflow: visible;
        margin-left: auto;
    }

    .nav-list {
        flex-direction: row;
        gap: 32px;
        margin: 0;
    }

    .nav-link {
        min-height: auto;
        padding: 8px 0;
        border-bottom: none;
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: width var(--transition);
    }

    .nav-link:hover::after {
        width: 100%;
    }

    .header-cta {
        flex-direction: row;
        gap: 12px;
        margin-left: 24px;
        margin-top: 0;
    }
}

/* ============================================
   BUTTONS - Neon cyberpunk style
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: "Orbitron", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    min-height: 44px;
    text-align: center;
}

.btn:hover {
    text-decoration: none;
}

.btn--primary {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.3);
}

.btn--primary:hover {
    color: var(--primary-foreground);
    box-shadow: 0 0 40px rgba(34, 211, 238, 0.5);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn--outline:hover {
    color: var(--primary);
    background: rgba(34, 211, 238, 0.1);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.2);
}

.btn--accent {
    background: var(--accent);
    color: var(--accent-foreground);
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.btn--accent:hover {
    color: var(--accent-foreground);
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.5);
    transform: translateY(-2px);
}

.btn--pulse {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(34, 211, 238, 0.3); }
    50% { box-shadow: 0 0 40px rgba(34, 211, 238, 0.6); }
}

/* ============================================
   HERO - Full-bleed banner section
   Dark overlay, neon light streaks, model imagery
   ============================================ */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: clip;
    padding: 60px 0;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 26, 0.75) 0%, rgba(10, 10, 26, 0.9) 100%);
    z-index: 1;
}

.hero__streaks {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        linear-gradient(115deg, transparent 30%, rgba(34, 211, 238, 0.08) 40%, transparent 50%),
        linear-gradient(245deg, transparent 40%, rgba(168, 85, 247, 0.06) 50%, transparent 60%),
        linear-gradient(175deg, transparent 45%, rgba(34, 197, 94, 0.04) 52%, transparent 58%);
}

.hero__content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero__title {
    font-family: "Orbitron", sans-serif;
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--foreground);
    text-shadow: 0 0 30px rgba(34, 211, 238, 0.4);
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero__subtitle {
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(17px, 2vw, 20px);
    color: var(--muted-foreground);
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 600px;
}

@media (min-width: 768px) {
    .hero {
        min-height: 600px;
    }
}

/* ============================================
   INFO CARDS - Content containers
   Dark violet background, neon border glow, hover scale
   ============================================ */
.info-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    transition: transform var(--transition), box-shadow var(--transition);
    min-width: 0;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--neon-purple));
    opacity: 0.5;
    transition: opacity var(--transition);
}

.info-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.2), 0 0 40px rgba(124, 58, 237, 0.1);
}

.info-card:hover::before {
    opacity: 1;
}

.info-card__image {
    margin: -16px -16px 16px -16px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

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

.info-card__icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
    line-height: 1;
}

.info-card__title {
    font-family: "Orbitron", sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.03em;
    margin-bottom: 8px;
    color: var(--foreground);
}

.info-card__description {
    font-family: "Rajdhani", sans-serif;
    font-size: 16px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 0;
}

.info-card__link {
    display: inline-block;
    margin-top: 12px;
    color: var(--primary);
    font-family: "Orbitron", sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: color var(--transition);
}

.info-card__link:hover {
    color: var(--accent);
}

/* ============================================
   STAT BLOCKS - Oversized numerical highlights
   Orbitron numerals with neon glow, count-up animation
   ============================================ */
.stat-block {
    text-align: center;
    padding: 24px 16px;
}

.stat-block__number {
    display: block;
    font-family: "Orbitron", sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-block__number--green {
    color: var(--accent);
    text-shadow: 0 0 30px rgba(34, 197, 94, 0.4);
}

.stat-block__number--cyan {
    color: var(--primary);
    text-shadow: 0 0 30px rgba(34, 211, 238, 0.4);
}

.stat-block__label {
    display: block;
    font-family: "Rajdhani", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-block__source {
    display: block;
    font-family: "Rajdhani", sans-serif;
    font-size: 13px;
    color: var(--muted-foreground);
    margin-top: 4px;
    opacity: 0.7;
}

/* ============================================
   FAQ ACCORDION - Expandable Q&A
   Native details/summary, neon cyan left border on open
   ============================================ */
.faq-accordion {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.faq-accordion__item {
    border-bottom: 1px solid var(--border);
    background: var(--card);
    border-left: 3px solid transparent;
    transition: border-left-color var(--transition);
}

.faq-accordion__item:last-child {
    border-bottom: none;
}

.faq-accordion__item[open] {
    border-left-color: var(--primary);
}

.faq-accordion__question {
    font-family: "Orbitron", sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--foreground);
    list-style: none;
    transition: background var(--transition);
}

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

.faq-accordion__question:hover {
    background: rgba(34, 211, 238, 0.05);
}

.faq-accordion__chevron {
    flex-shrink: 0;
    font-size: 12px;
    color: var(--primary);
    transition: transform var(--transition);
}

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

.faq-accordion__answer {
    padding: 0 24px 20px 24px;
    font-family: "Rajdhani", sans-serif;
    font-size: 16px;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.faq-accordion__answer p {
    margin: 0;
}

/* ============================================
   CTA BANNER - Full-width call-to-action
   Dark obsidian background, diagonal neon streaks
   ============================================ */
.cta-banner {
    position: relative;
    background: var(--card);
    padding: 48px 24px;
    text-align: center;
    overflow: clip;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-banner__streaks {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, transparent 30%, rgba(34, 211, 238, 0.06) 40%, transparent 50%),
        linear-gradient(245deg, transparent 40%, rgba(168, 85, 247, 0.04) 50%, transparent 60%);
    pointer-events: none;
}

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

.cta-banner__title {
    font-family: "Orbitron", sans-serif;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--foreground);
    margin-bottom: 12px;
}

.cta-banner__subtitle {
    font-family: "Rajdhani", sans-serif;
    font-size: 17px;
    color: var(--muted-foreground);
    margin-bottom: 28px;
}

.cta-banner__micro-copy {
    font-family: "Rajdhani", sans-serif;
    font-size: 13px;
    color: var(--muted-foreground);
    margin-top: 16px;
    opacity: 0.7;
}

@media (min-width: 768px) {
    .cta-banner {
        padding: 80px 24px;
    }
}

/* ============================================
   ENGAGEMENT PATTERNS - Callouts, quotes, badges
   ============================================ */

/* Callout / highlight box */
.callout {
    background: var(--card);
    border-left: 3px solid var(--primary);
    border-radius: 8px;
    padding: 20px 24px;
    margin: 24px 0;
}

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

.callout--warning {
    border-left-color: var(--destructive);
}

.callout__title {
    font-family: "Orbitron", sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--foreground);
}

.callout p {
    margin-bottom: 0;
}

/* Summary / TL;DR box */
.summary-box {
    background: linear-gradient(135deg, var(--card), var(--background-alt));
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

.summary-box__title {
    font-family: "Orbitron", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 12px;
}

/* Pull quote */
.pull-quote {
    font-family: "Orbitron", sans-serif;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 500;
    line-height: 1.4;
    color: var(--primary);
    border-left: 3px solid var(--primary);
    padding-left: 24px;
    margin: 32px 0;
    font-style: normal;
}

/* Badge / pill */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 100px;
    font-family: "Orbitron", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge--accent {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: var(--accent);
}

.badge--warning {
    background: rgba(244, 63, 94, 0.1);
    border-color: rgba(244, 63, 94, 0.3);
    color: var(--destructive);
}

/* Trust badges row */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: "Rajdhani", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted-foreground);
    letter-spacing: 0.02em;
}

/* Comparison table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    font-family: "Orbitron", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--card);
}

.comparison-table .col-highlight {
    background: rgba(34, 211, 238, 0.05);
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
}

.comparison-table .col-highlight th {
    background: rgba(34, 211, 238, 0.1);
}

/* Content image wrapper */
.content-image {
    border-radius: 12px;
    overflow: hidden;
    margin: 24px 0;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Divider */
.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 32px 0;
    border: none;
}

/* General details/summary (non-FAQ) */
details:not(.faq-accordion__item) {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 12px;
}

details:not(.faq-accordion__item) > summary {
    cursor: pointer;
    font-family: "Orbitron", sans-serif;
    font-weight: 500;
    color: var(--foreground);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

details:not(.faq-accordion__item) > summary::-webkit-details-marker {
    display: none;
}

details:not(.faq-accordion__item) > summary::after {
    content: '\25BC';
    font-size: 12px;
    color: var(--primary);
    transition: transform var(--transition);
}

details:not(.faq-accordion__item)[open] > summary::after {
    transform: rotate(180deg);
}

/* ============================================
   PROSE - Article content styling
   Comfortable reading spacing
   ============================================ */
.prose {
    max-width: 700px;
}

.prose p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.prose h2 {
    margin-top: 48px;
    margin-bottom: 16px;
}

.prose h3 {
    margin-top: 32px;
    margin-bottom: 12px;
}

.prose ul, .prose ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.prose li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.prose a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.prose a:hover {
    color: var(--accent);
}

.prose strong {
    color: var(--foreground);
    font-weight: 600;
}

/* ============================================
   FOOTER - Site footer
   Four-column grid, payment badges, license, 18+
   ============================================ */
.site-footer {
    flex-shrink: 0;
    background: var(--background-alt);
    border-top: 1px solid var(--border);
    padding: 48px 0 24px 0;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-heading {
    font-family: "Orbitron", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-family: "Rajdhani", sans-serif;
    font-size: 16px;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    text-decoration: none;
}

.footer-text {
    font-family: "Rajdhani", sans-serif;
    font-size: 15px;
    color: var(--muted-foreground);
    line-height: 1.6;
    margin: 0;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    align-items: center;
    text-align: center;
}

.footer-copyright {
    font-family: "Rajdhani", sans-serif;
    font-size: 14px;
    color: var(--muted-foreground);
    margin: 0;
}

.footer-sitemap {
    font-family: "Rajdhani", sans-serif;
    font-size: 14px;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-sitemap:hover {
    color: var(--primary);
    text-decoration: none;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

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

/* ============================================
   COMPARISON TABLE - Mobile scroll wrapper
   ============================================ */
.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 24px 0;
}

.comparison-table-wrapper .comparison-table {
    min-width: 500px;
}

/* ============================================
   ANIMATIONS - Scroll reveal, staggered
   ============================================ */
.js-enabled .animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition-delay: var(--delay, 0s);
}

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

/* Staggered delays for grid children */
.section-grid .animate-on-scroll:nth-child(2) { --delay: 0.1s; }
.section-grid .animate-on-scroll:nth-child(3) { --delay: 0.2s; }
.section-grid .animate-on-scroll:nth-child(4) { --delay: 0.3s; }
.section-grid .animate-on-scroll:nth-child(5) { --delay: 0.4s; }
.section-grid .animate-on-scroll:nth-child(6) { --delay: 0.5s; }

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-muted { color: var(--muted-foreground); }
.glow-text { text-shadow: 0 0 20px currentColor; }

.neon-border {
    border: 1px solid var(--primary);
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.2), inset 0 0 10px rgba(34, 211, 238, 0.05);
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    min-width: 0;
}

.card--featured {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.15);
}

[id] {
    scroll-margin-top: calc(var(--header-height) + 20px);
}

#main-content {
    flex: 1 0 auto;
}

/* ============================================
   SCROLLBAR - Cyberpunk themed
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
}

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

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

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

/* ============================================
   ACCESSIBILITY - Focus & reduced motion
   ============================================ */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .js-enabled .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   LIGHT THEME - Hardcoded color overrides
   These elements use literal dark rgba values
   that bypass CSS variables, so they must be
   overridden explicitly for light mode.
   ============================================ */
@media (prefers-color-scheme: light) {
    body {
        background-image:
            radial-gradient(circle at 20% 50%, rgba(8, 145, 178, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(147, 51, 234, 0.05) 0%, transparent 50%);
    }

    .site-header.is-scrolled {
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12), 0 1px 0 rgba(8, 145, 178, 0.2);
    }

    .hero__overlay {
        background: linear-gradient(180deg, rgba(248, 250, 252, 0.75) 0%, rgba(248, 250, 252, 0.92) 100%);
    }

    .hero__streaks {
        background:
            linear-gradient(115deg, transparent 30%, rgba(8, 145, 178, 0.08) 40%, transparent 50%),
            linear-gradient(245deg, transparent 40%, rgba(147, 51, 234, 0.06) 50%, transparent 60%),
            linear-gradient(175deg, transparent 45%, rgba(22, 163, 74, 0.04) 52%, transparent 58%);
    }

    .hero__title {
        text-shadow: 0 0 30px rgba(8, 145, 178, 0.3);
    }

    .nav-link:hover {
        background: rgba(8, 145, 178, 0.07);
    }

    .btn--primary {
        box-shadow: 0 0 20px rgba(8, 145, 178, 0.25);
    }

    .btn--primary:hover {
        box-shadow: 0 0 40px rgba(8, 145, 178, 0.45);
    }

    .btn--outline:hover {
        background: rgba(8, 145, 178, 0.08);
        box-shadow: 0 0 20px rgba(8, 145, 178, 0.15);
    }

    .btn--accent {
        box-shadow: 0 0 20px rgba(22, 163, 74, 0.25);
    }

    .btn--accent:hover {
        box-shadow: 0 0 40px rgba(22, 163, 74, 0.45);
    }

    @keyframes pulse-glow {
        0%, 100% { box-shadow: 0 0 20px rgba(8, 145, 178, 0.25); }
        50% { box-shadow: 0 0 40px rgba(8, 145, 178, 0.5); }
    }

    .info-card:hover {
        box-shadow: 0 0 20px rgba(8, 145, 178, 0.15), 0 0 40px rgba(124, 58, 237, 0.08);
    }

    .faq-accordion__question:hover {
        background: rgba(8, 145, 178, 0.05);
    }

    .cta-banner__streaks {
        background:
            linear-gradient(115deg, transparent 30%, rgba(8, 145, 178, 0.06) 40%, transparent 50%),
            linear-gradient(245deg, transparent 40%, rgba(147, 51, 234, 0.04) 50%, transparent 60%);
    }

    .badge {
        background: rgba(8, 145, 178, 0.1);
        border-color: rgba(8, 145, 178, 0.3);
    }

    .badge--accent {
        background: rgba(22, 163, 74, 0.1);
        border-color: rgba(22, 163, 74, 0.3);
    }

    .badge--warning {
        background: rgba(220, 38, 38, 0.1);
        border-color: rgba(220, 38, 38, 0.3);
    }

    .comparison-table .col-highlight {
        background: rgba(8, 145, 178, 0.05);
    }

    .comparison-table .col-highlight th {
        background: rgba(8, 145, 178, 0.1);
    }

    .neon-border {
        box-shadow: 0 0 10px rgba(8, 145, 178, 0.15), inset 0 0 10px rgba(8, 145, 178, 0.04);
    }

    .card--featured {
        box-shadow: 0 0 20px rgba(8, 145, 178, 0.12);
    }

    @media (min-width: 1024px) {
        .site-header {
            background: rgba(248, 250, 252, 0.9);
        }
    }
}
