:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #101010;
  color: #f4f4f2;
}

* { box-sizing: border-box; }

body { margin: 0; min-width: 320px; }

.page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.card {
  width: min(100%, 470px);
  padding: 42px;
  border: 1px solid #2b2b2b;
  border-radius: 16px;
  background: #181818;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 750;
}

.brand span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 7px;
  background: #d8ff63;
  color: #111;
  font-size: 13px;
}

.eyebrow {
  margin: 48px 0 11px;
  color: #a6a6a0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
}

h1 { margin: 0; font-size: clamp(38px, 9vw, 52px); letter-spacing: -.06em; }

.intro { max-width: 320px; margin: 14px 0 28px; color: #b6b6b1; line-height: 1.6; }

.download {
  display: block;
  width: 100%;
  padding: 15px 20px;
  border-radius: 9px;
  background: #d8ff63;
  color: #111;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  transition: background .15s ease, transform .15s ease;
}

.download:hover { background: #e4ff96; transform: translateY(-1px); }
.download:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }

.version { margin: 11px 0 0; color: #80807c; text-align: center; font-size: 12px; }

.steps { margin-top: 44px; padding-top: 24px; border-top: 1px solid #303030; }
.steps h2 { margin: 0 0 16px; font-size: 15px; }
.steps ol { display: grid; gap: 15px; margin: 0; padding: 0; list-style: none; counter-reset: install; }
.steps li { display: grid; grid-template-columns: 29px 1fr; column-gap: 11px; align-items: center; }
.steps li::before { content: counter(install); counter-increment: install; display: grid; width: 25px; height: 25px; place-items: center; border: 1px solid #3d3d3d; border-radius: 50%; color: #d8ff63; font-size: 11px; }
.steps b { font-size: 13px; }
.steps span { grid-column: 2; color: #a8a8a3; font-size: 12px; line-height: 1.5; }

@media (max-width: 480px) { .card { padding: 30px 24px; } .eyebrow { margin-top: 38px; } }
