:root {
  color-scheme: dark;
  --bg: #050505;
  --fg: #f6f6f3;
  --muted: #a9a9a2;
  --line: #242424;
  --panel: #0d0d0d;
  --accent: #8cf7b4;
}

* {
  box-sizing: border-box;
}

html {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--fg);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
}

main {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 48px;
}

section {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.hero {
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 0;
  padding-top: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(46px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 18px;
  letter-spacing: 0;
}

.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

.note {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.command {
  width: fit-content;
  max-width: 100%;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
  padding: 14px 16px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--fg);
}

code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  white-space: nowrap;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

article {
  min-height: 180px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
}

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

.prompts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.prompts p {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--muted);
  line-height: 1.45;
}

.links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.links h2 {
  width: 100%;
  margin-bottom: 0;
}

a {
  color: var(--fg);
  text-decoration-color: var(--accent);
  text-underline-offset: 4px;
}

a:hover {
  color: var(--accent);
}

@media (max-width: 720px) {
  main {
    width: min(100% - 24px, 920px);
    padding-top: 28px;
  }

  .hero {
    min-height: 82vh;
  }

  h1 {
    font-size: clamp(42px, 16vw, 68px);
  }

  .lead {
    font-size: 18px;
  }

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