/* ══════════════════════════════════════════════════════════════
   Marketing site — aligned with WebUI (TWW / Max Combat Assistant)
   Tokens & patterns from WebUI/css/style.css
   ══════════════════════════════════════════════════════════════ */

:root {
    --bg-deep: #0b0e1a;
    --bg-dark: #0f1525;
    --bg-card: rgba(16, 22, 40, 0.75);
    --bg-card-solid: #111a30;
    --bg-card-border: rgba(100, 160, 255, 0.08);
    --bg-input: rgba(8, 12, 24, 0.95);

    --accent: #00DDB3;
    --accent-glow: rgba(0, 221, 179, 0.3);
    --accent-dim: rgba(0, 221, 179, 0.1);
    --accent-light: #33FFD0;

    --gold: #E8C87A;
    --gold-glow: rgba(232, 200, 122, 0.2);

    --text-primary: #d4dae8;
    --text-secondary: #7a88a8;
    --text-dim: #3e4a68;

    --window-glow: rgba(40, 80, 200, 0.25);
    --window-border: rgba(60, 100, 220, 0.2);

    --border: rgba(80, 120, 200, 0.1);
    --border-hover: rgba(80, 120, 200, 0.2);

    --radius: 10px;
    --radius-sm: 6px;
    --glass: blur(16px) saturate(160%);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);

    /* Aliases for older markup / inline vars */
    --text-main: var(--text-primary);
    --text-muted: var(--text-secondary);
    --primary: var(--accent);
    --primary-hover: var(--accent-light);
    --bg-panel: var(--bg-card-solid);
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: var(--bg-deep);
    background-image:
        radial-gradient(900px circle at 12% 16%, rgba(0, 221, 179, 0.09) 0%, transparent 58%),
        radial-gradient(820px circle at 88% 14%, rgba(40, 80, 200, 0.1) 0%, transparent 60%),
        radial-gradient(980px circle at 50% 86%, rgba(80, 120, 200, 0.08) 0%, transparent 62%),
        linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-deep) 100%);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    min-height: 100vh;
}

/* WebUI body::before — outer frame glow */
body::before {
    content: '';
    position: fixed;
    inset: -2px;
    background: linear-gradient(135deg,
            rgba(40, 80, 200, 0.15),
            rgba(0, 221, 179, 0.08),
            rgba(40, 80, 200, 0.15));
    z-index: -2;
    filter: blur(1px);
    pointer-events: none;
}

/* WebUI license.html — soft radial atmosphere */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        radial-gradient(ellipse 600px 400px at 20% 30%, rgba(0, 221, 179, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 500px 350px at 80% 70%, rgba(40, 80, 200, 0.05) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    background-size: 44px 44px, 44px 44px, auto, auto, 120px 120px;
    mask-image: radial-gradient(circle at center, black 42%, transparent 100%);
    mix-blend-mode: soft-light;
    animation: siteBgShift 12s ease-in-out infinite alternate;
    z-index: -1;
    pointer-events: none;
}

@keyframes siteBgShift {
    0% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

/* ── Nav (titlebar-like) ── */
nav.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(180deg, rgba(14, 20, 36, 0.97), rgba(10, 16, 30, 0.98));
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.site-nav-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 14px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    min-height: 56px;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: var(--radius);
    border: 1px solid rgba(120, 170, 255, 0.12);
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.06),
            rgba(255, 255, 255, 0.02),
            rgba(255, 255, 255, 0.06));
    box-shadow:
        0 0 18px var(--accent-dim),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    text-shadow: 0 0 14px var(--accent-glow);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.logo:hover {
    border-color: rgba(120, 170, 255, 0.22);
    box-shadow: 0 0 22px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.logo-mark {
    font-size: 18px;
    line-height: 1;
    filter: drop-shadow(0 0 6px var(--accent-glow));
}

.logo-accent {
    color: var(--accent);
}

.realm-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(232, 200, 122, 0.28);
    background: linear-gradient(120deg, rgba(232, 200, 122, 0.06), rgba(16, 22, 40, 0.86));
    box-shadow: 0 0 18px rgba(232, 200, 122, 0.08);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.realm-badge:hover {
    border-color: rgba(232, 200, 122, 0.5);
    box-shadow: 0 0 22px rgba(232, 200, 122, 0.2);
    transform: translateY(-1px);
}

.realm-badge-logo {
    height: 22px;
    width: auto;
    object-fit: contain;
    display: block;
}

.realm-badge-text {
    color: var(--gold);
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links>a:not(.btn) {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color var(--transition);
}

.nav-links>a:not(.btn):hover {
    color: var(--accent);
}

.nav-divider {
    width: 1px;
    height: 18px;
    background: var(--border);
    margin: 0 8px;
}

.nav-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 221, 179, 0.08);
    border: 1px solid rgba(0, 221, 179, 0.2);
    color: #00DDB3;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all var(--transition);
}

.nav-status-badge:hover {
    background: rgba(0, 221, 179, 0.15);
    border-color: rgba(0, 221, 179, 0.3);
    box-shadow: 0 0 12px rgba(0, 221, 179, 0.2);
    color: #33FFD0;
}

.status-pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00DDB3;
    box-shadow: 0 0 6px #00DDB3;
    position: relative;
}

.status-pulse::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #00DDB3;
    animation: statusPulseAnim 2s ease-out infinite;
}

@keyframes statusPulseAnim {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Primary CTA — WebUI .btn-start */
a.btn,
button.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 28px;
    min-height: 42px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--bg-deep);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 20px var(--accent-glow);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.25);
}

a.btn:hover,
button.btn:hover {
    filter: brightness(1.12);
    box-shadow: 0 4px 28px var(--accent-glow);
    transform: scale(1.02);
}

a.btn:disabled,
button.btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

/* Secondary — WebUI .btn-action */
a.btn-action,
button.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 20px;
    min-height: 38px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(16, 22, 40, 0.85);
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition);
}

a.btn-action:hover,
button.btn-action:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-dim);
    box-shadow: 0 0 14px var(--accent-glow);
}

/* Outline combo (dashboard injected button) */
button.btn.btn-outline,
a.btn.btn-outline {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    box-shadow: none;
    text-shadow: none;
    font-weight: 600;
    letter-spacing: 1px;
}

button.btn.btn-outline:hover,
a.btn.btn-outline:hover {
    background: var(--accent-dim);
    filter: none;
    transform: none;
    box-shadow: 0 0 16px var(--accent-glow);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-lg {
    padding: 14px 36px;
    font-size: 13px;
    letter-spacing: 2.5px;
}

/* ── Hero — Cinematic ── */
.hero {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    align-items: center;
    gap: clamp(32px, 5vw, 72px);
    min-height: min(92vh, 960px);
    max-width: 1320px;
    margin: 0 auto;
    padding: clamp(48px, 8vw, 100px) 40px 88px;
    position: relative;
    overflow: visible;
}

/* Floating orbs behind hero */
.hero::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 221, 179, 0.12) 0%, transparent 70%);
    filter: blur(80px);
    animation: heroOrb1 8s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(100, 80, 255, 0.14) 0%, transparent 70%);
    filter: blur(70px);
    animation: heroOrb2 10s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes heroOrb1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(60px, 40px) scale(1.15);
    }
}

@keyframes heroOrb2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-50px, -30px) scale(1.2);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: heroContentIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroContentIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    text-shadow: 0 0 20px var(--gold-glow);
    animation: heroContentIn 0.9s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(42px, 5.5vw, 64px);
    line-height: 1.02;
    margin-bottom: 24px;
    font-weight: 900;
    letter-spacing: 0.06em;
    color: var(--text-primary);
    animation: heroContentIn 0.9s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-title-line {
    display: inline-block;
    background: linear-gradient(90deg,
            var(--accent) 0%,
            var(--accent-light) 25%,
            #fff 50%,
            var(--accent-light) 75%,
            var(--accent) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 30px var(--accent-glow)) drop-shadow(0 0 60px rgba(0, 221, 179, 0.15));
    animation: shimmerText 4s ease-in-out infinite;
}

