:root {
    --bg: #0b1120;
    --bg-card: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.12);
    --text: #e8edf6;
    --text-muted: #9aa7bd;
    --accent: #4f8cff;
    --accent-2: #7c5cff;
    --accent-3: #22d3ee;
    --ok: #34d399;
    --radius: 22px;
    --shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    background: radial-gradient(1200px 800px at 20% -10%, #16213e 0%, transparent 55%),
        radial-gradient(1000px 700px at 100% 100%, #1a1438 0%, transparent 50%),
        var(--bg);
    color: var(--text);
    min-height: 100%;
    display: grid;
    place-items: center;
    padding: 24px;
    overflow-x: hidden;
    position: relative;
}

/* Decorative animated blobs */
.bg-decor {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.55;
    animation: float 16s ease-in-out infinite;
}

.blob-1 {
    width: 420px;
    height: 420px;
    background: var(--accent);
    top: -120px;
    left: -80px;
}

.blob-2 {
    width: 360px;
    height: 360px;
    background: var(--accent-2);
    bottom: -120px;
    right: -60px;
    animation-delay: -5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-3);
    top: 40%;
    left: 60%;
    opacity: 0.35;
    animation-delay: -9s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.08); }
}

/* Card */
.card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 540px;
    background: var(--bg-card);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 44px 38px 28px;
    text-align: center;
    animation: rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes rise {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 7px 14px;
    border-radius: 999px;
    margin-bottom: 26px;
}

.pulse {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--ok);
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6); }
    70% { box-shadow: 0 0 0 10px rgba(52, 211, 153, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.logo {
    width: 76px;
    height: 76px;
    margin: 0 auto 22px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 12px 30px -8px rgba(79, 140, 255, 0.6);
}

h1 {
    font-size: clamp(28px, 6vw, 40px);
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff, #b9c6e6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 14px;
}

.lead {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 420px;
    margin: 0 auto 30px;
}

/* Progress */
.progress {
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-bar {
    height: 100%;
    width: 62%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
    background-size: 200% 100%;
    animation: shimmer 2.4s linear infinite, grow 1.4s ease-out both;
}

@keyframes shimmer {
    0% { background-position: 0% 0; }
    100% { background-position: 200% 0; }
}

@keyframes grow {
    from { width: 0; }
}

.progress-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

/* Steps */
.steps {
    list-style: none;
    text-align: left;
    max-width: 320px;
    margin: 0 auto 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.steps li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-muted);
}

.step-icon {
    width: 24px;
    height: 24px;
    flex: none;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 12px;
    border: 1px solid var(--border);
}

.steps li.done { color: var(--text); }
.steps li.done .step-icon {
    background: rgba(52, 211, 153, 0.15);
    color: var(--ok);
    border-color: rgba(52, 211, 153, 0.4);
}

.steps li.active { color: #fff; font-weight: 600; }
.steps li.active .step-icon {
    background: rgba(79, 140, 255, 0.18);
    color: var(--accent);
    border-color: rgba(79, 140, 255, 0.5);
    animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
    0% { box-shadow: 0 0 0 0 rgba(79, 140, 255, 0.6); }
    70% { box-shadow: 0 0 0 8px rgba(79, 140, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(79, 140, 255, 0); }
}

/* Info grid */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}

.info-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.info-value {
    font-size: 17px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.status-ok { color: var(--ok); }

/* Contact */
.contact {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 26px;
}

.contact p { margin-bottom: 6px; }

.contact-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed rgba(79, 140, 255, 0.5);
    transition: color 0.2s, border-color 0.2s;
}

.contact-link:hover {
    color: var(--accent-3);
    border-color: var(--accent-3);
}

.foot {
    font-size: 12px;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    padding-top: 18px;
}

@media (max-width: 480px) {
    .card { padding: 34px 22px 22px; }
    .info-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; }
}
