@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ═══════════════════════════════════════════
   🌌 AURORA COSMOS — Design System
   ═══════════════════════════════════════════ */

:root {
    --bg-void: #020617;
    --bg-deep: #0a0e27;
    --bg-surface: rgba(15, 23, 42, 0.6);
    --card-bg: rgba(15, 23, 42, 0.4);
    --card-border: rgba(255, 255, 255, 0.06);

    --aurora-1: #6366f1;
    --aurora-2: #8b5cf6;
    --aurora-3: #a78bfa;
    --aurora-4: #c084fc;
    --aurora-5: #e879f9;
    --aurora-6: #f0abfc;

    --neon-blue: #38bdf8;
    --neon-purple: #a78bfa;
    --neon-pink: #f472b6;
    --neon-cyan: #22d3ee;
    --neon-green: #34d399;

    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════ BASE ═══════════════════ */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* background set in the gradient block below */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.03em;
}

::selection {
    background: rgba(139, 92, 246, 0.4);
    color: #fff;
}

/* ═══════════════ ELEGANT SCROLLBAR ═══════════════ */

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--aurora-1), var(--aurora-5));
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--aurora-3), var(--aurora-5));
}

/* ═══════════════ BACKGROUND — STATIC GRADIENT (no animation) ═══════════════ */

/* All heavy animated backgrounds removed — use pure CSS gradient on body instead */
body {
    background:
        radial-gradient(ellipse 80% 50% at 15% 20%, rgba(99, 102, 241, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 85% 70%, rgba(168, 85, 247, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse 50% 60% at 50% 100%, rgba(34, 211, 238, 0.06) 0%, transparent 50%),
        var(--bg-void);
    background-attachment: fixed;
}

/* Subtle static mesh overlay — pure CSS, zero JS, zero animation */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background-size: 80px 80px;
    background-image:
        linear-gradient(to right, rgba(139, 92, 246, 0.025) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(139, 92, 246, 0.025) 1px, transparent 1px);
    mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, black 0%, transparent 70%);
    pointer-events: none;
}

/* Legacy classes — kept as no-ops so old HTML doesn't break */
.aurora-bg, .aurora-layer, .mesh-grid, .floating-orbs, .orb,
.orb-1, .orb-2, .orb-3, .orb-4, .particles, .particle { display: none !important; }

/* ═══════════════ CURSOR GLOW (lightweight) ═══════════════ */

#cursor-glow {
    position: fixed;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    will-change: transform;
    transition: none;
    left: 0; top: 0;
}

/* ═══════════════ PARTICLES ═══════════════ */

/* Stars — removed from DOM, CSS kept as stub */
.star { display: none; }

/* ═══════════════ GLASS SURFACE ═══════════════ */

.glass-surface {
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
}

/* ═══════════════ NAVIGATION ═══════════════ */

/* Shared nav inner pill — used by all pages */
.nav-inner {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    background: rgba(2, 6, 23, 0.65);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(139, 92, 246, 0.14);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(139, 92, 246, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: all 0.4s var(--ease-spring);
    position: relative;
}

.nav-inner:hover,
.nav-inner.scrolled {
    background: rgba(2, 6, 23, 0.88);
    border-color: rgba(139, 92, 246, 0.22);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.6),
        0 0 40px -10px rgba(139, 92, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Legacy — kept so old pages don't break */
.nav-floating {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1180px;
    z-index: 50;
    padding: 0;
}

.nav-floating .container {
    max-width: 100% !important;
    padding: 0 !important;
}

/* Make legacy nav inner look like new pill */
.nav-floating .nav-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    background: rgba(2, 6, 23, 0.65);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(139, 92, 246, 0.14);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: all 0.4s var(--ease-spring);
    position: relative;
}

.nav-floating.scrolled .nav-pill,
.nav-floating .nav-pill:hover {
    background: rgba(2, 6, 23, 0.88);
    border-color: rgba(139, 92, 246, 0.22);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px -10px rgba(139, 92, 246, 0.15);
}

/* Active nav link underline */
.nav-link-active {
    color: #fff !important;
    position: relative;
}

.nav-link-active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #a78bfa, #f472b6);
    border-radius: 1px;
}

/* ═══════════════ SCROLL PROGRESS ═══════════════ */

#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    z-index: 9999;
    transform-origin: left;
    transform: scaleX(0);
    background: linear-gradient(90deg, var(--aurora-1), var(--aurora-3), var(--aurora-5));
    /* no infinite animation */
}

/* ═══════════════ GLASSMORPHISM 2.0 CARDS ═══════════════ */

.glass-card {
    background: rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-radius: 1.5rem;
    transition: all 0.6s var(--ease-spring);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(139, 92, 246, 0.4) 30%, rgba(244, 114, 182, 0.4) 70%, transparent 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.glass-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, transparent 50%, rgba(244, 114, 182, 0.03) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.glass-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(139, 92, 246, 0.25);
    box-shadow:
        0 30px 60px -15px rgba(0, 0, 0, 0.6),
        0 0 40px -10px rgba(139, 92, 246, 0.2),
        inset 0 0 80px rgba(139, 92, 246, 0.03);
    background: rgba(15, 23, 42, 0.6);
}

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

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

