:root
{
    color-scheme: dark;
    --site-bg: #151619;
    --site-panel: #1e1f22;
    --site-text: #f3f3f3;
    --site-muted: #a6a8ad;
    --site-border: #34363c;
    --site-accent: #f4ff9e;
    --site-max: 1280px;
}

*
{
    box-sizing: border-box;
}

html
{
    background: var(--site-bg);
    color: var(--site-text);
    font-family: Poppins, "Segoe UI", sans-serif;
}

body
{
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 50% -20%, rgba(244, 255, 158, 0.08), transparent 34rem),
        var(--site-bg);
}

button,
input
{
    font: inherit;
}

.site-header,
main,
.site-footer
{
    width: min(var(--site-max), calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}

.site-header
{
    padding: 26px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand
{
    color: var(--site-text);
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
}

.status-pill
{
    border: 1px solid var(--site-border);
    border-radius: 999px;
    padding: 6px 10px;
    color: var(--site-muted);
    font-size: 12px;
}

main
{
    padding: 54px 0 80px;
}

.hero
{
    max-width: 980px;
    margin: 0 auto 42px;
    text-align: center;
}

.eyebrow
{
    margin: 0 0 12px;
    color: var(--site-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1
{
    margin: 0;
    font-size: clamp(42px, 7vw, 88px);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.hero-copy
{
    max-width: 720px;
    margin: 24px auto 0;
    color: var(--site-muted);
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
}

.counter-shell
{
    padding: clamp(20px, 4vw, 40px);
    border: 1px solid var(--site-border);
    border-radius: 22px;
    background: var(--site-panel);
}

.next-step
{
    max-width: 820px;
    margin: 48px auto 0;
    text-align: center;
}

.next-step h2
{
    margin: 0 0 14px;
    font-size: clamp(30px, 5vw, 50px);
}

.next-step p
{
    margin: 0 auto 22px;
    max-width: 680px;
    color: var(--site-muted);
    line-height: 1.6;
}

.next-button
{
    border: 0;
    border-radius: 8px;
    padding: 12px 22px;
    background: var(--site-accent);
    color: #000;
    font-weight: 600;
    opacity: 0.6;
}

.site-footer
{
    padding: 28px 0 42px;
    border-top: 1px solid var(--site-border);
    color: var(--site-muted);
    display: flex;
    gap: 20px;
    justify-content: space-between;
    font-size: 13px;
}

@media (max-width: 700px)
{
    .site-header,
    main,
    .site-footer
    {
        width: min(100% - 20px, var(--site-max));
    }

    main
    {
        padding-top: 30px;
    }

    .site-footer
    {
        flex-direction: column;
    }
}
