/* ============================================
   Lumavoid – Landing Page Styles
   Dark purple theme with 3D, parallax, glassmorphism
   ============================================ */

/* CSS Variables */
:root {
    --bg-primary: #06060b;
    --bg-secondary: #0c0c14;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-glass: rgba(255, 255, 255, 0.04);
    --border-glass: rgba(255, 255, 255, 0.07);
    
    --text-primary: #f0f0f5;
    --text-secondary: #9495a5;
    --text-muted: #5a5b6e;
    
    --accent-purple: #7B5CFA;
    --accent-purple-light: #A855F7;
    --accent-lavender: #c084fc;
    --accent-teal: #00D4AA;
    --accent-pink: #FF6B9D;
    --accent-orange: #FF9F43;
    --accent-blue: #4FACFE;
    --accent-green: #43E97B;
    --accent-gold: #e8b830;
    
    --gradient-primary: linear-gradient(135deg, #7B5CFA 0%, #A855F7 100%);
    --gradient-purple: linear-gradient(135deg, #7B5CFA, #9333EA);
    --gradient-lavender: linear-gradient(135deg, #c084fc, #e0b4ff);
    --gradient-gold: linear-gradient(135deg, #e8b830, #f0d060);
    --gradient-hero-bg: linear-gradient(135deg, rgba(123,92,250,0.15) 0%, rgba(168,85,247,0.08) 30%, transparent 60%);
    
    --shadow-glow: 0 0 60px rgba(123, 92, 250, 0.15);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 30px;
    
    --font-primary: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Sora', 'Manrope', sans-serif;
    --font-italic: 'Playfair Display', serif;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* Particle Canvas */
#particleCanvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Parallax Glow Orbs */
.parallax-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(130px);
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}
.parallax-glow--1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(123,92,250,0.2), transparent 70%);
    top: -200px; left: -200px;
    animation: glowDrift 12s ease-in-out infinite;
}
.parallax-glow--2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(168,85,247,0.12), transparent 70%);
    bottom: -100px; right: -100px;
    animation: glowDrift 15s ease-in-out infinite reverse;
}
.parallax-glow--3 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(232,184,48,0.08), transparent 70%);
    top: 50%; left: 30%;
    animation: glowDrift 10s ease-in-out infinite 3s;
}
@keyframes glowDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-15px, 15px) scale(0.95); }
}

/* Scroll Reveal Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Shared Utilities */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.italic-accent {
    font-family: var(--font-italic);
    font-style: italic;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(123,92,250,0.1);
    border: 1px solid rgba(123,92,250,0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-purple);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}
.section-tag--glow {
    box-shadow: 0 0 20px rgba(123,92,250,0.15);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-primary);
}
.btn--primary {
    background: rgba(123, 92, 250, 0.1);
    color: #fff;
    border: 1px solid rgba(123, 92, 250, 0.4);
    box-shadow: inset 0 0 20px rgba(123, 92, 250, 0.1), 0 0 20px rgba(123, 92, 250, 0.2);
    backdrop-filter: blur(10px);
}
.btn--primary:hover {
    background: rgba(123, 92, 250, 0.2);
    border-color: rgba(168, 85, 247, 0.8);
    box-shadow: inset 0 0 20px rgba(123, 92, 250, 0.3), 0 0 30px rgba(123, 92, 250, 0.5);
    transform: translateY(-3px);
}
.btn__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px; height: 24px;
    background: #fff;
    color: var(--bg-primary);
    border-radius: 50%;
    font-size: 0.9rem;
    transition: var(--transition);
}
.btn:hover .btn__icon {
    transform: translateX(3px) scale(1.05);
}
.btn--large {
    padding: 16px 36px;
    font-size: 1.05rem;
}
.btn--glass {
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
}
.btn--glass:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 20px; left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1200px;
    z-index: 1000;
    padding: 12px 24px;
    border-radius: 100px;
    background: rgba(12, 12, 20, 0.4);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}
.nav--scrolled {
    background: rgba(12, 12, 20, 0.8);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.nav__logo-icon { width: 36px; height: 36px; }

.nav__links {
    display: flex;
    gap: 32px;
}
.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
    transition: var(--transition);
}
.nav__link:hover { color: var(--text-primary); }
.nav__link:hover::after { width: 100%; }

.nav__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.nav__login {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
}
.nav__login:hover { color: var(--text-primary); }

