/* --- FONTS (shared with main site) --- */
@font-face {
    font-family: 'Neue Haas';
    src: url('./fonts/NeueHaasDisplayBlack.woff2') format('woff2');
    font-weight: 900;
}
@font-face {
    font-family: 'Neue Haas';
    src: url('./fonts/NeueHaasDisplayBold.woff2') format('woff2');
    font-weight: 700;
}
@font-face {
    font-family: 'Neue Haas';
    src: url('./fonts/NeueHaasDisplayRoman.woff2') format('woff2');
    font-weight: 400;
}

/* --- VARIABLES (match main site) --- */
:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --accent-color: #FF751F;
    --velocity-orange: #FF751F;
    --gray-dark: #111111;
    --font-main: 'Neue Haas', Helvetica, Arial, sans-serif;
    --border-color: rgba(255, 255, 255, 0.15);
    --radius: 6px;
}

/* --- RESET & GLOBAL --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { height: 100%; }
body {
    min-height: 100%;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    -webkit-font-smoothing: antialiased;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 128px 128px;
}

/* --- COMING SOON LAYOUT --- */
.coming-soon {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 560px;
}

.coming-soon .logo {
    display: inline-block;
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    color: var(--text-color);
    text-decoration: none;
    margin-bottom: 3rem;
    transition: color 0.3s;
}
.coming-soon .logo:focus-visible { outline: 2px solid var(--accent-color); outline-offset: 4px; }
.coming-soon .logo-period { color: var(--velocity-orange); }

.coming-soon .title {
    font-size: clamp(3rem, 12vw, 6rem);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.coming-soon .title::after {
    content: ".";
    color: var(--velocity-orange);
}

.coming-soon .tagline {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.coming-soon .divider {
    width: 60px;
    height: 2px;
    background: var(--accent-color);
    margin: 0 auto 2rem;
}

.coming-soon .meta {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
}

@media (hover: hover) {
    .coming-soon .logo:hover { color: var(--accent-color); }
}