@keyframes shimmerText {
    0% {
        background-position: 100% 50%;
    }

    50% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.hero-lead {
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 34rem;
    font-weight: 400;
    animation: heroContentIn 0.9s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    animation: heroContentIn 0.9s 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-actions .btn svg {
    transition: transform 0.3s ease;
}

.hero-actions .btn:hover svg {
    transform: translateX(4px);
}

/* ── Hero visual — floating mockup ── */
.hero-visual {
    position: relative;
    perspective: 1200px;
    z-index: 1;
    animation: heroVisualIn 1.1s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroVisualIn {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.92);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-frame {
    position: relative;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(145deg, rgba(100, 160, 255, 0.25), rgba(0, 221, 179, 0.2), rgba(100, 60, 255, 0.15));
    animation: heroFrameGlow 4s ease-in-out infinite alternate;
}

@keyframes heroFrameGlow {
    0% {
        box-shadow: 0 0 30px rgba(0, 221, 179, 0.1), 0 0 60px rgba(0, 221, 179, 0.05);
    }

    100% {
        box-shadow: 0 0 50px rgba(0, 221, 179, 0.2), 0 0 100px rgba(0, 221, 179, 0.08);
    }
}

.hero-frame-glow {
    position: absolute;
    inset: -25%;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(0, 221, 179, 0.12), transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(100, 60, 255, 0.1), transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: heroGlowPulse 6s ease-in-out infinite alternate;
}

@keyframes heroGlowPulse {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.08);
    }
}

.app-mockup {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
    border: 1px solid rgba(100, 160, 255, 0.15);
    box-shadow:
        0 32px 100px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(0, 221, 179, 0.1),
        0 0 120px rgba(0, 221, 179, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transform: rotateY(-8deg) rotateX(3deg);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s ease;
    animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: rotateY(-8deg) rotateX(3deg) translateY(0);
    }

    50% {
        transform: rotateY(-8deg) rotateX(3deg) translateY(-12px);
    }
}

.hero-visual:hover .app-mockup {
    transform: rotateY(-2deg) rotateX(1deg) translateY(-6px);
    box-shadow:
        0 40px 120px rgba(0, 0, 0, 0.65),
        0 0 80px var(--accent-glow),
        0 0 160px rgba(0, 221, 179, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    animation: none;
}


/* ── Hero particles ── */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        opacity: 0;
        transform: translateY(-900px) scale(1.2);
    }
}

/* ── Hero floating spec icons ── */
.hero-spec-orbits {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.hero-spec-orb {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(0, 221, 179, 0.35);
    background: rgba(10, 16, 30, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow:
        0 6px 24px rgba(0, 0, 0, 0.5),
        0 0 24px rgba(0, 221, 179, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: specOrbFloat ease-in-out infinite;
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.hero-spec-orb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: saturate(0.85) brightness(1.1);
}

@keyframes specOrbFloat {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.55;
    }

    25% {
        transform: translateY(-16px) translateX(10px) rotate(3deg);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-8px) translateX(-8px) rotate(-2deg);
        opacity: 0.65;
    }

    75% {
        transform: translateY(-20px) translateX(6px) rotate(4deg);
        opacity: 0.75;
    }

    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.55;
    }
}


/* ── TWW Banner ── */
.tww-banner {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg,
            rgba(11, 14, 26, 0.98) 0%,
            rgba(10, 14, 26, 0.97) 50%,
            rgba(8, 12, 24, 1) 100%);
    padding: clamp(48px, 7vw, 80px) 40px;
}

.tww-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: clamp(40px, 6vw, 90px);
    position: relative;
    z-index: 1;
}

.tww-banner-left {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.tww-banner-kicker {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    text-shadow: 0 0 14px var(--accent-glow);
    text-align: center;
}

.tww-banner-logo {
    width: clamp(180px, 22vw, 280px);
    height: auto;
    object-fit: contain;
    filter:
        drop-shadow(0 0 24px var(--accent-glow)) drop-shadow(0 0 60px rgba(0, 221, 179, 0.15)) brightness(1.05) saturate(1.05);
    animation: twwLogoFloat 6s ease-in-out infinite;
    mix-blend-mode: lighten;
    border-radius: 12px;
}

@keyframes twwLogoFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 0 24px var(--accent-glow)) drop-shadow(0 0 60px rgba(0, 221, 179, 0.15)) brightness(1.05);
    }

    50% {
        transform: translateY(-10px) scale(1.02);
        filter: drop-shadow(0 0 36px var(--accent-glow)) drop-shadow(0 0 90px rgba(0, 221, 179, 0.25)) brightness(1.1);
    }
}

.tww-banner-right {
    flex: 1;
}

.tww-banner-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 900;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: 0.04em;
}

.tww-banner-accent {
    display: block;
    background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--gold), var(--accent-light), var(--accent));
    background-size: 250% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: twwAccentShimmer 5s ease-in-out infinite;
    filter: drop-shadow(0 0 20px var(--accent-glow));
}

@keyframes twwAccentShimmer {
    0% {
        background-position: 100% 50%;
    }

    50% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.tww-banner-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 28px;
    max-width: 480px;
}

.tww-banner-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tww-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--accent-dim);
    border: 1px solid rgba(0, 221, 179, 0.2);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.tww-tag:hover {
    background: rgba(0, 221, 179, 0.15);
    border-color: var(--accent);
    box-shadow: 0 0 14px var(--accent-glow);
}

/* ambient glow orbs */
.tww-banner-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.tww-banner-glow--left {
    width: 420px;
    height: 420px;
    top: 50%;
    left: -100px;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(0, 221, 179, 0.1) 0%, transparent 70%);
    animation: twwGlowPulse 6s ease-in-out infinite alternate;
}

.tww-banner-glow--right {
    width: 320px;
    height: 320px;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(40, 80, 200, 0.1) 0%, transparent 70%);
    animation: twwGlowPulse 8s ease-in-out infinite alternate-reverse;
}

@keyframes twwGlowPulse {
    0% {
        opacity: 0.5;
        transform: translateY(-50%) scale(1);
    }

    100% {
        opacity: 1;
        transform: translateY(-50%) scale(1.2);
    }
}

@media (max-width: 768px) {
    .tww-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .tww-banner-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .tww-banner-tags {
        justify-content: center;
    }
}


/* ── Section layout ── */
.section-block {
    padding: clamp(72px, 10vw, 112px) 24px;
    position: relative;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-inner--wide {
    max-width: 1200px;
}


.section-features {
    background: linear-gradient(180deg, rgba(8, 11, 22, 0.55) 0%, rgba(11, 14, 26, 0.2) 50%, transparent 100%);
    border-top: 1px solid rgba(80, 120, 200, 0.08);
    position: relative;
    overflow: hidden;
}

/* Ambient glow behind features */
.section-features::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 221, 179, 0.04) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

/* ── Section with full-height mascot ── */
.section-with-mascot {
    position: relative;
    overflow: visible;
}

.section-mascot-wrap {
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(360px, 36vw, 580px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.section-mascot-wrap--right {
    right: clamp(-120px, -8vw, -40px);
}

.section-mascot-wrap--left {
    left: clamp(-120px, -8vw, -40px);
}

/* ── Shared mascot image style ── */
.section-mascot {
    display: block;
    width: 100%;
    height: auto;
    max-height: 95%;
    object-fit: contain;
    mix-blend-mode: lighten;
    border-radius: 16px;
    opacity: 0.22;
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
}

.section-mascot--engine {
    filter:
        drop-shadow(0 0 28px var(--accent-glow)) drop-shadow(0 0 80px rgba(0, 221, 179, 0.12)) brightness(1.05);
    animation: mascotFloat 7s ease-in-out infinite;
}

.section-mascot--plan {
    filter:
        drop-shadow(0 0 28px rgba(232, 200, 122, 0.3)) drop-shadow(0 0 80px rgba(232, 200, 122, 0.12)) brightness(1.05);
    animation: mascotFloat 8s ease-in-out 1s infinite;
}

.section-with-mascot:hover .section-mascot {
    opacity: 0.35;
}

.section-mascot--engine:hover {
    transform: scale(1.06) rotate(-2deg);
    filter:
        drop-shadow(0 0 40px var(--accent-glow)) drop-shadow(0 0 100px rgba(0, 221, 179, 0.22)) brightness(1.12);
    opacity: 0.5;
    pointer-events: auto;
}

.section-mascot--plan:hover {
    transform: scale(1.06) rotate(2deg);
    filter:
        drop-shadow(0 0 40px rgba(232, 200, 122, 0.5)) drop-shadow(0 0 100px rgba(232, 200, 122, 0.22)) brightness(1.12);
    opacity: 0.5;
    pointer-events: auto;
}

@keyframes mascotFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-16px);
    }

    70% {
        transform: translateY(-8px);
    }
}

/* Make sure section content stays above the mascot */
.section-with-mascot .section-inner {
    position: relative;
    z-index: 1;
}

@media (max-width: 1100px) {
    .section-mascot-wrap {
        width: clamp(240px, 26vw, 380px);
    }

    .section-mascot {
        opacity: 0.15;
    }
}

@media (max-width: 768px) {
    .section-mascot-wrap {
        display: none;
    }
}

.features-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 540px;
    margin: -12px auto 48px;
    font-size: 15px;
    line-height: 1.65;
}



/* ── Bento Grid ── */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.bento-card {
    position: relative;
    background: linear-gradient(165deg, rgba(18, 26, 46, 0.85) 0%, rgba(10, 14, 26, 0.95) 100%);
    border: 1px solid rgba(100, 160, 255, 0.08);
    border-radius: 20px;
    padding: 32px 28px 28px;
    overflow: hidden;
    backdrop-filter: var(--glass);
    -webkit-backdrop-filter: var(--glass);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(100, 160, 255, 0.04);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.45s ease;
    display: flex;
    flex-direction: column;
}

