:root {
  color-scheme: light;
  --ink: #1f2933;
  --muted: #5f6b7a;
  --line: #d7dee7;
  --paper: #fbfcfd;
  --accent: #0f766e;
  --accent-dark: #134e4a;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #edf1f5;
  color: var(--ink);
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.hero {
  padding: 48px 0 56px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 700;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.lede {
  max-width: 720px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

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

.actions a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-weight: 650;
}

.actions .primary {
  border-color: var(--accent);
  background: var(--accent);
  color: white;
}

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

article {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--paper);
}

h2 {
  font-size: 18px;
  line-height: 1.3;
}

article p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.5;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

@media (max-width: 760px) {
  .home {
    padding-top: 36px;
  }

  .hero {
    padding-bottom: 40px;
  }

  .lede {
    font-size: 17px;
  }

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