:root {
    --bg: #0a0a0c;
    --fg: #f4f3f0;
    --muted: #9a978f;
    --accent: #c9a24b;
    --border: rgba(244, 243, 240, 0.12);
}

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

html, body {
    height: 100%;
}

body {
    background: var(--bg);
    color: var(--fg);
    font-family: "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.landing {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6vh 6vw;
    background:
        radial-gradient(ellipse at top, rgba(201, 162, 75, 0.08), transparent 60%),
        var(--bg);
}

.hero {
    width: 100%;
    max-width: 640px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.25rem;
}

.coming-soon {
    font-size: 0.75rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
}

.logo {
    max-width: 220px;
    width: 60%;
    height: auto;
    border-radius: 4px;
}

.copy {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.copy p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted);
    font-weight: 300;
}

.copy .soundintel {
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    color: var(--fg);
    opacity: 0.55;
    font-style: italic;
}

.tagline {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 300;
    letter-spacing: -0.01em;
    line-height: 1.3;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
    width: 100%;
}

@media (max-width: 480px) {
    .landing {
        padding: 8vh 6vw;
    }

    .hero {
        gap: 1.75rem;
    }
}
