/* ===================================================
   SMAKATOPS V4 — TIER-1 ULTRA PRO CSS
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Grandstander:ital,wght@0,400;0,700;0,900;1,900&family=Poppins:wght@300;400;600;700&family=Space+Mono:wght@400;700&display=swap');

/* ===== ROOT TOKENS ===== */
:root {
    --black: #000005;
    --void: #040714;
    --card: #080e1e;
    --neon: #ff2b2b;
    --neon-dim: rgba(255, 43, 43, 0.18);
    --neon-glow: rgba(255, 43, 43, 0.55);
    --green: #00ff88;
    --ice: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.08);
    --text: #f1f5f9;
    --muted: #64748b;
    --heading: 'Grandstander', cursive;
    --body: 'Poppins', sans-serif;
    --mono: 'Space Mono', monospace;
    --radius: 20px;
    --radius-sm: 10px;
    --transition: 0.35s cubic-bezier(.25, .46, .45, .94);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--black);
    color: var(--text);
    font-family: var(--body);
    overflow-x: hidden;
    cursor: none;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== NOISE GRAIN OVERLAY ===== */
body::after {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.028;
    pointer-events: none;
    z-index: 9000;
    animation: grainShift 0.5s steps(1) infinite;
}

@keyframes grainShift {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-1%, -1%);
    }

    50% {
        transform: translate(1%, 0);
    }

    75% {
        transform: translate(0, 1%);
    }

    100% {
        transform: translate(-1%, 1%);
    }
}

/* ===== CUSTOM CURSOR ===== */
#cursor {
    position: fixed;
    width: 14px;
    height: 14px;
    background: var(--neon);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 16px var(--neon), 0 0 40px var(--neon-dim);
    transition: width 0.2s, height 0.2s, opacity 0.2s;
}

#cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(255, 43, 43, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.12s ease-out, width 0.25s, height 0.25s;
}

body:has(a:hover) #cursor,
body:has(button:hover) #cursor {
    width: 8px;
    height: 8px;
}

body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring {
    width: 60px;
    height: 60px;
    border-color: var(--neon);
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 9990;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    font-family: var(--heading);
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
}

.preloader-logo span {
    color: var(--neon);
    text-shadow: 0 0 30px var(--neon);
}

.preloader-bar-wrap {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.preloader-bar {
    height: 100%;
    width: 0%;
    background: var(--neon);
    border-radius: 4px;
    animation: preload 2.6s cubic-bezier(.4, 0, .2, 1) forwards;
    box-shadow: 0 0 10px var(--neon);
}

@keyframes preload {
    to {
        width: 100%;
    }
}

.preloader-status {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 2px;
}

/* ===== TOAST ===== */
#toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--neon);
    color: #000;
    font-family: var(--heading);
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 100px;
    z-index: 9995;
    font-size: 1rem;
    box-shadow: 0 0 30px var(--neon-glow);
    transition: transform 0.4s cubic-bezier(.34, 1.56, .64, 1), opacity 0.4s;
    opacity: 0;
}

#toast.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* ===== CANVAS BG ===== */
#canvas-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* ===== TOP ALERT BAR ===== */
.alert-bar {
    position: relative;
    z-index: 100;
    background: var(--neon);
    color: #000;
    font-weight: 800;
    font-family: var(--heading);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    overflow: hidden;
    padding: 8px 0;
}

.alert-bar-scroll {
    display: inline-flex;
    gap: 80px;
    animation: alertScroll 18s linear infinite;
    white-space: nowrap;
}

@keyframes alertScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1200px, calc(100vw - 40px));
    z-index: 800;
    background: rgba(4, 7, 20, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background var(--transition);
}

.navbar.scrolled {
    background: rgba(4, 7, 20, 0.95);
}

.nav-logo {
    font-family: var(--heading);
    font-weight: 900;
    font-size: 1.25rem;
    color: #fff;
    letter-spacing: -1px;
}

.nav-logo em {
    color: var(--neon);
    font-style: normal;
}

.nav-links {
    display: flex;
    gap: 6px;
}