.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 221, 179, 0.4), rgba(100, 60, 255, 0.3), rgba(232, 200, 122, 0.3), rgba(0, 221, 179, 0.4));
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: borderRotate 4s linear infinite;
    pointer-events: none;
}

@keyframes borderRotate {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.bento-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: transparent;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 48px var(--accent-dim);
}

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

.bento-card--large {
    grid-row: span 2;
}

.bento-card--wide {
    grid-column: span 2;
}

.bento-card-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: rgba(0, 221, 179, 0.06);
    line-height: 1;
    pointer-events: none;
    transition: color 0.4s ease;
}

.bento-card:hover .bento-card-number {
    color: rgba(0, 221, 179, 0.12);
}

.bento-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 221, 179, 0.1), rgba(0, 221, 179, 0.03));
    border: 1px solid rgba(0, 221, 179, 0.18);
    margin-bottom: 20px;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}

.bento-card-icon svg {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.bento-card:hover .bento-card-icon {
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 0 32px var(--accent-glow), 0 0 64px rgba(0, 221, 179, 0.08);
    border-color: rgba(0, 221, 179, 0.5);
}

.bento-card:hover .bento-card-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

.bento-card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-primary);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.bento-card:hover .bento-card-title {
    color: var(--accent-light);
    text-shadow: 0 0 16px var(--accent-dim);
}

.bento-card-text {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    flex: 1;
}

.bento-card-stat {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(80, 120, 200, 0.08);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bento-card-stats-row {
    display: flex;
    gap: 32px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(80, 120, 200, 0.08);
}

.bento-card-stats-row .bento-card-stat {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.bento-stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--accent);
    text-shadow: 0 0 16px var(--accent-glow);
    line-height: 1;
}

.bento-stat-label {
    font-size: 11px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-card--large {
        grid-row: span 1;
    }

    .bento-card--wide {
        grid-column: span 1;
    }
}

/* ── Section title ── */
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(20px, 2.8vw, 26px);
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 56px);
    color: transparent;
}

.section-title-text {
    display: inline-block;
    background: linear-gradient(90deg, var(--gold) 0%, var(--accent-light) 40%, var(--accent) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
    padding-bottom: 14px;
    animation: sectionTitleShimmer 6s ease-in-out infinite;
}

@keyframes sectionTitleShimmer {
    0% {
        background-position: 100% 50%;
    }

    50% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.section-title-text::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(100%, 120px);
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--gold), transparent);
    opacity: 0.9;
    animation: underlineGlow 3s ease-in-out infinite alternate;
}

@keyframes underlineGlow {
    0% {
        opacity: 0.5;
        width: min(80%, 90px);
    }

    100% {
        opacity: 1;
        width: min(100%, 140px);
    }
}

/* ── Features grid ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    position: relative;
    z-index: 1;
}

.feature-box {
    position: relative;
    background: linear-gradient(165deg, rgba(20, 28, 48, 0.65) 0%, rgba(12, 16, 30, 0.85) 100%);
    backdrop-filter: var(--glass);
    -webkit-backdrop-filter: var(--glass);
    border: 1px solid var(--bg-card-border);
    padding: 32px 26px 28px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(100, 160, 255, 0.05);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color var(--transition), box-shadow 0.4s ease;
}

/* Top gradient line — reveals on hover */
.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 221, 179, 0.5), rgba(232, 200, 122, 0.35), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Corner glow effect */
.feature-box::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 221, 179, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.feature-box:hover {
    border-color: rgba(0, 221, 179, 0.25);
    transform: translateY(-8px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px var(--accent-dim),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box:hover::after {
    opacity: 1;
    transform: scale(1.5);
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 221, 179, 0.12), rgba(0, 221, 179, 0.04));
    border: 1px solid rgba(0, 221, 179, 0.2);
    box-shadow: 0 0 24px var(--accent-dim), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

/* Pulsing ring on icon */
.feature-icon-wrap::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 16px;
    border: 1px solid rgba(0, 221, 179, 0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: iconRingPulse 3s ease-in-out infinite;
}

@keyframes iconRingPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.6;
    }
}

.feature-box:hover .feature-icon-wrap {
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 0 36px var(--accent-glow), 0 0 60px rgba(0, 221, 179, 0.1);
    border-color: rgba(0, 221, 179, 0.45);
}

.feature-box:hover .feature-icon-wrap::after {
    opacity: 1;
}

.f-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.feature-box:hover .f-title {
    color: var(--accent-light);
    text-shadow: 0 0 12px var(--accent-dim);
}

.feature-box p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.65;
    margin-top: 10px;
}

/* ── Panels / cards ── */
.card {
    position: relative;
    background: var(--bg-card);
    backdrop-filter: var(--glass);
    -webkit-backdrop-filter: var(--glass);
    border: 1px solid var(--bg-card-border);
    border-radius: 14px;
    padding: 28px 26px 30px;
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(100, 160, 255, 0.05);
    transition: border-color var(--transition), box-shadow var(--transition);
    text-align: left;
}

.card--panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.55;
    pointer-events: none;
}

.card:hover {
    border-color: rgba(100, 160, 255, 0.16);
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.42),
        0 0 28px var(--accent-dim),
        inset 0 1px 0 rgba(100, 160, 255, 0.06);
}

.section-store {
    border-top: 1px solid rgba(232, 200, 122, 0.1);
    background: linear-gradient(180deg, rgba(15, 21, 37, 0.35) 0%, rgba(11, 14, 26, 0.25) 100%);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    transition: max-height 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.5s ease 0.1s,
        padding 0.5s ease;
    pointer-events: none;
}

.section-store.section-store--visible {
    max-height: 4000px;
    opacity: 1;
    padding-top: clamp(72px, 10vw, 112px);
    padding-bottom: clamp(72px, 10vw, 112px);
    pointer-events: auto;
}

.section-faq {
    border-top: 1px solid var(--border);
    padding-bottom: clamp(80px, 12vw, 120px);
}

/* ── Hero enhancements ── */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid rgba(0, 221, 179, 0.25);
    background: rgba(0, 221, 179, 0.06);
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    animation: fadeIn 0.6s ease, heroBadgePulse 3s ease-in-out infinite;
}

@keyframes heroBadgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 221, 179, 0);
    }

    50% {
        box-shadow: 0 0 20px 2px rgba(0, 221, 179, 0.15);
    }
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent-glow);
    animation: pulse-dot 2s ease-in-out infinite;
}

.hero-badge-new {
    padding: 2px 8px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--accent), #0ea5e9);
    color: var(--bg-deep);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-left: 4px;
    animation: badgeNewGlow 2s ease-in-out infinite;
}

@keyframes badgeNewGlow {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.2);
    }
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

/* Grid pattern background */
.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 221, 179, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 221, 179, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Trust indicators */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 12px;
    color: var(--text-dim);
    animation: heroContentIn 0.9s 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-trust svg {
    color: var(--accent);
    flex-shrink: 0;
}

.hero-trust-divider {
    color: var(--border);
    margin: 0 4px;
}

/* Visual badge */
.hero-visual-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(8, 12, 24, 0.85);
    border: 1px solid rgba(0, 221, 179, 0.2);
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: badgeFloat 4s ease-in-out infinite;
    z-index: 10;
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.hero-visual-badge svg {
    color: #FFB450;
    filter: drop-shadow(0 0 4px rgba(255, 180, 80, 0.5));
}

/* Frame accent */
.hero-frame-accent {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 221, 179, 0.3), transparent 40%, rgba(100, 80, 255, 0.2));
    z-index: -1;
    animation: frameAccentRotate 8s linear infinite;
    opacity: 0.6;
}

@keyframes frameAccentRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: default;
}

.hero-stat:hover {
    background: rgba(0, 221, 179, 0.05);
    transform: translateY(-2px);
}

.hero-stat:hover .hero-stat-num {
    text-shadow: 0 0 20px var(--accent-glow);
}

.hero-stat-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--accent);
    text-shadow: 0 0 14px var(--accent-glow);
    transition: text-shadow 0.3s ease;
}

.hero-stat-label {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: linear-gradient(180deg, transparent, var(--border), transparent);
}

/* ── Pricing Section ── */
.section-pricing {
    border-top: 1px solid rgba(232, 200, 122, 0.12);
    background:
        radial-gradient(800px circle at 50% 0%, rgba(0, 221, 179, 0.06) 0%, transparent 60%),
        linear-gradient(180deg, rgba(15, 21, 37, 0.4) 0%, rgba(11, 14, 26, 0.2) 100%);
}

.pricing-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 600px;
    margin: -8px auto 48px;
    font-size: 15px;
    line-height: 1.65;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    background: linear-gradient(165deg, rgba(20, 28, 50, 0.8) 0%, rgba(10, 14, 26, 0.95) 100%);
    border: 1px solid var(--bg-card-border);
    border-radius: 20px;
    padding: 36px 28px 32px;
    display: flex;
    flex-direction: column;
    backdrop-filter: var(--glass);
    -webkit-backdrop-filter: var(--glass);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(100, 160, 255, 0.04);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(100, 160, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 30px var(--accent-dim);
}

