* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0a0a0a;
    --dark: #111111;
    --purple: #8b5cf6;
    --deep-purple: #6d28d9;
    --neon-blue: #00d9ff;
    --neon-pink: #ff006e;
    --gold: #fbbf24;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Particles */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--neon-blue), var(--purple), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-cta {
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, var(--purple), var(--neon-pink));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 5% 4rem;
    position: relative;
    background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.15), transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(0, 217, 255, 0.15), transparent 50%);
}

.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--white), var(--neon-blue), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.5)); }
    50% { filter: drop-shadow(0 0 40px rgba(0, 217, 255, 0.8)); }
}

.hero-tagline {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--neon-blue);
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary, .btn-secondary, .btn-outline {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple), var(--neon-pink));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6);
}

.btn-secondary {
    background: var(--glass);
    color: white;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--neon-blue);
    border: 2px solid var(--neon-blue);
}

.btn-outline:hover {
    background: var(--neon-blue);
    color: var(--black);
    transform: translateY(-3px);
}

/* Voice Wave */
.voice-wave {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    height: 60px;
}

.voice-wave span {
    width: 4px;
    height: 20px;
    background: linear-gradient(to top, var(--purple), var(--neon-blue));
    border-radius: 10px;
    animation: wave 1s ease-in-out infinite;
}

.voice-wave span:nth-child(2) { animation-delay: 0.1s; height: 40px; }
.voice-wave span:nth-child(3) { animation-delay: 0.2s; height: 60px; }
.voice-wave span:nth-child(4) { animation-delay: 0.3s; height: 40px; }
.voice-wave span:nth-child(5) { animation-delay: 0.4s; }

@keyframes wave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.5); }
}

/* Sections */
.section {
    padding: 6rem 5%;
    position: relative;
    z-index: 1;
}

.glass-section {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, var(--white), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Cards Grid */
.about-grid, .features-grid, .ecosystem-grid, .roles-grid, .store-grid, .tech-grid, .security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.about-card, .feature-card, .eco-card, .role-card, .store-card, .tech-card, .security-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.about-card:hover, .feature-card:hover, .eco-card:hover, .role-card:hover, .store-card:hover, .tech-card:hover, .security-card:hover {
    transform: translateY(-10px);
    border-color: var(--purple);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.feature-icon, .role-badge {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.role-card.owner {
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), transparent);
}

.role-card.vip {
    border: 2px solid var(--neon-pink);
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), transparent);
}

/* Room Demo */
.room-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 3rem;
    backdrop-filter: blur(20px);
}

.room-header {
    text-align: center;
    margin-bottom: 3rem;
}

.host-seat .avatar, .seat .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--neon-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 0.5rem;
    position: relative;
}

.host-seat .avatar {
    width: 100px;
    height: 100px;
    border: 3px solid var(--gold);
}

.speaking-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--neon-blue);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    opacity: 0;
}

.speaking-ring.active {
    opacity: 1;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

.seats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.seat {
    text-align: center;
}

.seat .avatar {
    background: var(--dark);
    border: 2px solid var(--glass-border);
}

.join-btn {
    padding: 0.4rem 1rem;
    background: var(--purple);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    margin-top: 0.5rem;
}

.room-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.control-btn {
    padding: 0.8rem 1.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.control-btn.leave {
    background: rgba(255, 0, 110, 0.2);
    border-color: var(--neon-pink);
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--neon-blue), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Founder */
.founder-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 3rem;
    backdrop-filter: blur(20px);
}

.founder-email {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.founder-email a {
    color: var(--neon-blue);
    text-decoration: none;
}

.founder-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1.2rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.contact-form button {
    margin-top: 1rem;
}

/* FAQ */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--purple);
    transform: translateX(10px);
}

.faq-item h3 {
    color: var(--neon-blue);
    margin-bottom: 0.8rem;
}

.faq-item a {
    color: var(--neon-pink);
    text-decoration: none;
}

/* Footer */
.footer {
    background: var(--dark);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 5% 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--neon-blue), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.footer-brand a {
    color: var(--neon-blue);
    text-decoration: none;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--neon-blue);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .section-title { font-size: 2rem; }
    .seats-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-buttons { flex-direction: column; }
    .navbar { padding: 1rem 5%; }
    .section { padding: 4rem 5%; }
}

.tech-desc {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.1rem;
    color: var(--neon-blue);
}

.security-card {
    text-align: center;
    font-size: 2rem;
}

.security-card h3 {
    font-size: 1.2rem;
    margin-top: 1rem;
}