:root {
  color-scheme: dark;

  --bg: #0a0d10;
  --panel: #11161c;
  --panel-2: #151b22;

  --text: #f3f6f8;
  --muted: #93a0ad;

  --line: #242c35;

  --accent: #7cb8ff;
  --accent-soft: rgba(124, 184, 255, 0.12);

  --shadow:
    0 10px 40px rgba(0,0,0,.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left,
      rgba(124,184,255,.08),
      transparent 28%),
    var(--bg);

  color: var(--text);

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    sans-serif;
}

main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  padding: 90px 0 60px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;

  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 18px;

  color: var(--accent);

  font-size: .78rem;
  font-weight: 700;

  letter-spacing: .18em;
  text-transform: uppercase;
}

h1,h2,h3,p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;

  font-size: clamp(3.8rem, 10vw, 7rem);
  line-height: .92;
  letter-spacing: -.04em;
}

.lead {
  max-width: 640px;

  color: var(--muted);

  font-size: 1.1rem;
  line-height: 1.7;
}

.lead strong {
  color: var(--text);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;

  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 48px;

  padding: 0 18px;

  border-radius: 8px;

  border: 1px solid var(--line);

  background: var(--panel);

  color: var(--text);

  text-decoration: none;
  font-weight: 700;

  transition:
    transform .15s ease,
    border-color .15s ease,
    background .15s ease;
}

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

  border-color: var(--accent);
}

.button.primary {
  background: var(--accent);
  color: #071018;
  border-color: var(--accent);
}

.button.ghost {
  background: transparent;
}

.repo-link {
  margin-top: 22px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: var(--muted);
  text-decoration: none;

  font-size: .95rem;
}

.repo-link:hover {
  color: var(--text);
}

.terminal {
  overflow: hidden;

  border-radius: 14px;

  border: 1px solid var(--line);

  background: var(--panel);

  box-shadow: var(--shadow);
}

.bar {
  display: flex;
  gap: 8px;

  padding: 14px 16px;

  border-bottom: 1px solid var(--line);

  background: var(--panel-2);
}

.bar span {
  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: #33404d;
}

pre {
  margin: 0;

  overflow-x: auto;

  padding: 24px;

  font:
    .9rem/1.7
    ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;

  color: #dbe5ee;
}

.section {
  padding: 48px 0;

  border-bottom: 1px solid var(--line);
}

.section-title {
  margin-bottom: 18px;

  font-size: 1.5rem;
}

.section-copy {
  max-width: 760px;

  color: var(--muted);

  line-height: 1.7;
}

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

  margin-top: 28px;
}

.card {
  padding: 24px;

  border-radius: 12px;

  border: 1px solid var(--line);

  background: var(--panel);

  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 12px;

  font-size: 1rem;
}

.card p {
  margin-bottom: 0;

  color: var(--muted);

  line-height: 1.65;
}

.card ul {
  margin: 0;
  padding-left: 18px;

  color: var(--muted);

  line-height: 1.8;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 24px;
}

.footer {
  padding: 44px 0 80px;

  color: var(--muted);

  font-size: .95rem;
}

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

@media (max-width: 920px) {

  .hero,
  .grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 52px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 5rem);
  }
}