.pricing-card--popular {
    border-color: rgba(0, 221, 179, 0.4);
    background: linear-gradient(165deg, rgba(0, 221, 179, 0.08) 0%, rgba(10, 14, 26, 0.95) 100%);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35), 0 0 40px var(--accent-dim), inset 0 1px 0 rgba(0, 221, 179, 0.08);
    transform: scale(1.04);
    z-index: 2;
}

.pricing-card--popular:hover {
    transform: scale(1.04) translateY(-6px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5), 0 0 50px var(--accent-glow);
}

.pricing-popular-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 8px 0;
    text-align: center;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--bg-deep);
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    box-shadow: 0 4px 16px var(--accent-glow);
}

.pricing-card--popular .pricing-card-header {
    margin-top: 20px;
}

.pricing-card-header {
    margin-bottom: 24px;
}

.pricing-card-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.pricing-card-badge--gold {
    border-color: rgba(232, 200, 122, 0.4);
    color: var(--gold);
    background: rgba(232, 200, 122, 0.08);
}

.pricing-card-badge--accent {
    border-color: rgba(0, 221, 179, 0.3);
    color: var(--accent);
    background: rgba(0, 221, 179, 0.06);
}

.pricing-card-plan {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.pricing-card-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 8px;
}

.pricing-price-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent-glow);
    line-height: 1;
}

.pricing-price-period {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-save-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: var(--gold);
    background: rgba(232, 200, 122, 0.1);
    border: 1px solid rgba(232, 200, 122, 0.2);
    margin-bottom: 8px;
}

.pricing-card-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-top: 8px;
}

.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.pricing-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 221, 179, 0.1);
    border: 1px solid rgba(0, 221, 179, 0.25);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
}

.pricing-check--gold {
    background: rgba(232, 200, 122, 0.1);
    border-color: rgba(232, 200, 122, 0.3);
    color: var(--gold);
}

.pricing-card-actions {
    margin-top: auto;
}

.pricing-card-actions .btn-block {
    width: 100%;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    font-size: 13px;
    color: var(--text-dim);
    text-align: center;
}

.pricing-guarantee svg {
    color: var(--accent);
    flex-shrink: 0;
}

.pricing-guarantee strong {
    color: var(--text-secondary);
}

/* ── Trial Banner ── */
.trial-banner {
    max-width: 820px;
    margin: 28px auto 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 221, 179, 0.07) 0%, rgba(14, 165, 233, 0.05) 100%);
    border: 1px solid rgba(0, 221, 179, 0.25);
    box-shadow: 0 0 40px rgba(0, 221, 179, 0.08), inset 0 1px 0 rgba(0, 221, 179, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    animation: trialBannerIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes trialBannerIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trial-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 28px;
}

.trial-banner-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trial-badge {
    flex-shrink: 0;
    padding: 6px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), #0ea5e9);
    color: var(--bg-deep);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 0 16px var(--accent-glow);
    animation: trialBadgePulse 2.5s ease-in-out infinite;
}

@keyframes trialBadgePulse {

    0%,
    100% {
        box-shadow: 0 0 12px var(--accent-glow);
    }

    50% {
        box-shadow: 0 0 24px rgba(0, 221, 179, 0.5);
    }
}

.trial-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.trial-desc {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.55;
}

.trial-btn {
    flex-shrink: 0;
    white-space: nowrap;
    background: linear-gradient(135deg, var(--accent), #0ea5e9);
    color: var(--bg-deep) !important;
    font-weight: 800;
    letter-spacing: 0.5px;
    border: none;
    box-shadow: 0 0 20px var(--accent-glow);
    transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.trial-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 32px rgba(0, 221, 179, 0.5);
}

@media (max-width: 600px) {
    .trial-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .trial-banner-left {
        flex-direction: column;
    }
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .pricing-card--popular {
        transform: none;
    }

    .pricing-card--popular:hover {
        transform: translateY(-6px);
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    .hero-stat-divider {
        display: none;
    }
}

/* ── Footer redesign ── */
.footer-brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-shadow: 0 0 10px var(--accent-dim);
}

.footer-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color var(--transition);
}

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

/* ── Per-spec store ── */
.spec-store-lead {
    text-align: center;
    color: var(--text-secondary);
    max-width: 560px;
    margin: -8px auto 36px;
    font-size: 16px;
    line-height: 1.6;
}

.spec-store-lead strong {
    color: var(--accent);
    font-weight: 700;
}

.spec-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.spec-search {
    flex: 1 1 240px;
    max-width: 400px;
    margin-bottom: 0;
    text-align: left;
    letter-spacing: 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.spec-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    max-width: 760px;
    margin: 0 auto 20px;
    padding: 14px;
}

.spec-filter-group {
    display: grid;
    gap: 7px;
}

.spec-filter-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.spec-select {
    width: 100%;
    min-height: 42px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg-input);
    color: var(--text-primary);
    padding: 9px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.spec-select:focus {
    border-color: rgba(0, 221, 179, 0.45);
    box-shadow: 0 0 0 2px rgba(0, 221, 179, 0.12);
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(156px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.spec-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-secondary);
    border: 1px dashed var(--border);
    background: rgba(16, 22, 40, 0.55);
    border-radius: 12px;
    padding: 18px;
    font-size: 14px;
}

.spec-tile {
    position: relative;
    cursor: pointer;
    border-radius: 14px;
    border: 1px solid var(--bg-card-border);
    background: linear-gradient(165deg, rgba(22, 30, 52, 0.9) 0%, rgba(12, 16, 28, 0.95) 100%);
    backdrop-filter: var(--glass);
    -webkit-backdrop-filter: var(--glass);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    text-align: center;
    padding: 12px 10px 14px;
    outline: none;
}

.spec-tile:hover {
    border-color: rgba(100, 160, 255, 0.28);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.spec-tile:focus-within {
    border-color: rgba(0, 221, 179, 0.35);
    box-shadow: 0 0 0 2px rgba(0, 221, 179, 0.15), 0 12px 28px rgba(0, 0, 0, 0.3);
}

.spec-tile.selected {
    border-color: rgba(0, 221, 179, 0.55);
    box-shadow:
        0 0 0 1px rgba(0, 221, 179, 0.2),
        0 0 28px var(--accent-glow),
        0 10px 24px rgba(0, 0, 0, 0.35);
}

/* Whole card toggles selection; checkbox stays for a11y / forms */
.spec-tile-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    opacity: 0;
    pointer-events: none;
}

/* Icon frame — matches in-app spell / spec slot look */
.spec-tile-media {
    position: relative;
    width: 88px;
    height: 88px;
    margin: 0 auto 10px;
    border-radius: 12px;
    background: radial-gradient(ellipse at 50% 30%, rgba(30, 45, 80, 0.6) 0%, rgba(8, 12, 24, 0.98) 70%);
    border: 1px solid rgba(80, 120, 200, 0.18);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        inset 0 -2px 8px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--transition), box-shadow var(--transition), transform 0.2s ease;
}

.spec-tile:hover .spec-tile-media {
    border-color: rgba(0, 221, 179, 0.25);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        inset 0 -2px 8px rgba(0, 0, 0, 0.35),
        0 0 16px rgba(0, 221, 179, 0.12);
}

.spec-tile.selected .spec-tile-media {
    border-color: rgba(0, 221, 179, 0.65);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 20px rgba(0, 221, 179, 0.35),
        0 0 0 2px rgba(0, 221, 179, 0.15);
}

.spec-tile.selected .spec-tile-media::after {
    content: '';
    position: absolute;
    top: 4px;
    right: 4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent-glow);
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b0e1a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E"),
        linear-gradient(135deg, var(--accent), var(--accent-light));
    background-size: 14px 14px, 100% 100%;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
}

.spec-tile-media--broken {
    background: repeating-linear-gradient(-45deg,
            rgba(30, 40, 60, 0.5),
            rgba(30, 40, 60, 0.5) 6px,
            rgba(20, 28, 45, 0.5) 6px,
            rgba(20, 28, 45, 0.5) 12px);
}

.spec-tile img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    margin: 0;
    border: none;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
    transition: transform 0.2s ease, filter 0.2s ease;
}

.spec-tile:hover img {
    transform: scale(1.04);
    filter: drop-shadow(0 2px 8px rgba(0, 221, 179, 0.2));
}

.spec-tile-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.35;
    display: block;
    padding: 0 4px;
    letter-spacing: 0.02em;
}

.spec-tile.selected .spec-tile-label {
    color: var(--accent-light);
    text-shadow: 0 0 14px var(--accent-dim);
}

.spec-checkout-bar {
    max-width: 640px;
    margin: 8px auto 0;
    text-align: left;
}

.spec-checkout-email-row {
    margin-bottom: 16px;
}

