:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --accent-color: #00ff9d; /* Neon Green */
    --secondary-accent: #7000ff; /* Neon Purple */
    --gray-light: #a0a0a0;
    --gray-dark: #1a1a1a;
    --font-main: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --easing: cubic-bezier(0.19, 1, 0.22, 1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIj48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJub25lIi8+PGZpbHRlciBpZD0ibm9pc2UiPjxmZVR1cmJ1bGVuY2UgdHlwZT0iZnJhY3RhbE5vaXNlIiBiYXNlRnJlcXVlbmN5PSIwLjY1IiBudW1PY3RhdmVzPSIzIiBzdGl0Y2hUaWxlcz0ic3RpdGNoIi8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsdGVyPSJ1cmwoI25vaXNlKSIgb3BhY2l0eT0iMC4wNSIvPjwvc3ZnPg==');
    pointer-events: none;
    z-index: 999;
    opacity: 0.4;
}

/* Cursor Glow */
.cursor-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 157, 0.08) 0%, rgba(112, 0, 255, 0.03) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 0;
    transition: transform 0.1s ease-out;
    mix-blend-mode: screen;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Header / Logo */
.logo-container {
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo {
    font-family: var(--font-main);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    margin-bottom: 0.5rem;
}

.logo .highlight {
    color: var(--accent-color);
}

.logo-line {
    width: 0;
    height: 2px;
    background: var(--accent-color);
    animation: expandLine 1.5s var(--easing) forwards;
}

/* Hero Section */
.hero {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.content-wrapper {
    max-width: 900px;
}

.overline {
    font-family: var(--font-main);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 1s var(--easing) 0.5s forwards;
}

.headline {
    font-family: var(--font-main);
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.9;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.headline .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUp 1.2s var(--easing) forwards;
}

.headline .word:nth-child(1) { animation-delay: 0.7s; }
.headline .word:nth-child(2) { animation-delay: 0.9s; }
.headline .word:nth-child(3) { animation-delay: 1.1s; }

.highlight-text {
    background: linear-gradient(90deg, #fff, var(--gray-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.subheadline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray-light);
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeUp 1s var(--easing) 1.3s forwards;
}

/* CTA / Form */
.cta-container {
    opacity: 0;
    animation: fadeUp 1s var(--easing) 1.5s forwards;
}

.coming-soon-text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.notify-form {
    max-width: 400px;
}

.input-group {
    display: flex;
    border-bottom: 1px solid var(--gray-dark);
    padding-bottom: 0.5rem;
    transition: border-color 0.3s ease;
}

.input-group:focus-within {
    border-color: var(--accent-color);
}

input[type="email"] {
    background: transparent;
    border: none;
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 1.1rem;
    flex-grow: 1;
    outline: none;
    padding: 0.5rem 0;
}

input[type="email"]::placeholder {
    color: #444;
}

.btn-primary {
    background: transparent;
    border: none;
    color: var(--accent-color);
    font-family: var(--font-main);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--accent-color);
}

.btn-icon {
    transition: transform 0.3s var(--easing);
}

.btn-primary:hover .btn-icon {
    transform: translateX(5px);
}

.captcha-container {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-start;
    transform: scale(0.85); /* Scale down slightly to fit better */
    transform-origin: left top;
}

/* Footer */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 1rem;
    font-size: 0.8rem;
    color: #444;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.social-link:hover {
    color: var(--accent-color);
}

/* Animations */
@keyframes expandLine {
    to { width: 60px; }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .headline {
        font-size: 3.5rem;
    }
    
    .footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}
