/* ═══════════════════════════════════════════════════════════════════════════
   INSIDER - BOLD EDITION
   A daring, high-impact design system for Lyon's nightlife discovery app
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────────
   RESET & CUSTOM PROPERTIES
   ───────────────────────────────────────────────────────────────────────────── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
    /* Core colors - INSIDER palette */
    --bg-dark: #050508;
    --bg-card: #0a0a10;
    --bg-card-hover: #0f0f18;
    --neon-blue: #4CCBFF;
    --neon-cyan: #00D9FF;
    --neon-violet: #A44CFF;
    --neon-rose: #F43F5E;

    /* Text */
    --text-primary: #FFFFFF;
    --text-secondary: #9ca3af;
    --text-muted: #8892a0;

    /* Borders & Glows */
    --border-color: rgba(76, 203, 255, 0.12);
    --border-hover: rgba(76, 203, 255, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glow-blue: rgba(76, 203, 255, 0.4);
    --glow-cyan: rgba(0, 217, 255, 0.4);
    --glow-violet: rgba(164, 76, 255, 0.4);

    /* Typography */
    --font-display: 'Bebas Neue', 'Helvetica Neue', sans-serif;
    --font-body: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;

    /* Spacing & Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Pro / Gold accent */
    --pro-gold: #FFD700;
    --pro-orange: #FFA500;
    --glow-gold: rgba(255, 215, 0, 0.4);

    /* Shadows */
    --shadow-glow: 0 0 60px var(--glow-blue);
    --shadow-card: 0 4px 40px rgba(0, 0, 0, 0.5);
}

/* ─────────────────────────────────────────────────────────────────────────────
   LIGHT THEME
   ───────────────────────────────────────────────────────────────────────────── */
[data-theme="light"] {
    --bg-dark: #f8fafc;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f5f9;

    /* Accent colors - slightly deeper for contrast on light bg */
    --neon-blue: #0ea5e9;
    --neon-cyan: #06b6d4;
    --neon-violet: #8b5cf6;
    --neon-rose: #e11d48;

    /* Text */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;

    /* Borders & Effects */
    --border-color: rgba(14, 165, 233, 0.2);
    --border-hover: rgba(14, 165, 233, 0.5);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(14, 165, 233, 0.15);
    --glow-blue: rgba(14, 165, 233, 0.25);
    --glow-cyan: rgba(6, 182, 212, 0.25);
    --glow-violet: rgba(139, 92, 246, 0.25);

    /* Shadows */
    --shadow-glow: 0 0 40px rgba(14, 165, 233, 0.15);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Light theme specific overrides */
[data-theme="light"] body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
}

[data-theme="light"] header {
    background: linear-gradient(to bottom, var(--bg-dark) 0%, transparent 100%);
}

[data-theme="light"] header.scrolled {
    background: rgba(248, 250, 252, 0.95);
    border-bottom-color: var(--glass-border);
}

[data-theme="light"] .hero::before {
    color: rgba(14, 165, 233, 0.05);
}

[data-theme="light"] .marquee {
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue));
    color: #ffffff;
}

[data-theme="light"] .nav-links a {
    color: var(--text-secondary);
}

[data-theme="light"] .nav-links a:hover {
    color: var(--text-primary);
}

[data-theme="light"] .logo {
    color: var(--text-primary);
}

[data-theme="light"] .logo img {
    filter: drop-shadow(0 0 8px var(--glow-blue));
}

[data-theme="light"] .hero-badge {
    background: rgba(14, 165, 233, 0.1);
    border-color: rgba(14, 165, 233, 0.3);
}

[data-theme="light"] .hero-subtitle {
    border-left-color: var(--neon-cyan);
}

[data-theme="light"] .feature-card,
[data-theme="light"] .why-card,
[data-theme="light"] .mood-feature-card,
[data-theme="light"] .mood-intro-card,
[data-theme="light"] .report-card-preview,
[data-theme="light"] .security-feature,
[data-theme="light"] .testimonial-card,
[data-theme="light"] .event-card,
[data-theme="light"] .faq-item,
[data-theme="light"] .benefit-card,
[data-theme="light"] .timeline-feature,
[data-theme="light"] .step-card,
[data-theme="light"] .pro-card,
[data-theme="light"] .newsletter-form-card,
[data-theme="light"] .contact-form,
[data-theme="light"] .download-preview {
    background: var(--bg-card);
    border-color: var(--glass-border);
    box-shadow: var(--shadow-card);
}

[data-theme="light"] .feature-card:hover,
[data-theme="light"] .why-card:hover,
[data-theme="light"] .mood-feature-card:hover,
[data-theme="light"] .security-feature:hover,
[data-theme="light"] .testimonial-card:hover,
[data-theme="light"] .event-card:hover,
[data-theme="light"] .faq-item:hover,
[data-theme="light"] .benefit-card:hover,
[data-theme="light"] .pro-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.15);
}

