:root {
  color-scheme: light;
  --bg-start: #081224;
  --bg-mid: #0f1f3a;
  --bg-end: #1b325f;
  --card-bg: rgba(10, 20, 39, 0.82);
  --card-highlight: rgba(255, 255, 255, 0.08);
  --text: #f8fbff;
  --muted: #bfd0ee;
  --accent: #62e5c3;
  --accent-strong: #3bd2ae;
  --accent-hover: #2ec29f;
  --secondary: #8fb3ff;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 30px 90px rgba(1, 8, 20, 0.42);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(98, 229, 195, 0.18), transparent 30%),
    linear-gradient(145deg, var(--bg-start), var(--bg-mid) 50%, var(--bg-end));
}

.bg-glow {
  position: fixed;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
}

.bg-glow-one {
  top: -120px;
  left: -120px;
  background: rgba(98, 229, 195, 0.28);
}

.bg-glow-two {
  right: -100px;
  bottom: -140px;
  background: rgba(143, 179, 255, 0.22);
}

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

.card {
  width: min(100%, 900px);
  padding: 48px 42px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow);
  text-align: center;
  backdrop-filter: blur(18px);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.eyebrow {
  margin: 0;
  padding: 10px 16px;
  color: #081224;
  background: var(--accent);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.discount-pill {
  padding: 10px 16px;
  border: 1px solid rgba(98, 229, 195, 0.25);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(98, 229, 195, 0.1);
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.1;
}

h1 span {
  color: var(--accent);
}

.lead {
  width: min(100%, 640px);
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.75;
}

.pricing-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.price-block {
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 24px;
}

.price-block.featured {
  background: linear-gradient(180deg, rgba(98, 229, 195, 0.18), rgba(98, 229, 195, 0.08));
  border-color: rgba(98, 229, 195, 0.32);
}

.price-block.accent {
  background: linear-gradient(180deg, rgba(143, 179, 255, 0.16), rgba(143, 179, 255, 0.08));
  border-color: rgba(143, 179, 255, 0.3);
}

.label {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-block strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.2;
}

.body-copy {
  width: min(100%, 680px);
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-hover);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--accent);
  color: #081224;
}

.button.primary:hover {
  color: #081224;
  background: var(--accent-hover);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
}

.button.secondary:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 640px) {
  .card {
    padding: 34px 22px;
  }

  h1 {
    font-size: 2.25rem;
  }

  .lead,
  .body-copy {
    font-size: 1rem;
  }

  .cta-group {
    flex-direction: column;
  }

  .pricing-panel {
    grid-template-columns: 1fr;
  }
}