.nav-link {
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
    transition: color var(--transition), background var(--transition);
}

.nav-link:hover {
    color: #fff;
    background: var(--ice);
}

.nav-cta {
    background: var(--neon);
    color: #000;
    font-family: var(--heading);
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 10px 24px;
    border-radius: 100px;
    border: none;
    cursor: none;
    box-shadow: 0 0 20px var(--neon-dim);
    transition: box-shadow var(--transition), transform 0.2s;
}

.nav-cta:hover {
    box-shadow: 0 0 40px var(--neon-glow);
    transform: scale(1.04);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 140px 5vw 80px;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 43, 43, 0.4);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--neon);
    margin-bottom: 24px;
}

.hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--neon);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-title {
    font-family: var(--heading);
    font-weight: 900;
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    line-height: 0.95;
    letter-spacing: -3px;
    color: #fff;
    margin-bottom: 24px;
}

.hero-title .neon {
    color: var(--neon);
    filter: drop-shadow(0 0 20px var(--neon));
}

.hero-desc {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--muted);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--neon);
    color: #000;
    font-family: var(--heading);
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 0.5px;
    padding: 16px 32px;
    border-radius: 100px;
    border: none;
    cursor: none;
    box-shadow: 0 0 40px var(--neon-glow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 50px var(--neon-glow);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-family: var(--heading);
    font-weight: 900;
    font-size: 1rem;
    padding: 15px 32px;
    border-radius: 100px;
    border: 1px solid var(--border);
    cursor: none;
    transition: border-color var(--transition), background var(--transition);
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: var(--ice);
}

.hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.hero-stat-val {
    font-family: var(--heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    display: block;
}

.hero-stat-val .dim {
    color: var(--neon);
}

.hero-stat-label {
    font-size: 0.7rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-orb-wrap {
    position: relative;
    width: min(500px, 90vw);
    animation: floatY 7s ease-in-out infinite;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-28px);
    }
}

.hero-img {
    width: 100%;
    filter: drop-shadow(0 0 60px rgba(255, 43, 43, 0.35));
}

.hero-glow-ring {
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 43, 43, 0.12) 0%, transparent 70%);
    animation: pulseRing 4s ease-in-out infinite;
}

@keyframes pulseRing {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

/* ===== MARQUEE ===== */
.marquee-strip {
    background: var(--neon);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
    z-index: 5;
    box-shadow: 0 0 40px var(--neon-glow);
    transform: skewY(-1.5deg) scale(1.02);
}

.marquee-inner {
    display: inline-flex;
    animation: marquee 22s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    font-family: var(--heading);
    font-weight: 900;
    font-size: 1.4rem;
    color: #000;
    padding: 0 40px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ===== SECTION BASE ===== */
.section {
    position: relative;
    z-index: 1;
    padding: 120px 5vw;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--neon);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--neon);
}

.section-title {
    font-family: var(--heading);
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1;
    letter-spacing: -2px;
    color: #fff;
    margin-bottom: 20px;
}

.section-title .neon {
    color: var(--neon);
}

.section-sub {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 600px;
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== CARDS ===== */
.glass-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.glass-card:hover {
    border-color: rgba(255, 43, 43, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px -10px rgba(255, 43, 43, 0.18);
}

/* ===== ABOUT / WHAT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.chip {
    background: var(--neon-dim);
    border: 1px solid rgba(255, 43, 43, 0.3);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

.orb-dot {
    width: 12px;
    height: 12px;
    background: var(--neon);
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    box-shadow: 0 0 8px var(--neon);
}

.blockquote {
    border-left: 3px solid var(--neon);
    padding: 16px 20px;
    background: var(--neon-dim);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: #e2e8f0;
    margin: 20px 0;
}

/* ===== LORE TIMELINE ===== */
.lore-timeline {
    margin-top: 40px;
}

.lore-step {
    display: flex;
    gap: 20px;
    padding-bottom: 36px;
    position: relative;
}

.lore-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    width: 1px;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 43, 43, 0.4), transparent);
}

