/* ===== TOKENS ===== */
:root {
  --bg: #0b0d17;
  --surface: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
  --text: #e2e2f0;
  --muted: #8585a8;
  --accent: #7c5cfc;
  --accent2: #c084fc;
  --green: #34d399;
  --font: 'Inter', system-ui, sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  line-height: 1.7;
  overflow: hidden;
}

/* ===== BACKGROUND GLOW ===== */
.bg-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 92, 252, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.2); }
}

/* ===== CARD ===== */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  max-width: 560px;
  width: 100%;
  text-align: center;
  backdrop-filter: blur(16px);
  animation: fadeUp 0.8s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== ICON ===== */
.icon {
  font-size: 3rem;
  margin-bottom: 1.2rem;
}

/* ===== TYPOGRAPHY ===== */
h1 {
  font-size: clamp(1.4rem, 4vw, 1.85rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1rem;
}
.highlight {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
p {
  color: var(--muted);
  font-size: 1rem;
}
p strong {
  color: var(--text);
  font-weight: 600;
}

/* ===== DIVIDER ===== */
.divider {
  width: 60px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  margin: 1.5rem auto;
}

/* ===== NOTE ===== */
.note {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 1.8rem;
}

/* ===== INFO GRID ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.info-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.info-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--muted);
  font-weight: 600;
}
.info-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}
.status {
  color: var(--green);
}

/* ===== FOOTER ===== */
footer {
  margin-top: 2.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  animation: fadeUp 0.8s ease 0.3s both;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
  .card { padding: 2rem 1.5rem; }
  .info-grid { grid-template-columns: 1fr; }
}
