:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: #18322d;
  background: #f4f2ea;
}

* { box-sizing: border-box; }
body { margin: 0; min-height: 100vh; }
main { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
nav { height: 92px; display: flex; align-items: center; gap: 12px; font-weight: 750; }
.brand-mark {
  display: grid; place-items: center; width: 38px; height: 38px;
  border-radius: 12px; background: #18322d; color: #fff; font-size: 13px;
}
.local-badge {
  margin-left: auto; padding: 8px 12px; border: 1px solid #b9c7bf;
  border-radius: 999px; color: #547067; font-size: 12px;
}
.hero { padding: 90px 0 100px; max-width: 850px; }
.eyebrow {
  color: #d16e4e; font-size: 13px; font-weight: 800; letter-spacing: .15em;
  text-transform: uppercase;
}
h1 { margin: 18px 0 24px; font-size: clamp(52px, 8vw, 92px); line-height: .95; letter-spacing: -.06em; }
.lede { max-width: 650px; color: #5c6e67; font-size: 20px; line-height: 1.55; }
.download-options { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.download-button {
  display: inline-flex; flex-direction: column; gap: 3px; margin-top: 24px;
  min-width: 280px; padding: 17px 22px; border-radius: 14px;
  background: #db7654; color: white; text-decoration: none; box-shadow: 0 10px 30px #d16e4e33;
}
.download-options .download-button { margin-top: 0; }
.download-button.secondary {
  border: 1px solid #b8c7c0; background: transparent; color: #18322d; box-shadow: none;
}
.download-button.secondary small { color: #6d8078; }
.download-button.secondary:hover { background: #e8e7df; }
.download-button span { font-size: 17px; font-weight: 800; }
.download-button small { color: #ffe7de; }
.download-button:hover { background: #c96141; transform: translateY(-1px); }
.support { color: #73847e; font-size: 13px; }
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  padding: 22px 0 60px; border-top: 1px solid #d9ddd4;
}
.steps article { padding: 28px; border-radius: 18px; background: #fffdf8; }
.steps b { color: #d16e4e; }
.steps h2 { margin: 35px 0 8px; font-size: 19px; }
.steps p { margin: 0; color: #6e7a76; line-height: 1.5; }
code { font-size: 12px; }
footer {
  display: flex; justify-content: space-between; padding: 24px 0 36px;
  color: #71817b; font-size: 13px;
}
@media (max-width: 700px) {
  main { width: min(100% - 28px, 1120px); }
  .hero { padding: 52px 0 70px; }
  .download-options { align-items: stretch; flex-direction: column; }
  .download-button { min-width: 0; }
  .steps { grid-template-columns: 1fr; }
  .steps h2 { margin-top: 20px; }
}
