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

body {
    font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #f8fafc;
    background: radial-gradient(circle at 10% 20%, #0b1a2d 0%, #050b16 55%, #010409 100%);
    min-height: 100vh;
}

main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(2rem, 5vw, 4rem);
    position: relative;
    overflow: hidden;
}

.page {
    position: relative;
    width: 100%;
    max-width: 520px;
    z-index: 1;
}

.page__background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.page__glow {
    position: absolute;
    width: 60%;
    aspect-ratio: 1 / 1;
    filter: blur(90px);
    opacity: 0.85;
}

.page__glow--one {
    bottom: -25%;
    left: -12%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.65) 0%, rgba(15, 23, 42, 0) 65%);
}

.page__glow--two {
    top: -20%;
    right: -15%;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.55) 0%, rgba(15, 23, 42, 0) 65%);
}

.page__grid {
    position: absolute;
    inset: -50%;
    background-image:
        linear-gradient(transparent 31px, rgba(148, 163, 184, 0.08) 32px),
        linear-gradient(90deg, transparent 31px, rgba(148, 163, 184, 0.08) 32px);
    background-size: 32px 32px;
    opacity: 0.35;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.6) 45%, transparent 75%);
}

.card {
    position: relative;
    background: rgba(7, 17, 35, 0.76);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 28px;
    padding: clamp(2.8rem, 6vw, 3.4rem);
    display: flex;
    flex-direction: column;
    gap: clamp(1.8rem, 4vw, 2.2rem);
    align-items: center;
    text-align: center;
    box-shadow: 0 40px 80px rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(36px);
}

.brand {
    display: inline-block;
    font-size: clamp(2.4rem, 6vw, 3.2rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #e2f2ff;
    background: linear-gradient(135deg, #38bdf8 0%, #22d3ee 50%, #14b8a6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
    padding-inline: 0.5rem;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(45, 212, 191, 0.35);
    background: rgba(45, 212, 191, 0.12);
    color: #5eead4;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.status-pill__dot {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: #22d3ee;
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.18);
}

.progress {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.progress__label {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.7);
}

.progress__track {
    position: relative;
    height: 0.7rem;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.2);
    overflow: hidden;
}

.progress__bar {
    position: absolute;
    inset: 0;
    width: var(--progress, 0%);
    border-radius: inherit;
    background: linear-gradient(135deg, #22d3ee 0%, #0ea5e9 50%, #14b8a6 100%);
    transition: width 0.4s ease;
}

@media (max-width: 600px) {
    main {
        padding: 1.8rem;
    }

    .card {
        padding: clamp(2.4rem, 8vw, 2.8rem);
    }
}
