:root {
    --bg-dark: #07070a;
    --bg-darker: #040405;
    --bg-glass: rgba(10, 10, 15, 0.7);
    --text-main: #f0f0f5;
    --text-muted: #9aa0a6;
    --accent-red: #d32f2f;
    --accent-cyan: #00e5ff;
    --color-yellow: #facc15;
    --glow-cyan: rgba(0, 229, 255, 0.4);
    --glow-red: rgba(211, 47, 47, 0.6);
    --tape-warning: #ffb300;

    --font-heading: 'Orbitron', sans-serif;
    --font-sub: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

/* Base Full-Page Lock */
html,
body {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    /* Remove standard scrolling entirely */
    background-color: var(--bg-darker);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
}

/* ── Scroll Container ── */
.scroll-container {
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.scroll-container::-webkit-scrollbar { display: none; }

/* ── Sections ── */
.scroll-section {
    width: 100%;
    height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* ═══════════════════════════════════════
   PROGRESS BAR — AAA
═══════════════════════════════════════ */
#scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    background: linear-gradient(to right, var(--accent-cyan), #00d4ff, rgba(0,229,255,0.7));
    z-index: 9999;
    width: 0%;
    transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 0 10px rgba(0,229,255,0.8), 0 0 20px rgba(0,229,255,0.4);
}
#scroll-progress::after {
    content: '';
    position: absolute;
    right: 0; top: 50%;
    transform: translateY(-50%);
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent-cyan);
    box-shadow: 0 0 8px var(--accent-cyan), 0 0 16px rgba(0,229,255,0.6);
}

/* Flash overlay */
#page-flash {
    position: fixed;
    inset: 0;
    background: rgba(0,229,255,0.025);
    pointer-events: none;
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.12s ease;
}

/* Typography */
h1,
h2,
h3,
h4,
.subtitle,
.hud-label {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--text-main);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

h3 {
    font-family: var(--font-sub);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.subtitle {
    font-family: var(--font-sub);
    font-size: 1.2rem;
    color: var(--accent-cyan);
    font-weight: 600;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 0.5rem;
}

a {
    text-decoration: none;
    color: inherit;
}



.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
    padding: 1vw 0;
}

.navbar.scrolled {
    /* Kept class to avoid breaking JS, but no visual changes applied */
    background: transparent;
    border-bottom: none;
}

.nav-container {
    max-width: 100%;
    margin: 0;
    padding: 0 2vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
    transition: var(--transition-smooth);
}

.logo:hover {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
}

/* Text logo */
.logo-text {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.28em;
    color: rgba(255,255,255,0.85);
    line-height: 1.15;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.logo-text strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    color: #fff;
    line-height: 1;
}
.logo-accent {
    color: var(--accent-cyan);
    text-shadow: 0 0 14px rgba(0,229,255,0.7);
}
.logo-link:hover .logo-text {
    filter: drop-shadow(0 0 10px rgba(0,229,255,0.4));
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    gap: clamp(0.8rem, 2vw, 3rem);
    transform: translateY(-16px);
}

.nav-link {
    font-family: var(--font-heading);
    font-size: clamp(0.6rem, 0.85vw, 0.95rem);
    font-weight: 700;
    color: rgba(255,255,255,0.45);
    position: relative;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    cursor: pointer;
}

/* Underline bar */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-cyan);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.23,1,0.32,1);
    box-shadow: 0 0 6px rgba(0,229,255,0.6);
}

.nav-link:hover {
    color: rgba(255,255,255,0.85);
}

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

.nav-link.active {
    color: var(--accent-cyan);
    text-shadow: 0 0 12px rgba(0,229,255,0.3);
}

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

/* ═══════════════════════════════════════
   SIDE NAV — AAA HUD STYLE
═══════════════════════════════════════ */
.side-nav {
    position: fixed;
    right: 1.6rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
    z-index: 1000;
    /* Vertical line connector */
    padding: 0.5rem 0;
}
.side-nav::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    right: 3px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(0,229,255,0.12), rgba(0,229,255,0.12), transparent);
}

.dot {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.6rem;
    cursor: pointer;
    padding: 5px 0;
    position: relative;
    transition: all 0.3s ease;
}

/* Dot circle */
.dot::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.15);
    flex-shrink: 0;
    transition: all 0.35s cubic-bezier(0.23,1,0.32,1);
    display: block;
}

.dot:hover::after {
    background: rgba(255,255,255,0.6);
    border-color: rgba(255,255,255,0.5);
    transform: scale(1.4);
    box-shadow: 0 0 8px rgba(255,255,255,0.3);
}

.dot.active::after {
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(0,229,255,0.15),
                0 0 12px rgba(0,229,255,0.7);
    animation: dot-active-pulse 2s ease-in-out infinite;
}

@keyframes dot-active-pulse {
    0%, 100% { box-shadow: 0 0 0 2px rgba(0,229,255,0.15), 0 0 8px rgba(0,229,255,0.6); }
    50%       { box-shadow: 0 0 0 4px rgba(0,229,255,0.2), 0 0 16px rgba(0,229,255,0.9); }
}

/* Label that slides in on hover/active */
.dot::before {
    content: attr(title);
    font-family: var(--font-heading);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-cyan);
    background: rgba(4,4,6,0.88);
    border: 1px solid rgba(0,229,255,0.2);
    border-radius: 3px;
    padding: 0.25rem 0.65rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.5), -2px 0 0 var(--accent-cyan);
    position: static;
    top: auto;
    right: auto;
}

.dot:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.dot.active::before {
    opacity: 0;
    transform: translateX(8px);
}

.dot.active:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 900;
    color: #000;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, #0099ff 100%);
    border: none;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 160px;
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.4), inset 0 2px 10px rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-20deg);
    transition: left 0.7s ease;
}

.cta-button:hover {
    background: linear-gradient(135deg, #4dffff 0%, var(--accent-cyan) 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 229, 255, 0.6), inset 0 2px 20px rgba(255, 255, 255, 0.5);
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.cta-button:hover::after {
    left: 200%;
}

.cta-button.primary-cta {
    font-size: 1.35rem;
    padding: 1.2rem 3rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: pulse-glow 3s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 35px rgba(0, 229, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.5);
    }

    100% {
        box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
    }
}

.cta-button.massive {
    font-size: 1.5rem;
    padding: 1.5rem 4rem;
    border-width: 2px;
}

.icon-btn {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-main);
    height: 54px;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-family: var(--font-sub);
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: var(--transition-smooth);
    backdrop-filter: blur(5px);
}

.icon-btn svg {
    width: 20px;
    height: 20px;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-main);
}

/* Animations Triggered by Scroller */
/* ─── REVEAL SYSTEM — Cinematic Entrances ─── */

.reveal-content {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(4px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform, filter;
}

.reveal-content.active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
}

.reveal-card {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
    filter: blur(3px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform, filter;
}

.reveal-card.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
}

/* ═══════════════════════════════════════════════════
   HERO — AAA CINEMATIC EXPERIENCE
═══════════════════════════════════════════════════ */

/* Layout */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    overflow: hidden;
    position: relative;
}

/* Video */
.video-container { position:absolute; inset:0; z-index:1; }
#hero-video { width:100%; height:100%; object-fit:cover; filter: saturate(1.1) brightness(0.85); }

/* ── Overlay: assombrissement subtil ── */
.video-overlay {
    position:absolute; inset:0; z-index:2;
    background:
        linear-gradient(to bottom,
            rgba(4,4,8,0.65) 0%,
            rgba(4,4,8,0.15) 20%,
            rgba(4,4,8,0.15) 65%,
            rgba(4,4,8,0.72) 100%
        );
}

/* Vignette radiale AAA */
.hero-vignette {
    display: none;
}

/* Grain cinématique plus fin */
.hero-noise {
    display: none;
}

/* Scanlines plus subtiles */
.hero-scanlines {
    display: none;
}

/* Corner glows — supprimés */
.hero-corner {
    display: none;
}
.hero-corner--tl { display: none; }
.hero-corner--br { display: none; }
.hero-corner--bc { display: none; }

@keyframes bc-breathe {
    0%   { opacity:0.5; transform:translateX(-50%) scaleX(0.9); }
    100% { opacity:1;   transform:translateX(-50%) scaleX(1.1); }
}
@keyframes corner-drift {
    0%   { transform: translate(0,0) scale(1); }
    100% { transform: translate(30px,20px) scale(1.1); }
}

/* HUD corner brackets - AAA decoration */
.hero::before { content: none; }
.hero::after  { content: none; }

/* ── Content wrapper ── */
.hero-content {
    position:relative; z-index:10;
    max-width:1100px; width:100%;
    margin: 0 auto;
    padding: 72px 1.5rem 0;
    text-align:center;
    display:flex; flex-direction:column; align-items:center; gap:0;
}

/* ═══════════════════════
   1. EYEBROW — AAA
═══════════════════════ */
.hero-eyebrow {
    display:flex; align-items:center; gap:0.6rem;
    margin-bottom:0.8rem;
    flex-wrap:wrap; justify-content:center;
}

/* LIVE badge AAA */
.hero-live-badge {
    position:relative;
    display:inline-flex; align-items:center; gap:0.42rem;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,20,0,0.75) 100%);
    border:1px solid rgba(34,197,94,0.4);
    border-radius:4px;
    padding:0.32rem 1rem 0.32rem 0.9rem;
    font-family: var(--font-heading);
    backdrop-filter: blur(16px);
    box-shadow: 0 0 20px rgba(34,197,94,0.12), inset 0 1px 0 rgba(255,255,255,0.04), 0 0 0 1px rgba(34,197,94,0.06);
}

.hero-live-pulse-ring {
    position:absolute;
    width:18px; height:18px;
    border-radius:50%;
    border:1px solid #22c55e;
    left:0.65rem; top:50%; transform:translateY(-50%);
    animation: live-ring 2s ease-out infinite;
    opacity:0;
}
@keyframes live-ring {
    0%   { transform:translateY(-50%) scale(0.4); opacity:0.8; }
    100% { transform:translateY(-50%) scale(2.2); opacity:0; }
}

.hero-live-dot {
    width:7px; height:7px; border-radius:50%; flex-shrink:0;
    background:#22c55e;
    box-shadow: 0 0 8px #22c55e, 0 0 20px rgba(34,197,94,0.6);
    animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }

.hero-live-label-text {
    font-size:0.58rem; font-weight:900; letter-spacing:0.25em;
    color:#22c55e;
    text-shadow: 0 0 12px rgba(34,197,94,0.8);
}
.hero-live-sep {
    width:1px; height:14px;
    background:rgba(34,197,94,0.3);
    flex-shrink:0;
}
.hero-live-count {
    font-size:0.9rem; font-weight:900; letter-spacing:0.04em;
    color:#fff;
    text-shadow: 0 0 16px rgba(255,255,255,0.4);
}
.hero-live-suffix {
    font-size:0.58rem; font-weight:600; letter-spacing:0.14em;
    color:rgba(255,255,255,0.45); text-transform:uppercase;
}

/* Platform badges AAA */
.hero-platform-badge {
    display:inline-flex; align-items:center; gap:0.4rem;
    background: linear-gradient(135deg, rgba(0,229,255,0.07) 0%, rgba(0,229,255,0.04) 100%);
    border:1px solid rgba(0,229,255,0.28);
    border-radius:4px;
    padding:0.32rem 0.9rem;
    font-family:var(--font-heading);
    font-size:0.62rem; font-weight:700; letter-spacing:0.18em;
    color:var(--accent-cyan);
    backdrop-filter:blur(16px);
    box-shadow: 0 0 16px rgba(0,229,255,0.1), inset 0 1px 0 rgba(0,229,255,0.08);
    text-shadow: 0 0 14px rgba(0,229,255,0.6);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.hero-platform-badge:hover {
    box-shadow: 0 0 24px rgba(0,229,255,0.25), inset 0 1px 0 rgba(0,229,255,0.1);
    border-color: rgba(0,229,255,0.5);
}


/* ═══════════════════════════════════════
   HERO STATUS BAR — AAA Unified 3-segment
═══════════════════════════════════════ */
.hero-status-bar {
    display: inline-flex;
    align-items: stretch;
    position: relative;
    margin-bottom: 0.4rem;
    margin-top: -3rem;
    background: rgba(4, 8, 12, 0.38);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50px;
    overflow: hidden;
    backdrop-filter: blur(16px) saturate(1.2);
    box-shadow:
        0 4px 20px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

/* Top edge subtle line */
.hero-status-bar::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.12), transparent);
    pointer-events: none;
    z-index: 3;
}

.hero-status-bar::after { content: none; }

/* ── Each segment ── */
.hsb-segment {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 1.3rem;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    transition: background 0.35s ease;
    cursor: default;
}

.hsb-segment:hover {
    background: rgba(255,255,255,0.02);
}

/* Vertical divider */
.hsb-divider {
    width: 1px;
    flex-shrink: 0;
    margin: 8px 0;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent);
    position: relative;
    z-index: 1;
}

/* ── Segment 1: LIVE ── */
.hsb-live {
    position: relative;
    background: transparent;
}

.hsb-live-dot-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.hsb-live-pulse-ring {
    position: absolute;
    width: 20px; height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(34,197,94,0.4);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: hsb-ring 2s ease-out infinite;
    opacity: 0;
    pointer-events: none;
}
@keyframes hsb-ring {
    0%   { transform: translate(-50%, -50%) scale(0.3); opacity: 0.9; }
    100% { transform: translate(-50%, -50%) scale(2.8); opacity: 0; }
}

.hsb-live-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    animation: hsb-blink 1.8s ease-in-out infinite;
    box-shadow:
        0 0 6px rgba(34,197,94,0.6);
}
@keyframes hsb-blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hsb-live-label {
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.28em;
    color: #22c55e;
    text-shadow: 0 0 10px rgba(34,197,94,0.6);
}

.hsb-sep {
    width: 1px; height: 16px;
    background: linear-gradient(to bottom, transparent, rgba(34,197,94,0.3), transparent);
    flex-shrink: 0;
}