.lore-step-num {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--neon-dim);
    border: 1px solid rgba(255, 43, 43, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--neon);
}

.lore-step-text p {
    color: var(--muted);
    margin-top: 4px;
    font-size: 0.95rem;
}

/* ===== CHARACTER CARDS ===== */
.char-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.char-card {
    padding: 32px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
    min-height: 300px;
}

.char-card:hover {
    border-color: rgba(255, 43, 43, 0.5);
    box-shadow: 0 20px 60px -10px rgba(255, 43, 43, 0.2);
}

/* Elder Smak — full-width featured card */
.char-card--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 40px;
    min-height: auto;
    padding: 40px;
    background: linear-gradient(135deg, var(--card), rgba(255, 43, 43, 0.06));
    border-color: rgba(255, 43, 43, 0.25);
}

.char-card--featured .char-desc {
    max-width: 700px;
}

.char-card--featured .char-name {
    font-size: 2rem;
}

.char-card .chip-row {
    margin-top: auto;
    padding-top: 20px;
}

.char-tag {
    display: inline-block;
    background: var(--neon-dim);
    border: 1px solid rgba(255, 43, 43, 0.3);
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--neon);
    margin-bottom: 12px;
}

.char-name {
    font-family: var(--heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
}

.char-desc {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ===== TOPPER SPOTLIGHT ===== */
.topper-spotlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 43, 43, 0.04) 0%, transparent 60%);
    border: 1px solid rgba(255, 43, 43, 0.15);
    border-radius: var(--radius);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.topper-spotlight::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 43, 43, 0.08), transparent 70%);
    pointer-events: none;
}

.topper-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--neon);
    border: 1px solid rgba(255, 43, 43, 0.4);
    border-radius: 100px;
    padding: 6px 14px;
    margin-bottom: 24px;
}

.topper-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--neon);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--neon);
    animation: blink 1.5s infinite;
}

.topper-heading {
    font-family: var(--heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.topper-heading span {
    color: var(--neon);
}

.topper-num {
    color: rgba(255, 255, 255, 0.35);
}

.topper-tagline {
    font-family: var(--mono);
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 2;
    margin-bottom: 28px;
    border-left: 2px solid rgba(255, 43, 43, 0.4);
    padding-left: 16px;
}

.topper-traits {
    margin-bottom: 28px;
}

.topper-traits-label {
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.topper-traits ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.topper-traits ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--text);
    font-weight: 500;
}

.topper-traits ul li::before {
    content: '●';
    color: var(--neon);
    font-size: 0.5rem;
    flex-shrink: 0;
}

.topper-stats {
    display: flex;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 28px;
}

.topper-stat {
    flex: 1;
    padding: 16px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.topper-stat:last-child {
    border-right: none;
}

.topper-stat-val {
    display: block;
    font-family: var(--heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--neon);
    filter: drop-shadow(0 0 10px rgba(255, 43, 43, 0.5));
}

.topper-stat-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    margin-top: 2px;
    display: block;
}

.topper-quote {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    position: relative;
}

.topper-quote::before {
    content: '"';
    position: absolute;
    top: -12px;
    left: 16px;
    font-family: var(--heading);
    font-size: 3rem;
    color: var(--neon);
    line-height: 1;
    opacity: 0.5;
}

.topper-quote-text {
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
    font-style: italic;
}

.topper-quote-attr {
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 2px;
    margin-top: 8px;
}

/* IMAGE SIDE */
.topper-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.topper-glow-outer {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 43, 43, 0.18) 0%, transparent 70%);
    animation: pulseRing 5s ease-in-out infinite;
}

.topper-glow-mid {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 43, 43, 0.28) 0%, transparent 70%);
    animation: pulseRing 3.5s ease-in-out infinite reverse;
}

.topper-img {
    position: relative;
    z-index: 2;
    width: min(380px, 100%);
    filter: drop-shadow(0 0 40px rgba(255, 43, 43, 0.5)) drop-shadow(0 0 80px rgba(255, 43, 43, 0.25));
    animation: floatY 6s ease-in-out infinite;
}

