:root {
  font-family: Inter, "Segoe UI Variable", "Segoe UI", system-ui, sans-serif;
  color: #eff6ff;
  background: #071426;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 15%, rgba(31, 111, 235, .28), transparent 36rem),
    radial-gradient(circle at 90% 90%, rgba(42, 178, 255, .16), transparent 32rem),
    #071426;
}

.shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 18px;
}

.card {
  width: min(100%, 680px);
  padding: clamp(28px, 6vw, 58px);
  text-align: center;
  border: 1px solid rgba(148, 191, 255, .22);
  border-radius: 28px;
  background: rgba(8, 28, 52, .86);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .35);
  backdrop-filter: blur(18px);
}

.logo {
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(0, 77, 184, .35);
}

.eyebrow {
  margin: 26px 0 8px;
  color: #82c8ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 9vw, 68px);
  letter-spacing: -.045em;
}

.lead {
  max-width: 560px;
  margin: 18px auto 28px;
  color: #bfd2e8;
  font-size: 18px;
  line-height: 1.55;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 30px;
  overflow: hidden;
  border: 1px solid rgba(148, 191, 255, .18);
  border-radius: 16px;
  background: rgba(4, 17, 34, .55);
}

.facts div { padding: 17px 12px; }
.facts div + div { border-left: 1px solid rgba(148, 191, 255, .18); }
.facts span, .facts strong { display: block; }
.facts span { margin-bottom: 7px; color: #7f9bb8; font-size: 12px; }
.facts strong { font-size: 14px; }

.primary, .secondary {
  min-height: 54px;
  border-radius: 13px;
  font: inherit;
  font-weight: 750;
}

.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 360px);
  padding: 0 24px;
  border: 0;
  color: white;
  background: linear-gradient(135deg, #0877e8, #1fa2ff);
  box-shadow: 0 14px 34px rgba(0, 119, 232, .3);
  cursor: pointer;
  text-decoration: none;
}

.primary:hover { filter: brightness(1.08); }

.status { min-height: 24px; margin: 14px 0 0; color: #a9c9e9; }

.install-help {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid rgba(255, 201, 92, .3);
  border-radius: 16px;
  background: rgba(92, 59, 0, .15);
  text-align: left;
}

.install-help h2 { margin: 0 0 12px; font-size: 18px; }
.install-help ol { margin: 0; padding-left: 22px; color: #d7e7f8; line-height: 1.55; }
.install-help li + li { margin-top: 8px; }
.install-help .small { margin: 14px 0 0; }

.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: #071426;
  background: #f5c75d;
  text-decoration: none;
}

.small, .privacy, .count { color: #8fa9c4; font-size: 13px; line-height: 1.5; }
.count { margin: 28px 0 4px; }
.count strong { color: #eff6ff; }
.privacy { margin: 0 auto; max-width: 520px; }

@media (max-width: 620px) {
  .facts { grid-template-columns: 1fr; text-align: left; }
  .facts div + div { border-left: 0; border-top: 1px solid rgba(148, 191, 255, .18); }
}
