body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(124, 58, 237, 0.14), transparent 28rem),
    linear-gradient(180deg, #f3eeff 0%, #faf8ff 48%, #ffffff 100%);
  color: #10203a;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.hero {
  width: 100%;
  max-width: 760px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  padding: 32px;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(124, 58, 237, 0.08);
  color: #7c3aed;
  font-size: 14px;
  font-weight: 700;
}

.hero h1 {
  margin: 18px 0 6px;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.tagline {
  margin: 0 0 12px;
  font-size: 18px;
  font-style: italic;
  color: #7c3aed;
  font-weight: 500;
}

.hero p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: #42526b;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.feature {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  border-radius: 14px;
  background: #f9f5ff;
  border: 1px solid rgba(124, 58, 237, 0.08);
}

.feature strong {
  font-size: 15px;
  color: #10203a;
}

.feature span {
  font-size: 14px;
  color: #53647d;
  line-height: 1.5;
}

.pricing-banner {
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}

.pricing-banner strong {
  font-size: 20px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
}

.actions a:first-child {
  background: #7c3aed;
  color: #fff;
  box-shadow: 0 18px 32px rgba(124, 58, 237, 0.24);
}

.actions a:last-child {
  background: #f3eeff;
  color: #5b21b6;
}

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