:root {
    color-scheme: light;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    --background: #f3eee4;
    --surface: rgba(255, 252, 245, 0.78);
    --text: #20241f;
    --muted: #6e7169;
    --accent: #a85d48;
    --border: rgba(32, 36, 31, 0.10);
}

* {
    box-sizing: border-box;
}

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

body {
    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(168, 93, 72, 0.16),
            transparent 38%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(56, 78, 61, 0.15),
            transparent 42%
        ),
        var(--background);

    color: var(--text);
}

.page {
    min-height: 100svh;
    display: grid;
    place-items: center;
    padding:
        max(24px, env(safe-area-inset-top))
        max(20px, env(safe-area-inset-right))
        max(24px, env(safe-area-inset-bottom))
        max(20px, env(safe-area-inset-left));
}

.card {
    width: min(100%, 480px);
    padding: 42px 30px;
    border: 1px solid var(--border);
    border-radius: 32px;
    background: var(--surface);
    box-shadow: 0 24px 80px rgba(42, 38, 31, 0.10);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    text-align: center;
}

.mark {
    width: 64px;
    height: 64px;
    margin: 0 auto 30px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: var(--text);
    color: var(--background);
    font-size: 27px;
    font-weight: 700;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.18em;
}

h1 {
    margin: 0;
    font-size: clamp(44px, 14vw, 70px);
    font-weight: 650;
    letter-spacing: -0.055em;
    line-height: 0.95;
}

.intro {
    margin: 24px 0 0;
    font-size: 20px;
    line-height: 1.45;
}

.status {
    margin: 20px auto 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}
