@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap');

/* =========================================
   1. CORE TOKENS & CSS VARIABLES
   ========================================= */
:root {
    /* Base Colors - RGB extracted for alpha blending */
    --bg-color: #0a0a0a;
    --bg-rgb: 10, 10, 10;
    
    --primary: #ffc107;
    --primary-rgb: 255, 193, 7;
    
    --accent: #ff8f00;
    --accent-rgb: 255, 143, 0;
    
    --success: #10b981;
    --success-rgb: 16, 185, 129;
    
    --danger: #ef4444;
    --danger-rgb: 239, 68, 68;
    
    --purple: #8b5cf6;
    --purple-rgb: 139, 92, 246;

    /* Text Colors */
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    --text-dark: #111827;

    /* Surfaces & Glassmorphism */
    --surface-1: rgba(255, 255, 255, 0.03);
    --surface-2: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-strong: rgba(255, 255, 255, 0.15);
    --glass-highlight: rgba(255, 255, 255, 0.1);
    
    /* Layout & Spacing */
    --container: 1280px;
    --nav-height: 80px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 9999px;
    
    /* Transitions & Shadows */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    --shadow-glow-primary: 0 0 20px rgba(var(--primary-rgb), 0.3);
    --shadow-glow-accent: 0 0 30px rgba(var(--accent-rgb), 0.4);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    
    /* Original variables preserved for backwards compatibility */
    --bg: #0f1115;
    --text: #ffffff;
    --muted: #888888;
    --surface: #111111;
    --surface2: #1a1a1a;
    --line: rgba(255,255,255,0.1);
    --radius: 8px;
}

/* Page-specific ambient lighting */
body[class*="page-"] {
    --hero-spot-1: rgba(var(--primary-rgb), 0.16);
    --hero-spot-2: rgba(var(--accent-rgb), 0.10);
}
body.page-home { --hero-spot-1: rgba(255,193,7,0.25); --hero-spot-2: rgba(255,143,0,0.15); }
body.page-platform { --hero-spot-1: rgba(56,189,248,0.20); --hero-spot-2: rgba(14,165,233,0.10); }
body.page-solutions { --hero-spot-1: rgba(168,85,247,0.20); --hero-spot-2: rgba(236,72,153,0.10); }
body.page-pricing { --hero-spot-1: rgba(16,185,129,0.22); --hero-spot-2: rgba(34,197,94,0.10); }
body.page-ai { --hero-spot-1: rgba(59,130,246,0.20); --hero-spot-2: rgba(14,165,233,0.10); }

/* =========================================
   2. GLOBAL RESETS & TYPOGRAPHY
   ========================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    min-height: 100vh;
}

body.disable-scroll {
    overflow: hidden;
}

a { text-decoration: none; color: inherit; outline: none; }
ul { list-style: none; }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; background: none; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-color); border-left: 1px solid var(--glass-border); }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.2); border-radius: 10px; border: 2px solid var(--bg-color); }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* Text Selection */
::selection { background: rgba(var(--primary-rgb), 0.3); color: var(--text-main); }

/* =========================================
   3. PRELOADER & CUSTOM CURSOR
   ========================================= */
#loader {
    position: fixed; inset: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999999;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader-content {
    display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.logo-loader { font-size: 32px; font-weight: 800; font-family: 'Space Grotesk', sans-serif; letter-spacing: -1px; animation: pulse-glow 2s infinite; }
.logo-loader .dot { color: var(--primary); }
.loading-bar { width: 200px; height: 4px; background: var(--surface-2); border-radius: 4px; overflow: hidden; position: relative; }
.loading-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 4px; animation: load-progress 2s cubic-bezier(0.4, 0, 0.2, 1) infinite; }
.loading-text { font-size: 12px; color: var(--text-muted); font-family: monospace; letter-spacing: 2px; text-transform: uppercase; }

@keyframes load-progress {
    0% { width: 0; transform: translateX(-100%); }
    50% { width: 100%; transform: translateX(0); }
    100% { width: 100%; transform: translateX(100%); }
}

.custom-cursor {
    position: fixed; top: 0; left: 0; width: 12px; height: 12px;
    background: var(--primary); border-radius: 50%;
    pointer-events: none; z-index: 999999;
    mix-blend-mode: exclusion;
    transition: transform 0.1s ease;
    transform: translate(-50%, -50%);
    display: none; /* Handled via JS typically, default hidden for mobile */
}
@media (pointer: fine) { .custom-cursor { display: block; } }

/* =========================================
   4. AMBIENT BACKGROUND SYSTEM (OPTIMIZED)
   ========================================= */
.ambient-background { 
    position: fixed; 
    inset: 0; 
    z-index: -1; 
    overflow: hidden; 
    pointer-events: none; 
    /* Hardware acceleration for the background container */
    transform: translateZ(0);
}

.glow-orb { 
    position: absolute; 
    border-radius: 50%; 
    opacity: 0.4; 
    animation: orbit 20s linear infinite; 
    /* Removed filter: blur() - using gradients instead for 100x better performance */
    will-change: transform;
    transform: translateZ(0);
}

