/* --- RESET & BASE --- */
:root {
    --bg-color: #020204;
    --text-color: #ffffff;
    --accent-blue: #38bdf8;
    --accent-orange: #fb923c;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    position: relative;
}

/* --- CANVAS BACKGROUND --- */
canvas#warpCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* --- VIGNETTE & OVERLAYS --- */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(circle at center, transparent 0%, rgba(2,2,4,0.5) 50%, rgba(2,2,4,1) 100%);
}

/* Chromatic Aberration Texture (Grain) */
.noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    opacity: 0.07;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* --- UI CONTAINER --- */
.content-wrapper {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

/* --- TYPOGRAPHY --- */
h1 {
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.05em;
    margin-bottom: 2.5rem;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(0,0,0,0.5);
}

h1 span.ghost {
    color: rgba(255, 255, 255, 0.5);
    display: block;
}

/* --- LAUNCH STATUS TEXT --- */
.launch-status {
    font-family: 'Inter', sans-serif;
    color: var(--accent-blue);
    font-size: 1.1rem;
    letter-spacing: 0.3em;
    font-weight: 500;
    text-transform: lowercase;
    animation: pulseText 3s infinite ease-in-out;
    display: flex;
    align-items: center;
    gap: 12px;
}

.launch-status::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background-color: var(--accent-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-blue);
}

@keyframes pulseText {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; text-shadow: 0 0 20px rgba(56, 189, 248, 0.6); }
}

/* --- FOOTER --- */
.footer-nav {
    position: absolute;
    bottom: 40px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    text-transform: lowercase;
    letter-spacing: 0.05em;
}

.footer-nav .highlight {
    color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; margin-bottom: 2rem; }
    .launch-status { font-size: 0.9rem; letter-spacing: 0.2em; }
}
