:root {
  --bg: #0b1020;
  --card: rgba(15, 23, 42, 0.72);
  --card-border: rgba(255, 255, 255, 0.1);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --primary: #7c3aed;
  --primary-2: #22d3ee;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(124, 58, 237, 0.18), transparent 32%),
    radial-gradient(circle at bottom right, rgba(34, 211, 238, 0.12), transparent 30%),
    linear-gradient(135deg, #020617 0%, #0b1020 45%, #111827 100%);
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  opacity: 0.6;
}

.orb-one {
  width: 240px;
  height: 240px;
  top: 8%;
  left: 8%;
  background: rgba(124, 58, 237, 0.35);
}

.orb-two {
  width: 280px;
  height: 280px;
  bottom: 5%;
  right: 8%;
  background: rgba(34, 211, 238, 0.22);
}

.wrapper {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  width: 100%;
  max-width: 760px;
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  border-radius: 28px;
  padding: 36px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.14);
  border: 1px solid rgba(167, 139, 250, 0.24);
  color: #ddd6fe;
  font-size: 14px;
  font-weight: 600;
}

h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.lead {
  margin: 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.status-box {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.status-box > div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.label {
  margin: 0 0 8px;
  color: #94a3b8;
  font-size: 0.9rem;
}

.value {
  margin: 0;
  font-weight: 700;
  font-size: 1.05rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 16px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #8b5cf6);
  color: white;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.28);
}

.btn-secondary {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.updates {
  margin-top: 28px;
  padding-top: 10px;
}

.update-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e2e8f0;
  padding: 10px 0;
}

.update-item span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-2), #a78bfa);
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.5);
}

.update-item p {
  margin: 0;
}

@media (max-width: 640px) {
  .card {
    padding: 24px;
    border-radius: 24px;
  }

  .status-box {
    grid-template-columns: 1fr;
  }

  .actions {
    flex-direction: column;
  }

  .btn {
    text-align: center;
  }
}
