:root {
  --bg: #07111f;
  --bg-2: #0f172a;
  --card: rgba(9, 16, 31, 0.72);
  --stroke: rgba(255, 255, 255, 0.11);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --muted-2: #94a3b8;
  --accent: #8b5cf6;
  --accent-2: #22c55e;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #0b1730 0%, var(--bg) 45%, #040814 100%);
  color: var(--text);
}

body {
  position: relative;
  overflow: hidden;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 18px;
  position: relative;
  z-index: 2;
}

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

.background-1 {
  width: 340px;
  height: 340px;
  background: rgba(139, 92, 246, 0.5);
  top: -90px;
  left: -70px;
}

.background-2 {
  width: 420px;
  height: 420px;
  background: rgba(34, 197, 94, 0.22);
  bottom: -140px;
  right: -100px;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 85%);
}

.card {
  width: min(900px, 100%);
  background: var(--card);
  backdrop-filter: blur(18px);
  border: 1px solid var(--stroke);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.logo {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}

.logo svg {
  width: 52px;
  height: 52px;
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.brand {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.04em;
}

.content {
  padding-top: 8px;
}

.badge {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.14);
  border: 1px solid rgba(139, 92, 246, 0.26);
  color: #ddd6fe;
  font-size: 0.95rem;
  margin-bottom: 18px;
}

h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  max-width: 720px;
}

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

.mini-features {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature {
  border-radius: 20px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.feature-title {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-text {
  display: block;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted-2);
}

.status-box {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-radius: 22px;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
}

.status-label {
  margin: 0 0 6px;
  font-size: 0.9rem;
  color: var(--muted-2);
}

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

.pulse-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  color: #bbf7d0;
  font-weight: 600;
}

.pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse 1.8s infinite;
}

.footer {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--muted-2);
  font-size: 0.92rem;
}

.footer p {
  margin: 0;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.8); }
  70% { box-shadow: 0 0 0 14px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@media (max-width: 820px) {
  .mini-features {
    grid-template-columns: 1fr;
  }

  .status-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .brand-row {
    align-items: flex-start;
  }

  .logo {
    width: 58px;
    height: 58px;
  }

  .lead {
    font-size: 1rem;
  }
}
