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

* {
    box-sizing: border-box;
}

body {
    background:
        radial-gradient(circle at 16% 18%, rgba(247, 181, 57, 0.28), transparent 22rem),
        radial-gradient(circle at 84% 72%, rgba(255, 218, 112, 0.18), transparent 26rem),
        linear-gradient(135deg, #07090d 0%, #17120a 54%, #07090d 100%);
    color: #f7f1e5;
    margin: 0;
    min-height: 100vh;
}

body::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='156' height='135' viewBox='0 0 156 135'%3E%3Cg fill='none' stroke='%23ffb52e' stroke-opacity='.34' stroke-width='3'%3E%3Cpath d='M39 3 78 25.5v45L39 93 0 70.5v-45z'/%3E%3Cpath d='M117 3 156 25.5v45L117 93 78 70.5v-45z'/%3E%3Cpath d='M78 70.5 117 93v45l-39 22.5L39 138V93z'/%3E%3C/g%3E%3C/svg%3E");
    background-position: center;
    background-size: 156px 135px;
    content: "";
    inset: 0;
    opacity: 0.34;
    position: fixed;
}

main {
    align-items: center;
    display: grid;
    min-height: 100vh;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.hero {
    max-width: 760px;
}

.status {
    align-items: center;
    color: #ffd77a;
    display: inline-flex;
    font-size: 0.84rem;
    font-weight: 700;
    gap: 0.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.status::before {
    background: #ffbf3f;
    border-radius: 999px;
    box-shadow: 0 0 22px rgba(255, 191, 63, 0.7);
    content: "";
    height: 0.65rem;
    width: 0.65rem;
}

h1 {
    font-size: clamp(3rem, 9vw, 6.6rem);
    letter-spacing: 0;
    line-height: 0.92;
    margin: 1rem 0;
}

.lead {
    color: #e3d7bf;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.6;
    margin: 0 0 1.4rem;
    max-width: 660px;
}

.notice {
    background: rgba(255, 191, 63, 0.12);
    border: 1px solid rgba(255, 191, 63, 0.28);
    border-radius: 8px;
    color: #ffe8ad;
    line-height: 1.45;
    margin: 0 0 1.7rem;
    max-width: 620px;
    padding: 0.9rem 1rem;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.button {
    align-items: center;
    border: 1px solid rgba(255, 191, 63, 0.32);
    border-radius: 8px;
    color: #f9f3e8;
    display: inline-flex;
    font-weight: 700;
    justify-content: center;
    min-height: 3rem;
    padding: 0.75rem 1.1rem;
    text-decoration: none;
}

.button.primary {
    background: #f3aa2f;
    border-color: #f3aa2f;
    color: #171006;
}

.button.secondary {
    background: rgba(255, 255, 255, 0.08);
}

.button:focus,
.button:hover {
    transform: translateY(-1px);
}

@media (max-width: 560px) {
    main {
        align-items: center;
        min-height: 100svh;
        padding: 1rem;
    }

    h1 {
        margin: 0.7rem 0;
    }

    .notice {
        margin-bottom: 1.1rem;
    }

    .button {
        width: 100%;
    }
}
