:root {
  --bg: #f5f1e8;
  --ink: #141312;
  --muted: #67615a;
  --line: rgba(20, 19, 18, 0.12);
  --panel: #fffaf0;
  --panel-2: #ede4d6;
  --accent: #ff6b35;
  --accent-dark: #bf4d28;
  --blue: #284b63;
  --green: #2f6b4f;
  --warn: #b7791f;
  --shadow: 0 24px 80px rgba(20, 19, 18, 0.12);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 107, 53, 0.18), transparent 34rem),
    radial-gradient(circle at 88% 12%, rgba(40, 75, 99, 0.18), transparent 30rem),
    var(--bg);
}

a { color: inherit; }
.hero { min-height: 92vh; padding: 24px; }
.nav {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--bg);
  font-weight: 900;
}
.navlinks { display: flex; gap: 18px; color: var(--muted); font-weight: 650; }
.navlinks a { text-decoration: none; }
.navlinks a:hover { color: var(--ink); }
.heroGrid {
  max-width: 1180px;
  min-height: calc(92vh - 90px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 48px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 13ch;
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 8vw, 7.6rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.5vw, 4.7rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}
h3 { margin-bottom: 8px; font-size: 1.1rem; }
.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 800;
}
.primary { background: var(--ink); color: var(--bg); }
.secondary { background: rgba(255,255,255,0.35); }
.terminalCard {
  overflow: hidden;
  border: 1px solid rgba(245, 241, 232, 0.16);
  border-radius: 28px;
  background: #101010;
  color: #f7f1e5;
  box-shadow: var(--shadow);
}
.terminalTop { display: flex; gap: 8px; padding: 18px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.terminalTop span { width: 12px; height: 12px; border-radius: 50%; background: var(--accent); }
.terminalTop span:nth-child(2) { background: #f5c542; }
.terminalTop span:nth-child(3) { background: #42c77a; }
pre {
  margin: 0;
  padding: 28px;
  color: #f9e7bf;
  font: 800 clamp(1.05rem, 2.1vw, 1.6rem)/1.45 "SFMono-Regular", Consolas, monospace;
  white-space: pre-wrap;
}
.terminalCard p { margin: 0; padding: 0 28px 28px; color: #b8afa1; line-height: 1.5; }
.section { max-width: 1180px; margin: 0 auto; padding: 96px 24px; }
.intro { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.summaryCard, .steps article, .roster div, .statusGrid div, .compare > div, .reportCard {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 250, 240, 0.72);
  padding: 26px;
  box-shadow: 0 10px 30px rgba(20, 19, 18, 0.04);
}
.summaryCard p, .split p, .steps p, .roster span, .pillGrid span, .statusGrid p, .checkList, .reportCard pre { color: var(--muted); line-height: 1.65; }
.compare { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.checkList { margin: 24px 0 0; padding: 0; list-style: none; }
.checkList li { position: relative; margin: 0 0 14px; padding-left: 28px; }
.checkList li::before { position: absolute; left: 0; font-weight: 900; }
.checkList.bad li::before { content: "×"; color: #a33a28; }
.checkList.goodList li::before { content: "✓"; color: var(--green); }
.compatibility { text-align: center; }
.compatibility h2 { max-width: 760px; margin-left: auto; margin-right: auto; }
.logoGrid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; }
.logoGrid span { padding: 14px 18px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,250,240,0.7); font-weight: 850; }
.reportCard { background: #101010; color: #f7f1e5; overflow: hidden; }
.reportCard pre { color: #f9e7bf; font-size: clamp(0.82rem, 1.4vw, 1rem); }
.split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: start; }
.split.reverse { grid-template-columns: 1.15fr 0.85fr; }
.steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.steps span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--accent-dark);
  font-weight: 900;
  font-family: "SFMono-Regular", Consolas, monospace;
}
.dark {
  max-width: none;
  padding-left: max(24px, calc((100vw - 1180px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1180px) / 2 + 24px));
  background: #141312;
  color: #fff6e7;
}
.dark h2 { max-width: 760px; }
.pillGrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 34px; }
.pillGrid div {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 24px;
  background: rgba(255,255,255,0.05);
}
.pillGrid strong, .pillGrid span, .roster strong, .roster span { display: block; }
.pillGrid strong { margin-bottom: 12px; font-size: 1.1rem; }
.pillGrid span { color: #d6cbbd; }
.roster { display: grid; gap: 12px; }
.roster div { display: grid; grid-template-columns: 0.72fr 1fr; gap: 18px; align-items: center; }
.status { text-align: center; }
.status h2 { max-width: 820px; margin-left: auto; margin-right: auto; }
.statusGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px; text-align: left; }
.statusDot { display: inline-block; width: 12px; height: 12px; margin-right: 8px; border-radius: 50%; }
.good { background: var(--green); }
.warn { background: var(--warn); }
footer {
  padding: 42px 24px 60px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

@media (max-width: 860px) {
  .nav { align-items: flex-start; }
  .navlinks { display: none; }
  .heroGrid, .split, .split.reverse, .intro, .statusGrid, .compare { grid-template-columns: 1fr; }
  .heroGrid { min-height: auto; padding-top: 64px; }
  h1 { max-width: 100%; }
  .steps, .pillGrid { grid-template-columns: 1fr; }
  .roster div { grid-template-columns: 1fr; gap: 6px; }
  .section { padding-top: 72px; padding-bottom: 72px; }
}
