@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;700&display=swap');

:root {
    --bg-color: #010103;
    --accent-primary: #ffffff;
    --accent-secondary: #00d4ff;
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.5);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glow-sharp: 0 0 20px rgba(168, 85, 247, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    min-height: 100vh;
    font-family: 'Outfit', sans-serif;
    background: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    /* Prevent horizontal scroll, allow vertical */
    /* Extremely subtle depth gradients */
    background-image:
        radial-gradient(circle at 50% 50%, rgba(120, 80, 255, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.03) 0%, transparent 40%);
}

/* Crisp Starfield */
.stars {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(white 0.8px, transparent 0.8px),
        radial-gradient(white 1.2px, transparent 1.2px);
    background-position: 0 0, 40px 40px;
    background-size: 100px 100px;
    opacity: 0.25;
    animation: drift 240s linear infinite;
    pointer-events: none;
}

.stars::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(white 0.5px, transparent 0.5px);
    background-position: 15px 50px;
    background-size: 150px 150px;
    opacity: 0.3;
    animation: drift 300s linear infinite reverse;
}

@keyframes drift {
    from {
        background-position: 0 0, 40px 40px;
    }

    to {
        background-position: 1000px 1000px, 1040px 1040px;
    }
}

.glow {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    opacity: 0.6;
    animation: pulse 30s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.4;
    }

    100% {
        opacity: 0.7;
    }
}

/* Layout */
.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    z-index: 2;
}

.content {
    max-width: 900px;
    width: 100%;
}

/* Clean Typography */
h1 {
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 200;
    /* Ultra light for minimal look */
    letter-spacing: 0.25em;
    /* Wide tracking */
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.subtitle {
    font-size: clamp(1rem, 3vw, 1.4rem);
    color: var(--text-muted);
    margin-bottom: 5rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.launch-text {
    font-size: 0.8rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.4em;
}

/* Minimal Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 2rem 0 6rem;
}

.countdown-item {
    padding: 1rem;
    min-width: 120px;
    position: relative;
    transition: all 0.5s ease;
}

.countdown-item::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.5s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
}

.countdown-item:hover::after {
    width: 60%;
}

.countdown-number {
    font-size: 3.5rem;
    font-weight: 200;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.05em;
}

.countdown-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-weight: 400;
}

/* Minimal Form */
.email-form {
    margin: 2rem auto;
    max-width: 500px;
}

.email-form p {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.input-group {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.04);
    /* Increased visibility background */
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* Full border instead of bottom only */
    border-radius: 12px;
    /* Slight rounding for cleaner look */
    transition: all 0.5s ease;
    padding: 2px;
}

.input-group:focus-within {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    /* Added horizontal padding */
    font-size: 1rem;
    border: none;
    background: transparent;
    color: white;
    outline: none;
    font-family: inherit;
    letter-spacing: 0.1em;
    font-weight: 300;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
}

button {
    padding: 1rem 2rem;
    font-size: 0.8rem;
    font-weight: 400;
    background: transparent;
    color: #fff;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    transition: all 0.3s ease;
}

button:hover {
    letter-spacing: 0.4em;
    opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .countdown {
        gap: 2rem;
    }

    .countdown-item {
        min-width: calc(50% - 1rem);
    }

    .countdown-number {
        font-size: 2.5rem;
    }

    .input-group {
        flex-direction: column;
        border-bottom: none;
    }

    input[type="email"] {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        margin-bottom: 1rem;
    }

    button {
        width: 100%;
        padding: 1rem;
    }
}