.hsb-counter {
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    color: #fff;
    text-shadow: none;
}

.hsb-counter-suffix {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.32);
    margin-left: 0.1rem;
}

/* ── Segment 2: Season ── */
.hsb-season {
    background: transparent;
}

.hsb-season-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--color-yellow);
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(250,204,21,0.5);
    animation: hsb-season-pulse 3s ease-in-out infinite;
}
@keyframes hsb-season-pulse {
    0%, 100% { box-shadow: 0 0 6px rgba(250,204,21,0.4); }
    50%       { box-shadow: 0 0 10px rgba(250,204,21,0.7); }
}

.hsb-season-label {
    color: var(--color-yellow);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-shadow: 0 0 10px rgba(250,204,21,0.45);
}

/* ── Segment 3: Platform ── */
.hsb-platform {
    background: transparent;
}

.hsb-platform svg {
    flex-shrink: 0;
    color: var(--accent-cyan);
    filter: drop-shadow(0 0 4px rgba(0,229,255,0.5));
}

.hsb-platform-label {
    color: var(--accent-cyan);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-shadow: 0 0 10px rgba(0,229,255,0.45);
}

/* ═══════════════════════
   2. LOGO — AAA IMPACT
═══════════════════════ */
.hero-logo-wrap {
    position:relative;
    display:flex; align-items:center; justify-content:center;
    margin-bottom: -2.2rem;
    margin-top: 2rem;
}

.hero-logo-glow-ring {
    position:absolute;
    width:75%; height:75%;
    border-radius:50%;
    background: radial-gradient(circle, rgba(4,4,8,0.6) 0%, rgba(0,229,255,0.22) 45%, transparent 75%);
    filter: blur(35px);
    animation: logo-halo 4s ease-in-out infinite alternate;
    pointer-events:none;
    z-index:0;
}
@keyframes logo-halo {
    0%   { opacity:0.65; transform:scale(0.88); }
    100% { opacity:1.0; transform:scale(1.18); }
}

.hero-logo-img {
    position:relative; z-index:1;
    width: clamp(300px, 46vw, 640px);
    height:auto; object-fit:contain;
    filter:
        drop-shadow(0 0 20px rgba(0,229,255,0.2))
        drop-shadow(0 0 40px rgba(0,229,255,0.08))
        drop-shadow(0 6px 12px rgba(0,0,0,1));
    animation: logo-pulse-aaa 4s ease-in-out infinite;
}
@keyframes logo-pulse-aaa {
    0%,100% {
        filter:
            drop-shadow(0 0 15px rgba(0,229,255,0.18))
            drop-shadow(0 0 35px rgba(0,229,255,0.07))
            drop-shadow(0 6px 12px rgba(0,0,0,1));
    }
    50% {
        filter:
            drop-shadow(0 0 28px rgba(0,229,255,0.3))
            drop-shadow(0 0 60px rgba(0,229,255,0.12))
            drop-shadow(0 6px 12px rgba(0,0,0,1));
    }
}

/* ═══════════════════════
   3. TAGLINE — AAA
═══════════════════════ */
.hero-tagline-wrap {
    display:flex; flex-direction:column; align-items:center; gap:0.1rem;
    margin-bottom:0.4rem;
}

.hero-tagline-top {
    font-family:var(--font-heading);
    font-size:clamp(1.3rem, 2vw, 1.7rem);
    font-weight:700; letter-spacing:0.18em;
    color:rgba(255,255,255,0.9);
    text-shadow: 0 0 30px rgba(0,229,255,0.18), 0 2px 20px rgba(0,0,0,1);
    line-height:1.45;
    background: linear-gradient(to right, rgba(255,255,255,0.9), rgba(200,245,255,0.95), rgba(255,255,255,0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline-bot {
    font-family:var(--font-sub);
    font-size:clamp(1rem, 1.5vw, 1.25rem);
    font-weight:500; letter-spacing:0.03em;
    color:rgba(200,210,225,0.75);
    text-shadow: 0 2px 16px rgba(0,0,0,0.95);
    line-height:1.55;
    max-width: 680px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.hero-tagline-bot strong {
    color: #d32f2f; font-weight:700;
    text-shadow: 0 0 18px rgba(211,47,47,0.7), 0 0 35px rgba(211,47,47,0.35);
    -webkit-text-fill-color: #d32f2f;
}

/* No Pay-to-Win badge */
.no-p2w-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.3rem 0.5rem;
    background: transparent;
    border: none;
    border-radius: 50px;
}

.hero-tagline-bot {
    margin-top: -1.2rem;
}

/* ═══════════════════════
   4. FEATURE PILLS — AAA
═══════════════════════ */
.hero-pills {
    display:flex; align-items:center; flex-wrap:wrap;
    gap:0.5rem; justify-content:center;
    margin-bottom:1.2rem;
}

.hero-pill {
    display:inline-flex; align-items:center; gap:0.4rem;
    font-family:var(--font-heading);
    font-size:0.7rem; font-weight:700; letter-spacing:0.1em;
    color:rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.22);
    border-radius:3px;
    padding:0.45rem 1rem;
    backdrop-filter:blur(12px);
    transition: all 0.3s cubic-bezier(0.23,1,0.32,1);
    white-space:nowrap; cursor:default;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,229,255,0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.hero-pill svg { opacity:0.7; flex-shrink:0; transition:all 0.3s ease; }
.hero-pill:hover {
    color:var(--accent-cyan);
    border-color:rgba(0,229,255,0.55);
    background: rgba(0,229,255,0.08);
    box-shadow: 0 0 14px rgba(0,229,255,0.15);
    transform: translateY(-2px);
}
.hero-pill:hover::before { opacity: 1; }
.hero-pill:hover svg { opacity:1; stroke:var(--accent-cyan); filter:drop-shadow(0 0 5px rgba(0,229,255,0.8)); }

/* ═══════════════════════
   5. CTA AAA — DOMINATING
═══════════════════════ */
.hero-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0;
    text-decoration: none;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.9rem;
    border: none;
    background: none;
    animation: cta-pulse-aaa 3s ease-in-out infinite;
    cursor: pointer;
}

/* Fond principal — cyan comme les autres boutons */
.hero-cta-bg {
    position: absolute; inset: 0; z-index: 0;
    background: linear-gradient(135deg, #00e5ff 0%, #00ccff 40%, #00a8d4 100%);
    border-radius: 3px;
    transition: filter 0.35s ease;
}

/* Ligne blanche en haut — effet AAA */
.hero-cta-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.8), transparent);
    z-index: 2;
}

/* Ligne subtile en bas */
.hero-cta-bg::after {
    content: '';
    position: absolute;
    bottom: 0; left: 20%; right: 20%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
}

.hero-cta:hover .hero-cta-bg {
    filter: brightness(1.12);
}

/* Shine sweep AAA */
.hero-cta-shine {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(105deg,
        transparent 20%,
        rgba(0,229,255,0.06) 40%,
        rgba(255,255,255,0.12) 50%,
        rgba(0,229,255,0.06) 60%,
        transparent 80%
    );
    transform: translateX(-130%);
    animation: cta-shine-aaa 4s ease-in-out infinite;
}
@keyframes cta-shine-aaa {
    0%, 60%, 100% { transform: translateX(-130%); }
    30%            { transform: translateX(130%); }
}

/* Inner padding wrapper */
.hero-cta-texts {
    position: relative; z-index: 2;
    display: flex; flex-direction: column; align-items: flex-start; gap: 0.18rem;
    padding: 1.25rem 1.2rem 1.25rem 1rem;
}

.hero-cta-main {
    font-family: var(--font-heading);
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    font-weight: 900;
    letter-spacing: 0.14em;
    line-height: 1;
    color: #000;
    white-space: nowrap;
}

.hero-cta-sub {
    font-family: var(--font-sub);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: rgba(0,0,0,0.6);
    line-height: 1;
    white-space: nowrap;
}

/* Icon */
.hero-cta-icon {
    position: relative; z-index: 2; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    width: 42px; height: 100%;
    color: rgba(0,0,0,0.7);
    border-right: 1px solid rgba(0,0,0,0.15);
    padding: 1.25rem 0;
    background: rgba(0,0,0,0.08);
    transition: all 0.35s cubic-bezier(0.23,1,0.32,1);
    align-self: stretch;
}
.hero-cta:hover .hero-cta-icon {
    background: rgba(0,0,0,0.12);
    color: #000;
}

/* Arrow */
.hero-cta-arrow {
    position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: center;
    width: 42px;
    font-size: 1.1rem; line-height: 1;
    color: rgba(0,0,0,0.55);
    border-left: 1px solid rgba(0,0,0,0.15);
    padding: 1.25rem 0;
    align-self: stretch;
    transition: all 0.35s cubic-bezier(0.23,1,0.32,1);
    background: rgba(0,0,0,0.06);
}
.hero-cta:hover .hero-cta-arrow {
    color: #000;
    transform: translateX(4px);
    background: rgba(0,0,0,0.1);
}

/* Top edge highlight */
.hero-cta::before { content: none; }

@keyframes cta-pulse-aaa {
    0%, 100% { box-shadow: 0 0 15px rgba(0,229,255,0.3), 0 8px 30px rgba(0,0,0,0.6); }
    50%       { box-shadow: 0 0 30px rgba(0,229,255,0.5), 0 8px 30px rgba(0,0,0,0.6); }
}

.hero-cta:hover {
    transform: translateY(-3px);
    animation: none;
    box-shadow:
        0 0 35px rgba(0,229,255,0.55),
        0 12px 40px rgba(0,0,0,0.7);
}

/* ═══════════════════════
   6. SOCIAL PROOF — AAA
═══════════════════════ */
.hero-proof {
    display:inline-flex; align-items:stretch; gap:0;
    background: transparent;
    border: none;
    border-radius: 6px;
    backdrop-filter: none;
    box-shadow: none;
    overflow:hidden;
    margin-bottom: 0;
    max-width: 100%;
    flex-wrap: nowrap;
    position: relative;
}
.hero-proof::before {
    content: none;
}

.hero-proof-stat {
    display:flex; align-items:center; gap:0.55rem;
    padding:0.7rem 1.4rem;
    min-width: 0;
    flex-shrink: 0;
    position: relative;
}
.hero-proof-stat:hover { background: transparent; }
.hero-proof-stat svg { flex-shrink: 0; }

.hero-proof-line {
    width:1px; height:auto; flex-shrink:0; align-self: stretch;
    background: rgba(255,255,255,0.25);
    margin: 8px 0;
}

.hero-proof-stars {
    font-size:0.85rem; letter-spacing:0.04em;
    color:var(--color-yellow);
    filter:drop-shadow(0 0 7px rgba(250,204,21,0.7));
    white-space:nowrap; line-height:1;
}
.hero-hstar {
    display:inline-block; position:relative;
    color:rgba(255,255,255,0.15);
}
.hero-hstar::before {
    content:"\2605";
    position:absolute; left:0; top:0;
    color:var(--color-yellow);
    clip-path: inset(0 50% 0 0);
}

.hero-proof-val {
    font-family:var(--font-heading);
    font-size:clamp(0.85rem, 1vw, 1rem); font-weight:900; letter-spacing:0.05em;
    color:var(--accent-cyan);
    text-shadow: 0 0 16px rgba(0,229,255,0.5);
    line-height:1;
    white-space: nowrap;
}

.hero-proof-lbl {
    font-family:var(--font-sub);
    font-size:clamp(0.62rem, 0.72vw, 0.72rem); font-weight:600; letter-spacing:0.1em;
    color:rgba(255,255,255,0.45); text-transform:uppercase;
    line-height:1; white-space:nowrap;
}

/* ═══════════════════════
   RESPONSIVE AAA
═══════════════════════ */
@media (min-width:1440px) {
    .hero-logo-img   { width:clamp(380px, 40vw, 680px); }
    .hero-proof-stat { padding:0.75rem 1.7rem; }
}
@media (min-width:1025px) and (max-width:1280px) {
    .hero-logo-img  { width:clamp(270px, 36vw, 520px); }
    .hero-cta-main  { font-size:clamp(0.95rem,1.2vw,1.1rem); }
    .hero-pill      { font-size:0.65rem; padding:0.28rem 0.7rem; }
}
@media (max-width:1024px) {
    .hero-pills     { display:none; }
    .hero-logo-img  { width:clamp(230px, 52vw, 420px); }
    .hero-proof-line { display:none; }
    .hero-proof-stat { flex:1; justify-content:center; padding:0.5rem 0.8rem; }
}
@media (max-height:800px) {
    .hero           { padding: 0 2rem; }
    .hero-content   { padding-top: 68px; }
    .hero-logo-wrap { margin-bottom: -1.2rem; }
    .hero-logo-img  { width:clamp(180px,28vw,340px); }
    .hero-tagline-top { font-size:1.1rem; }
    .hero-tagline-bot { font-size:0.95rem; }
}

/* Scroll indicator — hidden */
.scroll-indicator { display: none !important; }
.mouse            { display: none !important; }
.wheel            { display: none !important; }
.arrow-down       { display: none !important; }


/* ═══════════════════════════════════════
   HERO HUD DECORATIVE LINES
═══════════════════════════════════════ */
.hero-hud-tl {
    position: absolute;
    top: 80px; left: 2.5rem;
    width: 120px; height: 60px;
    border-top: 1px solid rgba(0,229,255,0.3);
    border-left: 1px solid rgba(0,229,255,0.3);
    z-index: 8;
    pointer-events: none;
    animation: hud-fade 3s ease-in-out infinite alternate;
}
.hero-hud-tl::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px;
    width: 6px; height: 6px;
    background: var(--accent-cyan);
    box-shadow: 0 0 8px var(--accent-cyan);
}
.hero-hud-br {
    position: absolute;
    bottom: 2rem; right: 2.5rem;
    width: 120px; height: 60px;
    border-bottom: 1px solid rgba(0,229,255,0.3);
    border-right: 1px solid rgba(0,229,255,0.3);
    z-index: 8;
    pointer-events: none;
    animation: hud-fade 3s ease-in-out 1.5s infinite alternate;
}
.hero-hud-br::after {
    content: '';
    position: absolute;
    bottom: -1px; right: -1px;
    width: 6px; height: 6px;
    background: var(--accent-cyan);
    box-shadow: 0 0 8px var(--accent-cyan);
}
@keyframes hud-fade {
    0%   { opacity: 0.4; }
    100% { opacity: 0.85; }
}

