:root {
    --background: #07090c;
    --surface: rgba(255, 255, 255, 0.035);
    --text: #f4f4f1;
    --text-soft: rgba(244, 244, 241, 0.68);
    --border: rgba(255, 255, 255, 0.10);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.08), transparent 34rem),
        var(--background);
    color: var(--text);
}

.page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.75rem, 2vw, 2rem);
}

.card {
    width: 96vw;
    max-width: 1100px;
    padding: clamp(1.25rem, 4vw, 5rem);
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.logo {
    width: min(62vw, 460px);
    height: auto;
    margin: clamp(3rem, 8vw, 5rem) auto;
    display: block;
}

.headline {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0 0 1rem;
    font-size: clamp(1.55rem, 5.45vw, 5.5rem);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.07em;
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
    text-wrap: nowrap;
}

p {
    margin: 0.4rem 0;
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.4;
    color: var(--text-soft);
}

@media (max-width: 520px) {
    .card {
        border-radius: 22px;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .headline {
        font-size: 7.4vw;
        letter-spacing: -0.075em;
    }

    .logo {
        width: 68vw;
    }
}