.btn--nav {
    padding: 10px 22px;
    font-size: 0.85rem;
    gap: 6px;
}
.btn--mobile-only {
    display: none;
}

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav__burger span {
    width: 22px; height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 24px 40px;
    overflow: hidden;
    z-index: 1;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--gradient-hero-bg);
    pointer-events: none;
}
.hero__container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}
.hero__content { position: relative; z-index: 2; }

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-lavender);
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}
.hero__badge-dot {
    width: 8px; height: 8px;
    background: var(--accent-purple-light);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(168,85,247,0.5); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(168,85,247,0); }
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}
.hero__title-line { display: block; }
.hero__title-italic {
    font-family: var(--font-italic);
    font-style: italic;
    color: var(--accent-lavender);
}
.hero__title-line--gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 36px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero Orbit Visual */
.hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 800px;
    min-height: 420px;
    position: relative;
}
.hero__orbit {
    position: relative;
    width: 420px;
    height: 420px;
    margin-top: 40px;
}

/* Orbit Rings */
.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(123,92,250,0.12);
}
.orbit-ring--1 {
    width: 280px; height: 280px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.orbit-ring--2 {
    width: 360px; height: 360px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-color: rgba(123,92,250,0.08);
}
.orbit-ring--3 {
    width: 420px; height: 420px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-color: rgba(123,92,250,0.04);
}

/* Orbit Center */
.orbit-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
}
.orbit-center__number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}
.orbit-center__suffix {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
}
.orbit-center__label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 4px;
    font-weight: 500;
}

/* Floating Orbit Avatars */
.orbit-avatar {
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    animation: orbitSpin 20s linear infinite;
    animation-delay: var(--delay, 0s);
    z-index: 3;
}
.orbit-avatar__img {
    position: absolute;
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 30px rgba(123,92,250,0.15);
    border: 2px solid rgba(255,255,255,0.15);
    animation: orbitCounterSpin 20s linear infinite;
    animation-delay: var(--delay, 0s);
    transform: translate(-50%, -50%) translateX(var(--orbit-radius, 140px));
    will-change: transform;
}
.orbit-avatar__img--icon {
    font-size: 1.2rem;
    border: 2px solid rgba(123,92,250,0.3);
}
.orbit-avatar__img--icon i { color: var(--accent-lavender); }

/* Slightly different positioning via rotation start */
.orbit-avatar--1 { transform: rotate(30deg); }
.orbit-avatar--2 { transform: rotate(150deg); }
.orbit-avatar--3 { transform: rotate(270deg); }
.orbit-avatar--4 { transform: rotate(80deg); }
.orbit-avatar--5 { transform: rotate(200deg); }
.orbit-avatar--6 { transform: rotate(320deg); }

@keyframes orbitSpin {
    from { transform: rotate(var(--start-angle, 0deg)); }
    to { transform: rotate(calc(var(--start-angle, 0deg) + 360deg)); }
}
@keyframes orbitCounterSpin {
    from { transform: translate(-50%, -50%) translateX(var(--orbit-radius, 140px)) rotate(calc(-1 * var(--start-angle, 0deg))); }
    to { transform: translate(-50%, -50%) translateX(var(--orbit-radius, 140px)) rotate(calc(-1 * var(--start-angle, 0deg) - 360deg)); }
}