.topper-orb-ring {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 1px solid rgba(255, 43, 43, 0.2);
    animation: spinRing 12s linear infinite;
}

.topper-orb-ring::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--neon);
    box-shadow: 0 0 12px var(--neon);
}

@keyframes spinRing {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .topper-spotlight {
        grid-template-columns: 1fr;
        padding: 36px 24px;
        gap: 36px;
    }

    .topper-visual {
        order: -1;
    }

    .topper-img {
        width: min(260px, 90%);
    }

    .topper-glow-outer {
        width: 280px;
        height: 280px;
    }

    .topper-glow-mid {
        width: 180px;
        height: 180px;
    }

    .topper-orb-ring {
        width: 220px;
        height: 220px;
    }
}

/* ===== SECURITY ===== */

.sec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.sec-card {
    background: rgba(0, 255, 136, 0.04);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.sec-card:hover {
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.1);
}

.sec-icon {
    font-size: 2.5rem;
    margin-bottom: 14px;
}

.sec-title {
    color: var(--green);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.sec-sub {
    color: var(--muted);
    font-size: 0.82rem;
}

/* ===== ECOSYSTEM ===== */
.eco-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.eco-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: border-color var(--transition);
}

.eco-card:hover {
    border-color: rgba(255, 43, 43, 0.35);
}

.eco-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1;
}

.eco-title {
    font-family: var(--heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
}

.eco-desc {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.eco-badge {
    display: inline-block;
    background: transparent;
    border: 1px solid rgba(255, 43, 43, 0.4);
    color: var(--neon);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 100px;
}

/* ===== HOW TO BUY ===== */
.steps-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.step {
    position: relative;
    padding: 32px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition), transform 0.25s;
}

.step:hover {
    border-color: rgba(255, 43, 43, 0.4);
    transform: translateY(-6px);
}

.step-bg-num {
    position: absolute;
    right: -10px;
    bottom: -20px;
    font-family: var(--heading);
    font-size: 7rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.step-num {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--neon);
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.step-title {
    font-family: var(--heading);
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
}

.step-desc {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

.ca-box {
    margin-top: 50px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    cursor: pointer;
    transition: border-color var(--transition);
}

.ca-box:hover {
    border-color: rgba(255, 43, 43, 0.5);
}

.ca-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted);
    margin-bottom: 6px;
}

.ca-addr {
    font-family: var(--mono);
    color: var(--neon);
    font-size: 0.9rem;
    word-break: break-all;
}

.ca-copy-btn {
    background: var(--neon-dim);
    border: 1px solid rgba(255, 43, 43, 0.4);
    color: var(--neon);
    border-radius: 100px;
    padding: 10px 20px;
    font-family: var(--heading);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--transition);
}

.ca-copy-btn:hover {
    background: var(--neon);
    color: #000;
}

/* ===== TOKENOMICS ===== */
.tok-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.tok-supply {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
}

.tok-num {
    font-family: var(--heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--neon);
    letter-spacing: -2px;
    margin: 10px 0;
    filter: drop-shadow(0 0 15px var(--neon));
}

.tok-note {
    font-size: 0.9rem;
    color: var(--muted);
}

.tok-divider {
    height: 1px;
    background: var(--border);
    margin: 28px 0;
}

.tok-airdrop-title {
    font-family: var(--heading);
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
}

.airdrop-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.airdrop-row:last-child {
    border-bottom: none;
}

.airdrop-pct {
    font-family: var(--mono);
    color: var(--neon);
    font-weight: 700;
}

.airdrop-label {
    color: var(--text);
    font-size: 0.9rem;
}

.tok-alloc {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.alloc-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.alloc-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.alloc-name {
    font-size: 0.9rem;
    color: var(--text);
}

.alloc-pct {
    font-family: var(--mono);
    color: var(--neon);
    font-size: 0.85rem;
}

.alloc-amt {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: -4px;
}

.bar-track {
    height: 6px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 100px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--neon), #ff7e5f);
    width: 0%;
    transition: width 1.4s cubic-bezier(.2, .6, .3, 1);
}



