:root {
  color-scheme: dark;
  --bg: #05070d;
  --panel: #111722;
  --text: #f7f7fb;
  --muted: #aab0c0;
  --accent: #6557ff;
  --warm: #e4bb5d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 70%, rgba(101, 87, 255, 0.24), transparent 28rem),
    radial-gradient(circle at 85% 80%, rgba(228, 187, 93, 0.16), transparent 24rem),
    var(--bg);
  color: var(--text);
}

a {
  color: var(--text);
}

.page {
  min-height: 100vh;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0;
}

.narrow {
  width: min(780px, calc(100% - 40px));
}

.hero {
  min-height: 62vh;
  display: grid;
  align-content: center;
}

.eyebrow,
.back {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

h1 {
  margin: 12px 0 18px;
  font-size: clamp(44px, 8vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-top: 36px;
}

h3 {
  margin: 28px 0 8px;
}

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

.lede {
  max-width: 650px;
  font-size: 22px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  background: var(--accent);
  color: white;
  font-weight: 700;
  text-decoration: none;
}

.secondary {
  background: rgba(255, 255, 255, 0.1);
}

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

article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(17, 23, 34, 0.72);
  padding: 22px;
}

article h2 {
  margin-top: 0;
}

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

  .actions {
    flex-direction: column;
  }
}
