/* â”€â”€ Reset â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
section { scroll-margin-top: 90px; }

/* â”€â”€ Tokens (CYAN THEME) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
    --bg:       #080b12;
    --bg2:      #0d111c;
    --bg3:      #121826;
    --border:   rgba(14, 165, 233, 0.15);
    --border2:  rgba(14, 165, 233, 0.3);
    
    /* Cyber/Sky Blue Palette */
    --p400:     #38bdf8;
    --p500:     #0ea5e9;
    --p600:     #0284c7;
    --p700:     #0369a1;
    
    --muted:    #64748b;
    --sub:      #94a3b8;
    --text:     #f8fafc;
    --font:     'Manrope', system-ui, sans-serif;
    --mono:     'JetBrains Mono', monospace;
}

body {
    font-family: var(--font);
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(14, 165, 233, 0.35); border-radius: 3px; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* Gradient text - beautiful cyan/blue gradient */
.grad {
    background: linear-gradient(135deg, #7dd3fc 0%, #38bdf8 40%, #0284c7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--p400); /* Fallback */
    text-shadow: 0 0 25px rgba(56, 189, 248, 0.35); /* Performant glow */
}

/* Section label pill */
.pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px; border-radius: 100px;
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.2);
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
    color: var(--p400); text-transform: uppercase;
    margin-bottom: 24px;
}
.pill-dot { width: 6px; height: 6px; background: var(--p400); border-radius: 50%; }