/* Partners Strip */
.hero__partners {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 60px auto 0;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-glass);
}
.hero__partners-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}
.hero__partners-logos {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.partner-logo {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    opacity: 0.5;
    transition: var(--transition);
}
.partner-logo:hover { opacity: 1; color: var(--text-secondary); }

/* ========== FEATURES – BENTO GRID ========== */
.features {
    position: relative;
    padding: 120px 24px;
    z-index: 1;
}
.features__container {
    max-width: 1100px;
    margin: 0 auto;
}
.features__header {
    text-align: center;
    margin-bottom: 64px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.bento-card {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    cursor: default;
    transform-style: preserve-3d;
    will-change: transform;
    min-height: 180px;
}
.bento-card:hover {
    transform: translateY(-4px) perspective(800px) rotateX(0deg) rotateY(0deg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.bento-card--purple {
    background: linear-gradient(145deg, #5b3fbf 0%, #7B5CFA 100%);
    color: #fff;
}
.bento-card--lavender {
    background: linear-gradient(145deg, #c084fc 0%, #e0b4ff 100%);
    color: #1a1a2e;
}
.bento-card--gold {
    background: linear-gradient(145deg, #e8b830 0%, #f0d060 100%);
    color: #1a1a2e;
}
.bento-card--dark {
    background: linear-gradient(145deg, #0c0c14 0%, #14142a 100%);
    border: 1px solid rgba(123,92,250,0.15);
    color: var(--text-primary);
}
.bento-card--wide {
    grid-column: span 2;
}
.bento-card--glass {
    background: rgba(123,92,250,0.08);
    border: 1px solid rgba(123,92,250,0.18);
    backdrop-filter: blur(20px);
}
.bento-card--outline {
    background: rgba(232,184,48,0.05);
    border: 1px solid rgba(232,184,48,0.2);
}

.bento-card__icon {
    width: 50px; height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}
.bento-card--purple .bento-card__icon,
.bento-card--lavender .bento-card__icon,
.bento-card--gold .bento-card__icon {
    background: rgba(255,255,255,0.2);
}
.bento-card--dark .bento-card__icon,
.bento-card--glass .bento-card__icon,
.bento-card--outline .bento-card__icon {
    background: rgba(123,92,250,0.15);
    color: var(--accent-lavender);
}

.bento-card__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}
.bento-card__title em {
    font-family: var(--font-italic);
    font-style: italic;
    font-weight: 500;
}
.bento-card--lavender .bento-card__title em,
.bento-card--gold .bento-card__title em {
    color: inherit;
}

.bento-card__desc {
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.85;
}

/* Bento Card Decorations */
.bento-card__decoration {
    position: absolute;
    pointer-events: none;
}
.bento-card__decoration--circles {
    right: -20px; top: -20px;
    width: 120px; height: 120px;
    border: 3px solid rgba(255,255,255,0.15);
    border-radius: 50%;
}
.bento-card__decoration--circles::after {
    content: '';
    position: absolute;
    right: 15px; top: 15px;
    width: 80px; height: 80px;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 50%;
}
.bento-card__decoration--clouds {
    right: 20px; top: 20px;
    width: 60px; height: 40px;
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
}
.bento-card__decoration--clouds::before {
    content: '';
    position: absolute;
    right: -10px; bottom: -15px;
    width: 40px; height: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
}
.bento-card__decoration--dots {
    right: 15px; top: 15px;
    width: 60px; height: 60px;
    background: radial-gradient(circle 3px, rgba(26,26,46,0.2) 100%, transparent 100%);
    background-size: 10px 10px;
}

.bento-card__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.bento-tag {
    padding: 5px 14px;
    background: rgba(123,92,250,0.12);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent-lavender);
}

/* ========== REVIEWS – MARQUEE ========== */
.reviews {
    position: relative;
    padding: 120px 0;
    z-index: 1;
    overflow: hidden;
}
.reviews__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.reviews__header {
    text-align: center;
    margin-bottom: 60px;
}

.marquee {
    overflow: hidden;
    padding: 10px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.marquee + .marquee {
    margin-top: 20px;
}

.marquee__track {
    display: flex;
    gap: 20px;
    width: max-content;
}
.marquee--left .marquee__track {
    animation: marqueeLeft 40s linear infinite;
}
.marquee--right .marquee__track {
    animation: marqueeRight 40s linear infinite;
}
@keyframes marqueeLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes marqueeRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
.marquee:hover .marquee__track {
    animation-play-state: paused;
}

.review-card {
    flex-shrink: 0;
    width: 350px;
    padding: 28px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}
.review-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(123,92,250,0.2);
    box-shadow: 0 8px 30px rgba(123,92,250,0.1);
}
.review-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.review-card__avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    flex-shrink: 0;
}
.review-card__name {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
}
.review-card__handle {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.review-card__text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ========== TOOLS TIMELINE ========== */
.tools {
    position: relative;
    padding: 120px 24px;
    z-index: 1;
}
.tools__container {
    max-width: 800px;
    margin: 0 auto;
}
.tools__header {
    text-align: center;
    margin-bottom: 64px;
}
.tools__timeline {
    position: relative;
    padding: 20px 0;
}
.tools__line {
    position: absolute;
    left: 50%; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-purple), var(--accent-lavender), transparent);
    opacity: 0.3;
    transform: translateX(-50%);
}
.tools__item {
    position: relative;
    width: 45%;
    margin-bottom: 60px;
}
.tools__item--right { margin-left: auto; }

.tools__dot {
    position: absolute;
    width: 14px; height: 14px;
    background: var(--accent-purple);
    border-radius: 50%;
    top: 24px;
    box-shadow: 0 0 20px rgba(123,92,250,0.4);
}
.tools__item:not(.tools__item--right) .tools__dot {
    right: -7%;
    transform: translateX(50%);
}
.tools__item--right .tools__dot {
    left: -7%;
    transform: translateX(-50%);
}

.glass-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
}
.glass-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}

.tools__step {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
    display: block;
    margin-bottom: 8px;
}
.tools__content h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.tools__content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========== STATS ========== */
.stats {
    position: relative;
    padding: 60px 24px 100px;
    z-index: 1;
}
.stats__container {
    max-width: 1000px;
    margin: 0 auto;
}
.stats__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    padding: 40px 60px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(123,92,250,0.05);
    position: relative;
    overflow: hidden;
}
.stats__bar::before {
    content: '';
    position: absolute;
    top: -50px; left: 50%;
    transform: translateX(-50%);
    width: 300px; height: 100px;
    background: radial-gradient(ellipse, rgba(168,85,247,0.2), transparent 70%);
    pointer-events: none;
}
.stats__item {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 2;
}
.stats__divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent);
    position: relative;
    z-index: 2;
}
.stats__number {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    line-height: 1.1;
}
.stats__label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ========== CTA ========== */
.cta {
    position: relative;
    padding: 120px 24px;
    z-index: 1;
}
.cta__container {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 64px 40px;
    background: rgba(123,92,250,0.06);
    border: 1px solid rgba(123,92,250,0.15);
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.cta__glow {
    position: absolute;
    top: -50%; left: 50%;
    transform: translateX(-50%);
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(123,92,250,0.15), transparent);
    filter: blur(80px);
    pointer-events: none;
}
.cta__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    position: relative;
}
.cta__subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 32px;
    position: relative;
}