/* ═══════════════════════════════════════
   SIDE NAV DOTS — AAA UPGRADE
═══════════════════════════════════════ */

/* Common Section Layout Rules */
.section-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.full-height-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-header {
    text-align: center;
    margin-bottom: 3vh;
}

.header-line {
    width: 60px;
    height: 3px;
    background: var(--accent-cyan);
    margin: 1rem auto 0;
    box-shadow: 0 0 10px var(--glow-cyan);
}

.section-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* Features Section */
.features .full-height-container {
    padding-top: 80px; /* avoid navbar overlap */
    justify-content: center;
    gap: 0;
}

.features::before,
.features::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 10vh;
    z-index: 1;
}

.features::before {
    top: 0;
    background: linear-gradient(to bottom, var(--bg-darker) 0%, transparent 100%);
}

.features::after {
    bottom: 0;
    background: linear-gradient(to top, var(--bg-darker) 0%, transparent 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

/* Features title */
.features-title {
    font-size: clamp(2rem, 3.5vw, 3.2rem) !important;
    letter-spacing: 0.04em;
}

.features-subtitle {
    font-family: var(--font-sub);
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 0.6rem;
}

.feature-card {
    position: relative;
    height: clamp(200px, 32vh, 46vh);
    min-height: 200px;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-dark);
    transition: box-shadow 0.4s ease, border-color 0.4s ease, transform 0.4s cubic-bezier(0.23,1,0.32,1);
    border-radius: 3px;
}

.feature-card.active:hover {
    transform: scale(1.03) translateY(-5px) !important;
    z-index: 10;
    box-shadow: 0 30px 60px rgba(0,0,0,0.9), 0 0 40px rgba(0,229,255,0.12);
    border-color: rgba(0,229,255,0.5);
}

.feature-card:not(.active):hover {
    border-color: rgba(0,229,255,0.25);
}

.feature-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.72;
    transition: transform 0.8s ease, opacity 0.4s ease, filter 0.4s ease;
    filter: brightness(0.85) saturate(1.0);
}

.feature-content {
    position: relative;
    z-index: 2;
    padding: 1.2rem 1.4rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top,
        rgba(4,4,5,0.95) 0%,
        rgba(4,4,5,0.4) 40%,
        rgba(4,4,5,0.05) 100%
    );
    transition: var(--transition-smooth);
}

/* Icon — toujours visible en haut à gauche */
.feature-icon {
    position: absolute;
    top: 1rem; left: 1.2rem;
    opacity: 0.7;
    color: var(--accent-cyan);
    filter: drop-shadow(0 0 6px rgba(0,229,255,0.4));
    transition: opacity 0.35s ease, transform 0.35s ease, filter 0.35s ease;
    transform: scale(1);
    flex-shrink: 0;
    background: rgba(0,0,0,0.4);
    padding: 0.4rem;
    border-radius: 4px;
    border: 1px solid rgba(0,229,255,0.2);
}

.feature-text-block {
    display: flex;
    flex-direction: column;
}

.feature-card:hover .feature-icon {
    opacity: 1;
    filter: drop-shadow(0 0 14px var(--accent-cyan));
    border-color: rgba(0,229,255,0.5);
    background: rgba(0,229,255,0.1);
}

.feature-icon svg { display: block; }

.feature-card h3 {
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    transition: var(--transition-smooth);
    text-shadow: 0 2px 8px rgba(0,0,0,0.9);
    color: #fff;
}

.feature-card p {
    font-size: 0.82rem;
    line-height: 1.6;
    color: rgba(240,240,245,0.8);
    transform: translateY(10px);
    opacity: 0;
    transition: var(--transition-smooth);
}

/* Barre cyan gauche */
.feature-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 0;
    background: linear-gradient(to bottom, var(--accent-cyan), rgba(0,229,255,0.3));
    transition: height 0.5s ease;
    box-shadow: 0 0 12px var(--glow-cyan);
    z-index: 3;
}

/* Ligne top */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,229,255,0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
}

.feature-card:hover .feature-bg {
    transform: scale(1.06);
    opacity: 0.88;
    filter: brightness(0.9) saturate(1.15);
}

.feature-card:hover .feature-content {
    background: linear-gradient(to top,
        rgba(4,4,5,0.97) 0%,
        rgba(4,4,5,0.3) 55%,
        transparent 100%
    );
}

.feature-card:hover p {
    transform: translateY(0);
    opacity: 1;
}

.feature-card:hover h3 {
    color: var(--accent-cyan);
    text-shadow: 0 0 20px rgba(0,229,255,0.4);
}

.feature-card:hover::after { height: 100%; }
.feature-card:hover::before { opacity: 1; }

/* Gameplay Showcase Items */
.showcase-item {
    position: relative;
    padding: 0 5vw;
}

.showcase-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 10s ease-out;
    /* Slow zoom when snapped */
    filter: brightness(0.6) contrast(1.1);
}

.showcase-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to bottom, var(--bg-darker) 0%, transparent 15%, transparent 85%, var(--bg-darker) 100%),
        linear-gradient(90deg, var(--bg-darker) 0%, rgba(4, 4, 5, 0.4) 40%, transparent 100%);
}

.showcase-item.reverse::after {
    background: linear-gradient(to bottom, var(--bg-darker) 0%, transparent 15%, transparent 85%, var(--bg-darker) 100%),
        linear-gradient(270deg, var(--bg-darker) 0%, rgba(4, 4, 5, 0.4) 40%, transparent 100%);
}

.showcase-content {
    position: absolute;
    z-index: 10;
    max-width: 500px;
    width: 100%;
}

.showcase-content.left {
    left: 10vw;
}

.showcase-content.right {
    right: 10vw;
}

.hud-box {
    background: rgba(10, 10, 15, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--accent-cyan);
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
}

.hud-box::before,
.hud-box::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
}

.hud-box::before {
    top: -1px;
    right: -1px;
    border-top: 2px solid var(--text-muted);
    border-right: 2px solid var(--text-muted);
}

.hud-box::after {
    bottom: -1px;
    right: -1px;
    border-bottom: 2px solid var(--text-muted);
    border-right: 2px solid var(--text-muted);
}

.showcase-content.right .hud-box {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 3px solid var(--accent-red);
}

.showcase-content.right .hud-box::before {
    right: auto;
    left: -1px;
    border-right: none;
    border-left: 2px solid var(--text-muted);
}

.showcase-content.right .hud-box::after {
    right: auto;
    left: -1px;
    border-right: none;
    border-left: 2px solid var(--text-muted);
}

.hud-label {
    font-family: var(--font-sub);
    font-size: 0.85rem;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.showcase-content.right .hud-label {
    color: var(--accent-red);
}

.hud-label::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hud-box h3 {
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hud-box p {
    font-size: 1.1rem;
    color: #cfd4db;
}

/* System Requirements */
.requirements {
    background: var(--bg-dark);
}

.requirements .full-height-container {
    padding-top: 80px; /* évite le chevauchement avec le navbar */
    justify-content: center;
    gap: 0;
}

.requirements .section-header {
    margin-bottom: 2.5vh;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;
}

.req-panels {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.req-panel {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    position: relative;
}

.req-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--text-muted);
}

.req-panel.rec-req::before {
    background: var(--accent-cyan);
    box-shadow: 0 0 15px var(--glow-cyan);
}

.panel-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.status-indicator {
    width: 10px;
    height: 10px;
    background: #757575;
    border-radius: 50%;
}

.status-indicator.optimal {
    background: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
}

.req-list {
    list-style: none;
    padding: 1.5rem;
}

.req-list li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
}

.req-list li:last-child {
    margin-bottom: 0;
}

.req-label {
    font-family: var(--font-sub);
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 0.1rem;
    text-transform: uppercase;
}

/* Warning Tape */
.section-divider.warning-tape {
    width: 100%;
    background: var(--tape-warning);
    color: #000;
    padding: 0.8rem 0;
    overflow: hidden;
    position: relative;
    /* transform: rotate(-2deg) scale(1.05); */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    z-index: 5;
    border-top: 2px dashed rgba(0, 0, 0, 0.3);
    border-bottom: 2px dashed rgba(0, 0, 0, 0.3);
}

.tape-text {
    display: flex;
    white-space: nowrap;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    animation: marquee 20s linear infinite;
}

.tape-text span {
    padding: 0 2rem;
    display: flex;
    align-items: center;
}

.tape-text span::after {
    content: '☣️';
    margin-left: 2rem;
}

/* Final CTA & Footer Section */
.final-cta-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bg-video-cta {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(to top, var(--bg-darker) 30%, rgba(4, 4, 5, 0.6) 100%);
    z-index: 2;
}

.cta-wrapper {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    text-align: center;
    padding: 0 2rem;
}

.cta-content {
    max-width: 800px;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #cfd4db;
    margin-bottom: 2rem;
}

/* Footer locked inside final section */
.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(0, 0, 0, 0.55);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 0.75rem 2rem;
    width: 100%;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-logo {
    width: 120px;
    opacity: 0.8;
}

.copyright-mini {
    font-size: 0.7rem;
    color: #666;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.link-column h4 {
    font-family: var(--font-sub);
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.link-column a,
.link-column p {
    display: inline-block;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.link-column a:hover {
    color: var(--accent-cyan);
}

.footer-sep {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    margin: 0 0.5rem;
    pointer-events: none;
    vertical-align: middle;
}



/* Base Keyframes */
@keyframes glitch-anim {
    0% {
        clip: rect(25px, 9999px, 86px, 0);
    }

    5% {
        clip: rect(66px, 9999px, 14px, 0);
    }

    10% {
        clip: rect(74px, 9999px, 81px, 0);
    }

    15% {
        clip: rect(100px, 9999px, 45px, 0);
    }

    20% {
        clip: rect(31px, 9999px, 78px, 0);
    }

    25% {
        clip: rect(71px, 9999px, 50px, 0);
    }

    30% {
        clip: rect(1px, 9999px, 84px, 0);
    }

    35% {
        clip: rect(22px, 9999px, 89px, 0);
    }

    40% {
        clip: rect(37px, 9999px, 78px, 0);
    }

    45% {
        clip: rect(50px, 9999px, 14px, 0);
    }

    50% {
        clip: rect(31px, 9999px, 12px, 0);
    }

    55% {
        clip: rect(72px, 9999px, 5px, 0);
    }

    60% {
        clip: rect(66px, 9999px, 56px, 0);
    }

    65% {
        clip: rect(4px, 9999px, 32px, 0);
    }

    70% {
        clip: rect(21px, 9999px, 49px, 0);
    }

    75% {
        clip: rect(89px, 9999px, 40px, 0);
    }

    80% {
        clip: rect(21px, 9999px, 90px, 0);
    }

    85% {
        clip: rect(46px, 9999px, 7px, 0);
    }

    90% {
        clip: rect(81px, 9999px, 5px, 0);
    }

    95% {
        clip: rect(38px, 9999px, 17px, 0);
    }

    100% {
        clip: rect(69px, 9999px, 41px, 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip: rect(63px, 9999px, 84px, 0);
    }

    5% {
        clip: rect(25px, 9999px, 97px, 0);
    }

    10% {
        clip: rect(48px, 9999px, 13px, 0);
    }

    15% {
        clip: rect(14px, 9999px, 20px, 0);
    }

    20% {
        clip: rect(81px, 9999px, 40px, 0);
    }

    25% {
        clip: rect(12px, 9999px, 66px, 0);
    }

    30% {
        clip: rect(27px, 9999px, 96px, 0);
    }

    35% {
        clip: rect(23px, 9999px, 22px, 0);
    }

    40% {
        clip: rect(18px, 9999px, 2px, 0);
    }

    45% {
        clip: rect(86px, 9999px, 49px, 0);
    }

    50% {
        clip: rect(18px, 9999px, 95px, 0);
    }

    55% {
        clip: rect(58px, 9999px, 69px, 0);
    }

    60% {
        clip: rect(48px, 9999px, 92px, 0);
    }

    65% {
        clip: rect(12px, 9999px, 87px, 0);
    }

    70% {
        clip: rect(22px, 9999px, 33px, 0);
    }

    75% {
        clip: rect(74px, 9999px, 37px, 0);
    }

    80% {
        clip: rect(69px, 9999px, 7px, 0);
    }

    85% {
        clip: rect(85px, 9999px, 86px, 0);
    }

    90% {
        clip: rect(98px, 9999px, 14px, 0);
    }

    95% {
        clip: rect(64px, 9999px, 87px, 0);
    }

    100% {
        clip: rect(58px, 9999px, 87px, 0);
    }
}

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

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

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

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

@keyframes arrow {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Media Queries */
@media screen and (max-width: 1024px) {
    /* nav-links hidden only on true tablet/mobile (< 1024), 
       but 1024px desktop shows a compressed version via js breakpoint */
    .nav-links {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-content.left,
    .showcase-content.right {
        left: 5vw;
        top: auto;
        right: auto;
        transform: none;
    }

    .hud-box {
        padding: 1.5rem;
    }

    .showcase-content.right .hud-box {
        border-left: 3px solid var(--accent-red);
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .side-nav {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .feature-card {
        min-height: 250px;
    }

    .scroll-section.features {
        height: auto;
        padding: 5rem 0;
        scroll-snap-align: start;
    }
}

/* Entry Modal Popup */
/* =============================================
   ENTRY MODAL — FINAL VERSION + RESPONSIVE
   ============================================= */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(6px);
    padding: 1rem;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ── Container ── */
.modal-content {
    position: relative;
    max-width: 460px;
    width: 100%;
    border: 1px solid rgba(0, 229, 255, 0.35);
    border-radius: 12px;
    padding: 2.2rem 2.2rem 1.8rem;
    text-align: left;
    overflow: hidden;
    isolation: isolate;
    box-shadow:
        0 0 0 1px rgba(0, 229, 255, 0.06),
        0 25px 60px rgba(0, 0, 0, 0.9),
        0 0 50px rgba(0, 229, 255, 0.06);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    scrollbar-width: none;
}
.modal-content::-webkit-scrollbar { display: none; }

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

/* ── Background image via pseudo-element ── */
.modal-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('img/once-human-4k-cd-2561x1440.jpg');
    background-size: cover;
    background-position: center center;
    filter: brightness(0.85) saturate(1.15);
    z-index: -2;
    pointer-events: none;
}

/* ── Gradient overlay: dark left, transparent right ── */
.modal-content::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(6, 2, 2, 0.78) 0%,
        rgba(6, 2, 2, 0.45) 45%,
        rgba(6, 2, 2, 0.10) 100%
    );
    z-index: -1;
    pointer-events: none;
}

/* ── Close button ── */
.modal-close {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.65);
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
    flex-shrink: 0;
}
.modal-close:hover {
    background: rgba(0, 229, 255, 0.12);
    border-color: rgba(0, 229, 255, 0.4);
    color: var(--accent-cyan);
    transform: rotate(90deg);
}

/* ── Badge ── */
.modal-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(185, 28, 28, 0.88);
    border: 1px solid rgba(239, 68, 68, 0.45);
    border-radius: 20px;
    padding: 0.28rem 0.75rem;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.07em;
    margin-bottom: 1rem;
    color: #fff;
    box-shadow: 0 2px 12px rgba(185, 28, 28, 0.45);
    position: relative;
    z-index: 1;
}

.pulsing-dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    margin-right: 6px;
    flex-shrink: 0;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70%  { box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* ── Logo ── */
.modal-logo {
    width: clamp(110px, 28%, 150px);
    margin-bottom: 1rem;
    display: block;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 14px rgba(0, 229, 255, 0.2));
}

/* ── Title ── */
.modal-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 2.1rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.9);
    text-transform: uppercase;
    color: var(--text-main);
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
}
.modal-title .highlight {
    color: var(--accent-cyan);
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
}