[data-theme="light"] .live-section {
    border-color: var(--glass-border);
    background: linear-gradient(180deg, transparent, rgba(14, 165, 233, 0.03), transparent);
}

[data-theme="light"] .stat-value {
    -webkit-text-stroke-color: var(--text-primary);
}

[data-theme="light"] .live-stat:hover .stat-value {
    -webkit-text-stroke-color: var(--neon-cyan);
}

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

[data-theme="light"] .section-title {
    color: var(--text-primary);
}

[data-theme="light"] .how-it-works-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(14, 165, 233, 0.05) 50%, var(--bg-dark) 100%);
}

[data-theme="light"] .reports-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(139, 92, 246, 0.05) 50%, var(--bg-dark) 100%);
}

[data-theme="light"] .level-badge-preview {
    border-color: var(--glass-border);
    background: var(--bg-card);
}

[data-theme="light"] .level-badge-preview.calme {
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.1), var(--bg-card));
}

[data-theme="light"] .level-badge-preview.social {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.1), var(--bg-card));
}

[data-theme="light"] .level-badge-preview.dansant {
    background: linear-gradient(90deg, rgba(168, 85, 247, 0.1), var(--bg-card));
}

[data-theme="light"] .level-badge-preview.intense {
    background: linear-gradient(90deg, rgba(249, 115, 22, 0.1), var(--bg-card));
}

[data-theme="light"] .level-badge-preview.blinde {
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.1), var(--bg-card));
}

[data-theme="light"] .screenshot-item img {
    border-color: var(--glass-border);
    box-shadow: var(--shadow-card);
}

[data-theme="light"] .screenshot-item:hover img {
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.2);
}

[data-theme="light"] .lightbox-overlay {
    background: rgba(248, 250, 252, 0.95);
}

[data-theme="light"] .lightbox-close,
[data-theme="light"] .lightbox-prev,
[data-theme="light"] .lightbox-next {
    background: var(--bg-card);
    border-color: var(--glass-border);
    color: var(--text-primary);
}

[data-theme="light"] .report-tag {
    background: rgba(14, 165, 233, 0.1);
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
}

[data-theme="light"] .security-note {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.4);
}

[data-theme="light"] .security-note p {
    color: #b45309;
}

[data-theme="light"] .coming-soon-badge {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--neon-violet);
}

[data-theme="light"] .particles-container .particle {
    background: var(--neon-cyan);
    opacity: 0.15;
}

[data-theme="light"] .custom-cursor {
    border-color: var(--neon-cyan);
    mix-blend-mode: normal;
}

[data-theme="light"] .custom-cursor.grow {
    background-color: var(--neon-cyan);
}

[data-theme="light"] .back-to-top,
[data-theme="light"] .theme-toggle {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--glass-border);
    color: var(--text-secondary);
}

[data-theme="light"] .back-to-top:hover,
[data-theme="light"] .theme-toggle:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 20px var(--glow-cyan);
}

[data-theme="light"] .scroll-progress {
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue), var(--neon-violet));
}

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

[data-theme="light"] .loader-text {
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue), var(--neon-violet));
    -webkit-background-clip: text;
    background-clip: text;
}

[data-theme="light"] footer {
    background: var(--bg-card);
    border-top-color: var(--glass-border);
}

[data-theme="light"] .footer-bottom {
    border-top-color: var(--glass-border);
}

[data-theme="light"] .social-link {
    border-color: var(--glass-border);
    color: var(--text-secondary);
}

[data-theme="light"] .social-link:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
}

[data-theme="light"] .form-group input,
[data-theme="light"] .form-group select,
[data-theme="light"] .form-group textarea,
[data-theme="light"] .newsletter-form input {
    background: var(--bg-dark);
    border-color: var(--glass-border);
    color: var(--text-primary);
}

[data-theme="light"] .form-group input:focus,
[data-theme="light"] .form-group select:focus,
[data-theme="light"] .form-group textarea:focus,
[data-theme="light"] .newsletter-form input:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px var(--glow-cyan);
    background: var(--bg-card);
}

[data-theme="light"] .mobile-menu-toggle span {
    background: var(--neon-cyan);
}

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

/* Pro page light theme */
[data-theme="light"] body.pro-page::before {
    color: rgba(251, 191, 36, 0.05);
}

[data-theme="light"] .pro-hero {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(14, 165, 233, 0.08));
}

[data-theme="light"] .pro-card::before {
    background: linear-gradient(180deg, #f59e0b, #d97706);
}

[data-theme="light"] .pro-card:hover {
    border-color: #f59e0b;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.15);
}

[data-theme="light"] .feature-icon-wrapper {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(217, 119, 6, 0.15));
    border-color: rgba(245, 158, 11, 0.3);
}

/* Theme toggle - position context for icons */
.theme-toggle {
    position: relative;
}

/* Theme toggle icons - sun/moon switching */
.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
    position: absolute;
    width: 20px;
    height: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark mode: show sun, hide moon */
