:root {
  --bg: #0f172a;
  --card: rgba(15, 23, 42, 0.95);
  --text: #e2e8f0;
  --accent: #f59e0b;
  --muted: #94a3b8;
}

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

body {
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  background: radial-gradient(circle at top, rgba(245, 158, 11, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.14), transparent 25%),
    var(--bg);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.container {
  width: min(1040px, 100%);
}

.hero {
  background: var(--card);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 28px;
  padding: 3rem;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(18px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.14);
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.02;
  margin-bottom: 1rem;
}

p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 2rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 1rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button.primary {
  background: linear-gradient(135deg, #f59e0b, #fb923c);
  color: #0f172a;
  box-shadow: 0 18px 30px rgba(245, 158, 11, 0.25);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

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

.features {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 20px;
  padding: 1.35rem;
  min-height: 140px;
}

.feature h3 {
  margin-bottom: 0.85rem;
  font-size: 1.05rem;
}

.feature p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.footer {
  margin-top: 2.5rem;
  color: rgba(148, 163, 184, 0.88);
  font-size: 0.95rem;
  text-align: center;
}

@media (max-width: 640px) {
  .hero {
    padding: 2rem;
  }

  .actions {
    flex-direction: column;
  }
}