/* ── Description ── */
.modal-desc {
    font-size: clamp(0.85rem, 1.8vw, 0.98rem);
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
    margin-bottom: 1.1rem;
    position: relative;
    z-index: 1;
}
.modal-desc strong {
    color: #fff;
    font-weight: 700;
}

/* ── Stats box ── */
.modal-stats-box {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    margin-bottom: 1.1rem;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(6px);
}

.avatars-group {
    display: flex;
    flex-shrink: 0;
}

.avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(6, 2, 2, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 900;
    margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }

.stats-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
.stats-text strong {
    font-size: 0.92rem;
    color: #fff;
    line-height: 1.2;
    font-weight: 700;
}
.stats-text span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
}

/* ── CTA ── */
.cta-button.full-width {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
    font-size: clamp(0.9rem, 2vw, 1.15rem);
    padding: clamp(0.85rem, 2vh, 1.1rem) 1.5rem;
}

/* ── Footer proof ── */
.modal-footer-proof {
    text-align: center;
    font-family: var(--font-sub);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.38);
    margin-top: 0.85rem;
    letter-spacing: 0.03em;
    position: relative;
    z-index: 1;
}

/* ── Responsive: screens shorter than 750px ── */
@media screen and (max-height: 750px) {
    .modal-content { padding: 1.7rem 1.8rem 1.4rem; }
    .modal-badge   { margin-bottom: 0.7rem; }
    .modal-logo    { margin-bottom: 0.7rem; }
    .modal-title   { font-size: 1.5rem; margin-bottom: 0.6rem; }
    .modal-desc    { font-size: 0.88rem; margin-bottom: 0.8rem; }
    .modal-stats-box { padding: 0.6rem 0.85rem; margin-bottom: 0.8rem; }
    .modal-footer-proof { margin-top: 0.65rem; }
}

/* ── Responsive: screens shorter than 620px (1024×600) ── */
@media screen and (max-height: 620px) {
    .modal-content { padding: 1.3rem 1.5rem 1.2rem; }
    .modal-badge   { margin-bottom: 0.5rem; font-size: 0.65rem; }
    .modal-logo    { width: 90px; margin-bottom: 0.5rem; }
    .modal-title   { font-size: 1.25rem; margin-bottom: 0.45rem; }
    .modal-desc    { font-size: 0.82rem; margin-bottom: 0.6rem; line-height: 1.45; }
    .modal-stats-box { padding: 0.5rem 0.75rem; margin-bottom: 0.6rem; }
    .stats-text strong { font-size: 0.82rem; }
    .modal-footer-proof { margin-top: 0.5rem; font-size: 0.72rem; }
    .cta-button.full-width { padding: 0.75rem 1.2rem; font-size: 0.88rem; }
}

/* =============================================
   ABOUT THIS GAME SECTION
   ============================================= */

.about-section {
    background-color: var(--bg-darker);
    position: relative;
}

/* Image de fond plus visible */
.about-section .section-bg-image {
    opacity: 0.25 !important;
    filter: blur(3px) !important;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    padding: 80px clamp(1.5rem, 3vw, 4rem) 2rem;
    z-index: 2;
}

/* Left: text col */
.about-text-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-text-col .subtitle {
    font-family: var(--font-sub);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--accent-cyan);
    margin-bottom: 0.6rem;
    display: block;
}

.about-text-col h2 {
    font-size: clamp(2.2rem, 3.5vw, 3.5rem);
    text-align: left;
    letter-spacing: 0.05em;
}

.about-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(240, 240, 245, 0.88);
    line-height: 1.75;
    margin-bottom: 0.85rem;
}

.about-desc strong {
    color: var(--accent-cyan);
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-sub);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.4rem 0.9rem;
    border: 1px solid rgba(0,229,255,0.35);
    border-radius: 3px;
    background: rgba(0,229,255,0.08);
    color: rgba(240,240,245,0.9);
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.about-tag svg {
    stroke: var(--accent-cyan);
    flex-shrink: 0;
}

.about-tag:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    background: rgba(0,229,255,0.14);
    box-shadow: 0 0 12px rgba(0,229,255,0.1);
}

/* Right: video carousel col */
.about-video-col {
    width: 100%;
}

.video-carousel {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.video-carousel-track-wrapper {
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid rgba(0, 229, 255, 0.15);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 229, 255, 0.06);
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-carousel-track {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
}

.video-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.yt-embed-wrap {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
    border-radius: 0;
    border: none;
}

.yt-embed-wrap iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
    display: block;
}

/* Carousel controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.carousel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    border: 1px solid rgba(0, 229, 255, 0.3);
    background: rgba(0, 229, 255, 0.06);
    color: var(--accent-cyan);
    cursor: pointer;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: rgba(0, 229, 255, 0.18);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 12px var(--glow-cyan);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.cdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.cdot.active {
    background: var(--accent-cyan);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 8px var(--glow-cyan);
    width: 22px;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 900px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
        gap: 1.5rem;
        overflow-y: auto;
    }

    .about-text-col h2 {
        font-size: 1.6rem;
    }
}

/* About CTA Button */
.about-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    padding: 0.9rem 2.5rem;
    width: auto;
    align-self: flex-start;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    background: var(--accent-cyan);
    border: 2px solid var(--accent-cyan);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 0 24px rgba(0,229,255,0.35);
    cursor: pointer;
    animation: pulse-glow 3s infinite;
}

.about-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.about-cta-btn:hover::before {
    transform: translateX(100%);
}

.about-cta-btn:hover {
    background: transparent;
    color: var(--accent-cyan);
    box-shadow: 0 0 36px rgba(0, 229, 255, 0.55), inset 0 0 20px rgba(0, 229, 255, 0.08);
}

.about-cta-btn:hover svg {
    stroke: var(--accent-cyan);
}

/* Hero Logo Image */
/* Hero logo duplicate override — consolidated above */
.hero-logo-img {
    width: clamp(280px, 40vw, 560px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(0, 229, 255, 0.15)) drop-shadow(0 0 30px rgba(0, 229, 255, 0.06));
    animation: logo-glow-pulse 4s ease-in-out infinite;
}

@keyframes logo-glow-pulse {
    0%, 100% { filter: drop-shadow(0 0 12px rgba(0,229,255,0.12)) drop-shadow(0 0 25px rgba(0,229,255,0.05)); }
    50%       { filter: drop-shadow(0 0 20px rgba(0,229,255,0.22)) drop-shadow(0 0 40px rgba(0,229,255,0.1)); }
}



/* =============================================
   FEATURE CARD — LIGHTBOX ON CLICK
   ============================================= */

.feature-card { cursor: pointer; }

/* Fullscreen lightbox overlay */
.feature-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0);
    backdrop-filter: blur(0px);
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
    align-items: center;
    justify-content: center;
}

.feature-lightbox.active {
    display: flex;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(8px);
    animation: lb-fade-in 0.35s ease forwards;
}

@keyframes lb-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.feature-lightbox-inner {
    position: relative;
    width: 90vw;
    max-width: 1200px;
    height: 80vh;
    border: 1px solid rgba(0,229,255,0.25);
    box-shadow: 0 0 80px rgba(0,229,255,0.12), 0 40px 80px rgba(0,0,0,0.9);
    border-radius: 4px;
    overflow: hidden;
    animation: lb-scale-in 0.4s cubic-bezier(0.23,1,0.32,1) forwards;
}

@keyframes lb-scale-in {
    from { transform: scale(0.88); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}

.feature-lightbox-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease-out;
}

.feature-lightbox.active .feature-lightbox-bg {
    transform: scale(1.04);
}

.feature-lightbox-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(4,4,5,0.95) 0%,
        rgba(4,4,5,0.3) 50%,
        transparent 100%
    );
}

.feature-lightbox-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2.5rem 3rem;
    z-index: 2;
    animation: lb-content-up 0.5s cubic-bezier(0.23,1,0.32,1) 0.15s both;
}

@keyframes lb-content-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.feature-lightbox-icon {
    color: var(--accent-cyan);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 16px var(--accent-cyan));
}

.feature-lightbox-content h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--accent-cyan);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 40px rgba(0,229,255,0.4);
}

.feature-lightbox-content p {
    font-family: var(--font-sub);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: rgba(240,240,245,0.85);
    line-height: 1.7;
    max-width: 600px;
}

/* Close button */
.feature-lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 10;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(0,229,255,0.3);
    border-radius: 4px;
    color: var(--accent-cyan);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
}

.feature-lightbox-close:hover {
    background: rgba(0,229,255,0.15);
    border-color: var(--accent-cyan);
}

/* Cyan border sweep */
.feature-lightbox-inner::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--accent-cyan), transparent);
    box-shadow: 0 0 14px var(--glow-cyan);
    z-index: 3;
}

/* Lightbox closing animation */
.feature-lightbox.closing {
    animation: lb-fade-out 0.35s ease forwards;
}

.feature-lightbox.closing .feature-lightbox-inner {
    animation: lb-scale-out 0.38s cubic-bezier(0.55, 0, 0.45, 1) forwards;
}

@keyframes lb-fade-out {
    from { opacity: 1; backdrop-filter: blur(8px); background: rgba(0,0,0,0.88); }
    to   { opacity: 0; backdrop-filter: blur(0px); background: rgba(0,0,0,0); }
}

@keyframes lb-scale-out {
    from { transform: scale(1);    opacity: 1; }
    to   { transform: scale(0.88); opacity: 0; }
}



/* =============================================
   GALLERY — CINEMATIC FILM STRIP
   ============================================= */

.gallery-section {
    background: #07070a;
    overflow: hidden !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 0;
    padding: 0 !important;
}

/* Header */
.gal-header {
    position: relative;
    z-index: 10;
    text-align: center;
    flex-shrink: 0;
    padding-top: 68px;
    padding-bottom: 1.8vh;
    width: 100%;
}

.gal-eyebrow {
    display: block;
    font-family: var(--font-sub);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 12px rgba(0,229,255,0.6);
}

.gal-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Strip container */
.gal-strips {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    overflow: hidden;
    position: relative;
    flex: 1;
    min-height: 0;
    padding-bottom: 0;
}

/* Individual strip — fixed height */
.gal-strip {
    height: calc((100vh - 200px) / 3);
    min-height: 120px;
    max-height: 220px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    position: relative;
}

/* The inner scrolling track — duplicated for infinite loop */
.gal-strip-track {
    display: flex;
    align-items: stretch;
    gap: 0.6rem;
    height: 100%;
    will-change: transform;
    /* animation set by JS */
}

/* Each image card */
.gal-card {
    flex-shrink: 0;
    width: clamp(200px, 20vw, 340px);
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.23,1,0.32,1),
                box-shadow 0.5s cubic-bezier(0.23,1,0.32,1),
                border-color 0.4s ease,
                filter 0.4s ease;
    filter: brightness(0.72) saturate(0.75);
}

.gal-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.9),
                0 0 30px rgba(0,229,255,0.25),
                0 0 0 2px rgba(0,229,255,0.6);
    border-color: rgba(0,229,255,0.6);
    filter: brightness(1) saturate(1.15);
    z-index: 10;
}

/* Image fill */
.gal-card-img {
    position: absolute;
    inset: -8%;
    width: 116%;
    height: 116%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
}

.gal-card:hover .gal-card-img {
    transform: scale(1.05);
}

/* Subtle gradient bottom */
.gal-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(4,4,5,0.7), transparent);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gal-card:hover::after {
    opacity: 1;
}

