@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

body {
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at center, #101828, #030712);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  min-height: 100vh;
}

.container {
  text-align: center;
  max-width: 500px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
}

.title {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 20px 0 10px;
  line-height: 1.2;
}

.subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.promo {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 30px;
  border: 1px solid #00AEEF;
}

.promo strong {
  font-size: 0.9rem;
  color: #72CFF8;
}

.promo span {
  font-size: 1.4rem;
  color: #72CFF8;
  font-weight: 800;
}

.plans {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 30px;
}

.card {
  background-color: #f9fafb;
  color: #3d080d;
  border: #FC7A17 solid 2px;
  filter: drop-shadow(0 0 0.75em #e6680eea );
  border-radius: 10px;
  padding: 15px 10px;
  flex: 1;
}

.card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.card .price {
  font-size: 1.2rem;
  font-weight: 700;
}

.card .price span {
  font-size: 1.6rem;
}

.card .price sup {
  font-size: 1rem;
  vertical-align: super;
}

.cta-button {
  display: inline-block;
  background-color: #FC7A17;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
  border: none;
}

.cta-button:hover {
  background-color: #e6690e;
}
