/* ===============================================
   FITZONE 2080 — Cyberpunk Style
   =============================================== */

:root {
    --neon-cyan: #00f0ff;
    --neon-magenta: #ff00ff;
    --neon-yellow: #ffcc00;
    --neon-green: #00ff41;
    --neon-red: #ff0040;
    --dark-bg: #0a0a0f;
    --dark-surface: #0e0e18;
    --dark-card: #12121e;
    --dark-elevated: #1a1a2e;
    --glass: rgba(18, 18, 30, 0.7);
    --border-glow: rgba(0, 240, 255, 0.15);
    --font-display: 'Orbitron', monospace;
    --font-body: 'Rajdhani', sans-serif;
    --font-mono: 'Share Tech Mono', monospace;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
}

/* ===============================================
   RESET + BASE
   =============================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 130px;
}

body {
    font-family: var(--font-body);
    background: var(--dark-bg);
    color: #c0c0d0;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: var(--font-display);
    line-height: 1.2;
    color: #f0f0ff;
}

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

::selection {
    background: var(--neon-cyan);
    color: var(--dark-bg);
}

/* ===============================================
   OVERLAYS
   =============================================== */
.scanline {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 240, 255, 0.015) 2px,
        rgba(0, 240, 255, 0.015) 4px
    );
    pointer-events: none;
    z-index: 9999;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 9998;
}

#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* ===============================================
   CONTAINER
   =============================================== */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
    z-index: 2;
}

/* ===============================================
   BUTTONS
   =============================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.header__btn {
    flex-shrink: 0;
}

/* ===============================================
   HAMBURGER MENU
   =============================================== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 4px;
    cursor: pointer;
    padding: 6px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.hamburger__line {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--neon-cyan);
    transition: all 0.3s ease;
}

.hamburger.is-active .hamburger__line:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.hamburger.is-active .hamburger__line:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active .hamburger__line:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

/* ===============================================
   MOBILE NAV DRAWER
   =============================================== */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 300;
}

.mobile-nav.is-open {
    display: block;
}

.mobile-nav__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-nav.is-open .mobile-nav__overlay {
    opacity: 1;
}

.mobile-nav__drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: rgba(14, 14, 24, 0.97);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(0, 240, 255, 0.08);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-nav.is-open .mobile-nav__drawer {
    transform: translateX(0);
}

.mobile-nav__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.mobile-nav__title {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: rgba(128, 128, 160, 0.5);
    letter-spacing: 3px;
}

.mobile-nav__close {
    background: transparent;
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 4px;
    color: var(--neon-cyan);
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-nav__close:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--neon-cyan);
}

.mobile-nav__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.mobile-nav__link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0.75rem;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mobile-nav__link:active {
    background: rgba(0, 240, 255, 0.05);
    border-color: rgba(0, 240, 255, 0.12);
}

.mobile-nav__link-num {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--neon-magenta);
    opacity: 0.5;
    width: 24px;
}

.mobile-nav__link-text {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: #f0f0ff;
    letter-spacing: 2px;
}

.mobile-nav__footer {
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 240, 255, 0.06);
}

.mobile-nav__cta {
    width: 100%;
    text-align: center;
}

.btn--neon {
    background: transparent;
    color: var(--neon-cyan);
    border: 1px solid var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2), inset 0 0 10px rgba(0, 240, 255, 0.05);
}

.btn--neon:hover {
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4), inset 0 0 20px rgba(0, 240, 255, 0.1);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--neon-magenta);
    border: 1px solid var(--neon-magenta);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.15);
}

.btn--outline:hover {
    background: rgba(255, 0, 255, 0.1);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
    transform: translateY(-2px);
}

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

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 240, 255, 0.2), inset 0 0 10px rgba(0, 240, 255, 0.05); }
    50% { box-shadow: 0 0 25px rgba(0, 240, 255, 0.5), inset 0 0 15px rgba(0, 240, 255, 0.1); }
}

.btn--neon.magnetic:hover {
    transform: translate(var(--mx, 0px), var(--my, 0px));
}