/* ═══════════════ 3D TILT FEATURE CARDS ═══════════════ */

.feature-card {
    perspective: 800px;
    transform-style: preserve-3d;
    cursor: pointer;
    text-decoration: none;
}

.feature-card .card-inner {
    transition: transform 0.4s var(--ease-spring);
    transform-style: preserve-3d;
}

.feature-card:hover .card-inner {
    transform: rotateY(-3deg) rotateX(3deg);
}

.feature-card .icon-box {
    position: relative;
}

.feature-card .icon-box::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    background: inherit;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.feature-card:hover .icon-box::after {
    opacity: 0.6;
}

/* ═══════════════ NEON GLOW TEXT ═══════════════ */

.text-gradient {
    background: linear-gradient(135deg, #e0e7ff 0%, #a78bfa 40%, #f0abfc 70%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* removed continuous shimmer animation */
}

.text-gradient-primary {
    background: linear-gradient(135deg, #a5b4fc 0%, #c084fc 50%, #f0abfc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ═══════════════ PREMIUM BUTTONS ═══════════════ */

.btn-primary {
    background: linear-gradient(135deg, var(--aurora-1) 0%, var(--aurora-2) 50%, var(--aurora-5) 100%);
    color: white;
    border: none;
    box-shadow:
        0 4px 20px -5px rgba(99, 102, 241, 0.5),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    overflow: hidden;
    /* removed infinite gradient animation */
}

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

.btn-primary:hover {
    box-shadow:
        0 8px 30px -5px rgba(99, 102, 241, 0.6),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    filter: brightness(1.1);
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s var(--ease-spring);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(244, 114, 182, 0.3));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-secondary:hover {
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-3px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 0 30px -10px rgba(139, 92, 246, 0.3);
}

.btn-secondary:hover::before {
    opacity: 1;
}

/* ═══════════════ HERO BADGE ═══════════════ */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: var(--aurora-3);
    font-size: 0.875rem;
    font-weight: 500;
    /* no animation */
}

.hero-badge .pulse-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--neon-green);
    box-shadow: 0 0 6px var(--neon-green);
    /* static — no pulse animation */
}

/* ═══════════════ HERO SECTION ═══════════════ */

.hero-section {
    position: relative;
    padding-top: 10rem;
    padding-bottom: 6rem;
    overflow: hidden;
}

/* Hero glow — static, no animation */
.hero-glow {
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    opacity: 0.8;
}

.hero-glow-1 {
    top: -20%; left: -10%;
    background: rgba(99, 102, 241, 0.18);
}

.hero-glow-2 {
    bottom: -30%; right: -10%;
    background: rgba(244, 114, 182, 0.12);
}

/* ═══════════════ STATS SECTION ═══════════════ */

.stat-card {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
    transition: all 0.4s var(--ease-spring);
}

.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--aurora-1), var(--aurora-5));
    transition: width 0.6s var(--ease-spring);
    border-radius: 1px;
}

.stat-card:hover::after {
    width: 60%;
}

.stat-card .stat-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 0 25px -5px currentColor;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(180deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    font-weight: 500;
}

/* ═══════════════ "WHY US" COMPARISON SECTION ═══════════════ */

.why-card {
    position: relative;
    padding: 2rem;
    border-radius: 1.5rem;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.5s var(--ease-spring);
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--aurora-2), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.why-card:hover {
    border-color: rgba(139, 92, 246, 0.2);
    background: rgba(15, 23, 42, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

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

.why-number {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(244, 114, 182, 0.1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    top: 1rem; right: 1.5rem;
}

/* ═══════════════ TESTIMONIALS ═══════════════ */

.testimonial-card {
    position: relative;
    transition: all 0.6s var(--ease-spring);
}

.testimonial-card:hover {
    transform: translateY(-10px) rotate(-0.5deg);
}

.testimonial-card .quote-icon {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    font-size: 2rem;
    opacity: 0.08;
    color: var(--aurora-3);
}

.testimonial-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    position: relative;
}

.testimonial-avatar::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: inherit;
    filter: blur(10px);
    opacity: 0.4;
    z-index: -1;
}

/* ═══════════════ CTA SECTION ═══════════════ */

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

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(99, 102, 241, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(244, 114, 182, 0.09) 0%, transparent 60%);
    /* static — no animation */
}

.cta-border {
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--aurora-3), var(--aurora-5), transparent);
}

/* ═══════════════ DEVELOPER HOLOGRAPHIC CARD ═══════════════ */

.dev-card {
    position: relative;
    transition: all 0.5s var(--ease-spring);
}

.dev-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 1.5rem;
    padding: 1px;
    background: linear-gradient(135deg, var(--aurora-1), var(--aurora-3), var(--aurora-5), var(--neon-cyan));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: xor;
    opacity: 0;
    transition: opacity 0.5s ease;
    /* removed hue-rotate animation — too expensive */
}

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