.theme-toggle .icon-sun {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.theme-toggle .icon-moon {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

/* Light mode: hide sun, show moon */
[data-theme="light"] .theme-toggle .icon-sun {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}

[data-theme="light"] .theme-toggle .icon-moon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Light theme - Hero title and text improvements */
[data-theme="light"] .hero-title {
    color: var(--text-primary);
    text-shadow: none;
}

[data-theme="light"] .hero-title .highlight {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue), var(--neon-violet));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme="light"] .hero-description {
    color: var(--text-secondary);
}

/* Light theme - Buttons */
[data-theme="light"] .btn-primary {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

[data-theme="light"] .btn-primary:hover {
    box-shadow: 0 6px 25px rgba(14, 165, 233, 0.4);
}

[data-theme="light"] .btn-secondary {
    background: var(--bg-card);
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
}

[data-theme="light"] .btn-secondary:hover {
    background: rgba(14, 165, 233, 0.1);
}

/* Light theme - Store buttons */
[data-theme="light"] .store-buttons {
    filter: none;
}

[data-theme="light"] .store-btn {
    background: var(--text-primary);
    border-color: transparent;
}

[data-theme="light"] .store-btn:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Light theme - Feature icons */
[data-theme="light"] .feature-icon {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(6, 182, 212, 0.1));
    border-color: rgba(14, 165, 233, 0.2);
    color: var(--neon-cyan);
}

/* Light theme - Section backgrounds with subtle gradients */
[data-theme="light"] .features-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(14, 165, 233, 0.03) 50%, var(--bg-dark) 100%);
}

[data-theme="light"] .testimonials-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(139, 92, 246, 0.03) 50%, var(--bg-dark) 100%);
}

/* Light theme - Gradient text elements */
[data-theme="light"] .gradient-text {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue), var(--neon-violet));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Light theme - Animated border cards */
[data-theme="light"] .feature-card::before,
[data-theme="light"] .why-card::before,
[data-theme="light"] .mood-feature-card::before {
    background: linear-gradient(135deg,
        rgba(14, 165, 233, 0.3),
        rgba(6, 182, 212, 0.3),
        rgba(139, 92, 246, 0.3));
}

/* Light theme - Badge styles */
[data-theme="light"] .pro-badge-nav {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #ffffff;
}

/* Light theme - Download section */
[data-theme="light"] .download-section {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(139, 92, 246, 0.05));
}

/* Light theme - CTA section */
[data-theme="light"] .cta-section {
    background: linear-gradient(180deg, var(--bg-dark), rgba(14, 165, 233, 0.08));
}

/* Light theme - Glowing elements toned down */
[data-theme="light"] .glow-effect {
    box-shadow: 0 0 30px rgba(14, 165, 233, 0.15);
}

/* Light theme - Input placeholders */
[data-theme="light"] .form-group input::placeholder,
[data-theme="light"] .form-group textarea::placeholder,
[data-theme="light"] .newsletter-form input::placeholder {
    color: var(--text-muted);
}

/* Light theme - Stat numbers */
[data-theme="light"] .stat-number {
    color: var(--text-primary);
    text-shadow: none;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.02em;
    transition: background-color 0.4s ease, color 0.4s ease;
}

/* Smooth theme transitions — targeted to avoid jank */
body,
header,
footer,
main,
section,
.navbar,
.container,
.hero,
.feature-card,
.why-card,
.mood-feature-card,
.report-card-preview,
.security-feature,
.testimonial-card,
.faq-item,
.faq-question,
.faq-answer,
.pro-card,
.step-card,
.newsletter-form-card,
.contact-form,
.pro-form-container,
.btn-download,
.btn-pro-primary,
.btn-pro-secondary,
.btn-submit,
.submit-btn,
.social-link,
.theme-toggle,
.back-to-top,
.footer-section,
.nav-links a,
.form-group input,
.form-group textarea,
.form-group select,
.screenshot-item,
.marquee,
.lightbox,
.download,
.scroll-progress {
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

/* ─────────────────────────────────────────────────────────────────────────────
   CUSTOM CURSOR
   ───────────────────────────────────────────────────────────────────────────── */
@media (hover: hover) and (pointer: fine) {
    body {
        cursor: none;
    }

    a, button, .hover-trigger {
        cursor: none;
    }
}

.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.25s ease, height 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
    mix-blend-mode: difference;
}

.custom-cursor.grow {
    width: 60px;
    height: 60px;
    background-color: var(--neon-cyan);
    border-color: transparent;
    opacity: 0.6;
}

@media (hover: none) or (pointer: coarse) {
    .custom-cursor {
        display: none !important;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   PAGE LOADER
   ───────────────────────────────────────────────────────────────────────────── */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.loader-logo {
    position: relative;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.loader-text {
    font-family: var(--font-display);
    font-size: 3rem;
    letter-spacing: 0.3em;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue), var(--neon-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loader-progress {
    width: 200px;
    height: 2px;
    background: var(--glass-border);
    overflow: hidden;
}

.loader-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-violet));
    transition: width 0.2s ease;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SCROLL PROGRESS
   ───────────────────────────────────────────────────────────────────────────── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue), var(--neon-violet));
    z-index: 10001;
    width: 0%;
    transition: width 0.1s linear;
}