/* ===============================================
   HEADER
   =============================================== */
/* ===============================================
   TOP BANNER — Free session offer (always visible)
   =============================================== */
.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    z-index: 200;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.08);
    overflow: hidden;
}

.top-banner__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    height: 100%;
    padding: 0 1rem;
    position: relative;
}

.top-banner__tag {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--neon-magenta);
    letter-spacing: 2px;
    opacity: 0.7;
}

.top-banner__text {
    font-family: var(--font-display);
    font-size: 0.75rem;
    color: #f0f0ff;
    letter-spacing: 3px;
    text-shadow: 0 0 12px rgba(0, 240, 255, 0.2);
    transition: text-shadow 0.3s ease;
}

.top-banner:hover .top-banner__text {
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.4), 0 0 40px rgba(0, 240, 255, 0.1);
}

.top-banner__cta {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--neon-cyan);
    letter-spacing: 2px;
    padding: 0.25rem 0.75rem;
    border: 1px solid rgba(0, 240, 255, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.top-banner__cta:hover {
    background: rgba(0, 240, 255, 0.08);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.top-banner__glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.15), rgba(255, 0, 255, 0.15), transparent);
    animation: bannerGlow 4s ease-in-out infinite;
}

.top-banner__glow::after {
    content: '';
    position: absolute;
    top: -4px;
    left: var(--mouse-x, 50%);
    width: 40px;
    height: 9px;
    background: radial-gradient(ellipse, rgba(0, 240, 255, 0.25) 0%, transparent 70%);
    transform: translateX(-50%);
    pointer-events: none;
    transition: left 0.3s ease;
}

@keyframes bannerGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.header {
    margin-top: 40px;
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    padding: 0.75rem 0;
    position: sticky;
    top: 40px;
    z-index: 100;
}

[data-theme="light"] .top-banner {
    background: rgba(24, 24, 38, 0.9);
    border-bottom-color: rgba(0, 240, 255, 0.05);
}

[data-theme="light"] .top-banner__text {
    color: #e0e0f0;
}

@media (max-width: 768px) {
    .top-banner {
        height: 36px;
    }
    .top-banner__text {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }
    .top-banner__tag {
        display: none;
    }
    .top-banner__cta {
        font-size: 0.55rem;
        padding: 0.2rem 0.5rem;
    }
    .top-banner__counter {
        display: none;
    }
    .header {
        margin-top: 36px;
        top: 36px;
    }
}

.top-banner__counter {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    color: rgba(128, 128, 160, 0.5);
    letter-spacing: 1px;
}

.top-banner__cta {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--neon-cyan);
    letter-spacing: 2px;
    padding: 0.25rem 0.75rem;
    border: 1px solid rgba(0, 240, 255, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.header__logo {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    white-space: nowrap;
    letter-spacing: 2px;
}

.header__nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: #8080a0;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: var(--neon-cyan);
    box-shadow: 0 0 8px var(--neon-cyan);
    transition: width 0.3s ease;
}

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

.header__clock {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--neon-green);
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.4);
    white-space: nowrap;
}

/* ===============================================
   THEME TOGGLE
   =============================================== */
.theme-toggle {
    background: transparent;
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 4px;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--neon-cyan);
}

.theme-toggle:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.3);
}

/* ===============================================
   HERO
   =============================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--dark-bg);
}

#rain-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero__badge {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--neon-magenta);
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
    letter-spacing: 3px;
    margin-bottom: var(--space-md);
    animation: flicker 3s infinite;
}

.hero__title {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    color: #f0f0ff;
    margin-bottom: var(--space-md);
    letter-spacing: 4px;
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
    line-height: 1.1;
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: 1.3rem;
    color: rgba(192, 192, 208, 0.8);
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    min-height: 1.6rem;
}

.hero__subtitle::after {
    content: '▌';
    animation: blink 1s step-end infinite;
    color: var(--neon-cyan);
}

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

.hero__cta-group {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero__scroll-indicator span {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: rgba(128, 128, 160, 0.6);
    letter-spacing: 3px;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--neon-cyan), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.5); }
}

/* ===============================================
   GLITCH TEXT
   =============================================== */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-glitch);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.glitch:hover::before {
    animation: glitchTop 0.3s ease;
    color: var(--neon-magenta);
    text-shadow: 2px 0 var(--neon-magenta), -2px 0 var(--neon-cyan);
    opacity: 0.8;
    clip-path: inset(0 0 60% 0);
}

