:root {
    color-scheme: light;
    --bg: #f4f1ea;
    --surface: #fffdf8;
    --ink: #1f2328;
    --muted: #5a6069;
    --line: #ded5c4;
}

html, body {
    margin: 0;
    min-height: 100%;
    font-family: "Segoe UI", "Trebuchet MS", sans-serif;
    background:
        radial-gradient(circle at 15% 15%, #fff6da 0%, transparent 35%),
        radial-gradient(circle at 85% 20%, #efe8ff 0%, transparent 30%),
        linear-gradient(160deg, #f7f4ee 0%, var(--bg) 60%, #ece5d8 100%);
    color: var(--ink);
}

.coming-soon-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem 1rem;
}

.coming-soon-card {
    width: min(520px, 100%);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 18px 60px rgba(26, 25, 21, 0.12);
}

.brand-logo {
    width: min(260px, 70%);
    height: auto;
    margin-bottom: 1.25rem;
}

.eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 700;
}

h1 {
    margin: 0.45rem 0 0.6rem;
    font-size: clamp(2rem, 5vw, 2.8rem);
    line-height: 1.08;
}

.message {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
}