.dev-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 24px 48px -12px rgba(0, 0, 0, 0.5),
        0 0 40px -15px rgba(139, 92, 246, 0.25);
}

.dev-avatar-ring {
    position: relative;
    display: inline-block;
}

.dev-avatar-ring::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--aurora-1), var(--aurora-3), var(--aurora-5));
    z-index: 0;
    /* static gradient, no animation */
}

.dev-avatar-ring img {
    position: relative;
    z-index: 1;
    border: 3px solid var(--bg-void);
}

/* ═══════════════ FOOTER ═══════════════ */

.footer-section {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-section::before {
    content: '';
    position: absolute;
    top: -1px; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--aurora-2), var(--aurora-5), transparent);
}

.footer-glow {
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.social-icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    transition: all 0.4s var(--ease-spring);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--aurora-1), var(--aurora-5));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.social-icon:hover {
    transform: translateY(-4px) scale(1.1);
    border-color: transparent;
    color: white;
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.4);
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon i {
    position: relative;
    z-index: 1;
}

/* ═══════════════ SCROLL REVEAL ═══════════════ */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Stagger delays */
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ═══════════════ SPLASH SCREEN ═══════════════ */

#splash-screen {
    position: fixed;
    inset: 0;
    background: var(--bg-void);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease-out, visibility 0.6s;
}

.splash-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.splash-logo {
    width: 100px; height: 100px;
    margin-bottom: 20px;
    border-radius: 50%;
    object-fit: cover;
    animation: splashPulse 2s ease-in-out infinite;
    box-shadow:
        0 0 40px rgba(139, 92, 246, 0.4),
        0 0 80px rgba(139, 92, 246, 0.2);
}

@keyframes splashPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

.splash-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #a5b4fc 0%, #c084fc 50%, #f0abfc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--aurora-1), var(--aurora-3), var(--aurora-5));
    animation: loaderProgress 1.2s ease-out forwards;
    border-radius: 4px;
}

@keyframes loaderProgress {
    0%   { width: 0%; }
    100% { width: 100%; }
}

/* ═══════════════ DISCORD MOCKUP ═══════════════ */

.mockup-container {
    position: relative;
}

.mockup-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--aurora-1), var(--aurora-3), var(--aurora-5));
    border-radius: 1.25rem;
    filter: blur(16px);
    opacity: 0.2;
    transition: opacity 0.5s ease;
}

.mockup-container:hover .mockup-glow {
    opacity: 0.4;
}

/* ═══════════════ TYPEWRITER ═══════════════ */

#typewriter-title::after,
#typewriter-text::after {
    content: '▊';
    color: var(--aurora-3);
    animation: blinkCursor 0.8s ease-in-out infinite;
    margin-left: 2px;
}

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

/* ═══════════════ MOBILE MENU ═══════════════ */

.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-spring), opacity 0.3s ease, visibility 0s linear 0.4s;
    background: rgba(2, 6, 23, 0.97);
    backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: flex;
    flex-direction: column;
}

.mobile-menu.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.4s var(--ease-spring), opacity 0.3s ease, visibility 0s linear 0s;
}

/* Override glass-card / glass-surface hover transforms on mobile menu */
.mobile-menu.glass-card,
.mobile-menu.glass-surface {
    border-radius: 0 !important;
}
.mobile-menu.glass-card:hover,
.mobile-menu.glass-surface:hover {
    transform: translateX(0) !important;
    box-shadow: none !important;
}

/* ═══════════════ SECTION DIVIDER ═══════════════ */

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.2), rgba(244, 114, 182, 0.2), transparent);
    margin: 0 auto;
    width: 80%;
}

/* ═══════════════ SECTION HEADING ═══════════════ */

.section-heading {
    text-align: center;
    margin-bottom: 4rem;
}

.section-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-heading p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ═══════════════ CHECK MARKS ═══════════════ */

.check-list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

.check-item i {
    color: var(--neon-green);
    font-size: 0.75rem;
    filter: drop-shadow(0 0 4px var(--neon-green));
}

/* ═══════════════ RESPONSIVE ═══════════════ */

@media (max-width: 768px) {
    .nav-floating {
        width: 100%;
        margin-top: 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: none;
        background: rgba(2, 6, 23, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .hero-section {
        padding-top: 7rem;
        padding-bottom: 3rem;
    }

    .section-heading h2 {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .glass-card {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .glass-card:hover {
        transform: translateY(-4px);
    }

    .orb { display: none; }

    .aurora-layer {
        filter: blur(80px);
        opacity: 0.08;
    }

    section { padding: 4rem 0; }
}

@media (max-width: 480px) {
    .hero-section h1 { font-size: 2rem; }
    .section-heading h2 { font-size: 1.5rem; }
}

/* ═══════════════ BODY LOADING STATE ═══════════════ */

/* Mobile menu must NEVER show until explicitly opened */
.mobile-menu:not(.open) {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateX(100%) !important;
    pointer-events: none !important;
}

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