.glitch:hover::after {
    animation: glitchBottom 0.3s ease;
    color: var(--neon-cyan);
    text-shadow: -2px 0 var(--neon-green), 2px 0 var(--neon-magenta);
    opacity: 0.8;
    clip-path: inset(60% 0 0 0);
}

@keyframes glitchTop {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, -2px); }
    40% { transform: translate(2px, 1px); }
    60% { transform: translate(-1px, -1px); }
    80% { transform: translate(1px, 2px); }
    100% { transform: translate(0); }
}

@keyframes glitchBottom {
    0% { transform: translate(0); }
    20% { transform: translate(2px, 2px); }
    40% { transform: translate(-2px, -1px); }
    60% { transform: translate(1px, 1px); }
    80% { transform: translate(-1px, -2px); }
    100% { transform: translate(0); }
}

@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 1; }
    20%, 24%, 55% { opacity: 0.3; }
}

/* ===============================================
   SECTION TITLE
   =============================================== */
.section__title {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    text-align: center;
    margin-bottom: var(--space-lg);
    letter-spacing: 4px;
    color: var(--neon-cyan);
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

/* ===============================================
   STORY
   =============================================== */
.story {
    position: relative;
    height: 300vh;
    background: var(--dark-bg);
}

.story__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story__frame {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transform: scale(var(--story-scale, 0.62));
    border-radius: var(--story-radius, 28px);
    will-change: transform, border-radius;
}

.story__border {
    position: absolute;
    inset: -2px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: inherit;
    pointer-events: none;
    z-index: 5;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.1), inset 0 0 30px rgba(0, 240, 255, 0.05);
}

.story__image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.story__image[data-scene="1"] { background: linear-gradient(135deg, #0a0a2e 0%, #1a0a0a 100%); }
.story__image[data-scene="2"] { background: linear-gradient(135deg, #0a1a0a 0%, #0a0a2e 100%); }
.story__image[data-scene="3"] { background: linear-gradient(135deg, #1a0a1a 0%, #0a0a1a 100%); }

.story__image[data-scene="1"] { opacity: 1; }

.story.scene-1 .story__image[data-scene="1"],
.story.scene-2 .story__image[data-scene="2"],
.story.scene-3 .story__image[data-scene="3"] { opacity: 1; }

.story.scene-2 .story__image[data-scene="1"],
.story.scene-3 .story__image[data-scene="1"],
.story.scene-1 .story__image[data-scene="2"],
.story.scene-3 .story__image[data-scene="2"],
.story.scene-1 .story__image[data-scene="3"],
.story.scene-2 .story__image[data-scene="3"] { opacity: 0; }

.story__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 240, 255, calc(var(--story-progress, 0) * 0.2)) 100%
    );
    z-index: 2;
    pointer-events: none;
}

.story__content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 3;
    padding: var(--space-md);
    pointer-events: none;
}

.story__scene {
    position: absolute;
    width: 100%;
    max-width: 800px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    pointer-events: none;
}

.story__scene[data-scene="1"] { opacity: 1; transform: translateY(0); }

.story.scene-1 .story__scene[data-scene="1"],
.story.scene-2 .story__scene[data-scene="2"],
.story.scene-3 .story__scene[data-scene="3"] {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.story.scene-2 .story__scene[data-scene="1"],
.story.scene-3 .story__scene[data-scene="1"],
.story.scene-1 .story__scene[data-scene="2"],
.story.scene-3 .story__scene[data-scene="2"],
.story.scene-1 .story__scene[data-scene="3"],
.story.scene-2 .story__scene[data-scene="3"] {
    opacity: 0;
    transform: translateY(40px);
    pointer-events: none;
}

.story__step {
    display: block;
    font-family: var(--font-mono);
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--neon-magenta);
    line-height: 1;
    margin-bottom: var(--space-sm);
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.story__title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    color: #f0f0ff;
    margin-bottom: var(--space-md);
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

.story__text {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(192, 192, 208, 0.9);
    line-height: 1.5;
    margin: 0 auto var(--space-md);
    max-width: 600px;
}

.story__cta {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: transparent;
    color: var(--neon-magenta);
    border: 1px solid var(--neon-magenta);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.2);
    pointer-events: auto;
    transition: all 0.3s ease;
}

.story__cta:hover {
    background: rgba(255, 0, 255, 0.1);
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.4);
}

/* ===============================================
   STATS
   =============================================== */
.stats {
    padding: var(--space-lg) 0;
    background: var(--dark-surface);
    border-top: 1px solid rgba(0, 240, 255, 0.08);
    border-bottom: 1px solid rgba(0, 240, 255, 0.08);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    text-align: center;
}

.stat__value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.1rem;
}

