:root {
    color-scheme: dark;
    --bg-start: #050816;
    --bg-end: #11182d;
    --card-bg: rgba(10, 15, 32, 0.72);
    --card-border: rgba(255, 255, 255, 0.14);
    --text-main: #f7f9fc;
    --text-muted: #b7c0d8;
    --accent: #7c9cff;
    --accent-soft: rgba(124, 156, 255, 0.18);
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-main);
    background:
        radial-gradient(circle at top, rgba(124, 156, 255, 0.2), transparent 35%),
        linear-gradient(135deg, var(--bg-start), var(--bg-end));
}

.hero-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.hero-card {
    width: min(100%, 760px);
    padding: 56px;
    border: 1px solid var(--card-border);
    border-radius: 28px;
    background: var(--card-bg);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 20px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: #cdd8ff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    font-size: clamp(2.2rem, 6vw, 4.25rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

p {
    max-width: 36rem;
    margin: 24px 0 0;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    padding: 12px 18px;
    border: 1px solid rgba(124, 156, 255, 0.2);
    border-radius: 999px;
    background: rgba(124, 156, 255, 0.12);
    color: var(--text-main);
    font-weight: 600;
}

.status-pill.muted {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
}

@media (max-width: 640px) {
    .hero-card {
        padding: 32px 24px;
        border-radius: 22px;
    }

    p {
        font-size: 1rem;
    }
}
