:root {
  color-scheme: light;
  --ink: #17201d;
  --muted: #587067;
  --paper: #f7f4ec;
  --panel: #fffaf0;
  --line: #d8d0bf;
  --green: #176b4d;
  --green-dark: #0f4b37;
  --blue: #1e6387;
  --coral: #c9503b;
  --code: #15231e;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    linear-gradient(120deg, rgba(23, 107, 77, 0.12), transparent 34%),
    linear-gradient(240deg, rgba(201, 80, 59, 0.14), transparent 40%),
    var(--paper);
  color: var(--ink);
  font-family: Avenir Next, Avenir, "Segoe UI", sans-serif;
}

main {
  min-height: 100vh;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  min-height: 88vh;
  padding: clamp(28px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 9vw, 7.6rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.lede {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  line-height: 1.5;
}

.install-row {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin: 30px 0 22px;
}

code {
  font-family: "SFMono-Regular", Consolas, monospace;
}

.install-row code {
  display: block;
  overflow-x: auto;
  padding: 15px 17px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.8);
  color: var(--code);
  font-size: 0.95rem;
  white-space: nowrap;
}

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

.actions a {
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid var(--green-dark);
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}

.actions .primary {
  background: var(--green-dark);
  color: #fffaf0;
}

.terminal-card {
  overflow: hidden;
  border: 1px solid #26362f;
  background: var(--code);
  box-shadow: 18px 18px 0 rgba(30, 99, 135, 0.18);
}

.terminal-bar {
  display: flex;
  gap: 7px;
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.terminal-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--coral);
}

.terminal-bar span:nth-child(2) {
  background: #e3b643;
}

.terminal-bar span:nth-child(3) {
  background: #6fb17b;
}

pre {
  overflow: auto;
  margin: 0;
  padding: clamp(18px, 3vw, 30px);
  color: #eaf5ef;
  font-size: clamp(0.78rem, 1.35vw, 1rem);
  line-height: 1.55;
}

.band,
.split {
  padding: clamp(34px, 6vw, 84px) clamp(24px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.steps article {
  min-height: 210px;
  padding: 24px;
  background: rgba(255, 250, 240, 0.78);
}

.steps span {
  display: inline-block;
  margin-bottom: 44px;
  color: var(--blue);
  font-weight: 900;
}

.steps p,
.feature-list p {
  color: var(--muted);
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-list p {
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.feature-list strong {
  color: var(--ink);
}

@media (max-width: 900px) {
  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

@media (max-width: 560px) {
  .hero {
    padding: 26px 18px 42px;
  }

  h1 {
    font-size: 3.1rem;
  }

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

  .band,
  .split {
    padding: 38px 18px;
  }
}
