*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0b1220;
  color: #f1f5f9;
  min-height: 100vh;
  line-height: 1.5;
}

.bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(0, 212, 170, 0.12), transparent 45%),
    #0b1220;
  z-index: -1;
}

.page {
  max-width: 520px;
  margin: 0 auto;
  padding: 24px 16px 40px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
}

.logo .accent {
  color: #00d4aa;
}

.badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  font-size: 0.85rem;
}

.card {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.hero-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.hero-content {
  padding: 24px 22px 28px;
}

.tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 212, 170, 0.12);
  border: 1px solid rgba(0, 212, 170, 0.25);
  color: #00d4aa;
  font-size: 0.8rem;
  font-weight: 600;
}

.hero-content h1 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.subtitle {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.benefits {
  list-style: none;
  margin-bottom: 24px;
}

.benefits li {
  position: relative;
  padding-left: 18px;
  color: #cbd5e1;
  font-size: 0.92rem;
  margin-bottom: 8px;
}

.benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00d4aa;
}

.btn {
  display: block;
  width: 100%;
  text-align: center;
  background: #2aabee;
  color: #fff;
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
}

.btn:hover {
  background: #229ed9;
}

.footer {
  margin-top: 24px;
  text-align: center;
  color: #64748b;
  font-size: 0.8rem;
}

@media (min-width: 480px) {
  .page {
    padding-top: 40px;
  }
}