/* ===== COMPARISON ===== */
.comp-wrap {
    overflow-x: auto;
    margin-top: 50px;
}

.comp-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    min-width: 600px;
}

.comp-table th {
    padding: 14px 24px;
    text-align: left;
    font-family: var(--heading);
    font-size: 1.1rem;
    color: var(--muted);
    font-weight: 900;
}

.comp-table th:last-child {
    color: var(--neon);
}

.comp-table td {
    padding: 18px 24px;
    background: var(--card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    font-size: 0.92rem;
}

.comp-table td:first-child {
    border-left: 1px solid var(--border);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    font-weight: 600;
    color: var(--muted);
}

.comp-table td:last-child {
    border-right: 1px solid var(--border);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.comp-table tr.hl td {
    background: rgba(255, 43, 43, 0.07);
    border-color: rgba(255, 43, 43, 0.25);
}

.comp-table tr.hl td:last-child {
    color: var(--neon);
    font-weight: 700;
}

.comp-X {
    color: #475569;
}

.comp-check {
    color: var(--green);
}

/* ===== ROADMAP ===== */
.roadmap-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 50px;
    max-width: 820px;
    margin-inline: auto;
}

.phase-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 36px;
}

.phase-card:has(.phase-active) {
    border-color: rgba(255, 43, 43, 0.4);
}

.phase-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.phase-title {
    font-family: var(--heading);
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
}

.phase-badge {
    font-size: 0.7rem;
    padding: 4px 12px;
    border-radius: 100px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.phase-active {
    background: rgba(255, 43, 43, 0.15);
    color: var(--neon);
    border: 1px solid rgba(255, 43, 43, 0.4);
}

.phase-pending {
    background: rgba(255, 255, 255, 0.05);
    color: var(--muted);
}

.phase-done {
    background: rgba(0, 255, 136, 0.1);
    color: var(--green);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.phase-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.phase-item {
    display: flex;
    gap: 12px;
    align-items: baseline;
    font-size: 0.9rem;
    color: var(--muted);
}

.phase-item::before {
    content: '▸';
    color: var(--neon);
    flex-shrink: 0;
}


.phase-item.done::before {
    content: '✓';
    color: #00ff88;
    margin-right: 2px;
}

.phase-warning {
    text-align: center;
    background: rgba(255, 43, 43, 0.07);
    border: 1px dashed rgba(255, 43, 43, 0.35);
    border-radius: var(--radius);
    padding: 20px;
    font-family: var(--heading);
    font-size: 1.1rem;
    color: var(--neon);
    margin-top: 16px;
}

/* ===== TEAM ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.team-card {
    text-align: center;
    padding: 36px 28px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color var(--transition), transform var(--transition);
}

.team-card:hover {
    border-color: rgba(255, 43, 43, 0.4);
    transform: translateY(-5px);
}

.team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--neon-dim);
    border: 2px solid rgba(255, 43, 43, 0.4);
    margin: 0 auto 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.team-name {
    font-family: var(--heading);
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--neon);
    font-weight: 600;
}

.team-bio {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 12px;
    line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 820px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-item summary {
    padding: 22px 28px;
    cursor: pointer;
    list-style: none;
    font-family: var(--heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background var(--transition);
}

.faq-item summary:hover {
    background: var(--ice);
}

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--neon);
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item::-webkit-details-marker {
    display: none;
}

.faq-body {
    padding: 4px 28px 22px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===== COMMUNITY ===== */
.community-section {
    text-align: center;
    padding: 120px 5vw;
    background: radial-gradient(ellipse at center, rgba(255, 43, 43, 0.06) 0%, transparent 60%);
    position: relative;
    z-index: 1;
}

.community-title {
    font-family: var(--heading);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -3px;
    margin-bottom: 20px;
}

.community-title .neon {
    color: var(--neon);
}

.community-sub {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 540px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.community-btns {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.swarm-card {
    display: inline-block;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 40px;
    max-width: 480px;
    text-align: left;
}

.swarm-title {
    font-family: var(--heading);
    font-size: 1rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
}

.swarm-meter-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.swarm-track {
    height: 6px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 100px;
    margin: 6px 0 16px;
    overflow: hidden;
}

.swarm-fill {
    height: 100%;
    width: 92%;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--neon), #ff7e5f);
    animation: swarmPulse 2s ease-in-out infinite;
}

@keyframes swarmPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.65;
    }
}

.swarm-feed {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--muted);
}