/* Expand icon — small SVG in bottom-right corner */
.gal-card-expand {
    position: absolute;
    bottom: 0.6rem;
    right: 0.6rem;
    width: 32px;
    height: 32px;
    opacity: 0;
    pointer-events: none;
    z-index: 3;
    transform: scale(0.7);
    transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.23,1,0.32,1);
    color: var(--accent-cyan);
    filter: drop-shadow(0 0 8px rgba(0,229,255,0.8));
}

.gal-card-expand svg {
    width: 100%;
    height: 100%;
}

.gal-card-expand::before { content: none; }
.gal-card-expand::after  { content: none; }

.gal-card:hover .gal-card-expand {
    opacity: 1;
    transform: scale(1);
}

/* Pause strip on hover */
.gal-strip:hover .gal-strip-track {
    animation-play-state: paused !important;
}

/* Left/right vignettes */
.gal-vignette-left,
.gal-vignette-right {
    position: absolute;
    top: 0; bottom: 0;
    width: 12vw;
    z-index: 8;
    pointer-events: none;
}
.gal-vignette-left  { left: 0;  background: linear-gradient(to right, #07070a 0%, transparent 100%); }
.gal-vignette-right { right: 0; background: linear-gradient(to left,  #07070a 0%, transparent 100%); }

/* Bottom hint */
.gal-hint {
    position: relative;
    z-index: 10;
    padding-bottom: 1.8vh;
    flex-shrink: 0;
}
.gal-hint span {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: rgba(0,229,255,0.5);
    text-shadow: 0 0 8px rgba(0,229,255,0.3);
    animation: gal-pulse 2.5s ease-in-out infinite;
}
@keyframes gal-pulse {
    0%, 100% { opacity: 0.4; }
    50%       { opacity: 1; }
}

/* Film strip animation */
@keyframes scroll-left  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scroll-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* ── LIGHTBOX ── */
.gal-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.gal-lightbox.open {
    opacity: 1;
    pointer-events: auto;
}
.gal-lb-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(20px) brightness(0.3);
    transform: scale(1.1);
    z-index: 0;
}
.gal-lb-vignette {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}
.gal-lb-img-wrap {
    position: relative;
    z-index: 2;
    max-width: 92vw;
    max-height: 88vh;
    animation: lb-in 0.4s cubic-bezier(0.23,1,0.32,1) forwards;
}
.gal-lb-img-wrap img {
    display: block;
    max-width: 100%;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 4px;
    border: 1px solid rgba(0,229,255,0.2);
    box-shadow: 0 0 80px rgba(0,0,0,0.9), 0 0 40px rgba(0,229,255,0.07);
}
@keyframes lb-in  { from { opacity:0; transform:scale(0.88); } to { opacity:1; transform:scale(1); } }
@keyframes lb-out { from { opacity:1; transform:scale(1); }    to { opacity:0; transform:scale(0.88); } }
.gal-lightbox.closing .gal-lb-img-wrap { animation: lb-out 0.35s ease forwards; }
.gal-lightbox.closing { opacity: 0; transition: opacity 0.35s ease; }

.gal-lb-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    z-index: 5;
    width: 52px; height: 52px;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(0,229,255,0.25);
    border-radius: 4px;
    color: var(--accent-cyan);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.gal-lb-nav:hover { background: rgba(0,229,255,0.15); border-color: var(--accent-cyan); }
.gal-lb-nav.prev { left: 1.5rem; }
.gal-lb-nav.next { right: 1.5rem; }
.gal-lb-close {
    position: absolute;
    top: 1.2rem; right: 1.2rem;
    z-index: 5;
    width: 44px; height: 44px;
    background: rgba(0,0,0,0.65);
    border: 1px solid rgba(0,229,255,0.3);
    border-radius: 4px;
    color: var(--accent-cyan);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, border-color 0.2s;
}
.gal-lb-close:hover { background: rgba(0,229,255,0.15); border-color: var(--accent-cyan); }
.gal-lb-counter {
    position: absolute;
    bottom: 1.2rem; left: 50%; transform: translateX(-50%);
    z-index: 5;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.45);
}

.gal-header {
    opacity: 0;
    transform: translateY(-16px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.23,1,0.32,1);
}

/* =============================================
   REVIEWS SECTION — CINEMATIC
   ============================================= */

.rev-section {
    background: var(--bg-darker);
    align-items: stretch !important;
    justify-content: center !important;
    padding: 0 !important;
}

.rev-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    height: 100%;
    max-width: 1400px;
    padding: 72px clamp(1.5rem, 3vw, 4rem) 2rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ── LEFT ── */
.rev-left {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    position: relative;
    z-index: 5;
}

.rev-title {
    font-size: clamp(2rem, 3.5vw, 3rem) !important;
    text-align: left;
    line-height: 1.1;
}

/* Stats row */
.rev-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem 1.5rem;
    background: rgba(0,229,255,0.04);
    border: 1px solid rgba(0,229,255,0.12);
    border-radius: 6px;
}

.rev-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    flex: 1;
}

.rev-stat-num {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 900;
    color: var(--accent-cyan);
    text-shadow: 0 0 20px rgba(0,229,255,0.4);
    line-height: 1;
    min-width: 4ch;
    text-align: center;
}

.rev-stat-label {
    font-family: var(--font-sub);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    text-align: center;
}

.rev-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0,229,255,0.15);
    flex-shrink: 0;
}

/* Star bar */
.rev-star-bar {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.rev-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    filter: drop-shadow(0 0 6px rgba(250,204,21,0.5));
}

/* Track (grey background) */
.rev-star-track {
    width: 100%;
    height: 5px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}

.rev-star-fill {
    height: 100%;
    background: linear-gradient(to right, var(--accent-cyan), #facc15);
    border-radius: 3px;
    width: 0%;
    transition: width 3.2s cubic-bezier(0.23,1,0.32,1);
    box-shadow: 0 0 8px rgba(0,229,255,0.4);
}

.rev-star-label {
    font-family: var(--font-sub);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
}

/* CTA */
.rev-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 1.4rem 2rem;
    text-decoration: none;
    color: #000;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, #00b8d9 100%);
    border: 2px solid var(--accent-cyan);
    border-radius: 6px;
    transition: var(--transition-smooth);
    box-shadow: 0 0 30px rgba(0,229,255,0.4), 0 0 60px rgba(0,229,255,0.15);
    align-self: center;
    width: 85%;
    overflow: hidden;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    cursor: pointer;
    text-align: center;
    animation: rev-cta-pulse 3s ease-in-out infinite;
}

@keyframes rev-cta-pulse {
    0%, 100% { box-shadow: 0 0 25px rgba(0,229,255,0.35), 0 0 50px rgba(0,229,255,0.1); }
    50%       { box-shadow: 0 0 45px rgba(0,229,255,0.65), 0 0 80px rgba(0,229,255,0.25); }
}

/* Scan line sweep */
.rev-cta::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    animation: rev-cta-sweep 3.5s ease-in-out infinite;
}

@keyframes rev-cta-sweep {
    0%   { left: -60%; }
    40%, 100% { left: 140%; }
}

.rev-cta:hover {
    background: transparent;
    color: var(--accent-cyan);
    box-shadow: 0 0 50px rgba(0,229,255,0.7), 0 0 100px rgba(0,229,255,0.3);
    animation: none;
}
.rev-cta:hover .rev-cta-top,
.rev-cta:hover .rev-cta-sub { color: rgba(0,229,255,0.7); }
.rev-cta:hover .rev-cta-main { color: var(--accent-cyan); }

.rev-cta-top {
    font-family: var(--font-sub);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.6);
    transition: color 0.3s;
}

.rev-cta-main {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
    z-index: 1;
}

.rev-cta-sub {
    font-family: var(--font-sub);
    font-size: 0.8rem;
    color: rgba(0,0,0,0.55);
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

/* ── RIGHT — scrolling cards ── */
.rev-right {
    height: 100%;
    display: flex;
    align-items: center;
}

.rev-track-wrap {
    position: relative;
    height: calc(100vh - 130px);
    overflow: hidden;
    width: 100%;
}

.rev-track {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: rev-scroll 30s linear infinite;
    will-change: transform;
}

.rev-track:hover {
    animation-play-state: paused;
}

@keyframes rev-scroll {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

/* Vignette fade top/bottom */
.rev-vignette-top,
.rev-vignette-bottom {
    position: absolute;
    left: 0; right: 0;
    height: 80px;
    pointer-events: none;
    z-index: 2;
}
.rev-vignette-top    { top: 0;    background: linear-gradient(to bottom, var(--bg-darker), transparent); }
.rev-vignette-bottom { bottom: 0; background: linear-gradient(to top,    var(--bg-darker), transparent); }

/* Review card */
.rev-card {
    background: rgba(10,10,15,0.8);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 1.2rem 1.4rem;
    position: relative;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.rev-card:hover {
    border-color: rgba(0,229,255,0.25);
    box-shadow: 0 8px 30px rgba(0,0,0,0.5), 0 0 20px rgba(0,229,255,0.05);
}

.rev-card.featured {
    border-color: rgba(249,115,22,0.3);
    background: rgba(249,115,22,0.04);
}

/* Score badge */
.rev-card-score {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--accent-cyan);
    margin-bottom: 0.6rem;
    text-shadow: 0 0 12px rgba(0,229,255,0.5);
}

.rev-card-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #f97316;
    border: 1px solid rgba(249,115,22,0.4);
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    margin-bottom: 0.6rem;
    text-shadow: 0 0 8px rgba(249,115,22,0.5);
}

.rev-card-stars {
    color: #facc15;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.rev-card-quote {
    font-family: var(--font-body);
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(240,240,245,0.8);
    font-style: italic;
    margin-bottom: 0.9rem;
}

.rev-card-quote::before { content: '"'; color: var(--accent-cyan); font-style: normal; font-size: 1.1rem; }
.rev-card-quote::after  { content: '"'; color: var(--accent-cyan); font-style: normal; font-size: 1.1rem; }

.rev-card-author {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.rev-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    line-height: 1.2;
    text-align: center;
}

.rev-name {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 0.05em;
}

.rev-source {
    font-family: var(--font-body);
    font-size: 0.68rem;
    color: rgba(255,255,255,0.4);
    margin-top: 0.1rem;
}

/* =============================================
   MISSION BRIEFING — SCENARIOS SECTION
   ============================================= */

.mission-section {
    background: #04060a;
    align-items: stretch !important;
    justify-content: center !important;
    padding: 0 !important;
}

.mission-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    width: 100%;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 72px 2rem 1.5rem;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ── LEFT ── */
.mission-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    height: 100%;
    justify-content: center;
}

.mission-header { margin-bottom: 0.5rem; }

.mission-title {
    font-size: clamp(1.8rem, 2.8vw, 2.6rem) !important;
    text-align: left;
    line-height: 1.1;
    margin-bottom: 0.6rem;
}

.mission-sub {
    font-family: var(--font-sub);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    max-width: 380px;
}

/* Mission list items */
.mission-items {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.mission-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1.1rem;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.23,1,0.32,1);
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
}

.mission-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--accent-cyan);
    transform: scaleY(0);
    transition: transform 0.35s ease;
    border-radius: 0 2px 2px 0;
}

.mission-item.active,
.mission-item:hover {
    border-color: rgba(0,229,255,0.25);
    background: rgba(0,229,255,0.05);
}

.mission-item.active::before,
.mission-item:hover::before {
    transform: scaleY(1);
}

.mission-item-num {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: rgba(255,255,255,0.12);
    transition: color 0.3s ease;
    min-width: 2ch;
    line-height: 1;
}

.mission-item.active .mission-item-num,
.mission-item:hover .mission-item-num {
    color: var(--accent-cyan);
    text-shadow: 0 0 12px rgba(0,229,255,0.5);
}

.mission-item-info { flex: 1; }

.mission-item-name {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}

.mission-item.active .mission-item-name,
.mission-item:hover .mission-item-name {
    color: var(--text-main);
}

.mission-item-type {
    font-family: var(--font-sub);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    margin-top: 0.15rem;
    font-weight: 600;
}
.mission-item-type.pve  { color: #4ade80; }
.mission-item-type.pvp  { color: #f97316; }

.mission-item-arrow {
    font-size: 1rem;
    color: rgba(0,229,255,0);
    transition: color 0.3s, transform 0.3s;
}

.mission-item.active .mission-item-arrow,
.mission-item:hover .mission-item-arrow {
    color: var(--accent-cyan);
    transform: translateX(4px);
}

/* CTA */
.mission-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.6rem;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    background: var(--accent-cyan);
    border: 2px solid var(--accent-cyan);
    border-radius: 3px;
    transition: var(--transition-smooth);
    box-shadow: 0 0 20px rgba(0,229,255,0.3);
    align-self: flex-start;
    margin-top: 0.4rem;
    position: relative;
    overflow: hidden;
}
.mission-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}
.mission-cta:hover::before { transform: translateX(100%); }
.mission-cta:hover { background: transparent; color: var(--accent-cyan); }

/* ── RIGHT — Briefing panel ── */
.mission-panel {
    position: relative;
    height: calc(100vh - 130px);
    max-height: 700px;
    border-radius: 6px;
    overflow: hidden;
}

.mission-brief {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.mission-brief.active {
    opacity: 1;
    pointer-events: auto;
}

.brief-img {
    position: absolute;
    inset: -15%;
    width: 130%; height: 130%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.55) saturate(0.9);
    transition: transform 8s ease-out;
    transform: scale(0.85);
    transform-origin: center center;
}

.mission-brief.active .brief-img {
    transform: scale(0.88);
}

/* MANIBUS */
[data-brief="0"] .brief-img { background-position: center top; }

/* ENDLESS DREAM */
[data-brief="3"] .brief-img { background-position: center 20%; }

.brief-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(4,4,5,0.5) 0%,
        rgba(4,4,5,0.1) 50%,
        transparent 100%
    ),
    linear-gradient(
        to top,
        rgba(4,4,5,0.98) 0%,
        rgba(4,4,5,0.5) 45%,
        transparent 100%
    );
}

.brief-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2rem 2.5rem;
    z-index: 2;
    transform: translateY(12px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.23,1,0.32,1) 0.15s,
                opacity 0.5s ease 0.15s;
}