/* ─────────────────────────────────────────────────────────────────────────────
   FLOATING ACTION BUTTONS
   ───────────────────────────────────────────────────────────────────────────── */
.fab-group {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.back-to-top,
.theme-toggle {
    width: 50px;
    height: 50px;
    border: 1px solid var(--glass-border);
    background: rgba(5, 5, 8, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Theme toggle - always visible */
.theme-toggle {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

.back-to-top:hover,
.theme-toggle:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 20px var(--glow-cyan);
}

.back-to-top svg,
.theme-toggle svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .fab-group {
        bottom: 1rem;
        right: 1rem;
    }

    .back-to-top,
    .theme-toggle {
        width: 44px;
        height: 44px;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   PARTICLES BACKGROUND
   ───────────────────────────────────────────────────────────────────────────── */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--neon-cyan);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 20s infinite ease-in-out;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-50px) translateX(-30px);
        opacity: 0.2;
    }
    75% {
        transform: translateY(-150px) translateX(20px);
        opacity: 0.5;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   HEADER & NAVIGATION
   ───────────────────────────────────────────────────────────────────────────── */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(to bottom, var(--bg-dark) 0%, transparent 100%);
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(5, 5, 8, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 5%;
}

.navbar {
    width: 100%;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.logo img {
    height: 36px;
    width: auto;
    filter: drop-shadow(0 0 10px var(--glow-cyan));
}

.logo:hover {
    text-shadow: 0 0 20px var(--glow-cyan);
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

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

.nav-links a:hover {
    color: var(--text-primary);
}

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

/* Pro Badge in Nav */
.nav-pro-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pro-badge-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0.5rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--neon-cyan);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: right 0.4s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   CONTAINER
   ───────────────────────────────────────────────────────────────────────────── */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 1;
}

/* ─────────────────────────────────────────────────────────────────────────────
   HERO SECTION - BOLD TYPOGRAPHY
   ───────────────────────────────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 0 4rem;
}

/* Giant background text */
.hero::before {
    content: 'LYON';
    position: absolute;
    font-family: var(--font-display);
    font-size: clamp(15rem, 30vw, 35rem);
    color: rgba(255, 255, 255, 0.015);
    white-space: nowrap;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    letter-spacing: 0.1em;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--neon-cyan);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 10px var(--glow-cyan);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 9rem);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue), var(--neon-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 550px;
    line-height: 1.7;
    margin-bottom: 3rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--neon-cyan);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Download buttons */
.download-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.btn-download-wrapper {
    position: relative;
}

.btn-download {
    display: block;
    transition: all 0.3s ease;
}

.btn-download img {
    height: 50px;
    width: auto;
}

.btn-download:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}

.coming-soon-wrapper .btn-download {
    opacity: 0.7;
}

.coming-soon-label {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #7c3aed;
    color: white;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ─────────────────────────────────────────────────────────────────────────────
   MARQUEE BANNER
   ───────────────────────────────────────────────────────────────────────────── */
.marquee {
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue));
    color: var(--bg-dark);
    padding: 1rem 0;
    overflow: hidden;
    white-space: nowrap;
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    transform: rotate(-1deg);
    width: 105%;
    margin-left: -2.5%;
    position: relative;
    z-index: 5;
    margin-top: -3rem;
}

.marquee-content {
    display: inline-flex;
    gap: 3rem;
    animation: marquee 25s linear infinite;
}

.marquee-content span {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

/* ─────────────────────────────────────────────────────────────────────────────
   SECTION INTRO (Numbers)
   ───────────────────────────────────────────────────────────────────────────── */
.section-intro {
    margin-bottom: 4rem;
    position: relative;
}

.section-number {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--neon-cyan);
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   FEATURE CARDS - GLASS GRID
   ───────────────────────────────────────────────────────────────────────────── */
.grid-layout {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    grid-column: span 6;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--neon-cyan), var(--neon-violet));
    transition: height 0.4s ease;
}

.feature-card:hover {
    border-color: var(--neon-cyan);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
}

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

.feature-card.large {
    grid-column: span 12;
}

.card-number {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--neon-cyan);
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
    max-width: 90%;
}