.swarm-feed-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.swarm-dot {
    width: 6px;
    height: 6px;
    background: var(--neon);
    border-radius: 50%;
    animation: blink 1.5s infinite;
    flex-shrink: 0;
}

/* ===== FOOTER ===== */
footer {
    border-top: 1px solid var(--border);
    padding: 40px 5vw;
    position: relative;
    z-index: 1;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo {
    font-family: var(--heading);
    font-weight: 900;
    font-size: 1.4rem;
}

.footer-logo span {
    color: var(--neon);
}

.footer-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color var(--transition);
}

.footer-link:hover {
    color: var(--neon);
}

.footer-copy {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid var(--border);
    font-size: 0.72rem;
    color: var(--muted);
    text-align: center;
    line-height: 1.8;
}

/* ===== PARTNERS ===== */
.partners-section {
    padding: 50px 5vw;
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.partners-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    filter: grayscale(1);
    opacity: 0.35;
    transition: filter 0.5s, opacity 0.5s;
}

.partners-list:hover {
    filter: grayscale(0);
    opacity: 1;
}

.partner-badge {
    font-family: var(--mono);
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 20px;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

/* ===== MERCH ===== */
.merch-section {
    padding: 120px 5vw;
    position: relative;
    z-index: 1;
}

.merch-card {
    background: linear-gradient(135deg, var(--card), #0c0f1f);
    border: 1px solid rgba(255, 43, 43, 0.3);
    border-radius: var(--radius);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.merch-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 43, 43, 0.05), transparent 60%);
}

.merch-label {
    display: inline-block;
    background: var(--neon);
    color: #000;
    font-family: var(--heading);
    font-weight: 900;
    font-size: 0.8rem;
    padding: 6px 18px;
    border-radius: 100px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.merch-title {
    font-family: var(--heading);
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
    margin-bottom: 12px;
}

.merch-sub {
    color: var(--muted);
    font-size: 1rem;
}

/* =======================================================
   RESPONSIVE — TIER-1 FULL SYSTEM
   1100px = Tablet | 768px = Mobile | 480px = Small
   ======================================================= */

/* ===== HAMBURGER BUTTON (hidden on desktop) ===== */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 5, 0.97);
    z-index: 700;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    font-family: var(--heading);
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    transition: color 0.2s;
}

.mobile-nav a:hover {
    color: var(--neon);
}