/* ── License key row for add-specs ── */
.spec-checkout-key-row {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.spec-key-toggle {
    display: inline-block;
    background: none;
    border: none;
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    padding: 0;
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

.spec-key-toggle:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

.spec-key-panel {
    margin-top: 4px;
}

.spec-key-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.spec-key-input {
    text-align: left;
    letter-spacing: 2px;
    font-family: 'Inter', monospace;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.spec-key-status {
    font-size: 12px;
    min-height: 18px;
    line-height: 18px;
}

.spec-key-checking {
    color: var(--text-dim);
    font-style: italic;
}

.spec-key-error {
    color: #ff6464;
    font-weight: 600;
}

.spec-key-valid {
    color: #00DDB3;
    font-weight: 600;
}

.spec-key-hint {
    color: var(--text-dim);
    font-style: italic;
}

/* ── Owned spec tile ── */
.spec-tile--owned {
    position: relative;
    border-color: rgba(0, 221, 179, 0.25);
}

.spec-tile--owned .spec-tile-media::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: rgba(0, 221, 179, 0.08);
    pointer-events: none;
}

.spec-tile-owned-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    background: rgba(0, 221, 179, 0.15);
    border: 1px solid rgba(0, 221, 179, 0.3);
    color: #00DDB3;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 3px 7px;
    border-radius: 5px;
    backdrop-filter: blur(4px);
    pointer-events: none;
}

/* ── Expired spec tile ── */
.spec-tile--expired {
    position: relative;
    border-color: rgba(255, 100, 100, 0.25);
    opacity: 0.85;
}

.spec-tile--expired .spec-tile-media::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: rgba(255, 100, 100, 0.06);
    pointer-events: none;
}

.spec-tile--expired .spec-tile-label {
    color: var(--text-dim);
}

.spec-tile-expired-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    background: rgba(255, 100, 100, 0.15);
    border: 1px solid rgba(255, 100, 100, 0.3);
    color: #ff6464;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 3px 7px;
    border-radius: 5px;
    backdrop-filter: blur(4px);
    pointer-events: none;
}

.spec-tile--expired.selected {
    border-color: rgba(255, 180, 80, 0.4);
}

.spec-tile--expired.selected .spec-tile-expired-badge {
    background: rgba(255, 180, 80, 0.2);
    border-color: rgba(255, 180, 80, 0.4);
    color: #ffb450;
}

.spec-owned-note {
    color: #00DDB3;
    font-size: 12px;
    font-weight: 600;
    margin-left: 4px;
}

/* ── Checkout add-specs note ── */
.checkout-add-specs-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 12px;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(0, 221, 179, 0.06);
    border: 1px solid rgba(0, 221, 179, 0.15);
}

.checkout-add-specs-note code {
    font-family: 'Inter', monospace;
    font-weight: 700;
    letter-spacing: 1px;
}

.spec-email-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.spec-email-input {
    text-align: left;
    letter-spacing: 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin-bottom: 0;
}

.spec-total-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
}

.spec-summary {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
}

.spec-summary strong {
    color: var(--accent);
    text-shadow: 0 0 12px var(--accent-glow);
}

.spec-hint {
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-dim);
    line-height: 1.5;
}

.spec-hint a {
    color: var(--accent);
    text-decoration: none;
}

.spec-hint a:hover {
    text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════
   Checkout Modal — Professional Redesign
   ═══════════════════════════════════════════════════════════ */

/* ── Modal overlay ── */
.ck-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ck-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.ck-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 6, 12, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.ck-panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(170deg, rgba(14, 20, 38, 0.98) 0%, rgba(8, 12, 24, 0.99) 100%);
    border: 1px solid rgba(80, 140, 255, 0.1);
    border-radius: 20px;
    padding: 28px 24px 20px;
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(0, 221, 179, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    animation: ckSlideIn 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ═══════════════════════════════════════════════════════════
   Animations
   ═══════════════════════════════════════════════════════════ */
@keyframes ckSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes ckPopIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes ckFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ckPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes ckShimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Loading state */
.ck-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 16px;
}

.ck-loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.ck-loading-text {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Card hover effects */
.ck-pay-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(8, 12, 24, 0.5);
    cursor: pointer;
    transition: all 0.25s ease;
    overflow: hidden;
}

.ck-pay-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ck-pay-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
    background-size: 200% 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ck-pay-card:hover::after {
    opacity: 1;
    animation: ckShimmer 2s infinite;
}

.ck-pay-card:hover {
    border-color: rgba(80, 140, 255, 0.2);
    background: rgba(14, 20, 38, 0.7);
    transform: translateY(-2px);
}

.ck-pay-card:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.ck-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: rgba(14, 18, 32, 0.6);
    color: var(--text-dim);
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.ck-close:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: var(--accent-dim);
}

/* ── Header ── */
.ck-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.ck-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 221, 179, 0.1), rgba(14, 165, 233, 0.1));
    border: 1px solid rgba(0, 221, 179, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ck-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--text-primary);
    margin: 0;
}

.ck-subtitle {
    font-size: 12px;
    color: var(--text-dim);
    margin: 2px 0 0;
}

/* ── Steps indicator ── */
.ck-steps {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 22px;
    padding: 0 4px;
}

.ck-step {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.ck-step-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    color: var(--text-dim);
    background: rgba(14, 18, 32, 0.8);
    border: 1.5px solid var(--border);
    transition: all 0.3s ease;
}

.ck-step.is-active .ck-step-dot {
    background: var(--accent-dim);
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 12px var(--accent-glow);
}

.ck-step.is-done .ck-step-dot {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-deep);
}

.ck-step-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--text-dim);
    transition: color 0.3s ease;
}

.ck-step.is-active .ck-step-label {
    color: var(--accent);
}

.ck-step.is-done .ck-step-label {
    color: var(--text-secondary);
}

.ck-step-line {
    flex: 1;
    height: 1.5px;
    background: var(--border);
    margin: 0 6px;
    transition: background 0.3s ease;
}

.ck-step-line.is-active {
    background: linear-gradient(90deg, var(--accent), rgba(0, 221, 179, 0.3));
}

/* ── Body ── */
.ck-body {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* ── Error ── */
.ck-error {
    color: #FF6B6B;
    font-size: 13px;
    margin-top: 12px;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 107, 107, 0.08);
    border: 1px solid rgba(255, 107, 107, 0.15);
    display: none;
}

.ck-error.is-visible {
    display: block;
}

/* ── Actions ── */
.ck-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.ck-actions .btn,
.ck-actions .btn-action {
    flex: 1 1 auto;
    min-width: 120px;
}

/* ═══════════════════════════════════════════════════════════
   Step 1: Details
   ═══════════════════════════════════════════════════════════ */

.ck-details-step {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ck-plan-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(8, 12, 24, 0.6);
    border: 1px solid rgba(80, 140, 255, 0.1);
    border-radius: 14px;
    padding: 16px;
}

.ck-plan-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 221, 179, 0.08), rgba(14, 165, 233, 0.08));
    border: 1px solid rgba(0, 221, 179, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ck-plan-info {
    flex: 1;
    min-width: 0;
}

.ck-plan-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 0.8px;
}

.ck-plan-duration {
    font-size: 11px;
    color: var(--text-dim);
    margin-top: 2px;
}

.ck-plan-price {
    text-align: right;
    flex-shrink: 0;
}

.ck-price-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--accent);
    text-shadow: 0 0 16px var(--accent-glow);
}

.ck-price-unit {
    display: block;
    font-size: 10px;
    color: var(--text-dim);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Order breakdown */
.ck-breakdown {
    background: rgba(8, 12, 24, 0.5);
    border: 1px solid rgba(80, 140, 255, 0.08);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ck-breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.ck-breakdown-label {
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 5px;
}

.ck-breakdown-label svg {
    color: var(--text-dim);
    flex-shrink: 0;
}

.ck-breakdown-value {
    color: var(--text-secondary);
    font-weight: 600;
}

.ck-breakdown-row:not(:last-child) {
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(80, 140, 255, 0.06);
}

.ck-breakdown-total {
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 221, 179, 0.15);
    border-bottom: none;
}

.ck-breakdown-total .ck-breakdown-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ck-breakdown-total .ck-breakdown-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: var(--accent);
    text-shadow: 0 0 16px var(--accent-glow);
}

.ck-field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ck-field-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.ck-field-label svg {
    color: var(--accent);
    flex-shrink: 0;
}

.ck-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: rgba(8, 12, 24, 0.7);
    color: var(--text-primary);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.ck-input::placeholder {
    color: var(--text-dim);
}

.ck-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim), 0 0 20px var(--accent-glow);
}

.ck-field-hint {
    font-size: 11px;
    color: var(--text-dim);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   Step 2: Payment Method
   ═══════════════════════════════════════════════════════════ */

.ck-pay-step {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ck-order-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: rgba(8, 12, 24, 0.6);
    border: 1px solid rgba(80, 140, 255, 0.08);
    border-radius: 12px;
    padding: 14px 16px;
}

.ck-order-label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.ck-order-email {
    font-size: 11px;
    color: var(--text-dim);
    margin-top: 2px;
}

.ck-order-email strong {
    color: var(--text-secondary);
}

.ck-order-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: var(--accent);
    text-shadow: 0 0 16px var(--accent-glow);
    flex-shrink: 0;
}