@media (max-width: 768px) {
    .grid-layout {
        display: flex;
        flex-direction: column;
    }

    .feature-card {
        grid-column: span 12;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   LIVE STATS SECTION - OUTLINE TEXT
   ───────────────────────────────────────────────────────────────────────────── */
.live-section {
    padding: 5rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

.live-stat {
    text-align: center;
    padding: 2rem;
    min-width: 200px;
    transition: all 0.3s ease;
}

.live-stat:hover {
    transform: scale(1.05);
}

.stat-value {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    color: transparent;
    -webkit-text-stroke: 2px var(--text-primary);
    display: block;
    line-height: 1;
    transition: all 0.3s ease;
}

.live-stat:hover .stat-value {
    -webkit-text-stroke-color: var(--neon-cyan);
    text-shadow: 0 0 30px var(--glow-cyan);
}

.stat-label {
    font-family: var(--font-mono);
    color: var(--neon-cyan);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: 0.5rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   WHY SECTION - CARDS
   ───────────────────────────────────────────────────────────────────────────── */
.why-section {
    padding: 8rem 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.why-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-violet));
    transition: width 0.4s ease;
}

.why-card:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.why-card:hover::after {
    width: 100%;
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.why-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.why-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────────────────────────
   HOW IT WORKS - TIMELINE
   ───────────────────────────────────────────────────────────────────────────── */
.how-it-works-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(76, 203, 255, 0.02) 50%, var(--bg-dark) 100%);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
}

.step-item {
    flex: 1;
    text-align: center;
    padding: 2rem 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.step-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.step-icon-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.step-number {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--neon-cyan);
    letter-spacing: 0.2em;
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.step-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.timeline-connector {
    flex: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2rem;
}

.connector-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-violet));
    position: relative;
}

.connector-pulse {
    width: 8px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: connectorPulse 2s infinite;
}

@keyframes connectorPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.5; }
}

/* Mobile timeline */
.steps-container-mobile {
    display: none;
}

@media (max-width: 768px) {
    .steps-container {
        display: none;
    }

    .steps-container-mobile,
    .steps-timeline-mobile {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .step-item-mobile {
        display: flex;
        gap: 1.5rem;
        padding: 1.5rem 0;
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.5s ease;
    }

    .step-item-mobile.animate {
        opacity: 1;
        transform: translateX(0);
    }

    .step-mobile-left {
        flex: 0 0 60px;
        text-align: center;
    }

    .step-icon-mobile {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .step-number-mobile {
        font-family: var(--font-mono);
        font-size: 0.65rem;
        color: var(--neon-cyan);
    }

    .step-mobile-content {
        flex: 1;
    }

    .step-title-mobile {
        font-family: var(--font-display);
        font-size: 1.1rem;
        text-transform: uppercase;
        margin-bottom: 0.5rem;
    }

    .step-description-mobile {
        color: var(--text-secondary);
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .mobile-connector {
        display: flex;
        justify-content: flex-start;
        padding-left: 30px;
    }

    .mobile-connector-line {
        width: 1px;
        height: 30px;
        background: linear-gradient(180deg, var(--neon-cyan), var(--neon-violet));
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   MOOD SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.mood-section {
    padding: 8rem 0;
}

.mood-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mood-intro-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    margin-bottom: 2rem;
}

.mood-intro {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

.mood-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mood-feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.mood-feature-card:hover {
    border-color: var(--neon-cyan);
    transform: translateX(10px);
}

.mood-feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.mood-icon {
    font-size: 1.5rem;
}

.mood-feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    text-transform: uppercase;
    margin: 0;
}

.mood-feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Mood Visual */
.mood-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.levels-preview {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 300px;
}

.level-badge-preview {
    padding: 1rem 2rem;
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    cursor: default;
}

.level-badge-preview:hover {
    transform: scale(1.05);
}

.level-badge-preview.calme {
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.2), transparent);
    border-left: 3px solid #22c55e;
}

.level-badge-preview.social {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.2), transparent);
    border-left: 3px solid #3b82f6;
}

.level-badge-preview.dansant {
    background: linear-gradient(90deg, rgba(168, 85, 247, 0.2), transparent);
    border-left: 3px solid #a855f7;
}

.level-badge-preview.intense {
    background: linear-gradient(90deg, rgba(249, 115, 22, 0.2), transparent);
    border-left: 3px solid #f97316;
}

.level-badge-preview.blinde {
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.2), transparent);
    border-left: 3px solid #ef4444;
}

@media (max-width: 768px) {
    .mood-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   REPORTS SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.reports-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(164, 76, 255, 0.02) 50%, var(--bg-dark) 100%);
}

.reports-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.report-card-preview {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    max-width: 350px;
    margin: 0 auto;
}

.report-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.report-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-violet));
    border-radius: 50%;
}

.report-info {
    flex: 1;
}

.report-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.report-time {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
}

.report-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.report-tags {
    display: flex;
    gap: 0.5rem;
}

.report-tag {
    padding: 0.3rem 0.75rem;
    background: rgba(76, 203, 255, 0.15);
    border: 1px solid var(--neon-cyan);
    border-radius: var(--radius-xl);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--neon-cyan);
}