.mission-brief.active .brief-content {
    transform: translateY(0);
    opacity: 1;
}

/* Scan line corner decoration */
.mission-panel::before {
    content: '';
    position: absolute;
    top: 1rem; left: 1rem;
    width: 30px; height: 30px;
    border-top: 2px solid var(--accent-cyan);
    border-left: 2px solid var(--accent-cyan);
    z-index: 5;
    pointer-events: none;
}
.mission-panel::after {
    content: '';
    position: absolute;
    bottom: 1rem; right: 1rem;
    width: 30px; height: 30px;
    border-bottom: 2px solid var(--accent-cyan);
    border-right: 2px solid var(--accent-cyan);
    z-index: 5;
    pointer-events: none;
}

.brief-status {
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}
.status-active { color: #4ade80; text-shadow: 0 0 8px rgba(74,222,128,0.6); }

.brief-name {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

.brief-desc {
    font-family: var(--font-sub);
    font-size: 0.9rem;
    color: rgba(240,240,245,0.75);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 1rem;
}

.brief-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.2rem;
}

.brief-tag {
    font-family: var(--font-sub);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.7rem;
    border: 1px solid rgba(0,229,255,0.25);
    border-radius: 2px;
    color: var(--accent-cyan);
    background: rgba(0,229,255,0.05);
}

/* HUD stats bar */
.brief-hud {
    display: flex;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.brief-hud-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hud-label {
    font-family: var(--font-sub);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
}

.hud-val {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-main);
}
.hud-green  { color: #4ade80; text-shadow: 0 0 8px rgba(74,222,128,0.5); }
.hud-red    { color: #ef4444; text-shadow: 0 0 8px rgba(239,68,68,0.5); }
.hud-cyan   { color: var(--accent-cyan); text-shadow: 0 0 8px var(--glow-cyan); }
.hud-purple { color: #a78bfa; text-shadow: 0 0 8px rgba(167,139,250,0.5); }

/* =============================================
   PC SPECS SECTION
   ============================================= */

.specs-section {
    background: var(--bg-darker);
    align-items: stretch !important;
    justify-content: center !important;
    padding: 0 !important;
}

.specs-wrapper {
    width: 100%;
    height: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 68px 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2vh;
    position: relative;
    z-index: 2;
}

.specs-header {
    text-align: center;
    flex-shrink: 0;
}

.specs-title {
    font-size: clamp(2rem, 3.5vw, 3rem) !important;
    margin-bottom: 0.5rem;
}

.specs-sub {
    font-family: var(--font-sub);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.05em;
}

/* 3 col grid */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    flex: 1;
    min-height: 0;
}

/* Each column */
.specs-col {
    background: rgba(8,10,14,0.85);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.specs-col:hover {
    border-color: rgba(0,229,255,0.2);
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

.specs-col.recommended {
    border-color: rgba(0,229,255,0.25);
    box-shadow: 0 0 30px rgba(0,229,255,0.06);
    background: rgba(0,229,255,0.03);
}

/* Column header */
.specs-col-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.4rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.specs-col-header h3 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--text-main);
    flex: 1;
}

.specs-col-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}

.rec-dot  { background: var(--accent-cyan); box-shadow: 0 0 8px rgba(0,229,255,0.7); }
.ultra-dot { background: #a78bfa; box-shadow: 0 0 8px rgba(167,139,250,0.6); }

.specs-fps {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 0.2rem 0.55rem;
    border-radius: 2px;
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.4);
    border: 1px solid rgba(255,255,255,0.08);
    white-space: nowrap;
}

.rec-fps   { background: rgba(0,229,255,0.1); color: var(--accent-cyan); border-color: rgba(0,229,255,0.25); }
.ultra-fps { background: rgba(167,139,250,0.1); color: #a78bfa; border-color: rgba(167,139,250,0.25); }

/* Spec list */
.specs-list {
    list-style: none;
    padding: 0.6rem 0;
    flex: 1;
}

.specs-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.65rem 1.4rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 0.2s ease;
}

.specs-list li:last-child { border-bottom: none; }

.specs-list li:hover { background: rgba(255,255,255,0.02); }

.spec-icon {
    width: 28px; height: 28px;
    border-radius: 4px;
    background: rgba(0,229,255,0.08);
    border: 1px solid rgba(0,229,255,0.15);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--accent-cyan);
    margin-top: 2px;
}

.spec-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.spec-label {
    font-family: var(--font-sub);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
}

.spec-val {
    font-family: var(--font-sub);
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(240,240,245,0.85);
    line-height: 1.4;
}

/* Bottom note */
.specs-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sub);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    text-align: center;
    justify-content: center;
    flex-shrink: 0;
    padding-bottom: 0.5rem;
}

.specs-note strong { color: rgba(255,255,255,0.6); }

/* =============================================
   PC SPECS — SYSTEM DIAGNOSTIC
   ============================================= */

.specs-section {
    background: var(--bg-darker);
    align-items: stretch !important;
    justify-content: center !important;
    padding: 0 !important;
}

.specs-wrapper {
    width: 100%;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 68px 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.4vh;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Header */
.specs-header { text-align: center; }

.specs-title {
    font-size: clamp(2rem, 3.5vw, 3rem) !important;
    margin-bottom: 0.3rem;
}

.specs-sub {
    font-family: var(--font-sub);
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
}

/* Two-panel grid */
.specs-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    flex: 1;
    min-height: 0;
}

/* Panel */
.specs-panel {
    background: rgba(8,10,14,0.8);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 1.4rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.specs-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    border-radius: 6px 6px 0 0;
}

.specs-min::before  { background: linear-gradient(to right, #facc15, transparent); }
.specs-rec::before  { background: linear-gradient(to right, var(--accent-cyan), transparent); }

.specs-rec {
    border-color: rgba(0,229,255,0.15);
    box-shadow: 0 0 30px rgba(0,229,255,0.04);
}

/* Panel header */
.specs-panel-header {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.specs-panel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.dot-yellow { background: rgba(255,255,255,0.6); box-shadow: 0 0 8px rgba(255,255,255,0.3); animation: spec-blink 2s ease-in-out infinite; }

.specs-min::before  { background: linear-gradient(to right, rgba(255,255,255,0.3), transparent); }

.badge-yellow { color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); }

.verdict-min { color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); }

.specs-min  .specs-bar-fill { background: linear-gradient(to right, rgba(255,255,255,0.5), rgba(255,255,255,0.25)); }
.dot-cyan   { background: var(--accent-cyan); box-shadow: 0 0 8px var(--glow-cyan); animation: spec-blink 2s ease-in-out infinite 0.5s; }

/* Spec rows */
.specs-rows {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    flex: 1;
}

.specs-row {
    display: grid;
    grid-template-columns: 20px 1fr 80px;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.6rem;
    border-radius: 3px;
    border: 1px solid rgba(255,255,255,0.03);
    background: rgba(255,255,255,0.02);
    transition: background 0.25s ease, border-color 0.25s ease;
}

.specs-row:hover {
    background: rgba(0,229,255,0.04);
    border-color: rgba(0,229,255,0.1);
}

.specs-row-icon {
    color: rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
}

.specs-row-content { min-width: 0; }

.specs-row-key {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0.15rem;
}

.specs-row-val {
    font-family: var(--font-sub);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Animated bar */
.specs-row-bar {
    height: 3px;
    background: rgba(255,255,255,0.06);
    border-radius: 2px;
    overflow: hidden;
}

.specs-bar-fill {
    height: 100%;
    width: 0%;
    border-radius: 2px;
    transition: width 1.2s cubic-bezier(0.23,1,0.32,1);
}

.specs-rec  .specs-bar-fill { background: linear-gradient(to right, var(--accent-cyan), #00b8d9); }

/* Verdict */
.specs-verdict {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sub);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 0.5rem 0.6rem;
    border-radius: 3px;
    margin-top: auto;
}
.verdict-rec { color: var(--accent-cyan); background: rgba(0,229,255,0.06); border: 1px solid rgba(0,229,255,0.15); }

/* Bottom row */
.specs-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(0,229,255,0.1);
    border-radius: 5px;
    background: rgba(0,229,255,0.03);
}

.specs-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sub);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

.specs-note strong {
    color: var(--text-main);
    font-weight: 600;
}

.specs-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-decoration: none;
    color: #000;
    background: var(--accent-cyan);
    border: 2px solid var(--accent-cyan);
    border-radius: 4px;
    white-space: nowrap;
    transition: var(--transition-smooth);
    box-shadow: 0 0 25px rgba(0,229,255,0.35);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    animation: pulse-glow 3s infinite;
}
.specs-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}
.specs-cta:hover::before { transform: translateX(100%); }
.specs-cta:hover {
    background: transparent;
    color: var(--accent-cyan);
    box-shadow: 0 0 40px rgba(0,229,255,0.55);
    animation: none;
}

@keyframes spec-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.4; }
}

.specs-panel-label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-main);
}

.specs-panel-badge {
    margin-left: auto;
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
}
.badge-cyan { color: var(--accent-cyan); background: rgba(0,229,255,0.08); border: 1px solid rgba(0,229,255,0.2); }

/* =============================================
   PC SPECS — CLEAN REDESIGN
   ============================================= */

.pcs-section {
    background: var(--bg-darker);
    align-items: stretch !important;
    justify-content: center !important;
    padding: 0 !important;
}

.pcs-wrapper {
    width: 100%;
    height: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 68px 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2vh;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.pcs-header { text-align: center; }

.pcs-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem) !important;
    margin-bottom: 0;
}

/* Cards row */
.pcs-cards {
    display: flex;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(0,229,255,0.1);
    border-radius: 8px;
    overflow: hidden;
    flex: 1;
    min-height: 0;
}

/* Card */
.pcs-card {
    flex: 1;
    padding: 2rem 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 0;
}

.pcs-card--min {
    background: rgba(8,10,14,0.9);
    border-right: 1px solid rgba(255,255,255,0.06);
}

.pcs-card--rec {
    background: rgba(0,229,255,0.025);
}

/* Card top */
.pcs-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
}

.pcs-card-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    color: var(--text-main);
}

.pcs-card-tag {
    font-family: var(--font-sub);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
}

.pcs-card-tag--cyan {
    color: var(--accent-cyan);
    border-color: rgba(0,229,255,0.3);
    background: rgba(0,229,255,0.06);
    text-shadow: 0 0 8px rgba(0,229,255,0.4);
}

/* List */
.pcs-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    justify-content: space-between;
}

.pcs-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    padding: 0 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 0.2s ease;
    min-height: 0;
}

.pcs-list li:last-child { border-bottom: none; }

.pcs-list li:hover {
    background: rgba(0,229,255,0.03);
    border-radius: 3px;
    margin: 0 -0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.pcs-key {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    min-width: 60px;
    flex-shrink: 0;
    line-height: 1;
}

.pcs-card--rec .pcs-key { color: rgba(0,229,255,0.5); }

.pcs-val {
    font-family: var(--font-sub);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-main);
    line-height: 1.3;
}

/* Center divider */
.pcs-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0;
    background: rgba(0,229,255,0.03);
    border-left: 1px solid rgba(0,229,255,0.08);
    border-right: 1px solid rgba(0,229,255,0.08);
    width: 48px;
    flex-shrink: 0;
    gap: 0.8rem;
}

.pcs-divider-line {
    flex: 1;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(0,229,255,0.2), transparent);
}

.pcs-divider-icon {
    color: var(--accent-cyan);
    filter: drop-shadow(0 0 6px var(--accent-cyan));
    flex-shrink: 0;
}

/* Bottom */
.pcs-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(0,229,255,0.04);
    border: 1px solid rgba(0,229,255,0.12);
    border-radius: 6px;
}

.pcs-free-badge {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.pcs-free-title {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent-cyan);
}

.pcs-free-sub {
    font-family: var(--font-sub);
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    margin-top: 0.15rem;
    letter-spacing: 0.04em;
}

.pcs-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-decoration: none;
    color: #000;
    background: var(--accent-cyan);
    border: 2px solid var(--accent-cyan);
    border-radius: 4px;
    white-space: nowrap;
    transition: var(--transition-smooth);
    box-shadow: 0 0 20px rgba(0,229,255,0.3);
    flex-shrink: 0;
    animation: pulse-glow 3s infinite;
    position: relative;
    overflow: hidden;
}
.pcs-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: 0.5s ease;
}
.pcs-cta:hover::before { transform: translateX(100%); }
.pcs-cta:hover {
    background: transparent;
    color: var(--accent-cyan);
    box-shadow: 0 0 35px rgba(0,229,255,0.5);
    animation: none;
}

/* =============================================
   HOW TO PLAY SECTION
   ============================================= */

.htp-section {
    background: var(--bg-darker);
    align-items: stretch !important;
    justify-content: center !important;
    padding: 0 !important;
}

.htp-wrapper {
    width: 100%;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 68px 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: clamp(1.5vh, 2.5vh, 3vh);
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.htp-header { text-align: center; }

.htp-title {
    font-size: clamp(2rem, 4vw, 3.5rem) !important;
    margin-bottom: 0.5rem;
}

.htp-sub {
    font-family: var(--font-sub);
    font-size: 0.95rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.05em;
}

/* Steps grid */
.htp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 2rem);
    width: 100%;
    position: relative;
}

/* Individual step wrapper */
.htp-step {
    position: relative;
    z-index: 1;
}

/* ── Card ── */
.htp-step-card {
    position: relative;
    background: rgba(8, 10, 16, 0.75);
    border: 1px solid rgba(0, 229, 255, 0.12);
    border-radius: 8px;
    padding: clamp(1.2rem, 2vw, 1.8rem) clamp(1.2rem, 2vw, 1.8rem) clamp(1.4rem, 2.2vw, 2rem);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    overflow: hidden;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.23,1,0.32,1);
    backdrop-filter: blur(8px);
}

