:root {
    --bg: #05060a;
    --card: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.12);
    --text: #eef2ff;
    --muted: #b9c0d4;
    --accent: #8ef4ff;
    --accent-2: #c084fc;
    --radius: 22px;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    --glass-blur: blur(24px);
}

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

body {
    font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
    background: radial-gradient(circle at 20% 20%, rgba(104, 194, 255, 0.12), transparent 35%),
                radial-gradient(circle at 80% 10%, rgba(192, 132, 252, 0.18), transparent 45%),
                radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.08), transparent 50%),
                var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 64px 24px 96px;
    overflow-x: hidden;
}

.page {
    width: min(1100px, 100%);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero {
    text-align: center;
    display: grid;
    gap: 16px;
}

.hero .pill {
    display: inline-flex;
    align-self: center;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--accent);
    background: linear-gradient(120deg, rgba(142, 244, 255, 0.12), rgba(192, 132, 252, 0.12));
    backdrop-filter: blur(12px);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.15;
    font-weight: 700;
    color: var(--text);
}

.hero .accent {
    color: var(--accent-2);
}

.hero .lede {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
    max-width: 700px;
    justify-self: center;
}

.badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    border: 1px solid var(--border);
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    font-weight: 600;
    color: var(--muted);
}

.card {
    position: relative;
    border: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow);
    overflow: hidden;
    backdrop-filter: var(--glass-blur);
}

.card::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: calc(var(--radius) - 1px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 6px;
}

.card h2 {
    font-size: 24px;
}

.status {
    border-radius: 999px;
    padding: 10px 16px;
    border: 1px solid var(--border);
    background: rgba(142, 244, 255, 0.12);
    color: var(--text);
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lyrics {
    display: grid;
    gap: 12px;
    padding: 12px;
    border-radius: calc(var(--radius) - 6px);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.lyrics p {
    font-family: 'Zen Loop', cursive;
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.35;
    color: var(--text);
    letter-spacing: 0.02em;
}

.ambient {
    position: absolute;
    filter: blur(90px);
    opacity: 0.5;
    z-index: 0;
}

.ambient-one {
    width: 420px;
    height: 420px;
    background: #8ef4ff;
    top: -120px;
    left: -140px;
}

.ambient-two {
    width: 360px;
    height: 360px;
    background: #c084fc;
    bottom: -80px;
    right: -60px;
}

.ambient-three {
    width: 280px;
    height: 280px;
    background: #5ce1e6;
    top: 30%;
    right: 15%;
}

@media (max-width: 700px) {
    body {
        padding: 48px 18px 72px;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .status {
        align-self: flex-start;
    }
}