.reports-intro {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.reports-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.report-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.report-feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.report-feature h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.report-feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .reports-content {
        grid-template-columns: 1fr;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   SECURITY SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.security-section {
    padding: 8rem 0;
}

.security-intro {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 3rem;
    max-width: 800px;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.security-feature {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    transition: all 0.3s ease;
}

.security-feature:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-5px);
}

.security-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.security-feature h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.security-feature p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.security-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.security-note p {
    color: #ffc107;
    font-size: 0.9rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SCREENSHOTS SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.screenshots {
    padding: 8rem 0;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.screenshot-item {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.screenshot-item:hover {
    transform: translateY(-10px);
}

.screenshot-item img {
    width: 100%;
    max-width: 280px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.screenshot-item:hover img {
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px var(--glow-cyan);
}

.screenshot-item p {
    margin-top: 1rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 8, 0.95);
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    border-radius: var(--radius-lg);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close {
    top: -60px;
    right: 0;
}

.lightbox-prev {
    left: -70px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: -70px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px var(--glow-cyan);
}

.lightbox-title {
    text-align: center;
    margin-top: 1rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ─────────────────────────────────────────────────────────────────────────────
   TESTIMONIALS SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.testimonials-section {
    padding: 8rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--neon-cyan);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.testimonial-name {
    font-family: var(--font-display);
    font-size: 1rem;
    text-transform: uppercase;
    margin: 0;
}

.testimonial-role {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.testimonial-rating {
    color: #FFD700;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────────────────────────
   DOWNLOAD SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.download {
    padding: 8rem 0;
    text-align: center;
}

.download-coming-soon {
    margin-bottom: 3rem;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--neon-violet);
    border-radius: var(--radius-xl);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--neon-violet);
    margin-bottom: 2rem;
}

.download-intro {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.download-preview {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    margin: 3rem auto;
    max-width: 800px;
}

.download-preview-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.download-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    text-align: left;
}

.download-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.download-feature-icon {
    font-size: 1.5rem;
}

.download-feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.download-cta {
    margin-top: 3rem;
}

.download-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.download-note {
    margin-top: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ─────────────────────────────────────────────────────────────────────────────
   SECTION TRANSITION ARROWS
   ───────────────────────────────────────────────────────────────────────────── */
.section-transition {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.transition-arrow {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--neon-cyan), transparent);
    position: relative;
}

.transition-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--neon-cyan);
}

/* ─────────────────────────────────────────────────────────────────────────────
   EVENTS SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.events-section {
    padding: 4rem 0;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.event-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-violet));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.event-card:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-8px);
}

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

.event-card.featured {
    border-color: var(--neon-violet);
}

.event-card.featured::before {
    opacity: 1;
    background: linear-gradient(90deg, var(--neon-violet), var(--neon-cyan));
}

.event-header {
    margin-bottom: 1.5rem;
}

.event-header-top {
    margin-bottom: 1rem;
}

.event-badge {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    background: var(--neon-violet);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.event-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
}

.event-date,
.event-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.event-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.event-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.event-feature {
    padding: 0.4rem 0.75rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    font-size: 0.8rem;
}

.event-status {
    margin-top: 1rem;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.status-badge.coming-soon {
    background: rgba(76, 203, 255, 0.15);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
}

.event-cta {
    margin-top: 1.5rem;
}

.btn-event {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-event:hover {
    background: var(--neon-cyan);
    color: var(--bg-dark);
}

/* Events Benefits */
.events-info-section {
    padding: 4rem 0;
}

.events-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   FAQ SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.faq-section {
    padding: 4rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--glass-border);
    margin-bottom: 1rem;
    background: var(--glass-bg);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--neon-cyan);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    text-align: left;
}

.faq-icon {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    color: var(--neon-cyan);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

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

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────────────────────────
   ROADMAP SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.roadmap-section {
    padding: 4rem 0;
}

.roadmap-timeline {
    position: relative;
    padding-left: 3rem;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--neon-cyan), var(--neon-violet), var(--neon-cyan));
}

.timeline-item {
    position: relative;
    padding-bottom: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--glow-cyan);
}

.timeline-year {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.timeline-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1rem;
}

.timeline-icon {
    font-size: 1.25rem;
}

.timeline-feature h4 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.timeline-feature p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.roadmap-features-section {
    padding: 4rem 0;
}

.features-coming-soon {
    text-align: center;
}

.coming-feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.coming-feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.coming-feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.coming-soon-note {
    margin-top: 1rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--neon-cyan);
}

/* ─────────────────────────────────────────────────────────────────────────────
   NEWSLETTER SECTION
   ───────────────────────────────────────────────────────────────────────────── */
.newsletter-section {
    padding: 4rem 0;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    position: relative;
}

.newsletter-form-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 2px;
    padding: 2px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue), var(--neon-violet));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.newsletter-form-card:hover::before {
    opacity: 1;
}

.newsletter-form-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.form-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.newsletter-form .form-group {
    margin-bottom: 1.5rem;
}

.newsletter-form label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
}