.htp-step-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--accent-cyan), rgba(0,229,255,0.1));
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.htp-step.active .htp-step-card,
.htp-step-card:hover {
    border-color: rgba(0, 229, 255, 0.35);
    box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 30px rgba(0,229,255,0.07);
    transform: translateY(-4px);
}

.htp-step-card:hover::before {
    opacity: 1;
}

/* Final step card — cyan accent */
.htp-step-card--final {
    border-color: rgba(0, 229, 255, 0.22);
    background: rgba(0, 229, 255, 0.03);
}
.htp-step-card--final::before {
    opacity: 1;
    background: linear-gradient(to right, var(--accent-cyan), rgba(0,229,255,0.3));
}

/* Ghost number in background */
.htp-step-num-bg {
    position: absolute;
    bottom: -0.5rem;
    right: 0.8rem;
    font-family: var(--font-heading);
    font-size: clamp(4rem, 6vw, 7rem);
    font-weight: 900;
    color: rgba(0, 229, 255, 0.04);
    line-height: 1;
    pointer-events: none;
    letter-spacing: -0.02em;
    user-select: none;
    transition: color 0.4s ease;
}

.htp-step-card:hover .htp-step-num-bg {
    color: rgba(0, 229, 255, 0.07);
}

/* Top row: icon + badge */
.htp-step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Icon wrapper */
.htp-step-icon-wrap {
    width: clamp(44px, 5vw, 54px);
    height: clamp(44px, 5vw, 54px);
    border-radius: 8px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    background: rgba(0, 229, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    flex-shrink: 0;
    transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
    box-shadow: inset 0 0 12px rgba(0,229,255,0.04);
}

.htp-step-card:hover .htp-step-icon-wrap {
    background: rgba(0, 229, 255, 0.14);
    box-shadow: 0 0 20px rgba(0,229,255,0.2), inset 0 0 12px rgba(0,229,255,0.06);
    transform: scale(1.08);
}

.htp-step-icon-wrap--active {
    background: rgba(0, 229, 255, 0.12);
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 0 16px rgba(0,229,255,0.15);
}

/* Step badge */
.htp-step-badge {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: rgba(0, 229, 255, 0.5);
    border: 1px solid rgba(0, 229, 255, 0.15);
    border-radius: 3px;
    padding: 0.2rem 0.55rem;
    background: rgba(0, 229, 255, 0.04);
    transition: color 0.3s, border-color 0.3s;
}

.htp-step-card:hover .htp-step-badge {
    color: var(--accent-cyan);
    border-color: rgba(0, 229, 255, 0.35);
}

.htp-step-badge--active {
    color: var(--accent-cyan);
    border-color: rgba(0, 229, 255, 0.4);
    background: rgba(0, 229, 255, 0.08);
    text-shadow: 0 0 8px rgba(0,229,255,0.4);
}

/* Title */
.htp-step-title {
    font-family: var(--font-heading);
    font-size: clamp(0.9rem, 1.3vw, 1.1rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-main);
    line-height: 1.25;
    margin: 0;
    transition: color 0.3s;
}

.htp-step-card:hover .htp-step-title {
    color: #fff;
}

.htp-step-title .highlight {
    color: var(--accent-cyan);
    text-shadow: 0 0 14px rgba(0,229,255,0.4);
}

/* Description */
.htp-step-desc {
    font-family: var(--font-sub);
    font-size: clamp(0.78rem, 1vw, 0.88rem);
    color: rgba(255,255,255,0.48);
    line-height: 1.7;
    margin: 0;
    flex: 1;
    transition: color 0.3s;
}

.htp-step-card:hover .htp-step-desc {
    color: rgba(255,255,255,0.62);
}

.htp-step-desc strong {
    color: rgba(255,255,255,0.75);
}

/* Arrow indicator (steps 1 & 2) */
.htp-step-arrow {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(0, 229, 255, 0.3);
    font-family: var(--font-sub);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    transition: color 0.3s, transform 0.3s;
    align-self: flex-end;
    margin-top: auto;
    padding-top: 0.5rem;
}

.htp-step-card:hover .htp-step-arrow {
    color: var(--accent-cyan);
    transform: translateX(4px);
}

/* Free tag (step 3) */
.htp-step-free-tag {
    align-self: flex-start;
    margin-top: auto;
    padding-top: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(0,229,255,0.5);
    animation: free-tag-pulse 2.5s ease-in-out infinite;
}

@keyframes free-tag-pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; text-shadow: 0 0 16px rgba(0,229,255,0.8); }
}

/* CTA */
.htp-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1.1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-decoration: none;
    color: #000;
    background: var(--accent-cyan);
    border: 2px solid var(--accent-cyan);
    border-radius: 4px;
    transition: var(--transition-smooth);
    box-shadow: 0 0 30px rgba(0,229,255,0.35);
    animation: pulse-glow 3s infinite;
    position: relative;
    overflow: hidden;
}
.htp-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: 0.5s ease;
}
.htp-cta:hover::before { transform: translateX(100%); }
.htp-cta:hover {
    background: transparent;
    color: var(--accent-cyan);
    box-shadow: 0 0 50px rgba(0,229,255,0.5);
    animation: none;
}



/* =============================================
   FINAL CTA — PERFECT v4
   ============================================= */

.final-cta-section {
    position: relative;
    overflow: hidden;
}

/* Darker, more cinematic overlay */
.cta-overlay {
    background: linear-gradient(
        180deg,
        rgba(2,3,5,0.6) 0%,
        rgba(2,3,5,0.3) 35%,
        rgba(2,3,5,0.55) 70%,
        rgba(2,3,5,0.85) 100%
    ) !important;
}

/* Scan lines */
.cta-scanlines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg, transparent, transparent 2px,
        rgba(0,0,0,0.025) 2px, rgba(0,0,0,0.025) 4px
    );
    pointer-events: none;
    z-index: 2;
}

/* Full section centering */
.cta-wrapper {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 72px 2rem 2rem;
}

/* Content block — perfectly centered */
.cta-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center;
    gap: 0 !important;
    text-align: center !important;
    max-width: 900px;
    width: 100%;
}

/* Eyebrow */
.cta-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}
.cta-eyebrow span {
    font-family: var(--font-sub);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--accent-cyan);
    white-space: nowrap;
    text-shadow: 0 0 12px rgba(0,229,255,0.6);
}
.cta-eyebrow-line {
    height: 1px;
    width: 50px;
    flex-shrink: 0;
}
.cta-eyebrow-line:first-child { background: linear-gradient(to right, transparent, var(--accent-cyan)); }
.cta-eyebrow-line:last-child  { background: linear-gradient(to left,  transparent, var(--accent-cyan)); }

/* Headline — huge and centered */
.cta-headline {
    font-family: var(--font-heading) !important;
    font-weight: 900 !important;
    line-height: 0.92 !important;
    letter-spacing: 0.02em;
    text-align: center !important;
    margin: 0 0 1.2rem 0 !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 0.05rem;
}
.cta-headline-line1 {
    font-size: clamp(3rem, 6vw, 6.5rem);
    color: #fff;
    display: block;
    text-shadow: 0 2px 40px rgba(0,0,0,0.8);
    /* Glitch effect */
    animation: cta-glitch 8s infinite;
}
.cta-headline-line2 {
    font-size: clamp(3rem, 6vw, 6.5rem);
    color: #fff;
    display: block;
    text-shadow: 0 2px 40px rgba(0,0,0,0.8);
}
.cta-headline-accent {
    color: var(--accent-cyan);
    text-shadow: 0 0 30px rgba(0,229,255,0.5), 0 0 60px rgba(0,229,255,0.2);
    animation: cta-accent-pulse 3s ease-in-out infinite;
}

@keyframes cta-accent-pulse {
    0%, 100% { text-shadow: 0 0 30px rgba(0,229,255,0.5), 0 0 60px rgba(0,229,255,0.2); }
    50%       { text-shadow: 0 0 50px rgba(0,229,255,0.8), 0 0 100px rgba(0,229,255,0.4); }
}

@keyframes cta-glitch {
    0%, 95%, 100% { transform: translate(0); clip-path: none; }
    96% { transform: translate(-2px, 1px); clip-path: polygon(0 20%, 100% 20%, 100% 40%, 0 40%); }
    97% { transform: translate(2px, -1px); clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%); }
    98% { transform: translate(0); clip-path: none; }
}

/* Sub */
.cta-sub {
    font-family: var(--font-sub) !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    color: rgba(255,255,255,0.85) !important;
    line-height: 1.7 !important;
    margin: 0 0 1.6rem 0 !important;
    display: block !important;
    text-align: center;
    text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}

/* Stats pill */
.cta-stats {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    justify-content: center;
    margin-bottom: 1.8rem;
    padding: 0.7rem 2rem;
    border: 1px solid rgba(0,229,255,0.15);
    border-radius: 50px;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(12px);
}
.cta-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
}
.cta-stat-num {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--accent-cyan);
    text-shadow: 0 0 12px rgba(0,229,255,0.4);
    line-height: 1;
}
.cta-stat-label {
    font-family: var(--font-sub);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    font-weight: 600;
}
.cta-stat-sep {
    width: 1px; height: 28px;
    background: rgba(0,229,255,0.12);
}

/* CTA Button */
.cta-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 3rem;
    text-decoration: none;
    color: #000;
    background: var(--accent-cyan);
    border: 2px solid var(--accent-cyan);
    border-radius: 4px;
    transition: all 0.35s cubic-bezier(0.23,1,0.32,1);
    box-shadow: 0 0 40px rgba(0,229,255,0.4), 0 0 80px rgba(0,229,255,0.15), 0 8px 30px rgba(0,0,0,0.5);
    animation: pulse-glow 3s infinite;
    position: relative;
    overflow: hidden;
    margin-bottom: 0.9rem;
}
.cta-main-btn:hover {
    background: transparent;
    color: var(--accent-cyan);
    box-shadow: 0 0 60px rgba(0,229,255,0.65), 0 0 120px rgba(0,229,255,0.3);
    transform: translateY(-3px) scale(1.02);
    animation: none;
}
.cta-btn-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: translateX(-100%);
    animation: rev-cta-sweep 3.5s ease-in-out infinite;
}
.cta-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
}
.cta-btn-main {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1;
}
.cta-btn-sub {
    font-family: var(--font-sub);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    opacity: 1;
    color: rgba(0,0,0,0.65);
    font-weight: 600;
}
.cta-main-btn:hover .cta-btn-sub { 
    color: rgba(0,229,255,0.7);
    opacity: 1;
}
.cta-btn-arrow {
    font-size: 1.2rem;
    line-height: 1;
    transition: transform 0.3s ease;
}
.cta-main-btn:hover .cta-btn-arrow { transform: translateX(5px); }

/* Disclaimer */
.cta-disclaimer {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-sub) !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    color: rgba(255,255,255,0.7) !important;
    margin: 0 !important;
    text-shadow: 0 1px 6px rgba(0,0,0,0.9);
}

/* Particles */
.cta-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
.cta-particle {
    position: absolute;
    width: 2px; height: 2px;
    border-radius: 50%;
    background: var(--accent-cyan);
    box-shadow: 0 0 6px var(--accent-cyan);
    animation: particle-rise linear infinite;
    opacity: 0;
}
@keyframes particle-rise {
    0%   { transform: translateY(0) translateX(0); opacity: 0; }
    10%  { opacity: 0.7; }
    90%  { opacity: 0.2; }
    100% { transform: translateY(-100vh) translateX(var(--drift)); opacity: 0; }
}

/* Section name label next to active dot */
.side-nav-label {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-heading);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-cyan);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    text-shadow: 0 0 10px rgba(0,229,255,0.5);
    transition: opacity 0.3s ease;
    background: rgba(4,4,6,0.8);
    padding: 0.2rem 0.6rem;
    border: 1px solid rgba(0,229,255,0.2);
    border-radius: 4px;
    backdrop-filter: blur(8px);
}


/* =============================================
   DESKTOP RESPONSIVE — ALL RESOLUTIONS
   Covers: 1024×600 → 5120×2880
   ============================================= */

/* ── NAVBAR: scale nav-cta on tight viewports ── */
.nav-cta {
    padding: clamp(0.5rem, 0.65vh, 0.75rem) clamp(1.2rem, 1.8vw, 2rem);
    font-size: clamp(0.6rem, 0.8vw, 0.9rem);
    min-width: unset;
    white-space: nowrap;
    letter-spacing: 0.12em;
    border-radius: 3px;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, #00b8d9 100%);
    box-shadow: 0 0 20px rgba(0,229,255,0.35), 0 0 40px rgba(0,229,255,0.1), inset 0 1px 0 rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.23,1,0.32,1);
}
.nav-cta::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: skewX(-20deg);
    animation: nav-cta-shine 4s ease-in-out infinite;
}
@keyframes nav-cta-shine {
    0%, 60%, 100% { left: -100%; }
    30% { left: 150%; }
}
.nav-cta:hover {
    box-shadow: 0 0 35px rgba(0,229,255,0.65), 0 0 60px rgba(0,229,255,0.2);
    transform: translateY(-2px) scale(1.03);
}

/* ── HERO COUNTER: prevent overflow on 1024px ── */
.hero-counter-inner {
    gap: clamp(0.5rem, 1vw, 1rem);
    padding: clamp(0.4rem, 0.6vh, 0.6rem) clamp(0.5rem, 1vw, 1.2rem);
}
.counter-number {
    font-size: clamp(1rem, 1.4vw, 1.35rem);
}
.hero-main-cta {
    padding: clamp(0.6rem, 1vh, 1rem) clamp(1rem, 2vw, 2.5rem);
    font-size: clamp(0.75rem, 1vw, 1.25rem);
}
.hero-tagline {
    font-size: clamp(0.85rem, 1.2vw, 1.2rem);
}

/* ── FEATURES: tighter on 1024-1280 ── */
.features-grid {
    gap: clamp(0.6rem, 1.2vw, 1.5rem);
}
.features .full-height-container {
    padding-top: clamp(60px, 8vh, 90px);
}