/* â”€â”€ Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 32px; border-radius: 16px;
    font-weight: 700; font-size: 1rem; cursor: pointer;
    border: 1px solid transparent;
    transition: all 250ms cubic-bezier(0.2, 0, 0, 1);
}
.btn:hover { transform: translateY(-4px); box-shadow: 0 10px 20px -5px rgba(14, 165, 233, 0.3); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background: linear-gradient(135deg, var(--p500) 0%, var(--p600) 100%);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.1);
}
.btn-primary:hover { 
    background: linear-gradient(135deg, var(--p400) 0%, var(--p500) 100%);
    border-color: rgba(255,255,255,0.2);
}

.btn-ghost {
    background: rgba(13, 17, 28, 0.8);
    color: var(--text);
    border: 1px solid rgba(14, 165, 233, 0.25);
}
.btn-ghost:hover { 
    background: rgba(14, 165, 233, 0.1); 
    border-color: rgba(14, 165, 233, 0.5); 
}

/* â”€â”€ NAVBAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nav {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 999; padding: 18px 0;
    background: rgba(8,11,18,0.98);
    border-bottom: 1px solid transparent;
    transition: all 250ms ease;
}
.nav.scrolled { padding: 12px 0; background: rgba(8,11,18,0.95); border-bottom-color: var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-weight: 800; font-size: 1.15rem; letter-spacing: -0.02em;
}
.nav-logo img { width: 32px; height: 32px; border-radius: 8px; }
.nav-logo-dot {
    width: 8px; height: 8px; background: var(--p400); border-radius: 50%;
    margin-left: 2px; margin-bottom: 1px;
}

.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--muted); font-size: 0.9rem; font-weight: 500; transition: color 150ms; }
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); border-bottom: 2px solid var(--p500); padding-bottom: 4px; }

.nav-cta { display: flex; gap: 10px; align-items: center; }

.nav-invite {
    padding: 8px 18px; border-radius: 9px;
    background: linear-gradient(135deg, var(--p600), var(--p500));
    color: #fff; font-size: 0.87rem; font-weight: 600;
    transition: opacity 200ms;
}
.nav-invite:hover { opacity: 0.85; }

.hamburger { display: none; background: none; border: none; color: var(--text); font-size: 1.4rem; cursor: pointer; }

/* â”€â”€ HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
    position: relative; height: 100vh; min-height: 560px;
    display: flex; align-items: center; justify-content: center;
    padding: 80px 0 40px; overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute; top: -50px; left: -50px; right: -50px; bottom: -50px;
    background-image: radial-gradient(circle, rgba(14, 165, 233, 0.15) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    pointer-events: none;
    animation: gridSlide 15s linear infinite;
}
@keyframes gridSlide {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-28px, -28px); }
}

.ambient-orb {
    position: absolute; border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 65%);
    pointer-events: none; z-index: 0;
    will-change: transform;
}
.orb-1 {
    width: 800px; height: 800px; top: -200px; left: -200px;
    animation: floatOrb 12s ease-in-out infinite alternate;
}
.orb-2 {
    width: 700px; height: 700px; bottom: -150px; right: -150px;
    animation: floatOrb 18s ease-in-out infinite alternate-reverse;
}
@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, 40px) scale(1.05); }
}

.hero-glow {
    position: absolute; top: -5%; left: 50%;
    transform: translateX(-50%);
    width: 1000px; height: 700px;
    background: radial-gradient(ellipse at 50% 30%, rgba(2, 132, 199, 0.25) 0%, transparent 65%);
    pointer-events: none;
    will-change: opacity;
}

.hero-inner {
    position: relative; z-index: 1;
    display: flex; flex-direction: column;
    align-items: center; text-align: center;
    gap: 0;
}

.hero-heading {
    font-size: clamp(2.4rem, 5.5vw, 4.8rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
    max-width: 820px;
}

.hero-float {
    animation: heroFadeGlow 4s ease-in-out infinite;
}
@keyframes heroFadeGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.72; }
}

.hero-sub {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: var(--sub);
    max-width: 660px;
    line-height: 1.65;
    margin-bottom: 28px;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }

/* Discord Presence Pill */
.hero-pill {
    display: inline-flex; align-items: center; gap: 14px;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.7), rgba(15, 23, 42, 0.9));
    padding: 6px 24px 6px 6px;
    border-radius: 50px; 
    border: 1px solid rgba(14, 165, 233, 0.2);
    margin-bottom: 30px; 
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
    will-change: transform;
}
.hero-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(14, 165, 233, 0.5);
}
.pill-avatar-wrapper { position: relative; display: flex; align-items: center; justify-content: center; }
.pill-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.pill-status {
    position: absolute; bottom: 0; right: 0; width: 12px; height: 12px;
    background: #23a559; border-radius: 50%; border: 2.5px solid #17202f;
    z-index: 2;
}
.pill-status-pulse {
    position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: #23a559; border-radius: 50%;
    animation: pulseStatus 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    will-change: transform, opacity;
}
@keyframes pulseStatus {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}
.pill-info { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.pill-name { font-size: 1.1rem; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 6px; line-height: 1.2; margin-bottom: 2px; }
.pill-bot-tag { background: #5865F2; color: #fff; font-size: 0.6rem; padding: 2px 5px; border-radius: 4px; font-weight: 700; line-height: 1; display: flex; align-items: center; gap: 3px; }
.pill-bot-tag i { font-size: 0.5rem; }
.pill-activity { font-size: 0.8rem; color: var(--muted); font-weight: 500; line-height: 1.2; display: flex; align-items: center; }
.pill-activity span { color: var(--p300); font-weight: 600; }
.audio-bars { display: inline-flex; align-items: flex-end; gap: 2px; height: 10px; margin-right: 6px; margin-bottom: 2px; }
.audio-bars .bar { width: 3px; background-color: #23a559; border-radius: 1px; animation: bounceBar 1s infinite alternate ease-in-out; will-change: transform; transform-origin: bottom; }
.audio-bars .bar:nth-child(1) { height: 4px; animation-duration: 0.6s; }
.audio-bars .bar:nth-child(2) { height: 10px; animation-duration: 0.8s; }
.audio-bars .bar:nth-child(3) { height: 6px; animation-duration: 0.7s; }
@keyframes bounceBar { 0% { transform: scaleY(0.3); } 100% { transform: scaleY(1); } }

/* Floating stat chips */
.hero-chips {
    display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}
.chip {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 20px; border-radius: 12px;
    background: var(--bg2);
    border: 1px solid var(--border);
    font-size: 0.88rem; font-weight: 600;
    transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1.2), border-color 200ms;
}
.chip:hover {
    border-color: var(--p500);
    transform: translateY(-3px) scale(1.03);
}
.chip i { color: var(--p400); font-size: 1rem; }
.chip-val { font-size: 1.1rem; font-weight: 800; color: var(--text); font-variant-numeric: tabular-nums; }
.chip-label { color: var(--muted); font-size: 0.78rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }

/* â”€â”€ STATS STRIP â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.stats-strip {
    padding: 52px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stats-strip-inner {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.stat-item {
    display: flex; flex-direction: column; align-items: center;
    padding: 0 24px;
    border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
    font-size: 2.6rem; font-weight: 900; letter-spacing: -0.04em;
    line-height: 1; color: var(--text); margin-bottom: 6px;
}
.stat-lbl {
    font-size: 0.78rem; font-weight: 600; color: var(--muted);
    text-transform: uppercase; letter-spacing: 0.08em;
}

/* â”€â”€ FEATURES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.features-section { padding: 120px 0; }

.sec-head { text-align: center; margin-bottom: 70px; }
.sec-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800; letter-spacing: -0.03em;
    line-height: 1.15; margin-bottom: 18px;
}
.sec-sub { font-size: 1.05rem; color: var(--sub); max-width: 520px; margin: 0 auto; line-height: 1.7; }

.feat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.feat-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px 28px;
    position: relative; overflow: hidden;
    transition: all 300ms cubic-bezier(0.2, 0, 0, 1);
}
.feat-card::after {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.5), transparent);
    opacity: 0; transition: opacity 250ms;
}
.feat-card::before {
    content: '';
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.05) 50%, transparent 80%);
    transform: translateX(-100%);
    pointer-events: none;
    z-index: 1;
}
.feat-card:hover::before {
    animation: cardShine 0.75s ease-in-out forwards;
}
@keyframes cardShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.feat-card:hover { 
    background: rgba(255,255,255,0.02); border-color: rgba(255,255,255,0.12); 
    transform: translateY(-5px);
}
.feat-card:hover::after { opacity: 1; }

.feat-icon {
    width: 50px; height: 50px;
    background: rgba(14, 165, 233, 0.15);
    border: 1px solid rgba(14, 165, 233, 0.25);
    border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; color: var(--p400);
    margin-bottom: 22px;
}

.feat-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.feat-card p { font-size: 0.9rem; color: var(--sub); line-height: 1.65; }

/* â”€â”€ COMMANDS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.commands-section { padding: 80px 0 120px; }

.cmd-category {
    background: var(--bg2); border: 1px solid var(--border);
    border-radius: 16px; padding: 28px; margin-bottom: 24px;
    transition: opacity 300ms, transform 300ms;
}
.cmd-cat-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.cmd-cat-icon {
    width: 44px; height: 44px; background: rgba(14, 165, 233, 0.15);
    border: 1px solid rgba(14, 165, 233, 0.25); border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--p400); font-size: 1.1rem; flex-shrink: 0;
}
.cmd-cat-title { font-size: 1.2rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.cmd-cat-sub { font-size: 0.85rem; color: var(--muted); }

.cmd-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px;
}
.cmd-card {
    background: var(--bg3); border: 1px solid var(--border);
    border-radius: 10px; padding: 16px;
    transition: background 200ms, border-color 200ms;
}
.cmd-card:hover { background: rgba(14, 165, 233, 0.1); border-color: var(--border2); }
.cmd-card-name {
    display: inline-block;
    font-family: var(--mono); color: #fff;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 4px 10px; border-radius: 6px;
    font-size: 0.85rem; font-weight: 700; margin-bottom: 10px;
}
.cmd-card-desc { font-size: 0.8rem; color: var(--sub); line-height: 1.5; }

/* â”€â”€ CTA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cta-section { padding: 80px 0 120px; }

.cta-box {
    position: relative;
    background: var(--bg2);
    border: 1px solid var(--border2);
    border-radius: 26px;
    padding: 100px 48px;
    text-align: center; overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--p500), var(--p400), transparent);
}
.cta-box::after {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(14, 165, 233, 0.08) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    pointer-events: none;
}
.cta-glow {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse at center, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; }
.cta-title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 18px; }
.cta-sub { font-size: 1.05rem; color: var(--sub); max-width: 440px; margin: 0 auto 44px; line-height: 1.7; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer {
    border-top: 1px solid var(--border);
    background: var(--bg2);
    padding: 72px 0 36px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}
.footer-brand-logo {
    display: flex; align-items: center; gap: 10px;
    font-weight: 800; font-size: 1.1rem;
    margin-bottom: 14px;
}
.footer-brand-logo img { width: 28px; height: 28px; border-radius: 7px; }
.footer-brand-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.7; max-width: 260px; }

.footer-col h4 {
    font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--text); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col a { font-size: 0.88rem; color: var(--muted); transition: color 150ms; }
.footer-col a:hover { color: var(--p400); }

.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 0.82rem; color: var(--muted); }
.footer-socials { display: flex; gap: 18px; }
.footer-socials a { color: var(--muted); font-size: 1rem; transition: color 150ms; }
.footer-socials a:hover { color: var(--p400); }

/* â”€â”€ ANIMATIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.fade-up {
    opacity: 0; transform: translateY(24px);
    animation: fuAnim 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes fuAnim { to { opacity: 1; transform: translateY(0); } }

.reveal { 
    opacity: 0; transform: translateY(24px); 
    transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 900px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: block; }
    .stats-strip-inner { grid-template-columns: repeat(2,1fr); }
    .stat-item { padding: 16px 0; border-right: none; border-bottom: 1px solid var(--border); }
    .stat-item:nth-child(3), .stat-item:last-child { border-bottom: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .hero-pill {
        display: inline-flex; align-items: center; gap: 12px;
        padding: 5px 18px 5px 5px;
        margin-bottom: 24px;
    }
    .pill-avatar { width: 36px; height: 36px; }
    .pill-status { width: 10px; height: 10px; bottom: 1px; right: 1px; border-width: 1px; }
    .pill-name { font-size: 0.95rem; }
    .pill-bot-tag { font-size: 0.55rem; padding: 1px 4px; }
    .pill-activity { font-size: 0.7rem; }

    .pill {
        display: inline-flex; align-items: center; gap: 8px;
        background: rgba(14, 165, 233, 0.15); border: 1px solid rgba(14, 165, 233, 0.3);
        padding: 6px 14px; border-radius: 100px;
        color: var(--p400); font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
    }
    .pill-dot { width: 6px; height: 6px; background: var(--p400); border-radius: 50%; animation: pulse 2s infinite; }
    @keyframes pulse { 0% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.3); opacity: 0.6; } 100% { transform: scale(1); opacity: 1; } }

    .hero-heading { font-size: 2.5rem; }
    .cta-box { padding: 60px 22px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; }
}


.ping-bars { display: inline-flex; align-items: flex-end; gap: 4px; height: 32px; margin-bottom: 18px; }
.ping-bars span { display: inline-block; width: 6px; background-color: var(--p400); border-radius: 4px; animation: ping-bounce 2s infinite ease-in-out alternate; }
.ping-bars span:nth-child(1) { height: 30%; animation-delay: 0s; }
.ping-bars span:nth-child(2) { height: 50%; animation-delay: 0.2s; }
.ping-bars span:nth-child(3) { height: 75%; animation-delay: 0.4s; }
.ping-bars span:nth-child(4) { height: 100%; animation-delay: 0.6s; }
@keyframes ping-bounce { 0% { transform: scaleY(0.7); opacity: 0.6; } 100% { transform: scaleY(1); opacity: 1; } }

/* --- Private Beta Modal --- */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(4, 9, 20, 0.95); /* Darker solid background since blur is removed for performance */
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    /* Hardware acceleration optimization */
    will-change: opacity;
    transform: translateZ(0); 
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #0e1526;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); /* Simplified shadow for performance */
    border-radius: 24px;
    padding: 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.95) translateY(10px);
    transition: transform 0.3s ease-out; /* Simpler transition for CPU rendering */
    /* Hardware acceleration optimization */
    will-change: transform;
    backface-visibility: hidden;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--t-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.2s ease; /* Removed rotate transform for performance */
}

.modal-close:hover {
    color: var(--t-white);
}

.modal-icon {
    font-size: 3rem;
    color: var(--p400);
    margin-bottom: 20px;
    /* Removed drop-shadow filter which kills CPU */
    animation: pulse-icon 2.5s infinite ease-in-out alternate;
    will-change: transform;
}

@keyframes pulse-icon {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.modal-title {
    font-size: 1.8rem;
    color: var(--t-white);
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.modal-desc {
    color: var(--t-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.modal-desc strong {
    color: var(--t-white);
    font-weight: 600;
}

.modal-btn {
    margin-top: 15px;
    width: 100%;
    padding: 14px 24px;
    justify-content: center;
}