/* ========== FOOTER WITH BLACKHOLE ========== */
.footer {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: var(--bg-primary);
    padding-top: 150px;
}
.footer__video-wrap {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}
.footer__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    opacity: 0.8;
}
.footer__video-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom,
        var(--bg-primary) 0%,
        rgba(6,6,11,0.2) 20%,
        rgba(6,6,11,0.85) 60%,
        var(--bg-primary) 100%
    );
}
.footer__container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 30px;
}
.footer__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 40px;
}
.footer__brand { max-width: 300px; }
.footer__brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 16px;
    line-height: 1.6;
}

.footer__links {
    display: flex;
    gap: 60px;
}
.footer__col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer__col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
    margin-bottom: 4px;
}
.footer__col a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer__col a:hover { color: var(--text-primary); }
.footer__col a i { font-size: 1rem; }

.footer__bottom {
    border-top: 1px solid var(--border-glass);
    padding-top: 24px;
    text-align: center;
}
.footer__bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero__subtitle { margin-left: auto; margin-right: auto; }
    .hero__actions { justify-content: center; }
    .hero__orbit { width: 340px; height: 340px; }
    .orbit-ring--1 { width: 220px; height: 220px; }
    .orbit-ring--2 { width: 290px; height: 290px; }
    .orbit-ring--3 { width: 340px; height: 340px; }
    
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-card--wide { grid-column: span 2; }
}

@media (max-width: 768px) {
    .nav {
        top: 12px;
        width: calc(100% - 24px);
        padding: 10px 16px;
        border-radius: 50px;
    }
    .nav__links {
        display: none;
        position: fixed;
        top: 70px; left: 0; right: 0;
        background: rgba(12, 12, 20, 0.95);
        backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border-glass);
        border-radius: 0 0 20px 20px;
    }
    .nav__links.active { display: flex; }
    .nav__burger { display: flex; }
    .nav__actions { display: none; }
    .btn--mobile-only { display: inline-flex !important; margin-top: 10px; width: 100%; justify-content: center; }
    .btn--nav { padding: 8px 16px; font-size: 0.8rem; }
    
    .hero { padding-top: 120px; }
    .hero__visual { min-height: 340px; }
    .hero__orbit { width: 300px; height: 300px; margin-top: 20px; }
    .orbit-ring--1 { width: 180px; height: 180px; }
    .orbit-ring--2 { width: 230px; height: 230px; }
    .orbit-ring--3 { width: 300px; height: 300px; }
    .orbit-avatar__img { width: 38px; height: 38px; font-size: 0.8rem; }
    .orbit-center__number { font-size: 2.2rem; }

    .hero__partners { flex-direction: column; gap: 16px; text-align: center; }
    .hero__partners-logos { justify-content: center; gap: 24px; }
    
    .bento-grid { grid-template-columns: 1fr; }
    .bento-card { min-height: 160px; }
    .bento-card--wide { grid-column: span 1; }
    
    .stats__bar {
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px;
    }
    .stats__divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
    }
    
    .tools__line { left: 20px; }
    .tools__item,
    .tools__item--right {
        width: calc(100% - 50px);
        margin-left: 50px;
    }
    .tools__dot {
        left: -27px !important;
        right: auto !important;
        transform: translateX(-50%) !important;
    }
    
    .footer { padding-top: 60px; }
    .footer__top { flex-direction: column; }
    .footer__links { gap: 32px; flex-wrap: wrap; }
    .footer__container { padding-top: 100px; }
}

@media (max-width: 480px) {
    .nav { width: calc(100% - 16px); }
    .hero__title { font-size: 2rem; }
    .hero__visual { min-height: 280px; }
    .hero__orbit { width: 260px; height: 260px; }
    .orbit-ring--1 { width: 160px; height: 160px; }
    .orbit-ring--2 { width: 200px; height: 200px; }
    .orbit-ring--3 { width: 260px; height: 260px; }
    .orbit-center__number { font-size: 1.8rem; }
    .orbit-avatar__img { width: 32px; height: 32px; font-size: 0.7rem; }
    
    .stats__bar { padding: 30px 16px; }
    .cta__container { padding: 40px 24px; }
    .review-card { width: 280px; padding: 20px; }
    
    .footer__container { padding-top: 80px; }
}