/* ── ABOUT: gap and padding responsive ── */
.about-wrapper {
    gap: clamp(1.5rem, 2.5vw, 3rem);
}

/* ── REVIEWS: responsive track height ── */
.rev-track-wrap {
    height: calc(100vh - clamp(100px, 15vh, 160px));
}
.rev-title {
    font-size: clamp(1.6rem, 3vw, 3rem) !important;
}
.rev-cta-main {
    font-size: clamp(1rem, 1.8vw, 1.6rem);
}

/* ── MISSION / SCENARIOS ── */
.mission-panel {
    height: calc(100vh - clamp(100px, 16vh, 160px));
    max-height: clamp(400px, 70vh, 700px);
}
.mission-wrapper {
    gap: clamp(1.2rem, 2.5vw, 3rem);
    padding: 72px clamp(1.2rem, 2vw, 2rem) 1.5rem;
}

/* ── SPECS ── */
.specs-panels {
    gap: clamp(0.8rem, 1.2vw, 1.2rem);
}
.specs-wrapper {
    padding: 68px clamp(1.2rem, 2.5vw, 2.5rem) 1.5rem;
    gap: clamp(1vh, 1.4vh, 2vh);
}
.pcs-bottom {
    flex-wrap: wrap;
    gap: 0.8rem;
}

/* ── HOW TO PLAY ── */
.htp-steps {
    gap: clamp(1rem, 2vw, 2rem);
}
.htp-step-num {
    width: clamp(48px, 7vh, 72px);
    height: clamp(48px, 7vh, 72px);
    font-size: clamp(0.9rem, 1.2vh, 1.2rem);
}
.htp-wrapper {
    padding: 68px clamp(1.2rem, 2.5vw, 2.5rem) 2rem;
    gap: clamp(1.5vh, 2.5vh, 3vh);
}

/* ── FINAL CTA ── */
.cta-content {
    gap: 0 !important;
    padding: 0 1rem;
}
.cta-stats {
    flex-wrap: wrap;
    padding: 0.6rem 1.2rem;
    gap: clamp(0.6rem, 1.2vw, 1.2rem);
}
.cta-main-btn {
    padding: clamp(0.9rem, 1.2vh, 1.2rem) clamp(1.5rem, 2.5vw, 3rem);
    gap: clamp(0.6rem, 1vw, 1.2rem);
}
.cta-btn-main {
    font-size: clamp(0.85rem, 1.2vw, 1.15rem);
}
.cta-wrapper {
    padding: clamp(60px, 8vh, 80px) clamp(1rem, 2vw, 2rem) 2rem;
}

/* ── MODAL — responsive handled in modal section above ── */

/* ── 1024–1280px: moderate desktop ── */
@media screen and (max-width: 1280px) and (min-width: 1025px) {
    .nav-links {
        gap: clamp(0.7rem, 1.4vw, 1.8rem);
    }
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .about-wrapper {
        grid-template-columns: 1fr 1.2fr;
        gap: 2rem;
    }
    .rev-wrapper {
        gap: 2rem;
    }
    .mission-wrapper {
        grid-template-columns: 1fr 1.5fr;
        gap: 2rem;
    }
    .specs-panels {
        grid-template-columns: 1fr 48px 1fr;
    }
    .htp-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
    .cta-headline-line1,
    .cta-headline-line2 {
        font-size: clamp(2.5rem, 5vw, 5.5rem);
    }
}

/* ── 1024px exactly: tight desktop ── */
@media screen and (max-width: 1100px) and (min-width: 1025px) {
    .nav-links {
        display: flex;
        gap: 0.7rem;
    }
    .nav-link {
        font-size: 0.62rem;
    }
    .cta-button.nav-cta {
        padding: 0.5rem 0.9rem;
        font-size: 0.65rem;
    }
    .hero-counter-inner {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .about-wrapper {
        grid-template-columns: 1fr 1.1fr;
        padding: 0 1.5rem;
        gap: 1.5rem;
    }
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.8rem;
    }
    .feature-card h3 {
        font-size: 0.9rem;
    }
    .rev-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        padding: 72px 1.5rem 2rem;
    }
    .mission-wrapper {
        grid-template-columns: 1fr 1.3fr;
        gap: 1.5rem;
        padding: 72px 1.5rem 1.5rem;
    }
    .specs-wrapper {
        padding: 68px 1.5rem 1.5rem;
    }
    .htp-wrapper {
        padding: 68px 1.5rem 2rem;
    }
    .cta-wrapper {
        padding: 72px 1.5rem 2rem;
    }
}

/* ── VERY SHORT VIEWPORTS (600px height): 1024×600, 1280×800 ── */
@media screen and (max-height: 700px) {
    /* Hero */
    .hero {
        padding: 60px 1.5rem 60px;
    }
    .hero-logo-img {
        width: clamp(180px, 30vw, 380px);
        margin-bottom: 0.4rem;
    }
    .hero-top-badges {
        margin-bottom: 0.5rem;
    }
    .hero-tagline {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }
    .hero-counter-block {
        margin-bottom: 0.7rem;
    }
    .hero-counter-inner {
        padding: 0.4rem 0.8rem;
        gap: 0.6rem;
    }
    .hero-main-cta {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    .scroll-indicator {
        bottom: 0.5rem;
    }
    /* All sections: compress vertical spacing */
    .about-wrapper {
        padding-top: 0;
        align-items: start;
    }
    .about-text-col h2 {
        font-size: 1.6rem;
    }
    .about-desc {
        font-size: 0.82rem;
    }
    .features .full-height-container {
        padding-top: 60px;
    }
    .feature-card {
        min-height: 160px;
        height: clamp(150px, 38vh, 280px);
    }
    .rev-wrapper {
        padding-top: 60px;
        gap: 1.5rem;
    }
    .rev-track-wrap {
        height: calc(100vh - 80px);
    }
    .mission-wrapper {
        padding-top: 60px;
    }
    .mission-panel {
        height: calc(100vh - 80px);
        max-height: 500px;
    }
    .specs-wrapper {
        padding-top: 60px;
        gap: 1vh;
    }
    .specs-title {
        font-size: 1.6rem !important;
    }
    .specs-row {
        padding: 0.35rem 0.5rem;
    }
    .htp-wrapper {
        padding-top: 60px;
        gap: 1.5vh;
    }
    .htp-step-num {
        width: 48px;
        height: 48px;
        font-size: 0.9rem;
    }
    .htp-title {
        font-size: 1.8rem !important;
    }
    .cta-wrapper {
        padding-top: 60px;
        padding-bottom: 1rem;
    }
    .cta-headline-line1,
    .cta-headline-line2 {
        font-size: clamp(2rem, 5vw, 4rem);
    }
    .cta-content {
        gap: 0 !important;
    }
    .cta-eyebrow {
        margin-bottom: 0.6rem;
    }
    .cta-sub {
        margin: 0 0 0.8rem 0 !important;
        font-size: 0.9rem !important;
    }
    .cta-stats {
        margin-bottom: 0.9rem;
        padding: 0.45rem 1rem;
    }
    .cta-stat-num {
        font-size: 1rem;
    }
    .cta-main-btn {
        padding: 0.8rem 1.8rem;
        margin-bottom: 0.5rem;
    }
    /* Modal — handled in modal section */
}

/* ── 4K and above (2560px+): prevent over-scaling ── */
@media screen and (min-width: 2560px) {
    html {
        font-size: 18px;
    }
    .navbar {
        padding: 1.5rem 0;
    }
    .logo {
        height: 70px;
    }
    .side-nav {
        right: 2.5rem;
    }
    .hero-logo-img {
        width: clamp(500px, 30vw, 900px);
    }
    .modal-content {
        max-width: 620px;
    }
}

/* ── Ultra-wide (3440px+): constrain content ── */
@media screen and (min-width: 3440px) {
    .about-wrapper,
    .rev-wrapper,
    .mission-wrapper {
        max-width: 2000px;
    }
    .specs-wrapper,
    .htp-wrapper {
        max-width: 1800px;
    }
    .cta-content {
        max-width: 1300px;
    }
    .section-container {
        max-width: 2200px;
    }
}

/* ── 5K (5120×2880): prevent extreme over-scale ── */
@media screen and (min-width: 4096px) {
    html {
        font-size: 22px;
    }
}


/* ── Ensure nav-links always visible on desktop ── */
@media screen and (min-width: 1025px) {
    .nav-links {
        display: flex !important;
    }
    .side-nav {
        display: flex !important;
    }
}

/* ── 1366×768 & 1440×900 — Most Common Desktop Resolutions ── */
@media screen and (max-width: 1440px) and (min-width: 1280px) and (max-height: 900px) {
    .hero-logo-img {
        width: clamp(260px, 32vw, 480px);
    }
    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 0.9rem;
    }
    .hero-counter-block {
        margin-bottom: 1rem;
    }
    .feature-card {
        height: clamp(200px, 44vh, 380px);
        min-height: 190px;
    }
    .features-grid {
        gap: 1rem;
    }
    .about-wrapper {
        gap: 2rem;
    }
    .rev-wrapper {
        gap: 2rem;
        padding: 72px 2rem 1.5rem;
    }
    .rev-track-wrap {
        height: calc(100vh - 120px);
    }
    .mission-panel {
        height: calc(100vh - 120px);
        max-height: 580px;
    }
    .specs-wrapper {
        padding: 68px 2rem 1rem;
        gap: 1.2vh;
    }
    .htp-wrapper {
        gap: 2vh;
    }
    .cta-headline-line1,
    .cta-headline-line2 {
        font-size: clamp(2.8rem, 5.5vw, 5.8rem);
    }
    .cta-sub {
        margin: 0 0 1.2rem 0 !important;
    }
    .cta-stats {
        margin-bottom: 1.3rem;
    }
}

/* ── 1366×768 specifically ── */
@media screen and (max-width: 1366px) and (min-width: 1280px) and (max-height: 800px) {
    .hero-logo-img {
        width: clamp(240px, 28vw, 400px);
    }
    .hero-tagline {
        font-size: 0.95rem;
        margin-bottom: 0.7rem;
    }
    .feature-card {
        height: clamp(180px, 40vh, 300px);
        min-height: 180px;
    }
    .cta-headline-line1,
    .cta-headline-line2 {
        font-size: clamp(2.5rem, 5vw, 5rem);
    }
    .cta-eyebrow { margin-bottom: 0.8rem; }
    .cta-sub { margin: 0 0 1rem 0 !important; }
    .cta-stats { margin-bottom: 1rem; }
    .cta-main-btn { margin-bottom: 0.6rem; }
}

/* ── 1920×1080 — Full HD sweet spot ── */
@media screen and (min-width: 1920px) and (max-width: 2559px) {
    .about-wrapper { max-width: 1600px; }
    .rev-wrapper   { max-width: 1600px; }
    .mission-wrapper { max-width: 1600px; }
    .htp-wrapper   { max-width: 1300px; }
    .specs-wrapper { max-width: 1400px; }
    .cta-content   { max-width: 1100px; }
    .hero-logo-img {
        width: clamp(400px, 35vw, 700px);
    }
}

/* ── 1920×1200 — Tall full HD ── */
@media screen and (min-width: 1920px) and (min-height: 1180px) {
    .feature-card {
        height: clamp(280px, 46vh, 520px);
        min-height: 280px;
    }
    .rev-track-wrap {
        height: calc(100vh - 180px);
    }
    .mission-panel {
        height: calc(100vh - 180px);
        max-height: 900px;
    }
}

/* ── Prevent any section from making content overflow vertically ── */
@media screen and (max-height: 620px) {
    /* Extreme short: 1024×600 */
    .scroll-section {
        min-height: 100vh;
    }
    .hero-content {
        gap: 0;
    }
    .hero-logo-img {
        width: clamp(160px, 25vw, 300px);
        margin-bottom: 0.2rem;
    }
    .hero-top-badges {
        margin-bottom: 0.3rem;
    }
    .hero-tagline {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }
    .hero-counter-block {
        margin-bottom: 0.5rem;
    }
    .counter-label {
        display: none;
    }
    .bottom-proof {
        font-size: 0.72rem;
    }
    .cta-headline-line1,
    .cta-headline-line2 {
        font-size: clamp(1.8rem, 4.5vw, 3.5rem);
    }
    .cta-eyebrow { margin-bottom: 0.5rem; }
    .cta-sub { display: none !important; }
    .cta-stats { margin-bottom: 0.7rem; }
    .cta-stat-label { display: none; }
    .cta-main-btn { margin-bottom: 0.4rem; }
    /* Modal — handled in modal section */
}

/* ── Fix: specs-panels 3-col layout at standard desktops ── */
@media screen and (min-width: 1280px) {
    .specs-panels {
        grid-template-columns: 1fr 48px 1fr;
    }
}

/* ── Fix: gallery strips height on short screens ── */
@media screen and (max-height: 700px) {
    .gal-strip {
        max-height: 160px;
        min-height: 90px;
    }
    .gal-header {
        padding-top: 60px;
        padding-bottom: 1vh;
    }
    .gal-hint {
        padding-bottom: 1vh;
    }
}

/* ── Fix: review section left col overflow on medium screens ── */
@media screen and (max-width: 1366px) and (min-width: 1025px) {
    .rev-left {
        gap: 1rem;
    }
    .rev-stats {
        padding: 0.8rem 1rem;
        gap: 1rem;
    }
    .rev-stat-num {
        font-size: clamp(1.3rem, 2vw, 2rem);
    }
    .rev-cta {
        padding: 1rem 1.5rem;
    }
}

/* ── Fix: about-section potential overflow at 1024×768 ── */
@media screen and (max-width: 1280px) and (max-height: 800px) {
    .about-section .scroll-section,
    .about-section {
        overflow-y: auto;
    }
    .about-wrapper {
        padding-top: 72px;
        padding-bottom: 1rem;
        align-items: start;
    }
    .about-video-col .video-carousel-track-wrapper {
        padding-bottom: 52%;
    }
}