/* Replaced heavy blurs with lightweight radial gradients */
.orb-primary { 
    width: 600px; 
    height: 600px; 
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15) 0%, transparent 70%); 
    top: -100px; left: -100px; 
    animation-duration: 25s; 
}
.orb-accent { 
    width: 500px; 
    height: 500px; 
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.12) 0%, transparent 70%); 
    bottom: -100px; right: -50px; 
    animation-duration: 30s; 
    animation-direction: reverse; 
}
.orb-success { 
    width: 400px; 
    height: 400px; 
    background: radial-gradient(circle, rgba(var(--success-rgb), 0.08) 0%, transparent 70%); 
    top: 40%; left: 60%; 
    animation-duration: 40s; 
}

/* Removed mix-blend-mode. Just using low opacity for identical look but zero lag */
.noise-overlay { 
    position: absolute; 
    inset: 0; 
    opacity: 0.03; 
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"); 
    pointer-events: none;
    transform: translateZ(0);
}

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(50px) rotate(0deg) translateZ(0); }
    100% { transform: rotate(360deg) translateX(50px) rotate(-360deg) translateZ(0); }
}

/* =========================================
   5. UTILITIES & GLASS CLASSES
   ========================================= */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.flex-gap { display: flex; gap: 16px; align-items: center; }
.text-center { text-align: center; }
.w-full { width: 100%; }
.mt-2 { margin-top: 8px; } .mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; }

/* Advanced Typography */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; color: transparent;
    display: inline-block;
}
.animated-gradient { background-size: 200% auto; animation: gradient-shift 4s linear infinite; }
@keyframes gradient-shift { 0% { background-position: 0% center; } 100% { background-position: 200% center; } }

/* Glass Components */
.glass-panel { background: rgba(10, 10, 10, 0.6); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }
.glass-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glass);
    position: relative; overflow: hidden;
}
.glass-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
    opacity: 0; transition: opacity var(--transition-smooth); pointer-events: none;
}
.glass-card:hover::before { opacity: 1; }
.glass-inner { background: rgba(0, 0, 0, 0.2); border: 1px solid var(--glass-border); border-radius: var(--radius-md); padding: 16px; }

/* Badges & Pills */
.glass-pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--glass-border-strong); border-radius: var(--radius-pill); font-size: 13px; font-weight: 600; font-family: 'Space Grotesk', sans-serif; letter-spacing: 1px; text-transform: uppercase; }
.badge-pill { padding: 8px 20px; color: var(--text-main); margin-bottom: 24px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.live-dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; box-shadow: 0 0 10px var(--success); animation: pulse-dot 2s infinite; }

@keyframes pulse-dot { 0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(var(--success-rgb), 0.7); } 70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(var(--success-rgb), 0); } 100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(var(--success-rgb), 0); } }

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline, .btn-ghost {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: 'Space Grotesk', sans-serif; font-weight: 700;
    padding: 12px 24px; border-radius: var(--radius-sm);
    transition: var(--transition-bounce); position: relative; overflow: hidden;
}
.btn-large { padding: 16px 32px; font-size: 16px; border-radius: var(--radius-md); }
.btn-massive { padding: 20px 48px; font-size: 18px; border-radius: var(--radius-md); text-transform: uppercase; letter-spacing: 1px; }

.frosted-btn {
    background: rgba(var(--primary-rgb), 0.9); color: var(--text-dark);
    backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.2), inset 0 1px 0 rgba(255,255,255,0.4);
}
.frosted-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow-primary); background: var(--primary); }
.btn-glow-effect { position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 60%); opacity: 0; transition: opacity 0.3s; pointer-events: none; mix-blend-mode: overlay; }
.frosted-btn:hover .btn-glow-effect { opacity: 0.3; animation: rotate-glow 3s linear infinite; }

.btn-outline, .glass-btn { background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border-strong); color: var(--text-main); }
.glass-btn:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); transform: translateY(-3px); }
.btn-ghost { color: var(--text-muted); background: transparent; }
.btn-ghost:hover { color: var(--text-main); background: rgba(255,255,255,0.05); }

