:root {
  --glass-bg: rgba(15, 23, 42, 0.58);
  --glass-border: rgba(148, 163, 184, 0.28);
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background: radial-gradient(circle at 15% 20%, rgba(99, 102, 241, 0.24), transparent 45%),
    radial-gradient(circle at 80% 5%, rgba(34, 211, 238, 0.2), transparent 35%),
    #020617;
}

.orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}

.orb-a {
  width: 300px;
  height: 300px;
  background: rgba(99, 102, 241, 0.2);
  top: -80px;
  left: -90px;
}

.orb-b {
  width: 260px;
  height: 260px;
  background: rgba(34, 211, 238, 0.18);
  bottom: -60px;
  right: -80px;
}

header,
main,
footer {
  position: relative;
  z-index: 1;
}

.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.hero-card {
  background: linear-gradient(145deg, rgba(99, 102, 241, 0.35), rgba(139, 92, 246, 0.16));
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.stat-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 0.9rem;
  padding: 1rem;
}

.feature-card {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 1rem;
  padding: 1.25rem;
}

.feature-card h3 {
  font-family: Sora, sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.feature-card p {
  color: #cbd5e1;
}

.pricing-card {
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 1rem;
  padding: 1.2rem;
  background: rgba(15, 23, 42, 0.5);
}

.pricing-card.pro {
  border-color: rgba(34, 211, 238, 0.45);
  background: linear-gradient(145deg, rgba(8, 47, 73, 0.65), rgba(30, 41, 59, 0.5));
}

.pricing-card h3 {
  font-family: Sora, sans-serif;
  font-size: 1.15rem;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #67e8f9;
  margin: 0.35rem 0 0.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: all 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