.newsletter-form input[type="email"],
.newsletter-form input[type="text"] {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px var(--glow-cyan);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.checkbox-label input {
    margin-top: 0.25rem;
}

.checkbox-label a {
    color: var(--neon-cyan);
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue));
    border: none;
    color: var(--bg-dark);
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--glow-cyan);
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-loader {
    display: none;
}

.btn-submit.loading .btn-loader {
    display: inline-block;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(76, 203, 255, 0.1);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    border-radius: 0.75rem;
    font-weight: 600;
}

.form-message.error {
    display: block;
    background: rgba(244, 63, 94, 0.1);
    border: 1px solid var(--neon-rose);
    color: var(--neon-rose);
    border-radius: 0.75rem;
    font-weight: 600;
}

.error-message {
    background: rgba(244, 63, 94, 0.1);
    border: 1px solid var(--neon-rose);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--neon-rose);
    display: none;
}

.error-message.show {
    display: block;
}

[data-theme="light"] .form-message.error,
[data-theme="light"] .error-message {
    background: rgba(225, 29, 72, 0.08);
    border-color: var(--neon-rose);
    color: var(--neon-rose);
}

/* ─────────────────────────────────────────────────────────────────────────────
   CONTACT SECTION (inline styles override)
   ───────────────────────────────────────────────────────────────────────────── */
.contact-section {
    padding: 4rem 0;
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    position: relative;
    transition: all 0.4s ease;
}

.contact-form::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 2px;
    padding: 2px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue), var(--neon-violet));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.contact-form:hover::before {
    opacity: 1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px var(--glow-cyan);
    background: rgba(255, 255, 255, 0.05);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* .submit-btn is now unified into .btn-submit above */

.success-message {
    background: rgba(76, 203, 255, 0.1);
    border: 1px solid var(--neon-cyan);
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--neon-cyan);
    display: none;
}

.success-message.show {
    display: block;
}

.contact-info {
    margin-top: 3rem;
    text-align: center;
    color: var(--text-secondary);
}

.contact-info a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    text-shadow: 0 0 10px var(--glow-cyan);
}

/* ─────────────────────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────────────────────── */
footer {
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 300px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-section ul a:hover {
    color: var(--neon-cyan);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 15px var(--glow-cyan);
}

.footer-download-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-badge {
    height: 40px;
    width: auto;
}

.footer-note {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

/* Footer Newsletter */
.footer-newsletter {
    padding: 2rem 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-newsletter p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.footer-newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 450px;
    margin: 0 auto;
}

.footer-newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 0.5rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.875rem;
}

.footer-newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px var(--glow-cyan);
}

.footer-newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue));
    border: none;
    border-radius: 0.5rem;
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer-newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--glow-cyan);
}

.footer-newsletter-msg {
    font-size: 0.8rem;
    margin-top: 0.75rem;
}

.footer-newsletter-msg.success {
    color: var(--neon-cyan);
}

.footer-newsletter-msg.error {
    color: var(--neon-rose);
}

@media (max-width: 600px) {
    .footer-newsletter-form {
        flex-direction: column;
    }
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   PRO PAGE SPECIFIC STYLES
   ───────────────────────────────────────────────────────────────────────────── */
body.pro-page::before {
    content: 'PRO';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    font-family: var(--font-display);
    font-size: clamp(10rem, 25vw, 25rem);
    color: rgba(255, 215, 0, 0.02);
    z-index: 0;
    pointer-events: none;
    letter-spacing: 0.2em;
}

.pro-page-indicator {
    position: fixed;
    top: 100px;
    right: 2rem;
    z-index: 100;
}

.pro-page-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 0.5rem 1rem;
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: proBadgeFloat 3s ease-in-out infinite;
}

@keyframes proBadgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
    .pro-page-indicator {
        display: none;
    }
}

.pro-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, rgba(164, 76, 255, 0.08), rgba(76, 203, 255, 0.08));
    position: relative;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, #FFD700, transparent) 1;
}

.pro-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.pro-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.pro-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--neon-violet), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pro-hero p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.pro-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-pro-primary {
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--neon-violet), var(--neon-blue));
    color: var(--bg-dark);
    border: none;
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(164, 76, 255, 0.4);
}

.btn-pro-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px rgba(164, 76, 255, 0.6);
}

.btn-pro-secondary {
    padding: 1.25rem 3rem;
    background: transparent;
    color: var(--neon-blue);
    border: 1px solid var(--neon-blue);
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-pro-secondary:hover {
    background: rgba(76, 203, 255, 0.1);
    box-shadow: 0 0 20px var(--glow-blue);
}

.pro-section {
    padding: 6rem 0;
}

.pro-section-alt {
    background: linear-gradient(135deg, rgba(164, 76, 255, 0.03), rgba(76, 203, 255, 0.03));
}

.pro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pro-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
}

.pro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, #FFD700, #FFA500);
    transition: height 0.4s ease;
}

.pro-card:hover {
    transform: translateY(-8px);
    border-color: #FFD700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.pro-card:hover::before {
    height: 100%;
}

