:root {
  color-scheme: dark;
  --bg: #07111f;
  --card: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.14);
  --text: #f8fafc;
  --muted: #a9b8cc;
  --accent: #7c3aed;
  --accent-2: #22c55e;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(124, 58, 237, 0.35), transparent 34rem),
    radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.22), transparent 28rem),
    var(--bg);
}

.page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.hero {
  padding: clamp(32px, 7vw, 72px);
  border: 1px solid var(--border);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 999px;
  padding: 8px 14px;
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.12);
  font-weight: 700;
  letter-spacing: 0.02em;
}

h1 {
  max-width: 780px;
  margin: 24px 0 16px;
  font-size: clamp(42px, 8vw, 86px);
  line-height: 0.95;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero p {
  max-width: 680px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), #2563eb);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.cards article {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--card);
}

.cards span {
  color: var(--accent-2);
  font-weight: 900;
}

.cards h2 {
  margin: 12px 0 8px;
}

.cards p {
  margin: 0;
  font-size: 15px;
}

@media (max-width: 760px) {
  .page {
    padding: 32px 0;
  }

  .hero {
    border-radius: 24px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
