:root {
    --bg: #0f1115;
    --surface: #171a21;
    --text: #e8eaed;
    --muted: #9aa3b2;
    --accent: #f5a524;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
}

.hero {
    max-width: 560px;
    width: 100%;
    padding: 48px 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: var(--surface);
    text-align: center;
}

.hero__badge {
    display: inline-block;
    margin-bottom: 24px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(245, 165, 36, 0.12);
    color: var(--accent);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero__title {
    margin-bottom: 16px;
    font-size: 44px;
    letter-spacing: -0.02em;
}

.hero__text {
    margin-bottom: 20px;
    color: var(--muted);
    line-height: 1.6;
}

.hero__meta {
    color: var(--muted);
    font-size: 13px;
}

code {
    padding: 2px 6px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.9em;
}

@media (max-width: 480px) {
    .hero {
        padding: 32px 22px;
    }

    .hero__title {
        font-size: 34px;
    }
}