.pro-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.pro-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.pro-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Pro Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
}

.feature-icon-wrapper {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.15));
    border: 1px solid rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.feature-content h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.feature-content ul {
    list-style: none;
}

.feature-content ul li {
    color: var(--text-secondary);
    padding: 0.35rem 0;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.9rem;
}

.feature-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
}

/* Pro How It Works */
.how-it-works-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    text-align: center;
    padding: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.step-card .step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.step-card h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Pro Testimonials */
.testimonials-placeholder {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--glass-bg);
    border: 2px dashed var(--glass-border);
}

.testimonials-placeholder h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonials-placeholder p {
    color: var(--text-secondary);
}

/* Pro Form */
.pro-form-container {
    max-width: 800px;
    margin: 3rem auto 0;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem;
}

.pro-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.form-checkbox input {
    margin-top: 0.25rem;
}

.form-checkbox label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    text-transform: none;
    letter-spacing: normal;
}

@media (max-width: 768px) {
    .pro-form-grid {
        grid-template-columns: 1fr;
    }

    .pro-hero h1 {
        font-size: 2rem;
    }

    .pro-cta-buttons {
        flex-direction: column;
    }

    .btn-pro-primary,
    .btn-pro-secondary {
        width: 100%;
        text-align: center;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon-wrapper {
        margin: 0 auto;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   UTILITY CLASSES
   ───────────────────────────────────────────────────────────────────────────── */
.text-gradient {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue), var(--neon-violet));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent {
    color: var(--neon-cyan);
}

.hover-glow {
    transition: all 0.3s ease;
}

.hover-glow:hover {
    text-shadow: 0 0 20px var(--glow-cyan);
}

.hover-trigger {
    cursor: pointer;
}

.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.stagger-in {
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: var(--delay, 0ms);
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE ADJUSTMENTS
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 7rem 0 4rem;
    }

    .hero::before {
        font-size: clamp(8rem, 25vw, 15rem);
        opacity: 0.8;
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .marquee {
        font-size: 0.85rem;
        transform: rotate(-2deg);
        padding: 0.75rem 0;
    }

    .marquee-content span {
        padding: 0 1.5rem;
    }

    /* Live Stats Mobile */
    .live-section {
        padding: 3rem 1rem;
        gap: 1.5rem;
        justify-content: center;
    }

    .live-stat {
        min-width: 140px;
        padding: 1rem;
    }

    .stat-value {
        font-size: clamp(2rem, 10vw, 3rem);
        -webkit-text-stroke-width: 1.5px;
    }

    .stat-label {
        font-size: 0.6rem;
        letter-spacing: 0.1em;
    }

    .section-intro {
        margin-bottom: 2rem;
    }

    .section-number {
        font-size: 4rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .why-section,
    .mood-section,
    .reports-section,
    .security-section,
    .screenshots,
    .testimonials-section,
    .download {
        padding: 4rem 0;
    }

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

    /* Cards Mobile */
    .why-card,
    .feature-card {
        padding: 1.5rem;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .hero {
        padding: 6rem 0 3rem;
    }

    .hero::before {
        font-size: clamp(5rem, 20vw, 8rem);
    }

    .live-section {
        flex-direction: column;
        gap: 1rem;
    }

    .live-stat {
        width: 100%;
        min-width: unset;
        padding: 1.5rem;
        border-bottom: 1px solid var(--glass-border);
    }

    .live-stat:last-child {
        border-bottom: none;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .marquee {
        font-size: 0.75rem;
    }

    .fab-group {
        bottom: 0.75rem;
        right: 0.75rem;
        gap: 0.5rem;
    }

    .back-to-top,
    .theme-toggle {
        width: 40px;
        height: 40px;
    }

    /* Forms Mobile */
    .newsletter-form-card,
    .contact-form {
        padding: 1.5rem;
    }

    .newsletter-form-card h3 {
        font-size: 1.25rem;
    }

    .btn-submit {
        padding: 1rem;
        font-size: 1rem;
    }

    /* FAQ Mobile */
    .faq-question {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .faq-answer {
        padding: 0 1rem 1rem;
    }

    /* Pro Page Mobile */
    .pro-hero {
        padding: 6rem 0 3rem;
    }

    .pro-card {
        padding: 1.5rem;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   REDUCED MOTION
   ───────────────────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .particle {
        display: none;
    }

    .custom-cursor {
        display: none;
    }

    .marquee-content {
        animation: none;
    }

    .page-loader {
        display: none;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   PRINT STYLES
   ───────────────────────────────────────────────────────────────────────────── */
@media print {
    .custom-cursor,
    .particles-container,
    .scroll-progress,
    .fab-group,
    .back-to-top,
    .theme-toggle,
    .page-loader,
    .marquee,
    .lightbox,
    .mobile-menu-toggle {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    header {
        position: static;
        background: none;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    .hero-title,
    .section-title,
    h1, h2, h3, h4 {
        color: #000;
    }
}
