:root {
    --brand-red: #d81f26;
    --brand-black: #111111;
    --text: #1a1a1a;
    --muted: #6b6b6b;
    --bg: #fafafa;
    --border: #e6e6e6;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
}

a {
    color: var(--brand-red);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.coming-soon {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 0.75rem;
}

.logo {
    width: 180px;
    max-width: 60vw;
    margin-bottom: 1rem;
    background: #fff;
    border-radius: 1rem;
    padding: 0.75rem;
}

.logo.small {
    width: 100px;
    max-width: 40vw;
}

h1 {
    margin: 0;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--brand-black);
}

.tagline {
    margin: 0;
    font-weight: 600;
    color: var(--brand-red);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.message {
    margin: 0.25rem 0 1.5rem;
    color: var(--muted);
    max-width: 32rem;
}

.contact {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.contact a {
    border: 1px solid var(--brand-red);
    border-radius: 999px;
    padding: 0.5rem 1.25rem;
    color: var(--brand-black);
    font-weight: 500;
}

.contact a:hover {
    background: var(--brand-red);
    color: #fff;
    text-decoration: none;
}

footer {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    color: var(--muted);
    font-size: 0.85rem;
}

.legal {
    max-width: 40rem;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.legal .back {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.legal h1 {
    margin-top: 0.5rem;
}

.legal section {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.legal h2 {
    font-size: 1.1rem;
    color: var(--brand-red);
}

.legal ul {
    padding-left: 1.2rem;
    line-height: 1.8;
}

@media (prefers-color-scheme: dark) {
    :root {
        --text: #f2f2f2;
        --muted: #a8a8a8;
        --bg: #121212;
        --border: #2a2a2a;
    }

    .contact a {
        color: #fff;
    }
}