/* Review summary */
.ck-review-summary {
    background: linear-gradient(135deg, rgba(0, 221, 179, 0.06), rgba(14, 165, 233, 0.04));
    border: 1px solid rgba(0, 221, 179, 0.12);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 16px;
    animation: ckFadeIn 0.4s ease;
}

@keyframes ckFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ck-review-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 221, 179, 0.15);
}

.ck-review-header svg {
    flex-shrink: 0;
}

.ck-review-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-secondary);
    padding: 4px 0;
}

.ck-review-row span:last-child {
    font-weight: 600;
    color: var(--text-primary);
}

.ck-review-total {
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 221, 179, 0.2);
}

.ck-review-total span:first-child {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ck-review-total span:last-child {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 900;
    color: var(--accent);
    text-shadow: 0 0 12px var(--accent-glow);
}

/* Confirmation step */
.ck-confirm-step {
    text-align: center;
    padding: 8px 0;
    animation: ckFadeIn 0.4s ease;
}

.ck-confirm-icon {
    margin-bottom: 16px;
    animation: ckPopIn 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.ck-confirm-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 1px;
    margin: 0 0 6px;
}

.ck-confirm-subtitle {
    font-size: 13px;
    color: var(--text-dim);
    margin: 0 0 20px;
    line-height: 1.5;
}

.ck-confirm-details {
    background: rgba(8, 12, 24, 0.6);
    border: 1px solid rgba(80, 140, 255, 0.1);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 16px;
    text-align: left;
}

.ck-confirm-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(80, 140, 255, 0.06);
}

.ck-confirm-row:last-child {
    border-bottom: none;
}

.ck-confirm-label {
    font-size: 12px;
    color: var(--text-dim);
    font-weight: 600;
}

.ck-confirm-value {
    font-size: 12px;
    color: var(--text-primary);
    font-weight: 600;
    text-align: right;
    max-width: 60%;
    word-break: break-word;
}

.ck-confirm-provider {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
}

.ck-confirm-provider svg {
    flex-shrink: 0;
}

.ck-confirm-total {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 221, 179, 0.2);
    border-bottom: none;
}

.ck-confirm-total .ck-confirm-label {
    font-size: 13px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ck-confirm-total .ck-confirm-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: var(--accent);
    text-shadow: 0 0 16px var(--accent-glow);
}

.ck-confirm-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 11px;
    color: var(--text-dim);
    line-height: 1.5;
    padding: 12px;
    background: rgba(255, 180, 80, 0.06);
    border: 1px solid rgba(255, 180, 80, 0.12);
    border-radius: 10px;
    text-align: left;
}

.ck-confirm-note svg {
    flex-shrink: 0;
    margin-top: 1px;
    color: #FFB450;
}

.ck-pay-intro {
    font-size: 12px;
    color: var(--text-dim);
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ck-pay-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Disabled card */
.ck-pay-card--disabled {
    cursor: not-allowed;
    opacity: 0.45;
    filter: grayscale(0.5);
    pointer-events: none;
}

.ck-pay-card--disabled::before {
    display: none;
}

.ck-pay-card--disabled:hover {
    transform: none;
}

/* Unavailable badge */
.ck-pay-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255, 107, 107, 0.12);
    border: 1px solid rgba(255, 107, 107, 0.2);
    color: #FF6B6B;
}

/* Add-specs note */
.ck-add-specs-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-secondary);
    padding: 8px 14px;
    border-radius: 8px;
    background: rgba(0, 221, 179, 0.05);
    border: 1px solid rgba(0, 221, 179, 0.12);
}

.ck-add-specs-note code {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
}

/* Confirm button */
.ck-confirm {
    width: 100%;
    margin-top: 4px;
    opacity: 0.4;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.ck-confirm.ck-confirm--ready {
    opacity: 1;
    pointer-events: auto;
}

/* Order ID display */
.ck-order-id {
    background: rgba(8, 12, 24, 0.6);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-secondary);
}

.ck-order-id code {
    color: var(--accent);
    font-weight: 700;
}

/* JSON box */
.ck-json-box {
    width: 100%;
    min-height: 80px;
    margin-top: 10px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: rgba(8, 12, 24, 0.6);
    color: var(--text-secondary);
    font-family: ui-monospace, monospace;
    font-size: 11px;
    resize: none;
}

/* ═══════════════════════════════════════════════════════════
   Step 3: Success
   ═══════════════════════════════════════════════════════════ */

.ck-success {
    text-align: center;
    padding: 12px 0;
}

.ck-success-icon {
    margin-bottom: 14px;
    animation: ckPopIn 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes ckPopIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.ck-success-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 1px;
    margin: 0 0 6px;
}

.ck-success-text {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0 0 16px;
}

.ck-key-box {
    background: rgba(8, 12, 24, 0.7);
    border: 1px solid rgba(0, 221, 179, 0.15);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 12px;
}

.ck-key-label {
    display: block;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    margin-bottom: 6px;
}

.ck-key-value {
    font-family: ui-monospace, monospace;
    font-size: 15px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    word-break: break-all;
}

.ck-test-badge {
    font-size: 11px;
    color: var(--text-dim);
    margin: 0;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(255, 180, 80, 0.06);
    border: 1px solid rgba(255, 180, 80, 0.12);
    display: inline-block;
}

/* ── Spinner ── */
.checkout-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: checkoutSpin 0.7s linear infinite;
    vertical-align: middle;
    margin-right: 10px;
}

@keyframes checkoutSpin {
    to {
        transform: rotate(360deg);
    }
}

/* ── Legacy success page ── */
.pay-success-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.pay-success-card {
    margin: 0;
}

.pay-success-card .btn,
.pay-success-card .btn-action {
    display: inline-flex;
    justify-content: center;
}

.pay-status-line {
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.pay-status-line strong {
    color: var(--accent);
}

/* ── Responsive ── */
@media (max-width: 520px) {
    .ck-panel {
        max-width: 100%;
        border-radius: 16px 16px 0 0;
        max-height: 85vh;
        margin-top: auto;
    }

    .ck-modal.is-open {
        align-items: flex-end;
    }

    .ck-step-label {
        display: none;
    }

    .ck-plan-card {
        flex-wrap: wrap;
    }

    .ck-plan-price {
        width: 100%;
        text-align: left;
        margin-top: 4px;
    }
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(20px, 2.8vw, 26px);
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 56px);
    color: transparent;
}

.section-title-text {
    display: inline-block;
    background: linear-gradient(90deg, var(--gold) 0%, var(--accent-light) 40%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
    padding-bottom: 14px;
}

.section-title-text::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(100%, 120px);
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--gold), transparent);
    opacity: 0.9;
}

/* Panels (checkout, modal) */
.card {
    position: relative;
    background: var(--bg-card);
    backdrop-filter: var(--glass);
    -webkit-backdrop-filter: var(--glass);
    border: 1px solid var(--bg-card-border);
    border-radius: 14px;
    padding: 28px 26px 30px;
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(100, 160, 255, 0.05);
    transition: border-color var(--transition), box-shadow var(--transition);
    text-align: left;
}

.card--panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.55;
    pointer-events: none;
}

.card:hover {
    border-color: rgba(100, 160, 255, 0.16);
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.42),
        0 0 28px var(--accent-dim),
        inset 0 1px 0 rgba(100, 160, 255, 0.06);
}

/* ── Features grid ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.feature-box {
    position: relative;
    background: linear-gradient(165deg, rgba(20, 28, 48, 0.65) 0%, rgba(12, 16, 30, 0.85) 100%);
    backdrop-filter: var(--glass);
    -webkit-backdrop-filter: var(--glass);
    border: 1px solid var(--bg-card-border);
    padding: 28px 24px 26px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(100, 160, 255, 0.05);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 221, 179, 0.35), rgba(232, 200, 122, 0.25), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.feature-box:hover {
    border-color: rgba(0, 221, 179, 0.2);
    transform: translateY(-4px);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.45),
        0 0 32px var(--accent-dim),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-icon-wrap {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
    border-radius: 12px;
    background: rgba(0, 221, 179, 0.08);
    border: 1px solid rgba(0, 221, 179, 0.15);
    box-shadow: 0 0 20px var(--accent-dim);
}

.feature-box p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
}

.f-title {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text-primary);
    text-transform: uppercase;
}

/* ── FAQ ── */
.faq-container {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(16, 22, 40, 0.55);
    backdrop-filter: var(--glass);
    -webkit-backdrop-filter: var(--glass);
    border: 1px solid var(--bg-card-border);
    margin-bottom: 14px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(100, 160, 255, 0.04);
    transition: border-color var(--transition);
}

.faq-item:hover {
    border-color: rgba(100, 160, 255, 0.12);
}

.faq-question {
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    transition: color var(--transition);
}