.stat__number,
.stat__suffix {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    line-height: 1;
}

.stat__label {
    margin-top: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: rgba(128, 128, 160, 0.7);
}

/* ===============================================
   OFFRE (3 piliers)
   =============================================== */
.offre {
    padding: var(--space-xl) 0;
    background: var(--dark-bg);
}

.piliers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.pilier {
    position: relative;
    padding: var(--space-md);
    border-radius: 8px;
    background: var(--dark-card);
    text-align: center;
    border: 1px solid rgba(0, 240, 255, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: default;
}

.pilier:hover {
    border-color: rgba(0, 240, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 240, 255, 0.05);
}

.pilier__glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(0, 240, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
    transition: background 0.3s;
}

.pilier__icon-neon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
    filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.3));
}

.pilier__title {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: var(--space-sm);
    color: var(--neon-cyan);
    letter-spacing: 2px;
}

.pilier p {
    color: rgba(192, 192, 208, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===============================================
   PROGRAMMES
   =============================================== */
.programmes {
    position: relative;
    height: 400vh;
    background: var(--dark-surface);
}

.programmes__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-md);
}

.programmes__header {
    text-align: center;
    padding: 0 var(--space-md);
    flex-shrink: 0;
}

.programmes__title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: var(--space-sm);
    letter-spacing: 3px;
}

.programmes__intro {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: rgba(128, 128, 160, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.programmes__track-wrapper {
    overflow: hidden;
    padding: var(--space-md) 0;
}

.programmes__track {
    display: flex;
    gap: var(--space-md);
    padding: 0 5vw;
    transform: translateX(var(--track-offset, 0px));
    will-change: transform;
}

.programmes__card {
    flex: 0 0 320px;
    background: var(--dark-card);
    border-radius: 8px;
    padding: var(--space-lg) var(--space-md) var(--space-md);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 240, 255, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    perspective: 1000px;
}

.programmes__card:hover {
    border-color: rgba(0, 240, 255, 0.25);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 240, 255, 0.05);
    transform: translateY(-6px);
}

.programmes__card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--neon-magenta), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.programmes__card:hover .programmes__card-glow {
    opacity: 1;
}

.programmes__card-icon {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
    line-height: 1;
}

.programmes__card-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: #f0f0ff;
    letter-spacing: 1px;
}

.programmes__card-text {
    color: rgba(192, 192, 208, 0.6);
    line-height: 1.6;
    margin-bottom: var(--space-md);
    flex-grow: 1;
    font-size: 0.9rem;
}