/* ===== 1100px — TABLET ===== */
@media (max-width: 1100px) {

    /* Nav */
    .nav-links {
        gap: 2px;
    }

    .nav-link {
        padding: 8px 10px;
        font-size: 0.78rem;
    }

    /* Hero */
    .hero {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        padding: 140px 4vw 80px;
    }

    /* Character grid → 2 columns */
    .char-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Ecosystem grid → 3 columns */
    .eco-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Security grid → 3 columns */
    .sec-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Team grid → 2 columns */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Steps → 2 cols */
    .steps-wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Tokenomics */
    .tok-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== 768px — MOBILE ===== */
@media (max-width: 768px) {

    /* Globals */
    .section {
        padding: 80px 5vw;
    }

    /* Alert bar smaller */
    .alert-bar {
        font-size: 0.7rem;
    }

    /* Navbar → hide links, show hamburger */
    .navbar {
        top: 16px;
        padding: 14px 20px;
        border-radius: 16px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-hamburger {
        display: flex;
        cursor: none;
    }

    /* Hero → single column */
    .hero {
        grid-template-columns: 1fr;
        padding: 130px 5vw 60px;
        text-align: center;
        gap: 40px;
    }

    .hero-visual {
        order: -1;
    }

    .hero-orb-wrap {
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-desc {
        margin: 0 auto 40px;
    }

    /* About  */
    .about-grid {
        grid-template-columns: 1fr;
    }

    /* Characters → 1 column */
    .char-grid {
        grid-template-columns: 1fr;
    }

    /* Featured card → stack vertically */
    .char-card--featured {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Security → 2 columns */
    .sec-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Ecosystem → 2 columns */
    .eco-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Steps → 1 column */
    .steps-wrap {
        grid-template-columns: 1fr;
    }

    /* Comparison table — horizontal scroll already enabled, make text smaller */
    .comp-table th,
    .comp-table td {
        font-size: 0.78rem;
        padding: 10px 12px;
    }

    /* Tokenomics */
    .tok-grid {
        grid-template-columns: 1fr;
    }

    /* Roadmap list stays 1 col by default — just reduce padding */
    .phase-card {
        padding: 28px 24px;
    }

    /* Team → 2 col */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Merch card */
    .merch-card {
        padding: 60px 32px;
    }

    /* Community */
    .community-btns {
        flex-direction: column;
        align-items: center;
    }

    .community-btns a {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    /* Footer */
    .footer-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Partners */
    .partners-list {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    /* Section title smaller */
    .section-title {
        letter-spacing: -1px;
    }
}

/* ===== 480px — SMALL MOBILE ===== */
@media (max-width: 480px) {

    /* Globals */
    .section {
        padding: 60px 4vw;
    }

    /* Hero tighter */
    .hero {
        padding: 110px 4vw 50px;
    }

    .hero-stats {
        gap: 16px;
    }

    .hero-stat-val {
        font-size: 1.4rem;
    }

    /* Nav smaller */
    .navbar {
        top: 12px;
        padding: 12px 16px;
    }

    .nav-logo {
        font-size: 1rem;
    }

    /* Security → 1 column */
    .sec-grid {
        grid-template-columns: 1fr;
    }

    /* Ecosystem → 1 column */
    .eco-grid {
        grid-template-columns: 1fr;
    }

    /* Team → 1 column */
    .team-grid {
        grid-template-columns: 1fr;
    }

    /* Char grid already 1 col */

    /* Steps labels */
    .step-bg-num {
        font-size: 4rem;
    }

    /* CA box */
    .ca-box {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .ca-copy-btn {
        width: 100%;
        text-align: center;
    }

    /* Merch */
    .merch-card {
        padding: 40px 20px;
    }

    .merch-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    /* Preloader logo */
    .preloader-logo {
        font-size: 2.5rem;
    }

    /* Comparison table */
    .comp-wrap {
        margin-top: 30px;
    }

    .comp-table th,
    .comp-table td {
        font-size: 0.7rem;
        padding: 8px 10px;
    }
}

/* ===== SCROLL PROGRESS BAR ===== */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--neon), #ff7e5f, var(--neon));
    background-size: 200% 100%;
    animation: shimmerBar 2s linear infinite;
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(255, 43, 43, 0.8);
}

@keyframes shimmerBar {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

/* ===== CLICK BURST PARTICLES ===== */
.click-burst {
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--neon);
    box-shadow: 0 0 6px var(--neon);
    animation: burstFly var(--dur, 0.6s) ease-out forwards;
    transform-origin: center;
}

@keyframes burstFly {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(var(--tx), var(--ty)) scale(0);
        opacity: 0;
    }
}

/* ===== FAQ SMOOTH ACCORDION ===== */
.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: #fff;
    font-family: var(--body);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
    transition: color 0.2s;
}

.faq-q:hover {
    color: var(--neon);
}

.faq-arrow {
    flex-shrink: 0;
    font-size: 1.1rem;
    color: var(--neon);
    transition: transform 0.3s ease;
    display: inline-block;
}

.faq-q[aria-expanded="true"] .faq-arrow {
    transform: rotate(180deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.3s ease,
        opacity 0.3s ease;
    padding-bottom: 0;
    opacity: 0;
}

.faq-body.open {
    max-height: 300px;
    padding: 0 24px 20px;
    opacity: 1;
}