@keyframes rotate-glow { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* =========================================
   6. SCROLL PROGRESS & SKIP LINK
   ========================================= */
.scroll-progress-container { position: fixed; top: 0; left: 0; width: 100%; height: 3px; z-index: 10000; background: rgba(255,255,255,0.05); }
.scroll-progress-bar { height: 100%; background: linear-gradient(90deg, var(--primary), var(--accent), var(--purple)); width: 0%; box-shadow: 0 0 10px var(--primary); }

.skip-link { position: absolute; top: -100px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #000; padding: 12px 24px; border-radius: var(--radius-sm); font-weight: 700; z-index: 100000; transition: top 0.3s; }
.skip-link:focus { top: 20px; box-shadow: var(--shadow-glow-primary); }

/* =========================================
   7. NAVIGATION (ADVANCED GLASS)
   ========================================= */
.navbar { position: fixed; top: 0; width: 100%; z-index: 1000; border-bottom: 1px solid transparent; transition: all 0.4s ease; padding: 20px 0; }
.navbar.scrolled { padding: 12px 0; border-bottom: 1px solid var(--glass-border); box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5); }
.nav-container { max-width: var(--container); margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: 'Space Grotesk', sans-serif; font-size: 26px; font-weight: 800; color: var(--text-main); letter-spacing: -0.5px; position: relative; }
.logo .dot { color: var(--primary); transition: var(--transition-fast); }
.logo.group:hover .dot { text-shadow: 0 0 15px var(--primary); }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-item { position: relative; }
.nav-link { color: var(--text-muted); font-size: 15px; font-weight: 500; transition: color 0.3s; position: relative; padding: 8px 0; }
.nav-link::after { content: attr(data-text); position: absolute; left: 0; bottom: 0; color: var(--text-main); opacity: 0; transform: translateY(10px); transition: all 0.3s; pointer-events: none; font-weight: 600; }
.nav-link:hover { color: transparent; }
.nav-link:hover::after { opacity: 1; transform: translateY(0); }

.badge-link { display: flex; align-items: center; gap: 6px; }
.nav-badge { background: linear-gradient(135deg, #8b5cf6, #ec4899); color: white; font-size: 10px; font-weight: 800; padding: 2px 6px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.5px; animation: pulse-icon 2s infinite; }

.nav-actions { display: flex; align-items: center; gap: 16px; }
.menu-toggle { display: none; width: 40px; height: 40px; border-radius: 8px; background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; }
.hamburger-lines { display: flex; flex-direction: column; gap: 5px; width: 20px; }
.hamburger-lines .line { height: 2px; background: var(--text-main); border-radius: 2px; transition: 0.3s; }
.hamburger-lines .line1 { width: 100%; } .hamburger-lines .line2 { width: 70%; } .hamburger-lines .line3 { width: 100%; }

/* =========================================
   8. BENTO HERO SECTION
   ========================================= */
.hero { min-height: 100vh; padding-top: 140px; padding-bottom: 80px; display: flex; align-items: center; position: relative; }
.bento-grid { display: grid; gap: 24px; }
.hero-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
    width: 100%;
}
.bento-cell { padding: 40px; display: flex; flex-direction: column; justify-content: center; }

/* Cell 1: Main Text (Spans 7 cols) */
.hero-text-cell { grid-column: span 7; grid-row: span 2; }
.hero-title { font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 800; line-height: 1.05; margin-bottom: 24px; letter-spacing: -1px; }
.hero-subtitle { font-size: 18px; color: var(--text-muted); line-height: 1.7; margin-bottom: 40px; max-width: 90%; }

/* Cell 2: Global Stats / Terminal (Spans 5 cols) */
.stats-cell { grid-column: span 5; grid-row: span 1; padding: 24px; background: rgba(17, 17, 17, 0.6); }
.terminal-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; border-bottom: 1px solid var(--glass-border); padding-bottom: 12px; }
.mac-dots { display: flex; gap: 6px; }
.mac-dots span { width: 10px; height: 10px; border-radius: 50%; }
.mac-dots span:nth-child(1) { background: #ff5f56; }
.mac-dots span:nth-child(2) { background: #ffbd2e; }
.mac-dots span:nth-child(3) { background: #27c93f; }
.terminal-title { font-family: monospace; font-size: 12px; color: var(--text-muted); }

.stats-bento-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat-box { padding: 16px; background: rgba(255,255,255,0.02); }
.stat-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.stat-box h3 { font-size: 32px; font-weight: 800; display: inline-block; }
.suffix { font-size: 18px; font-weight: 700; color: var(--primary); margin-left: 2px; }
.stat-trend { font-size: 11px; display: flex; align-items: center; gap: 4px; margin-top: 8px; font-weight: 600; }
.stat-trend.positive { color: var(--success); }
.stat-trend.neutral { color: var(--text-muted); }

/* Waveform Visualizer */
.waveform-container { height: 60px; display: flex; align-items: flex-end; gap: 4px; border-top: 1px solid var(--glass-border); padding-top: 16px; }
.wave-bar { flex: 1; background: rgba(var(--primary-rgb), 0.3); border-radius: 2px 2px 0 0; animation: wave-anim 1s ease-in-out infinite alternate; }
.primary-wave { background: var(--primary); box-shadow: 0 0 10px var(--primary); animation-duration: 0.8s; }
.wave-bar:nth-child(even) { animation-duration: 1.2s; animation-delay: 0.2s; }
.wave-bar:nth-child(3n) { animation-duration: 0.9s; animation-delay: 0.4s; }
@keyframes wave-anim { 0% { height: 30%; } 100% { height: 100%; } }

/* Cells 3 & 4: Float Cards (Span 2.5 cols each) */
.float-card-cell { grid-column: span 2; grid-row: span 1; padding: 20px; flex-direction: row; align-items: center; gap: 16px; cursor: default; }
.interactive-hover:hover { transform: translateY(-5px) scale(1.02); border-color: rgba(255,255,255,0.2); }
.icon-wrapper { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.success-wrapper { background: rgba(var(--success-rgb), 0.15); color: var(--success); border: 1px solid rgba(var(--success-rgb), 0.3); }
.warning-wrapper { background: rgba(var(--primary-rgb), 0.15); color: var(--primary); border: 1px solid rgba(var(--primary-rgb), 0.3); }
.card-title { font-size: 15px; font-weight: 700; color: var(--text-main); }
.card-desc { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* =========================================
   9. INFINITE MARQUEE (TRUST STRIP)
   ========================================= */
.trust-strip { padding: 30px 0; overflow: hidden; background: rgba(5, 5, 5, 0.8); }
.trust-label { text-align: center; font-size: 11px; font-weight: 700; color: #555; letter-spacing: 3px; margin-bottom: 24px; }
.marquee-container { width: 100%; overflow: hidden; position: relative; }
.marquee-container::before, .marquee-container::after { content: ''; position: absolute; top: 0; width: 150px; height: 100%; z-index: 2; pointer-events: none; }
.marquee-container::before { left: 0; background: linear-gradient(to right, #050505 0%, transparent 100%); }
.marquee-container::after { right: 0; background: linear-gradient(to left, #050505 0%, transparent 100%); }
.marquee-content { display: flex; width: max-content; gap: 60px; padding: 0 30px; animation: scroll-left 40s linear infinite; }
.marquee-content:hover { animation-play-state: paused; }
.brand-item { display: flex; align-items: center; gap: 12px; font-size: 16px; font-weight: 600; color: #888; transition: color 0.3s; cursor: default; }
.brand-item:hover { color: var(--text-main); }
.brand-icon { font-size: 20px; width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border); }

@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-50% - 30px)); } }

/* =========================================
   10. SECTIONS GLOBALS & HEADER
   ========================================= */
.section { padding: 120px 0; position: relative; z-index: 10; }
.glass-section { background: rgba(255,255,255,0.01); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.section-header { margin-bottom: 64px; }
.section-badge { margin-bottom: 20px; color: var(--primary); border-color: rgba(var(--primary-rgb), 0.3); }
.section-title { font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.5px; }
.section-desc { font-size: 18px; color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.6; }

/* =========================================
   11. ADVANCED TIMELINE (HOW IT WORKS)
   ========================================= */
.advanced-timeline { max-width: 800px; margin: 0 auto; position: relative; padding: 20px 0; }
.timeline-line { position: absolute; left: 40px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, transparent, var(--glass-border-strong) 10%, var(--glass-border-strong) 90%, transparent); }
.timeline-step { display: flex; gap: 30px; margin-bottom: 40px; padding: 30px; position: relative; z-index: 2; transition: transform 0.3s; }
.timeline-step:hover { transform: translateX(10px); border-color: rgba(255,255,255,0.2); }
.step-indicator { width: 50px; height: 50px; min-width: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 800; background: var(--surface-2); border: 1px solid var(--glass-border); color: var(--text-main); position: relative; z-index: 3; box-shadow: 0 0 0 8px var(--bg-color); }
.glow-primary { color: var(--primary); border-color: rgba(var(--primary-rgb), 0.5); text-shadow: 0 0 10px var(--primary); box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.2), 0 0 0 8px var(--bg-color); }
.glow-accent { color: var(--accent); border-color: rgba(var(--accent-rgb), 0.5); text-shadow: 0 0 10px var(--accent); box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.2), 0 0 0 8px var(--bg-color); }
.glow-success { color: var(--success); border-color: rgba(var(--success-rgb), 0.5); text-shadow: 0 0 10px var(--success); box-shadow: 0 0 20px rgba(var(--success-rgb), 0.2), 0 0 0 8px var(--bg-color); }
.step-content { padding-top: 10px; }
.step-title { font-size: 22px; font-weight: 700; margin-bottom: 12px; color: var(--text-main); }
.step-content p { color: var(--text-muted); font-size: 16px; line-height: 1.7; }

/* =========================================
   12. PLATFORM BENTO GRID (OS CARDS)
   ========================================= */
.platform-bento-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.os-card { display: flex; flex-direction: column; padding: 32px; z-index: 1; }
.hover-lift { transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.4s ease; }
.hover-lift:hover { transform: translateY(-10px); border-color: rgba(255,255,255,0.2); }
.card-glow-bg { position: absolute; top: 0; left: 0; width: 100%; height: 150px; opacity: 0.1; z-index: -1; filter: blur(30px); border-radius: var(--radius-lg) var(--radius-lg) 0 0; transition: opacity 0.4s; }
.os-card:hover .card-glow-bg { opacity: 0.2; }
.bg-primary-glow { background: var(--primary); } .bg-purple-glow { background: var(--purple); } .bg-accent-glow { background: var(--accent); } .bg-success-glow { background: var(--success); }

.os-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }
.os-icon { font-size: 32px; width: 64px; height: 64px; border-radius: 16px; display: flex; justify-content: center; align-items: center; }
.status-badge { font-size: 10px; font-weight: 800; padding: 4px 10px; border-radius: var(--radius-pill); letter-spacing: 1px; }
.pulse-live { background: rgba(var(--primary-rgb), 0.15); color: var(--primary); border: 1px solid rgba(var(--primary-rgb), 0.3); animation: border-pulse 2s infinite; }
.new-badge { background: rgba(var(--purple-rgb), 0.15); color: #c4b5fd; border: 1px solid rgba(var(--purple-rgb), 0.3); }
.hot-badge { background: rgba(var(--danger-rgb), 0.15); color: #fca5a5; border: 1px solid rgba(var(--danger-rgb), 0.3); }

.os-title { font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.os-desc { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; min-height: 44px; }
.os-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; flex: 1; }
.os-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #d1d5db; }
.check-icon { width: 18px; height: 18px; stroke: var(--primary); flex-shrink: 0; }
.purple-check { stroke: #a78bfa; } .accent-check { stroke: var(--danger); } .success-check { stroke: var(--success); }

.os-footer { margin-top: auto; padding-top: 24px; border-color: var(--glass-border); }
.price-block { margin-bottom: 20px; }
.price-strikethrough { text-decoration: line-through; color: #6b7280; font-size: 14px; margin-right: 8px; }
.price-current { font-size: 32px; font-weight: 800; color: var(--text-main); }
.price-period { font-size: 14px; font-weight: 400; color: var(--text-muted); margin-left: 4px; }
.wizard-prompt { padding: 40px; margin-top: 40px; background: rgba(255,255,255,0.02); }
.wizard-title { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.wizard-desc { color: var(--text-muted); margin-bottom: 24px; }

@keyframes border-pulse { 0% { box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.4); } 70% { box-shadow: 0 0 0 10px rgba(var(--primary-rgb), 0); } 100% { box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0); } }

/* =========================================
   13. CORE FEATURES BENTO GRID
   ========================================= */
.bento-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(180px, auto); gap: 20px; }
.bento-feat { padding: 30px; transition: transform 0.3s, border-color 0.3s; display: flex; flex-direction: column; }
.bento-feat:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.03); }
.col-span-2 { grid-column: span 2; }
.row-span-2 { grid-row: span 2; }
.feat-icon-large { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.bg-gradient-primary { background: linear-gradient(135deg, var(--primary), var(--accent)); box-shadow: var(--shadow-glow-primary); }
.feat-title-large { font-size: 28px; font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.feat-desc-large { font-size: 16px; color: var(--text-muted); line-height: 1.7; }
.feat-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border); }
.bento-feat h4 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.bento-feat p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.feat-flex-content { display: flex; align-items: center; gap: 24px; height: 100%; }

/* =========================================
   14. AI SECTION & TERMINAL MOCKUP
   ========================================= */
.grid-2-col { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.ai-benefits { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.ai-benefits li { display: flex; align-items: center; gap: 12px; font-size: 16px; font-weight: 500; }
.glass-terminal { border-radius: var(--radius-lg); border: 1px solid var(--glass-border-strong); background: rgba(0, 0, 0, 0.4); backdrop-filter: blur(20px); overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1); }
.status-indicator { margin-left: auto; display: flex; align-items: center; gap: 8px; font-size: 11px; font-family: monospace; color: var(--success); text-transform: uppercase; }
.pulse-dot { width: 6px; height: 6px; background: var(--success); border-radius: 50%; animation: blink 1s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.chat-body { height: 400px; padding: 24px; overflow-y: auto; display: flex; flex-direction: column; gap: 20px; }
.chat-bubble { display: flex; max-width: 85%; animation: slideInUp 0.4s ease; }
.user-bubble { align-self: flex-end; justify-content: flex-end; }
.user-bubble p { background: rgba(var(--primary-rgb), 0.15); border: 1px solid rgba(var(--primary-rgb), 0.3); padding: 12px 16px; border-radius: 16px 16px 0 16px; font-size: 14px; color: var(--text-main); }
.system-bubble { align-self: flex-start; gap: 12px; }
.bubble-avatar { width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0; background: rgba(255,255,255,0.05); }
.bubble-content { background: var(--surface-2); border: 1px solid var(--glass-border); padding: 16px; border-radius: 0 16px 16px 16px; font-size: 14px; color: #d1d5db; line-height: 1.6; }
.text-primary { color: var(--primary); font-weight: 600; } .text-accent { color: var(--danger); font-weight: 600; }
.text-gray { color: var(--text-muted); } .text-sm { font-size: 13px; } .text-xs { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; display: block; }
.action-card { background: rgba(0,0,0,0.3); border-color: rgba(255,255,255,0.05); }
.btn-sm { padding: 6px 12px; font-size: 12px; border-radius: 6px; margin-top: 10px; }
.chat-input-area { padding: 16px; display: flex; gap: 12px; background: rgba(0,0,0,0.2); }
.glass-input { flex: 1; background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border); padding: 12px 20px; border-radius: var(--radius-pill); color: white; font-family: 'Outfit', sans-serif; font-size: 14px; transition: all 0.3s; }
.glass-input:focus { border-color: rgba(var(--primary-rgb), 0.5); box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.1); outline: none; }
.icon-btn { width: 44px; height: 44px; padding: 0; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border-radius: 50%; }

/* =========================================
   15. GAMIFIED LEADERBOARD
   ========================================= */
.leaderboard-glass-container { overflow: hidden; padding: 0; }
.lb-header { padding: 30px; text-align: center; background: rgba(255,255,255,0.02); }
.lb-title { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.lb-subtitle { color: var(--text-muted); font-size: 14px; }
.lb-row { display: flex; align-items: center; gap: 20px; padding: 20px 30px; border-radius: 0; border: none; border-bottom: 1px solid var(--glass-border); background: transparent; transition: background 0.2s; }
.lb-row:hover { background: rgba(255,255,255,0.03); }
.lb-row:last-child { border-bottom: none; }
.rank-1 { background: linear-gradient(90deg, rgba(var(--primary-rgb), 0.1) 0%, transparent 100%); }
.rank-2 { background: linear-gradient(90deg, rgba(209, 213, 219, 0.05) 0%, transparent 100%); }
.rank-3 { background: linear-gradient(90deg, rgba(180, 83, 9, 0.05) 0%, transparent 100%); }
.lb-rank { font-size: 24px; font-weight: 800; width: 40px; text-align: center; }
.lb-avatar { width: 48px; height: 48px; font-size: 24px; border-radius: 12px; background: rgba(255,255,255,0.05); }
.lb-details { flex: 1; }
.lb-org { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.lb-meta { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; }
.dot-separator { display: inline-block; width: 4px; height: 4px; background: var(--glass-border-strong); border-radius: 50%; margin: 0 8px; }
.lb-score { font-size: 14px; font-weight: 800; font-family: 'Space Grotesk', sans-serif; padding: 6px 12px; border-radius: 8px; background: rgba(0,0,0,0.3); }
.badge-gold { color: var(--primary); border: 1px solid rgba(var(--primary-rgb), 0.3); text-shadow: 0 0 10px rgba(var(--primary-rgb), 0.5); }
.badge-silver { color: #d1d5db; border: 1px solid rgba(209, 213, 219, 0.3); }
.badge-bronze { color: #d97706; border: 1px solid rgba(217, 119, 6, 0.3); }
.lb-footer { padding: 20px; background: rgba(255,255,255,0.01); }
.link-hover { transition: color 0.2s; } .link-hover:hover { color: var(--accent); }

/* =========================================
   16. FAQ ACCORDION
   ========================================= */
.faq-accordion { display: flex; flex-direction: column; gap: 16px; }
.faq-item { padding: 0; transition: border-color 0.3s, box-shadow 0.3s; }
.faq-item.active { border-color: rgba(var(--primary-rgb), 0.5); box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.1); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 24px; color: var(--text-main); text-align: left; transition: background 0.3s; }
.faq-question:hover { background: rgba(255,255,255,0.02); }
.faq-q-content { display: flex; flex-direction: column; gap: 8px; }
.faq-tag { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--primary); }
.faq-text { font-size: 16px; font-weight: 600; font-family: 'Space Grotesk', sans-serif; }
.faq-toggle-icon { transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); color: var(--text-muted); }
.faq-item.active .faq-toggle-icon { transform: rotate(180deg); color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; }
.faq-answer-inner { padding: 0 24px 24px; font-size: 15px; line-height: 1.7; }

/* =========================================
   17. MASSIVE BOTTOM CTA
   ========================================= */
.cta-section { padding: 150px 0; overflow: hidden; }
.cta-glow-bg { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80vw; height: 80vw; max-width: 800px; max-height: 800px; background: radial-gradient(circle, rgba(var(--primary-rgb), 0.08) 0%, transparent 70%); z-index: -1; pointer-events: none; }
.massive-title { font-size: clamp(3rem, 6vw, 5rem); font-weight: 800; line-height: 1.05; margin: 24px 0; letter-spacing: -1.5px; }
.cta-subtitle { font-size: 20px; color: var(--text-muted); max-width: 700px; margin: 0 auto; line-height: 1.6; }
.cta-micro-text { font-size: 13px; font-weight: 500; letter-spacing: 0.5px; }

/* =========================================
   18. FOOTER
   ========================================= */
.footer { padding: 80px 0 40px; background: rgba(5,5,5,0.9); position: relative; z-index: 10; }
.footer-bento-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo { font-size: 32px; }
.footer-bio { font-size: 15px; line-height: 1.7; max-width: 320px; }
.social-links { display: flex; gap: 12px; }
.social-btn { width: 44px; height: 44px; border-radius: 12px; color: var(--text-muted); transition: all 0.3s; }
.social-btn:hover { color: var(--primary); border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-glow-primary); background: rgba(var(--primary-rgb), 0.1); }
.footer-heading { font-size: 16px; font-weight: 700; margin-bottom: 24px; font-family: 'Space Grotesk', sans-serif; }
.footer-links-col ul { display: flex; flex-direction: column; gap: 16px; }
.footer-links-col a { color: var(--text-muted); font-size: 14px; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; }
.tiny-badge { font-size: 9px; padding: 2px 6px; border-radius: 4px; font-weight: 800; text-transform: uppercase; }
.badge-new { background: rgba(var(--primary-rgb), 0.2); color: var(--primary); border: 1px solid rgba(var(--primary-rgb), 0.3); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; } .status-dot.success { background: var(--success); box-shadow: 0 0 8px var(--success); }

/* =========================================
   19. UTILITY COMPONENTS (TOASTS, POPUPS)
   ========================================= */
.toast-container { position: fixed; bottom: 30px; right: 30px; z-index: 99999; display: flex; flex-direction: column; gap: 12px; pointer-events: none; }
.glass-popup { background: rgba(15,17,21,0.85); backdrop-filter: blur(20px); border: 1px solid var(--glass-border-strong); border-radius: var(--radius-md); padding: 20px; color: white; font-size: 14px; box-shadow: var(--shadow-glass); pointer-events: auto; transform: translateY(20px); opacity: 0; transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.glass-popup:not(.hidden) { transform: translateY(0); opacity: 1; }

/* =========================================
   20. DASHBOARD LAYOUT (PRESERVED & ENHANCED)
   ========================================= */
.dashboard-body { display: flex; height: 100vh; overflow: hidden; background: var(--bg-color); color: var(--text-main); }
.sidebar { width: 280px; background: rgba(10, 10, 10, 0.8); backdrop-filter: blur(20px); border-right: 1px solid var(--glass-border); display: flex; flex-direction: column; z-index: 100; transition: all 0.3s; }
.sidebar-header { height: 80px; padding: 0 24px; border-bottom: 1px solid var(--glass-border); display: flex; align-items: center; }
.sidebar-nav { padding: 24px 16px; flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 8px; }
.nav-group { margin-bottom: 24px; }
.nav-group-title { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; padding: 0 16px; margin-bottom: 12px; font-weight: 800; font-family: 'Space Grotesk', sans-serif; }
.sidebar-link { display: flex; align-items: center; gap: 16px; padding: 12px 16px; color: var(--text-muted); border-radius: 12px; font-size: 14px; font-weight: 600; transition: all 0.2s; }
.sidebar-link:hover, .sidebar-link.active { background: rgba(255,255,255,0.05); color: var(--text-main); }
.sidebar-link.active { border-left: 3px solid var(--primary); background: rgba(var(--primary-rgb), 0.1); color: var(--primary); }
.main-wrapper { flex: 1; display: flex; flex-direction: column; min-width: 0; position: relative; }
.topbar { height: 80px; background: rgba(10, 10, 10, 0.6); backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: space-between; padding: 0 40px; z-index: 90; }
.topbar-search input { background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border); padding: 12px 20px 12px 48px; border-radius: var(--radius-pill); color: white; width: 350px; font-size: 14px; transition: all 0.3s; }
.topbar-search input:focus { border-color: rgba(var(--primary-rgb), 0.5); box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.1); }
.dashboard-content { flex: 1; padding: 40px; overflow-y: auto; }
.dash-header h1 { font-size: 32px; font-weight: 800; font-family: 'Space Grotesk', sans-serif; }
.dash-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-bottom: 40px; }
.dash-card { background: rgba(255,255,255,0.02); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); padding: 24px; transition: transform 0.3s; }
.dash-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.1); background: rgba(255,255,255,0.04); }
.dash-card-value { font-size: 36px; font-weight: 800; margin: 12px 0; font-family: 'Space Grotesk', sans-serif; }
.dash-panel { background: rgba(255,255,255,0.02); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); padding: 32px; }
.dash-table-wrap { overflow-x: auto; background: transparent; border: 1px solid var(--glass-border); border-radius: var(--radius-md); }
.dash-table th { padding: 16px 24px; color: var(--text-muted); font-size: 12px; font-weight: 700; background: rgba(255,255,255,0.02); border-bottom: 1px solid var(--glass-border); }
.dash-table td { padding: 16px 24px; font-size: 14px; border-bottom: 1px solid var(--glass-border); }