.faq-chevron {
    font-size: 11px;
    color: var(--text-dim);
    flex-shrink: 0;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-answer {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    color: var(--text-secondary);
    font-size: 14px;
}

.faq-item.active .faq-answer {
    padding: 0 22px 20px;
    max-height: 500px;
}

.faq-item.active .faq-question {
    color: var(--accent);
    border-bottom: 1px solid var(--border);
}

/* ── License portal (WebUI license.html card) ── */
.dash-container {
    position: relative;
    z-index: 1;
    max-width: 520px;
    margin: 72px auto 100px;
    padding: 44px 40px 40px;
    background: rgba(16, 22, 40, 0.85);
    border: 1px solid rgba(80, 120, 200, 0.12);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 221, 179, 0.05);
    text-align: center;
}

.dash-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 55%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.5;
    pointer-events: none;
}

.dash-container h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent);
    text-shadow: 0 0 16px var(--accent-glow);
    margin-bottom: 12px;
}

.dash-lead {
    color: var(--text-secondary);
    margin-bottom: 28px;
    font-size: 14px;
    line-height: 1.55;
}

.input-box {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 16px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    font-family: 'Inter', ui-monospace, monospace;
    text-align: center;
    font-size: 16px;
    letter-spacing: 2px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.input-box:focus {
    outline: none;
    border-color: rgba(0, 221, 179, 0.35);
    box-shadow: 0 0 0 1px var(--accent-dim), 0 0 18px var(--accent-glow);
}

.status-card {
    margin-top: 24px;
    padding: 22px;
    border-radius: 12px;
    text-align: left;
    display: none;
    border: 1px solid var(--bg-card-border);
    background: var(--bg-card);
    backdrop-filter: var(--glass);
    -webkit-backdrop-filter: var(--glass);
    box-shadow: inset 0 1px 0 rgba(100, 160, 255, 0.04);
}

.status-card.visible {
    display: block;
    animation: fadeIn 0.4s ease;
}

.status-card.active-sub {
    border-color: rgba(0, 221, 179, 0.28);
    background: rgba(0, 221, 179, 0.06);
    box-shadow: 0 0 24px var(--accent-dim), inset 0 1px 0 rgba(100, 160, 255, 0.05);
}

.status-card.expired-sub {
    border-color: rgba(255, 85, 85, 0.35);
    background: rgba(255, 85, 85, 0.06);
}

.stat-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    gap: 12px;
}

.stat-label {
    color: var(--text-secondary);
}

.stat-value {
    font-weight: 600;
    color: var(--text-primary);
}

.stat-value.good {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent-glow);
}

.stat-value.bad {
    color: #FF6B6B;
}

.stat-value.cap {
    text-transform: capitalize;
}

.status-card .status-error-title {
    color: #FF6B6B;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}

.status-card-actions {
    margin-top: 20px;
    text-align: center;
}

a.btn.btn-sm,
button.btn.btn-sm {
    padding: 8px 16px;
    min-height: 0;
    font-size: 12px;
    letter-spacing: 1px;
}

.site-footer {
    border-top: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(8, 11, 22, 0.6) 0%, var(--bg-deep) 100%);
    padding: 40px 24px 52px;
}

.footer-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.65;
}

.footer-note {
    margin-top: 12px;
    color: var(--text-dim);
    font-size: 12px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 48px 20px 64px;
        min-height: auto;
    }

    .hero-lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
        max-width: 420px;
        margin: 0 auto 8px;
    }

    .app-mockup {
        transform: none;
    }

    .hero-visual:hover .app-mockup {
        transform: none;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-stat {
        padding: 8px 12px;
    }

    .hero-trust {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-visual-badge {
        bottom: 10px;
        left: 10px;
        font-size: 10px;
        padding: 6px 10px;
    }

    .spec-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .spec-search {
        max-width: none;
    }

    .spec-filters {
        grid-template-columns: 1fr;
    }

    .spec-total-row {
        flex-direction: column;
        align-items: stretch;
    }

    .spec-total-row .btn {
        width: 100%;
    }

    .site-nav-inner {
        padding: 12px 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .realm-badge {
        justify-content: center;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        gap: 10px 14px;
    }

    .section-block {
        padding: 56px 20px 72px;
    }
}

/* ── Admin panel ── */
.admin-wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 28px 24px 80px;
}

.admin-hero {
    margin-bottom: 18px;
    padding: 28px;
    background:
        radial-gradient(ellipse at 20% 10%, rgba(0, 221, 179, 0.14), transparent 55%),
        radial-gradient(ellipse at 85% 85%, rgba(90, 120, 255, 0.18), transparent 50%),
        linear-gradient(165deg, rgba(18, 26, 46, 0.92), rgba(10, 15, 28, 0.95));
}

.admin-hero-kicker {
    color: var(--gold);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.admin-hero-title {
    margin-top: 8px;
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(22px, 3.2vw, 30px);
    letter-spacing: 1.3px;
    color: var(--accent-light);
    text-shadow: 0 0 18px var(--accent-dim);
}

.admin-hero-text {
    margin-top: 8px;
    color: var(--text-secondary);
    max-width: 720px;
}

.admin-card {
    margin-bottom: 18px;
}

.admin-panel {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.admin-content {
    min-width: 0;
}

.admin-command-bar {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
    padding: 16px;
}

.admin-command-left .admin-small-input {
    margin-bottom: 8px;
}

.admin-command-hint {
    margin: 0;
    font-size: 12px;
    color: var(--text-secondary);
}

.admin-command-hint kbd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    min-height: 22px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: rgba(16, 22, 40, 0.85);
    color: var(--text-primary);
    font-size: 11px;
    padding: 0 6px;
}

.admin-command-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-secondary);
}

.admin-toggle input {
    accent-color: var(--accent);
}

.admin-kpis-section {
    margin-bottom: 16px;
}

.admin-sidebar {
    position: sticky;
    top: 84px;
    padding: 18px;
}

.admin-side-nav {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.admin-nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 9px 12px;
    border-radius: 10px;
    border: 1px solid rgba(80, 120, 200, 0.16);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.admin-nav-link:hover {
    border-color: rgba(0, 221, 179, 0.45);
    color: var(--accent);
    background: rgba(0, 221, 179, 0.08);
}

.admin-nav-link.is-active {
    border-color: rgba(0, 221, 179, 0.55);
    color: var(--accent-light);
    background: linear-gradient(180deg, rgba(0, 221, 179, 0.14), rgba(0, 221, 179, 0.05));
    box-shadow: 0 0 20px rgba(0, 221, 179, 0.08);
}

.admin-side-meta {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-secondary);
    display: grid;
    gap: 4px;
}

.admin-side-meta strong {
    color: var(--text-primary);
    font-weight: 600;
}

.admin-title {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    font-size: 20px;
    color: var(--accent);
    margin-bottom: 8px;
}

.admin-subtitle {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.admin-token-input {
    text-align: left;
    letter-spacing: 1px;
}

.admin-message {
    margin-top: 12px;
    color: var(--text-secondary);
    font-size: 13px;
}

.admin-message.is-error {
    color: #ff6b6b;
}

.admin-kpis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.admin-session-line {
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-secondary);
}

.admin-session-line strong {
    color: var(--accent);
}

.admin-kpi {
    padding: 16px 18px;
    border-radius: 12px;
    border: 1px solid rgba(0, 221, 179, 0.15);
    background:
        linear-gradient(180deg, rgba(0, 221, 179, 0.06), rgba(8, 12, 22, 0.2)),
        rgba(16, 22, 40, 0.72);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.admin-kpi:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 221, 179, 0.35);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35), 0 0 20px rgba(0, 221, 179, 0.08);
}

