:root {
    --bg-dark: #070911;
    --neon-green: #00FFAA;
    --neon-blue: #00AAFF;
    --glass-bg: rgba(18, 25, 45, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    background-color: var(--bg-dark);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Ambient Mouse Glowing Effect */
#ambient-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 170, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    transition: width 0.3s, height 0.3s;
}

/* Background Animated Orbs */
.background-orbs {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    overflow: hidden;
    z-index: -1;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 20s infinite alternate linear;
}

.orb-1 {
    width: 500px; height: 500px;
    background: var(--neon-blue);
    top: -10%; left: -10%;
}

.orb-2 {
    width: 400px; height: 400px;
    background: var(--neon-green);
    bottom: -10%; right: -5%;
    animation-direction: alternate-reverse;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20%, 20%); }
}

/* Navbar */
.navbar {
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.logo {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 4px;
    background: linear-gradient(90deg, #fff, #bbb);
    -webkit-background-clip: text;
    color: transparent;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 2rem 5%;
    max-width: 1400px;
    margin: auto;
    flex-grow: 1;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge {
    align-self: flex-start;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(0, 255, 170, 0.1);
    border: 1px solid rgba(0, 255, 170, 0.3);
    color: var(--neon-green);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 900;
}

.gradient-text {
    background: linear-gradient(90deg, var(--neon-green), var(--neon-blue));
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0 0 40px rgba(0, 255, 170, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #8a96b3;
    line-height: 1.6;
    max-width: 90%;
    margin-bottom: 1rem;
}

/* Glassmorphism Panels */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 30px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.interactive-card:hover {
    border-color: rgba(0, 170, 255, 0.4);
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 30px rgba(0, 170, 255, 0.2);
}

/* Waitlist Card */
.waitlist-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 480px;
}

.waitlist-card h2 {
    font-size: 1.8rem;
}

.waitlist-card p {
    color: #a0aec0;
    font-size: 0.95rem;
}

.waitlist-form {
    display: flex;
    margin-top: 1rem;
    background: rgba(0,0,0,0.4);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 0.5rem;
    transition: border-color 0.3s;
}

.waitlist-form:focus-within {
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.1);
}

.waitlist-form input {
    flex-grow: 1;
    background: transparent;
    border: none;
    padding: 1rem;
    color: white;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    outline: none;
}

.waitlist-form input::placeholder {
    color: #55627a;
}

.btn-glow {
    background: linear-gradient(90deg, var(--neon-green), var(--neon-blue));
    border: none;
    padding: 0 1.5rem;
    border-radius: 8px;
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, filter 0.2s;
}

.btn-glow:hover {
    transform: scale(1.02);
    filter: brightness(1.2);
}

/* Hero Visuals */
.hero-visuals {
    display: flex;
    gap: 2rem;
    align-items: center;
    position: relative;
    padding-top: 2rem;
}

.showcase-panel {
    padding: 1rem;
    width: 250px;
    height: auto;
    aspect-ratio: 4/5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.side-panel {
    width: 200px;
    aspect-ratio: 1/1;
    margin-top: -80px;
    background: rgba(18, 25, 45, 0.2);
}

.product-preview {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5));
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.showcase-panel:hover .product-preview {
    transform: scale(1.15) translateY(-10px);
}

.showcase-label {
    position: absolute;
    bottom: 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: rgba(0,0,0,0.6);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-subtitle {
        margin: 0 auto 1rem;
    }
    
    .hero-visuals {
        justify-content: center;
    }
}