/* =========================================
   21. AUTH FORMS (LOGIN / SIGNUP)
   ========================================= */
.auth-container { max-width: 440px; margin: 80px auto; background: rgba(15,17,21,0.6); backdrop-filter: blur(24px); border: 1px solid var(--glass-border-strong); border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow-glass); position: relative; z-index: 10; }
.auth-header h2 { font-size: 32px; font-weight: 800; font-family: 'Space Grotesk', sans-serif; letter-spacing: -1px; }
.form-group label { color: var(--text-muted); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.form-control { background: rgba(0,0,0,0.3); border: 1px solid var(--glass-border); color: white; padding: 16px 20px; border-radius: var(--radius-sm); font-size: 15px; transition: all 0.3s; }
.form-control:focus { border-color: var(--primary); box-shadow: var(--shadow-glow-primary); background: rgba(0,0,0,0.5); }
.btn-block { width: 100%; justify-content: center; margin-top: 24px; }

/* =========================================
   22. RESPONSIVE ENGINE (MEDIA QUERIES)
   ========================================= */
@media (max-width: 1200px) {
    .bento-features-grid { grid-template-columns: repeat(3, 1fr); }
    .col-span-2 { grid-column: span 3; }
    .footer-bento-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .hero-text-cell { grid-column: span 1; grid-row: auto; text-align: center; padding: 20px; }
    .hero-subtitle { margin: 0 auto 32px; }
    .cta-group { justify-content: center; }
    .stats-cell { grid-column: span 1; }
    .float-card-cell { grid-column: span 1; }
    .grid-2-col { grid-template-columns: 1fr; gap: 40px; }
    .ai-text-content { text-align: center; }
    .section-desc.text-left { text-align: center; }
    .ai-benefits { align-items: center; }
    .flex-gap { justify-content: center; }
    .bento-features-grid { grid-template-columns: repeat(2, 1fr); }
    .col-span-2 { grid-column: span 2; }
}

@media (max-width: 768px) {
    :root { --nav-height: 70px; }
    .navbar { padding: 16px 0; }
    .nav-links, .nav-actions .btn-primary, .nav-actions .btn-ghost { display: none; }
    .menu-toggle { display: flex; }
    .section { padding: 80px 0; }
    .bento-cell { padding: 24px; }
    .stats-bento-grid { grid-template-columns: 1fr; }
    .advanced-timeline { padding-left: 20px; }
    .timeline-line { left: 10px; }
    .timeline-step { padding: 20px 10px 20px 40px; gap: 20px; }
    .step-indicator { width: 40px; height: 40px; min-width: 40px; font-size: 14px; position: absolute; left: -10px; top: 20px; }
    .bento-features-grid { grid-template-columns: 1fr; }
    .col-span-2 { grid-column: span 1; }
    .row-span-2 { grid-row: span 1; }
    .footer-bento-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-brand-col { text-align: center; }
    .footer-bio { margin: 16px auto 0; }
    .social-links { justify-content: center; }
    .chat-bubble { max-width: 95%; }
    .lb-row { flex-direction: column; text-align: center; gap: 12px; }
    .cta-section { padding: 100px 0; }
    
    /* Mobile Dashboard */
    .dashboard-body { flex-direction: column; }
    .sidebar { position: fixed; transform: translateX(-100%); width: 100%; height: 100vh; }
    .sidebar.active { transform: translateX(0); }
    .topbar { padding: 0 20px; }
    .dashboard-content { padding: 20px; }
    .dash-grid { grid-template-columns: 1fr; }
}

/* =========================================
   23. SEASONAL THEME & PARTICLE ENGINE
   ========================================= */

/* Winter / Dec-Feb */
body.season-winter, body.season-december, body.season-january, body.season-february {
    --primary: #a5d8ff; --primary-rgb: 165, 216, 255;
    --accent: #74c0fc; --accent-rgb: 116, 192, 252;
}

/* Spring / Mar-Apr */
body.season-march, body.season-april {
    --primary: #ffd43b; --primary-rgb: 255, 212, 59;
    --accent: #fcc419; --accent-rgb: 252, 196, 25;
}

/* Summer / May */
body.season-may {
    --primary: #ffa94d; --primary-rgb: 255, 169, 77;
    --accent: #ff922b; --accent-rgb: 255, 146, 43;
}

/* Monsoon / Jun-Aug */
body.season-monsoon, body.season-june, body.season-july, body.season-august {
    --primary: #38d9a9; --primary-rgb: 56, 217, 169;
    --accent: #20c997; --accent-rgb: 32, 201, 151;
}

/* Autumn / Sep-Nov */
body.season-autumn, body.season-september, body.season-october, body.season-november {
    --primary: #ff922b; --primary-rgb: 255, 146, 43;
    --accent: #e8590c; --accent-rgb: 232, 89, 12;
}

/* Particle Animations */
.snowflake { position: absolute; top: -10px; border-radius: 50%; background: rgba(255,255,255,0.8); animation: fall linear infinite; pointer-events: none; }
.raindrop { position: absolute; top: -20px; width: 2px; height: 20px; background: rgba(174,214,241,0.5); animation: fall-fast linear infinite; pointer-events: none; }
.leaf { position: absolute; top: -20px; width: 12px; height: 12px; clip-path: polygon(50% 0%, 0% 100%, 100% 100%); animation: fall-sway ease-in infinite; pointer-events: none; }
.sun-glare { position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,193,7,0.06) 0%, transparent 70%); border-radius: 50%; animation: pulse-sun 4s ease-in-out infinite; pointer-events: none; }

@keyframes fall { from { transform: translateY(-10px); } to { transform: translateY(110vh); } }
@keyframes fall-fast { from { transform: translateY(-20px); } to { transform: translateY(110vh); } }
@keyframes fall-sway { 
    0% { transform: translateX(0) rotate(0deg); } 
    25% { transform: translateX(20px) rotate(15deg); } 
    75% { transform: translateX(-20px) rotate(-15deg); } 
    100% { transform: translateX(0) translateY(110vh) rotate(0deg); } 
}
@keyframes pulse-sun { 0%,100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.1); opacity: 1; } }