.programmes__card-link {
    align-self: flex-start;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--neon-cyan);
    letter-spacing: 2px;
    border-bottom: 1px solid var(--neon-cyan);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.programmes__card-link:hover {
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.programmes__progress {
    height: 3px;
    background: rgba(0, 240, 255, 0.08);
    margin: 0 auto;
    max-width: 240px;
    width: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.programmes__progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
    transform: scaleX(var(--track-progress, 0));
    transform-origin: left center;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

/* ===============================================
   TÉMOIGNAGES
   =============================================== */
.temoignages {
    padding: var(--space-xl) 0;
    background: var(--dark-bg);
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.card {
    position: relative;
    background: var(--dark-card);
    padding: var(--space-md);
    border-radius: 8px;
    border: 1px solid rgba(0, 240, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    overflow: hidden;
    transition: all 0.4s ease;
}

.card:hover {
    border-color: rgba(255, 0, 255, 0.25);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.05);
    transform: translateY(-4px);
}

.card__neon-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-magenta), var(--neon-cyan));
    opacity: 0.5;
}

.card:hover .card__neon-bar {
    opacity: 1;
    box-shadow: 0 0 10px var(--neon-magenta);
}

.card__stars {
    color: var(--neon-yellow);
    font-size: 1rem;
    letter-spacing: 3px;
    text-shadow: 0 0 8px rgba(255, 204, 0, 0.3);
}

.card__quote {
    font-family: var(--font-body);
    font-style: normal;
    color: rgba(192, 192, 208, 0.8);
    line-height: 1.7;
    flex-grow: 1;
    font-size: 0.95rem;
}

.card__author {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(128, 128, 160, 0.5);
    border-top: 1px solid rgba(0, 240, 255, 0.08);
    padding-top: var(--space-sm);
}

/* ===============================================
   CTA FINAL
   =============================================== */
.cta-final {
    position: relative;
    padding: var(--space-xl) 0;
    background: var(--dark-surface);
    text-align: center;
    border-top: 1px solid rgba(0, 240, 255, 0.08);
    overflow: hidden;
}

.cta-final__circuit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(0, 240, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 0, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.cta-final__title {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    color: #f0f0ff;
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 1;
}

.cta-final__text {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: rgba(192, 192, 208, 0.6);
    max-width: 600px;
    margin: 0 auto var(--space-md);
    position: relative;
    z-index: 1;
}

.cta-final .btn--neon {
    position: relative;
    z-index: 1;
}

/* ===============================================
   FOOTER
   =============================================== */
.site-footer {
    background: var(--dark-surface);
    color: rgba(128, 128, 160, 0.4);
    padding: var(--space-md) 0;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 1px;
    border-top: 1px solid rgba(0, 240, 255, 0.05);
}

.site-footer__tag {
    margin-top: 0.25rem;
    font-size: 0.6rem;
    color: rgba(128, 128, 160, 0.25);
}

/* ===============================================
   REVEAL ON SCROLL
   =============================================== */
.js-loaded .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.js-loaded .reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

.piliers .pilier:nth-child(2),
.cards .card:nth-child(2) { transition-delay: 0.15s; }
.piliers .pilier:nth-child(3),
.cards .card:nth-child(3) { transition-delay: 0.3s; }

/* ===============================================
   FLOATING BUTTONS
   =============================================== */
.floating-wa,
.floating-tg,
.floating-fb,
.floating-ig,
.floating-tt {
    position: fixed;
    bottom: 24px;
    width: 48px;
    height: 48px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.floating-wa svg,
.floating-tg svg,
.floating-fb svg,
.floating-ig svg,
.floating-tt svg {
    width: 22px;
    height: 22px;
}

.floating-wa {
    right: 24px;
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.3);
}

.floating-wa:hover {
    background: rgba(37, 211, 102, 0.25);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
    transform: translateY(-3px);
}

.floating-tg {
    right: 84px;
    background: rgba(34, 158, 217, 0.15);
    border-color: rgba(34, 158, 217, 0.3);
}

.floating-tg:hover {
    background: rgba(34, 158, 217, 0.25);
    box-shadow: 0 0 20px rgba(34, 158, 217, 0.3);
    transform: translateY(-3px);
}

.floating-fb {
    right: 144px;
    background: rgba(24, 119, 242, 0.15);
    border-color: rgba(24, 119, 242, 0.3);
}

.floating-fb:hover {
    background: rgba(24, 119, 242, 0.25);
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.3);
    transform: translateY(-3px);
}

