:root {
    --bg: #111111;
    --bg-soft: #1b1b1b;
    --text: #f4f1e8;
    --muted: #c5bda8;
    --accent: #f2c94c;
    --accent-dark: #b58900;
    --danger: #d94b3d;
    --border: rgba(255, 255, 255, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(242, 201, 76, 0.16), transparent 35%),
        radial-gradient(circle at bottom right, rgba(217, 75, 61, 0.12), transparent 35%),
        var(--bg);
}

.site-header {
    padding: 28px clamp(20px, 5vw, 70px);
}

.brand {
    display: flex;
    gap: 16px;
    align-items: center;
}

.logo-mark {
    width: 58px;
    height: 58px;
    border: 3px solid var(--accent);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 34px;
    font-weight: 900;
    font-style: italic;
    color: var(--accent);
    box-shadow: 0 0 30px rgba(242, 201, 76, 0.22);
}

h1 {
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    letter-spacing: -0.04em;
}

.tagline {
    margin: 4px 0 0;
    color: var(--muted);
}

.hero {
    min-height: calc(100vh - 180px);
    display: grid;
    place-items: center;
    padding: 30px 20px 70px;
}

.hero-card {
    width: min(900px, 100%);
    padding: clamp(28px, 6vw, 68px);
    border: 1px solid var(--border);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
        var(--bg-soft);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: "!";
    position: absolute;
    right: 32px;
    top: -42px;
    font-size: 210px;
    line-height: 1;
    color: rgba(242, 201, 76, 0.06);
    font-weight: 900;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 13px;
    font-weight: 800;
}

h2 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(34px, 7vw, 72px);
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.lead {
    max-width: 720px;
    margin: 28px 0 0;
    font-size: clamp(18px, 2.4vw, 24px);
    line-height: 1.45;
    color: var(--muted);
}

.notice {
    margin-top: 34px;
    padding: 20px 22px;
    border-left: 5px solid var(--danger);
    background: rgba(255, 255, 255, 0.055);
    border-radius: 14px;
    color: var(--text);
    line-height: 1.6;
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
}

.btn.primary {
    background: var(--accent);
    color: #151515;
}

.btn.ghost {
    border: 1px solid var(--border);
    color: var(--muted);
}

.site-footer {
    padding: 20px;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
}