:root {
  color-scheme: dark;
  --background: #07101f;
  --card: #111d31;
  --card-border: #26364f;
  --text: #eef5ff;
  --muted: #aab8cc;
  --blue: #2563eb;
  --blue-hover: #1d4ed8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(37, 99, 235, 0.22), transparent 34rem),
    var(--background);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

.hero {
  max-width: 780px;
  margin: 0 auto 28px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: #93c5fd;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1;
}

h2,
h3 {
  margin: 0 0 10px;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.subtitle {
  max-width: 680px;
  margin: 22px auto 0;
  font-size: 1.12rem;
}

.actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  border-radius: 12px;
  padding: 12px 18px;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

.primary {
  background: var(--blue);
}

.primary:hover {
  background: var(--blue-hover);
}

.secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--card-border);
}

.card {
  margin-top: 18px;
  border: 1px solid var(--card-border);
  border-radius: 24px;
  background: rgba(17, 29, 49, 0.9);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  padding: 28px;
}

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

.downloads {
  grid-template-columns: repeat(2, 1fr);
}

code {
  color: #bfdbfe;
}

.muted {
  color: #8fa0b7;
}

li {
  margin: 10px 0;
  color: var(--muted);
}

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

  .actions {
    flex-direction: column;
  }
}
