﻿* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at 50% 20%, #241047 0%, #090611 38%, #020204 75%);
    color: white;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
}

.content {
    max-width: 900px;
}

.eyebrow {
    color: #9b65ff;
    letter-spacing: 5px;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 22px;
}

h1 {
    margin: 0;
    font-size: clamp(48px, 10vw, 105px);
    line-height: .85;
    letter-spacing: -4px;
}

h1 span {
    display: block;
    color: #a65cff;
}

p {
    color: #b8b4c1;
    font-size: 20px;
    margin: 30px auto;
}

.status {
    display: inline-block;
    padding: 14px 24px;
    border: 1px solid #7d48e8;
    border-radius: 999px;
    color: #cbaeff;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 0 30px rgba(133, 70, 255, .18);
}