.floating-ig {
    right: 204px;
    background: rgba(221, 42, 123, 0.15);
    border-color: rgba(221, 42, 123, 0.3);
}

.floating-ig:hover {
    background: rgba(221, 42, 123, 0.25);
    box-shadow: 0 0 20px rgba(221, 42, 123, 0.4);
    transform: translateY(-3px);
}

.floating-tt {
    right: 264px;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.floating-tt:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* ===============================================
   CUSTOM CURSOR
   =============================================== */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.6), 0 0 30px rgba(0, 240, 255, 0.2);
    transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1), height 0.3s cubic-bezier(0.23, 1, 0.32, 1), background 0.3s ease;
    mix-blend-mode: difference;
    will-change: transform;
}

.custom-cursor.is-hovering {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.custom-cursor.is-clicking {
    width: 24px;
    height: 24px;
    background: var(--neon-cyan);
    border: none;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.8);
}

@media (hover: hover) {
    body, a, button, input, textarea, .magnetic { cursor: none; }
}

@media (hover: none) {
    .custom-cursor { display: none; }
}

.magnetic {
    transform: translate(var(--mx, 0px), var(--my, 0px));
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.magnetic.is-magnetized {
    transition: transform 0.1s linear;
}

/* ===============================================
   MOUSE TRAIL
   =============================================== */
.mouse-trail {
    position: fixed;
    pointer-events: none;
    z-index: 9997;
    border-radius: 50%;
    opacity: 0;
}

/* ===============================================
   LIGHT THEME — Soft cyberpunk (easy on the eyes)
   =============================================== */
[data-theme="light"] {
    --dark-bg: #181826;
    --dark-surface: #1e1e30;
    --dark-card: #25253a;
    --dark-elevated: #2a2a40;
    --glass: rgba(24, 24, 38, 0.85);
}

[data-theme="light"] body {
    color: #b0b0c8;
}

[data-theme="light"] h1,
[data-theme="light"] h2,
[data-theme="light"] h3,
[data-theme="light"] .section__title,
[data-theme="light"] .programmes__card-title {
    color: #e0e0f0;
}

[data-theme="light"] .header {
    background: rgba(24, 24, 38, 0.92);
    border-bottom-color: rgba(0, 240, 255, 0.08);
}

[data-theme="light"] .nav-link {
    color: #7878a0;
}

[data-theme="light"] .hero {
    background: var(--dark-bg);
}

[data-theme="light"] .hero__title {
    color: #e0e0f0;
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
}

[data-theme="light"] .hero__badge {
    color: var(--neon-magenta);
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

[data-theme="light"] .hero__subtitle {
    color: rgba(176, 176, 200, 0.7);
}

[data-theme="light"] .hero__scroll-indicator span {
    color: rgba(120, 120, 160, 0.4);
}

[data-theme="light"] .hero__scroll-line {
    background: linear-gradient(to bottom, var(--neon-cyan), transparent);
}

[data-theme="light"] .stats {
    background: var(--dark-surface);
}

[data-theme="light"] .pilier {
    background: var(--dark-card);
    border-color: rgba(0, 240, 255, 0.06);
}

[data-theme="light"] .pilier p {
    color: rgba(176, 176, 200, 0.55);
}

[data-theme="light"] .programmes {
    background: var(--dark-surface);
}

[data-theme="light"] .programmes__card {
    background: var(--dark-card);
}

[data-theme="light"] .programmes__card-text {
    color: rgba(176, 176, 200, 0.55);
}

[data-theme="light"] .card {
    background: var(--dark-card);
}

[data-theme="light"] .card__quote {
    color: rgba(176, 176, 200, 0.8);
}

[data-theme="light"] .card__author {
    color: rgba(120, 120, 160, 0.45);
    border-top-color: rgba(0, 240, 255, 0.06);
}

[data-theme="light"] .cta-final {
    background: var(--dark-surface);
}

[data-theme="light"] .cta-final__title {
    color: #e0e0f0;
}

[data-theme="light"] .header__logo {
    color: var(--neon-cyan);
}

[data-theme="light"] .site-footer {
    background: var(--dark-surface);
    color: rgba(120, 120, 160, 0.35);
}

[data-theme="light"] .story {
    background: var(--dark-surface);
}

[data-theme="light"] .story__text {
    color: rgba(176, 176, 200, 0.75);
}

[data-theme="light"] .story__overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.25) 50%, rgba(0,240,255,calc(var(--story-progress, 0) * 0.15)) 100%);
}

