/* ==========================================================================
   PREMIUM TALKMIO STYLES
   ========================================================================== */
:root {
    /* Colors */
    --c-bg: #030014;
    --c-bg-surface: rgba(10, 10, 26, 0.6);
    --c-text-main: #f8fafc;
    --c-text-muted: #94a3b8;
    
    --c-primary: #6366f1;
    --c-primary-glow: rgba(99, 102, 241, 0.5);
    --c-secondary: #ec4899;
    
    --gradient-primary: linear-gradient(135deg, #6366f1, #a855f7);
    --gradient-secondary: linear-gradient(135deg, #ec4899, #f43f5e);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(12px);

    /* Fonts */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

/* Hide scrollbar globally */
::-webkit-scrollbar {
    display: none;
    width: 0;
    background: transparent;
}
html, body {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

body {
    background-color: var(--c-bg);
    color: var(--c-text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.text-gradient-primary {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-gradient-secondary {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
@media(max-width: 768px) { .title-h2 { font-size: 2.2rem; } }

/* Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

/* Cursor Glow & Noise */
.cursor-glow {
    position: fixed;
    top: 0; left: 0;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    transition: width 0.3s, height 0.3s, background 0.3s;
}

.noise-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: 2;
    opacity: 0.04;
    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.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Header */
.site-header {
    position: fixed;
    top: 0; width: 100%;
    z-index: 100;
    background: transparent;
    transition: all 0.4s ease;
    border-bottom: 1px solid transparent;
}
.site-header.scrolled {
    background: rgba(3, 0, 20, 0.7);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
}
.header-inner {
    max-width: 1400px; margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex; align-items: center; justify-content: space-between;
}
.header-logo {
    display: flex; align-items: center; gap: 0.8rem;
    font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700;
    color: #fff; text-decoration: none;
}
.header-nav { display: flex; gap: 2.5rem; }
.header-nav a {
    color: var(--c-text-muted); text-decoration: none;
    font-weight: 500; transition: color 0.3s;
    font-size: 0.95rem;
}
.header-nav a:hover { color: #fff; }

.header-cta {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.6rem 1.4rem; border-radius: 100px;
    color: #fff; text-decoration: none; font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    position: relative; overflow: hidden;
}
.header-cta:hover {
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 20px var(--c-primary-glow);
    border-color: rgba(255,255,255,0.2);
}

.mobile-toggle {
    display: none; background: transparent; border: none; cursor: pointer;
    flex-direction: column; gap: 6px; z-index: 101;
}
.mobile-toggle span {
    width: 28px; height: 2px; background: #fff; transition: 0.3s;
}
.mobile-toggle.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-toggle.is-active span:nth-child(2) { opacity: 0; }
.mobile-toggle.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media(max-width: 768px) {
    .header-nav, .header-cta { display: none; }
    .mobile-toggle { display: flex; }
}

.mobile-nav {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
    background: rgba(3,0,20,0.98); backdrop-filter: blur(20px);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 2rem; z-index: 90; transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-nav.is-open { right: 0; }
.mobile-nav a { font-size: 1.8rem; color: #fff; text-decoration: none; font-family: var(--font-heading); font-weight: 600;}

/* Buttons */
.btn-premium {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.8rem;
    padding: 1.2rem 2.5rem; border-radius: 100px;
    font-weight: 600; font-family: var(--font-heading); font-size: 1rem;
    text-decoration: none; cursor: pointer;
    transition: all 0.3s ease; position: relative;
    border: none;
}
.btn-glow {
    background: var(--gradient-primary); color: #fff;
    box-shadow: 0 10px 30px var(--c-primary-glow);
}
.btn-glow:hover { transform: translateY(-4px); box-shadow: 0 15px 40px rgba(168, 85, 247, 0.6); }
.btn-glass {
    background: var(--glass-bg); color: #fff; border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
}
.btn-glass:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); border-color: rgba(255,255,255,0.2); }
.btn-white {
    background: #fff; color: var(--c-bg);
}
.btn-white:hover { box-shadow: 0 10px 30px rgba(255,255,255,0.2); transform: translateY(-4px); }

.badge-glass {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 0.5rem 1.2rem; border-radius: 100px;
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur); font-size: 0.9rem; font-weight: 600;
    margin-bottom: 2rem; color: var(--c-text-main);
}
.live-dot {
    width: 8px; height: 8px; background: #10b981; border-radius: 50%;
}
.live-dot.pulse { animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); } 70% { box-shadow: 0 0 0 12px rgba(16, 185, 129, 0); } 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); } }

/* Hero Section */
.hero-premium {
    min-height: 100vh; position: relative;
    display: flex; align-items: center;
    padding-top: 120px; padding-bottom: 6rem; overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.shape { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.4; mix-blend-mode: screen; }
.shape-1 { width: 500px; height: 500px; background: var(--c-primary); top: -150px; right: -150px; animation: float 12s infinite ease-in-out; }
.shape-2 { width: 400px; height: 400px; background: var(--c-secondary); bottom: 50px; left: -100px; animation: float 15s infinite ease-in-out reverse; }
.shape-3 { width: 300px; height: 300px; background: #3b82f6; top: 30%; left: 30%; animation: float 10s infinite ease-in-out 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-40px) scale(1.1); }
}

.hero-container {
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center;
}
.hero-title { font-size: 5.5rem; margin-bottom: 1.5rem; letter-spacing: -0.03em; }
.hero-subtitle { font-size: 1.3rem; color: var(--c-text-muted); margin-bottom: 3rem; max-width: 90%; }
.hero-buttons { display: flex; gap: 1.2rem; flex-wrap: wrap; }

.hero-visual-3d {
    perspective: 1200px;
    position: relative;
}
.main-mockup {
    background: rgba(10, 10, 26, 0.4); border: 1px solid var(--glass-border);
    backdrop-filter: blur(24px); border-radius: 32px; padding: 2.5rem;
    transform: rotateY(-20deg) rotateX(10deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 30px 30px 80px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.1);
}
.hero-visual-3d:hover .main-mockup { transform: rotateY(-5deg) rotateX(2deg) translateY(-15px); }

.mockup-header { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 3rem; border-bottom: 1px solid var(--glass-border); padding-bottom: 1.5rem; }
.mockup-dots { display: flex; gap: 8px; }
.mockup-dots span { width: 12px; height: 12px; border-radius: 50%; background: #475569; }
.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #f59e0b; }
.mockup-dots span:nth-child(3) { background: #10b981; }
.mockup-title { font-weight: 700; font-size: 1.2rem; }

.voice-waves { display: flex; align-items: center; justify-content: center; gap: 6px; height: 120px; margin-bottom: 3rem; }
.wave { width: 8px; background: var(--gradient-primary); border-radius: 4px; animation: soundwave 0.8s ease-in-out infinite alternate; animation-delay: var(--delay); }
@keyframes soundwave { 0% { height: 15px; } 100% { height: 100px; } }

.active-speakers { display: flex; align-items: center; justify-content: center; }
.speaker { width: 64px; height: 64px; border-radius: 50%; background: #1e293b; border: 3px solid #030014; margin-left: -16px; overflow: hidden; position: relative; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }
.speaker:first-child { margin-left: 0; }
.speaker-1 { z-index: 3; background: linear-gradient(135deg, #fca5a5, #f87171); }
.speaker-2 { z-index: 2; background: linear-gradient(135deg, #93c5fd, #3b82f6); }
.speaker-3 { z-index: 1; background: linear-gradient(135deg, #a7f3d0, #10b981); }
.speaker-more { width: 64px; height: 64px; border-radius: 50%; background: var(--glass-bg); border: 1px solid var(--glass-border); backdrop-filter: var(--glass-blur); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; margin-left: -16px; z-index: 0; }

@media(max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; margin-top: 4rem; }
    .hero-title { font-size: 4rem; }
    .hero-subtitle { margin: 0 auto 2.5rem auto; }
    .hero-buttons { justify-content: center; }
    .main-mockup { transform: none !important; margin-top: 3rem; }
}
@media(max-width: 600px) {
    .hero-title { font-size: 3rem; }
    .btn-premium { width: 100%; }
}

/* Stats */
.stats-premium { padding: 5rem 0; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); background: rgba(255,255,255,0.01); backdrop-filter: blur(10px); }
.stats-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 3rem; }
.stat-box { text-align: center; }
.stat-number { font-size: 4.5rem; font-weight: 900; font-family: var(--font-heading); margin-bottom: 0.5rem; line-height: 1; }
.stat-label { color: var(--c-text-muted); font-weight: 600; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 2px; }

/* Features Bento Grid */
.features-premium { padding: 10rem 0; }
.text-center { text-align: center; }
.section-heading .subtitle { color: var(--c-text-muted); font-size: 1.25rem; max-width: 650px; margin: 0 auto; }
.section-heading { margin-bottom: 5rem; }

.bento-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: minmax(300px, auto); gap: 1.5rem;
}
.bento-item { position: relative; border-radius: 32px; background: var(--c-bg-surface); display: flex; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.bento-item:hover { transform: translateY(-8px); }
.bento-glass {
    position: relative; width: 100%; padding: 2.5rem;
    border: 1px solid var(--glass-border); border-radius: inherit;
    background: var(--glass-bg); backdrop-filter: blur(12px);
    display: flex; flex-direction: column; justify-content: flex-start;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); overflow: hidden;
}
.bento-item:hover .bento-glass { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.15); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.bento-icon { width: 60px; height: 60px; border-radius: 16px; background: var(--gradient-primary); margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 20px var(--c-primary-glow); flex-shrink: 0; }
.icon-circle { width: 28px; height: 28px; border: 3px solid #fff; border-radius: 50%; opacity: 0.9; }
.bento-title { font-size: 1.6rem; margin-bottom: 0.8rem; z-index: 1; font-weight: 700; }
.bento-desc { color: var(--c-text-muted); font-size: 1.05rem; z-index: 1; line-height: 1.6; }
.bento-hover-glow { position: absolute; inset: 0; background: radial-gradient(circle at 50% 120%, rgba(99,102,241,0.25), transparent 70%); opacity: 0; transition: opacity 0.5s; z-index: 0; pointer-events: none; }
.bento-item:hover .bento-hover-glow { opacity: 1; }

.bento-1 { grid-column: span 2; grid-row: span 1; }
.bento-2 { grid-column: span 1; grid-row: span 1; }
.bento-3 { grid-column: span 1; grid-row: span 1; }
.bento-4 { grid-column: span 2; grid-row: span 1; }
@media(max-width: 992px) {
    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .bento-item { grid-column: span 1 !important; grid-row: span 1 !important; min-height: 280px; }
}

/* Rooms */
.rooms-premium { padding: 10rem 0; position: relative; overflow: hidden; }
.text-left { text-align: left; }
.rooms-carousel-wrapper { margin-top: 4rem; overflow-x: auto; padding-bottom: 3rem; scrollbar-width: none; cursor: grab; margin-right: calc(-50vw + 50%); }
.rooms-carousel-wrapper:active { cursor: grabbing; }
.rooms-carousel-wrapper::-webkit-scrollbar { display: none; }
.rooms-track { display: flex; gap: 2.5rem; width: max-content; padding: 1rem; padding-right: calc(50vw - 50% + 2rem); }
.premium-room-card {
    width: 380px; padding: 2.5rem; border-radius: 32px;
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur); position: relative; overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s; flex-shrink: 0;
    white-space: normal;
}
.premium-room-card:hover { transform: translateY(-12px); border-color: rgba(168, 85, 247, 0.5); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.card-bg { position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(99,102,241,0.15), transparent 60%); opacity: 0; transition: 0.6s; pointer-events: none; }
.premium-room-card:hover .card-bg { opacity: 1; }
.room-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; position: relative; z-index: 1; }
.room-status { background: rgba(239, 68, 68, 0.15); color: #fca5a5; padding: 0.3rem 1rem; border-radius: 100px; font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; border: 1px solid rgba(239, 68, 68, 0.3); }
.room-users-count { display: flex; align-items: center; gap: 6px; color: var(--c-text-muted); font-weight: 600; font-size: 1rem; }
.room-title { font-size: 1.8rem; margin-bottom: 0.8rem; position: relative; z-index: 1; font-weight: 700; }
.room-topic { color: var(--c-text-muted); font-size: 1.05rem; margin-bottom: 2.5rem; position: relative; z-index: 1; line-height: 1.6; word-break: break-word; white-space: normal; }
.btn-join { width: 100%; padding: 1.2rem; background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); border-radius: 16px; color: #fff; font-weight: 600; font-size: 1.05rem; cursor: pointer; transition: 0.4s; position: relative; z-index: 1; }
.btn-join:hover { background: var(--c-primary); border-color: var(--c-primary); box-shadow: 0 10px 20px var(--c-primary-glow); }

/* CTA Section */
.cta-premium { padding: 4rem 0 10rem; }
.cta-glass-box {
    background: rgba(10, 10, 26, 0.5); border: 1px solid var(--glass-border);
    backdrop-filter: blur(30px); border-radius: 40px; padding: 6rem 3rem;
    text-align: center; position: relative; overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.cta-bg-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; height: 100%; background: radial-gradient(circle, rgba(236,72,153,0.15), transparent 70%); filter: blur(60px); pointer-events: none; }
.cta-glass-box h2 { font-size: 4.5rem; margin-bottom: 1.5rem; position: relative; z-index: 1; letter-spacing: -0.02em; }
.cta-glass-box p { font-size: 1.3rem; color: var(--c-text-muted); margin-bottom: 3.5rem; max-width: 600px; margin-inline: auto; position: relative; z-index: 1; }
@media(max-width: 768px) { .cta-glass-box h2 { font-size: 3rem; } .cta-glass-box { padding: 4rem 1.5rem; } }

/* Footer */
.site-footer { border-top: 1px solid var(--glass-border); padding: 5rem 0 3rem; background: #010008; position: relative; z-index: 10; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.footer-top { display: grid; grid-template-columns: 1.5fr 2fr; gap: 5rem; margin-bottom: 5rem; }
.footer-brand p { color: var(--c-text-muted); margin-top: 1.5rem; max-width: 350px; font-size: 1.05rem; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col strong { color: #fff; display: block; margin-bottom: 1.8rem; font-family: var(--font-heading); font-size: 1.1rem; }
.footer-col a { display: block; color: var(--c-text-muted); text-decoration: none; margin-bottom: 1rem; transition: 0.3s; font-size: 0.95rem; }
.footer-col a:hover { color: var(--c-primary); transform: translateX(5px); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--glass-border); padding-top: 2.5rem; color: var(--c-text-muted); font-size: 0.95rem; }
.back-to-top { color: #fff; text-decoration: none; font-weight: 600; display: flex; align-items: center; gap: 0.5rem; transition: 0.3s; }
.back-to-top:hover { color: var(--c-primary); }
@media(max-width: 768px) { .footer-top { grid-template-columns: 1fr; gap: 3rem; } .footer-links { grid-template-columns: repeat(2, 1fr); gap: 3rem; } .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; } }

/* Animations */
[data-animate] { opacity: 0; transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
[data-animate="fade-up"] { transform: translateY(50px); }
[data-animate="fade-right"] { transform: translateX(-50px); }
[data-animate="fade-left"] { transform: translateX(50px); }
[data-animate="zoom-in"] { transform: scale(0.92); }

[data-animate].is-visible { opacity: 1; transform: translate(0) scale(1); }

/* ==========================================================================
   AVAILABILITY MODAL (Premium Glassmorphism)
   ========================================================================== */
.availability-modal {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 9999; display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.availability-modal.is-visible { opacity: 1; pointer-events: auto; }
.availability-backdrop { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(2, 2, 8, 0.85); backdrop-filter: blur(12px); z-index: 1; }
.availability-dialog {
    position: relative; z-index: 2; background: rgba(20, 20, 35, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px); border-radius: 28px; padding: 3rem 2.5rem;
    width: 90%; max-width: 440px; text-align: center;
    transform: translateY(40px) scale(0.95); transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.availability-modal.is-visible .availability-dialog { transform: translateY(0) scale(1); }
.modal-close {
    position: absolute; top: 1.25rem; right: 1.25rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.05); border-radius: 50%;
    width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; color: var(--c-text-muted); cursor: pointer; transition: all 0.3s;
}
.modal-close:hover { background: rgba(255,255,255,0.1); color: #fff; transform: rotate(90deg); }

.modal-header-visual { position: relative; width: 80px; height: 80px; margin: 0 auto 2rem; display: flex; align-items: center; justify-content: center; }
.modal-pulse-ring { position: absolute; inset: 0; border-radius: 50%; background: rgba(168, 85, 247, 0.2); animation: pulse-ring 2.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; }
.modal-icon { position: relative; z-index: 2; width: 64px; height: 64px; border-radius: 50%; background: rgba(10, 10, 26, 0.8); border: 1px solid rgba(168, 85, 247, 0.4); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 20px rgba(168, 85, 247, 0.3); }
@keyframes pulse-ring { 0% { transform: scale(0.8); opacity: 1; } 100% { transform: scale(1.8); opacity: 0; } }

.section-tag-premium { display: inline-block; background: rgba(99, 102, 241, 0.15); color: var(--c-primary); padding: 0.4rem 1rem; border-radius: 100px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1.2rem; border: 1px solid rgba(99, 102, 241, 0.3); }
.modal-title { font-size: 1.7rem; font-family: var(--font-heading); color: #fff; margin-bottom: 1.2rem; line-height: 1.3; font-weight: 700; letter-spacing: -0.02em; }
.modal-text { color: var(--c-text-muted); font-size: 1.05rem; line-height: 1.6; margin-bottom: 2.5rem; }
.modal-footer { margin-top: 1rem; }
.modal-footer .btn { width: 100%; padding: 1.1rem; border-radius: 16px; font-size: 1.05rem; font-weight: 600; }
/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */
.page-shell {
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 100vh;
}
.legal-hero {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
    padding: 0 2rem;
}
.section-kicker {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}
.legal-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}
.legal-hero p {
    font-size: 1.25rem;
    color: var(--c-text-muted);
    margin-bottom: 1.5rem;
}
.legal-hero small {
    color: #64748b;
    font-size: 0.95rem;
}

.legal-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
}
.legal-toc {
    position: sticky;
    top: 120px;
    background: rgba(10, 10, 26, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: var(--glass-blur);
}
.legal-toc strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #fff;
}
.legal-toc a {
    display: block;
    color: var(--c-text-muted);
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s;
    font-size: 1.05rem;
}
.legal-toc a:last-child {
    border-bottom: none;
}
.legal-toc a:hover {
    color: var(--c-primary);
    padding-left: 0.5rem;
}

.legal-content article {
    margin-bottom: 4rem;
}
.legal-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--c-text-main);
}
.legal-content p {
    color: var(--c-text-muted);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

@media(max-width: 992px) {
    .legal-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .legal-toc {
        position: static;
    }
}

/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: rgba(15, 17, 35, 0.95);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 999;
    transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}
.cookie-banner.is-visible {
    bottom: 2rem;
}
.cookie-banner strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}
.cookie-banner p {
    color: var(--c-text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}
.cookie-banner a {
    color: var(--c-primary);
    text-decoration: underline;
}
.cookie-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}
.btn-sm {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 100px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    border: none;
}
.btn-primary {
    background: var(--gradient-primary); color: #fff;
    box-shadow: 0 10px 30px var(--c-primary-glow);
}
.btn-primary:hover {
    transform: translateY(-3px); box-shadow: 0 15px 40px rgba(168, 85, 247, 0.6);

