:root {
    --bg-color: #050a14;
    --text-primary: #ffffff;
    --text-secondary: #8892b0;
    --accent-blue: #00f2ff;
    --accent-red: #ff2a6d;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Background Animation Container */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#neural-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, var(--bg-color) 90%);
    pointer-events: none;
}

/* Main Content */
.content-wrapper {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

/* Logo */
.logo {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 242, 255, 0.2));
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
}

.heart-icon {
    width: 80px;
    height: 80px;
    color: var(--accent-red);
    animation: heartbeat 1.5s infinite ease-in-out;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    15% {
        transform: scale(1.15);
    }

    30% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.15);
    }

    60% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
    }
}

/* Typography */
h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-text h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--text-primary), var(--accent-blue));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
    margin-bottom: 3rem;
}

/* Launch Status */
/* Launch Status */
.launch-status {
    width: 100%;
    max-width: 500px;
    /* Slightly wider for the pulse */
    margin: 0 auto 3rem;
}

.status-indicator {
    text-align: center;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pulse-container {
    width: 100%;
    margin-top: 1rem;
    height: 80px;
    position: relative;
    overflow: hidden;
    /* Optional: A subtle grid background for tech feel */
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pulse-svg {
    display: block;
    width: 100%;
    height: 100%;
}

.pulse-line-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 2;
    vector-effect: non-scaling-stroke;
}

.pulse-line-active {
    fill: none;
    stroke: var(--accent-red);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: pulseScan 2.5s linear infinite;
    filter: drop-shadow(0 0 8px var(--accent-red));
}

@keyframes pulseScan {
    0% {
        stroke-dashoffset: 1000;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 0;
    }
}

/* Form */
.notify-form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    /* Pill shape */
    padding: 5px;
    transition: border-color 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px);
}

.input-group:focus-within {
    border-color: var(--accent-blue);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
}

input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
}

input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

button {
    background: var(--text-primary);
    color: var(--bg-color);
    border: none;
    border-radius: 40px;
    padding: 0.8rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

button:hover {
    transform: scale(1.05);
    background-color: var(--accent-blue);
    color: var(--bg-color);
}

/* Footer */
footer {
    margin-top: 4rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.social-icon:hover {
    color: var(--accent-blue);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-text h2 {
        font-size: 2.5rem;
    }

    .input-group {
        flex-direction: column;
        border-radius: 1rem;
        padding: 1rem;
        background: transparent;
        border: none;
        gap: 1rem;
    }

    input[type="email"] {
        width: 100%;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 0.5rem;
        text-align: center;
    }

    button {
        width: 100%;
        justify-content: center;
    }

    .logo-svg-container {
        flex-direction: column;
        gap: 0.5rem !important;
    }

    .logo-text {
        text-align: center !important;
    }

    .logo-text div {
        font-size: 1.2rem !important;
    }

    .separator {
        display: none !important;
    }
}