[data-theme="light"] .story__image[data-scene="1"] {
    background: linear-gradient(135deg, #14142a 0%, #2a1414 100%);
}
[data-theme="light"] .story__image[data-scene="2"] {
    background: linear-gradient(135deg, #142a14 0%, #14142a 100%);
}
[data-theme="light"] .story__image[data-scene="3"] {
    background: linear-gradient(135deg, #2a142a 0%, #141420 100%);
}

[data-theme="light"] .programmes__progress {
    background: rgba(0, 240, 255, 0.06);
}

[data-theme="light"] .site-footer {
    border-top-color: rgba(0, 240, 255, 0.04);
}

/* ===============================================
   RESPONSIVE
   =============================================== */
@media (max-width: 768px) {
    .piliers, .cards, .stats__grid {
        grid-template-columns: 1fr;
    }

    .header__nav {
        display: none;
    }
    .header__clock {
        display: none;
    }
    .header .header__btn {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .header__logo {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    .theme-toggle {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .section__title {
        font-size: clamp(1rem, 4vw, 1.3rem);
        margin-bottom: var(--space-md);
    }

    .hero {
        min-height: 85vh;
        padding: var(--space-lg) 0;
    }
    .hero__title {
        font-size: clamp(2rem, 10vw, 3rem);
    }
    .hero__subtitle {
        font-size: 1.05rem;
        margin-bottom: var(--space-md);
    }
    .hero__cta-group {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    .hero .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.85rem 1.5rem;
        font-size: 0.8rem;
    }
    .hero__scroll-indicator {
        bottom: var(--space-md);
    }

    .offre {
        padding: var(--space-lg) 0;
    }
    .pilier {
        padding: var(--space-md) 1.25rem;
    }

    .story {
        height: 250vh;
    }
    .story__title {
        font-size: clamp(2rem, 9vw, 3.5rem);
    }
    .story__text {
        font-size: 1rem;
    }
    .story__step {
        font-size: 2rem;
    }

    .stats {
        padding: var(--space-md) 0;
    }
    .stat__number, .stat__suffix {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .programmes {
        height: 350vh;
    }
    .programmes__card {
        flex: 0 0 250px;
        padding: var(--space-md) 1.25rem;
    }
    .programmes__card-icon {
        font-size: 2.5rem;
    }
    .programmes__card-title {
        font-size: 0.95rem;
    }

    .temoignages {
        padding: var(--space-lg) 0;
    }
    .card {
        padding: 1.25rem;
    }

    .cta-final {
        padding: var(--space-lg) 0;
    }
    .cta-final__text {
        font-size: 1rem;
    }

    .floating-tg, .floating-fb, .floating-ig, .floating-tt {
        display: none;
    }
}

@media (max-width: 480px) {
    .top-banner__text {
        font-size: 0.55rem;
        letter-spacing: 0.5px;
    }
    .floating-wa {
        bottom: 16px;
        right: 16px;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 768px) and (pointer: coarse) {
    .floating-tg, .floating-fb, .floating-ig, .floating-tt {
        display: flex;
        width: 40px;
        height: 40px;
        bottom: 16px;
    }
    .floating-tg svg,
    .floating-fb svg,
    .floating-ig svg,
    .floating-tt svg {
        width: 18px;
        height: 18px;
    }
    .floating-wa {
        width: 44px;
        height: 44px;
        bottom: 16px;
        right: 16px;
    }
    .floating-tg { right: 68px; }
    .floating-fb { right: 116px; }
    .floating-ig { right: 164px; }
    .floating-tt { right: 212px; }
}