.admin-kpi-label {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-kpi-value {
    margin-top: 8px;
    font-size: 26px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.admin-grid {
    display: grid;
    grid-template-columns: minmax(260px, 340px) 1fr;
    gap: 16px;
}

.admin-section-title {
    margin-bottom: 14px;
    color: var(--text-primary);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.admin-section-meta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(0, 221, 179, 0.4);
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    background: rgba(0, 221, 179, 0.08);
}

.admin-form-grid {
    display: grid;
    gap: 10px;
}

.admin-label {
    font-size: 12px;
    color: var(--text-secondary);
    display: grid;
    gap: 6px;
}

.admin-small-input {
    text-align: left;
    letter-spacing: 0;
    font-size: 14px;
    margin-bottom: 0;
}

.admin-toolbar {
    display: grid;
    grid-template-columns: 1fr 170px 170px auto auto;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}

.admin-toolbar .spec-select,
.admin-toolbar .input-box {
    margin-bottom: 0;
}

.admin-toolbar>button,
.admin-toolbar>a {
    justify-self: end;
}

.admin-toolbar--compact {
    grid-template-columns: minmax(140px, 220px) auto auto;
    justify-content: start;
}

.admin-pager {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 12px;
}

.admin-pager-text {
    font-size: 12px;
    color: var(--text-secondary);
}

.admin-page-size {
    min-height: 36px;
    padding: 6px 10px;
}

.admin-sortable {
    cursor: pointer;
    user-select: none;
}

.admin-sortable:hover {
    color: var(--accent);
}

.admin-table-wrap {
    overflow: auto;
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 860px;
    background: rgba(6, 10, 20, 0.62);
}

.admin-truncate {
    display: inline-block;
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: bottom;
}

.admin-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    max-width: 340px;
}

.admin-chip {
    display: inline-flex;
    align-items: center;
    height: 22px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(80, 120, 200, 0.18);
    background: rgba(16, 22, 40, 0.85);
    color: var(--text-secondary);
    font-size: 11px;
    letter-spacing: 0.2px;
}

.admin-chip--spec {
    border-color: rgba(0, 221, 179, 0.22);
    background: rgba(0, 221, 179, 0.06);
    color: var(--accent-light);
}

.admin-chip--muted {
    border-style: dashed;
    opacity: 0.9;
}

.admin-table th,
.admin-table td {
    text-align: left;
    padding: 11px 10px;
    border-bottom: 1px solid rgba(80, 120, 200, 0.08);
    font-size: 12px;
    color: var(--text-primary);
    vertical-align: top;
}

.admin-table td code {
    white-space: pre-wrap;
    word-break: break-word;
}

/* Make tables feel less cramped */
.admin-table td:first-child,
.admin-table th:first-child {
    padding-left: 14px;
}

.admin-table td:last-child,
.admin-table th:last-child {
    padding-right: 14px;
}

.admin-table th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: rgba(16, 22, 40, 0.96);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-table tbody tr:nth-child(even) {
    background: rgba(22, 30, 52, 0.2);
}

.admin-table tbody tr:hover {
    background: rgba(0, 221, 179, 0.07);
}

.admin-pill {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.admin-pill.ok {
    border-color: rgba(0, 221, 179, 0.4);
    color: var(--accent);
}

.admin-pill.warn {
    border-color: rgba(232, 200, 122, 0.45);
    color: var(--gold);
}

.admin-pill.bad {
    border-color: rgba(255, 107, 107, 0.45);
    color: #ff6b6b;
}

.admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.admin-action-btn {
    min-height: 30px;
    padding: 6px 10px;
}

.admin-action-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

@media (max-width: 1080px) {
    .admin-panel {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        top: auto;
    }

    .admin-side-nav {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .admin-grid {
        grid-template-columns: 1fr;
    }

    .admin-command-bar {
        grid-template-columns: 1fr;
    }

    .admin-command-right {
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .admin-truncate {
        max-width: 100%;
    }

    .admin-chips {
        max-width: 100%;
    }
}

@media (max-width: 840px) {
    .admin-wrap {
        padding: 18px 12px 60px;
    }

    .admin-toolbar {
        grid-template-columns: 1fr;
    }

    .admin-toolbar--compact {
        grid-template-columns: 1fr;
    }

    .admin-pager {
        justify-content: stretch;
        flex-wrap: wrap;
    }

    .admin-hero {
        padding: 22px 18px;
    }
}

/* ══════ Expansion Tabs (Per-Spec Store) ══════ */
.spec-expansion-tabs {
    display: inline-flex;
    gap: 4px;
    margin: 0 auto 32px;
    background: rgba(16, 22, 40, 0.6);
    border-radius: 16px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.spec-expansion-tab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 32px;
    border: none;
    border-radius: 12px;
    background: transparent;
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.spec-expansion-tab:hover {
    color: var(--text-primary);
}

.spec-expansion-tab.is-active {
    background: rgba(255, 255, 255, 0.08);
    /* Will override per expansion below */
    color: var(--text-primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.spec-expansion-tab.is-active[data-expansion="tww"] {
    background: linear-gradient(180deg, rgba(0, 221, 179, 0.18) 0%, rgba(0, 221, 179, 0.05) 100%);
    box-shadow: inset 0 1px 0 rgba(0, 221, 179, 0.3), inset 0 0 20px rgba(0, 221, 179, 0.05), 0 8px 24px rgba(0, 0, 0, 0.3);
}

.spec-expansion-tab.is-active[data-expansion="wotlk"] {
    background: linear-gradient(180deg, rgba(232, 200, 122, 0.18) 0%, rgba(232, 200, 122, 0.05) 100%);
    box-shadow: inset 0 1px 0 rgba(232, 200, 122, 0.3), inset 0 0 20px rgba(232, 200, 122, 0.05), 0 8px 24px rgba(0, 0, 0, 0.3);
}

.spec-expansion-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ══════ Expansion Banner (index.html) ══════ */
.exp-banner {
    padding: clamp(40px, 6vw, 80px) 40px;
    position: relative;
    overflow: hidden;
}

.exp-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 221, 179, 0.03) 50%, transparent 100%);
    pointer-events: none;
}

.exp-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.exp-banner-kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
    text-shadow: 0 0 14px var(--accent-glow);
    margin-bottom: 12px;
}

.exp-banner-heading {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.exp-banner-heading-accent {
    background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 18px var(--accent-glow));
}

.exp-banner-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 36px;
}

/* ── Banner Grid ── */
.exp-banner-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

@media (max-width: 768px) {
    .exp-banner-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .exp-banner {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ── Expansion Card (Borderless Immersive) ── */
.exp-card {
    flex: 1 1 350px;
    max-width: 500px;
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    border: none;
    background: var(--bg-deep);
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    min-height: 380px;
}

.exp-card:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Artwork Full Bleed */
.exp-card-art {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.exp-card-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
    filter: brightness(0.9);
}

.exp-card:hover .exp-card-art img {
    transform: scale(1.08);
    filter: brightness(1.1) saturate(1.1);
}

.exp-card-art-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(11, 14, 26, 1) 0%, rgba(11, 14, 26, 0.85) 30%, rgba(11, 14, 26, 0) 80%);
    pointer-events: none;
}

/* Badge */
.exp-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-primary);
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.exp-card--wotlk .exp-card-badge {
    border-color: rgba(232, 200, 122, 0.3);
    color: var(--gold);
}

/* Body floats at bottom */
.exp-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.exp-card-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 0.03em;
    margin-bottom: 12px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.exp-card-stats {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--text-secondary);
}

.exp-card-stats strong {
    color: var(--accent);
    font-weight: 800;
    font-size: 14px;
}

.exp-card--wotlk .exp-card-stats strong {
    color: var(--gold);
}

.exp-card-stat-sep {
    color: var(--border);
    font-size: 10px;
}

.exp-card-glow {
    position: absolute;
    bottom: -80px;
    left: 50%;
    width: 300px;
    height: 300px;
    transform: translateX(-50%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.exp-card:hover .exp-card-glow {
    opacity: 0.8;
}

.exp-card--tww .exp-card-glow {
    background: rgba(0, 221, 179, 0.15);
}

.exp-card--wotlk .exp-card-glow {
    background: rgba(232, 200, 122, 0.15);
}

/* ══════ Logo-Only Banner (index.html) ══════ */
@keyframes logoPulse {

    0%,
    100% {
        opacity: 0.35;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 0.65;
        transform: translateX(-50%) scale(1.15);
    }
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.exp-logo-banner {
    padding: clamp(36px, 5vw, 64px) 40px;
    background: linear-gradient(180deg, rgba(10, 14, 26, 0) 0%, rgba(10, 14, 26, 0.5) 30%, rgba(10, 14, 26, 0.5) 70%, rgba(10, 14, 26, 0) 100%);
    position: relative;
    overflow: hidden;
}

.exp-logo-banner-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.exp-logo-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 24px;
    border-radius: 16px;
}

.exp-logo-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    text-shadow: 0 0 12px var(--accent-glow);
}

.exp-logo-item--wotlk .exp-logo-label {
    color: var(--gold);
    text-shadow: 0 0 12px var(--gold-glow);
}

.exp-logo-wrap {
    position: relative;
    animation: logoFloat 4s ease-in-out infinite;
}

.exp-logo-item--wotlk .exp-logo-wrap {
    animation-delay: 2s;
}

.exp-logo-glow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 60px;
    border-radius: 50%;
    filter: blur(28px);
    animation: logoPulse 3s ease-in-out infinite;
}

.exp-logo-item--tww .exp-logo-glow {
    background: rgba(0, 221, 179, 0.6);
}

.exp-logo-item--tww .exp-logo-wrap {
    animation-duration: 3.5s;
}

.exp-logo-item--wotlk .exp-logo-glow {
    background: rgba(232, 200, 122, 0.6);
    animation-delay: 1.5s;
}

.exp-logo-img {
    width: clamp(220px, 26vw, 340px);
    height: auto;
    object-fit: contain;
    display: block;
    mix-blend-mode: lighten;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.7));
    transition: transform 0.4s ease, filter 0.4s ease;
    position: relative;
    z-index: 1;
}



.exp-logo-divider {
    width: 1px;
    height: 120px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    flex-shrink: 0;
    margin: 0 8px;
}

@media (max-width: 600px) {
    .exp-logo-banner-inner {
        flex-direction: column;
        gap: 16px;
    }

    .exp-logo-divider {
        width: 80px;
        height: 1px;
        margin: 0;
    }
}