:root {
  --black: #0c0e14;
  --panel: #171a26;
  --panel-strong: #1d2233;
  --white: #f5f7ff;
  --blue: #4c9eff;
  --gold: #ffc94c;
  --muted: #9aa3bd;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
}

body {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(76, 158, 255, 0.14), transparent 45%),
    radial-gradient(ellipse at 90% 10%, rgba(255, 201, 76, 0.10), transparent 40%),
    var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  max-width: 100%;
}

.site-bar {
  align-items: center;
  border-bottom: 1px solid rgba(76, 158, 255, 0.25);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 14px 28px;
}

.site-bar__brand {
  color: var(--blue);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-bar__nav {
  display: flex;
  gap: 16px;
}

.site-bar__nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.site-bar__nav a:hover {
  color: var(--blue);
}

.page {
  margin: 0 auto;
  max-width: 1160px;
  padding: 28px;
}

.hero {
  align-items: center;
  display: grid;
  gap: 22px;
  grid-template-columns: 124px 1fr;
  margin-bottom: 18px;
}

.mark {
  border-radius: 26px;
  box-shadow: 0 0 28px rgba(76, 158, 255, 0.35);
  display: block;
  height: 124px;
  width: 124px;
}

.label,
.eyebrow {
  background: var(--blue);
  color: var(--black);
  display: inline-block;
  font-size: 14px;
  font-weight: 900;
  margin: 0 0 8px;
  padding: 7px 10px;
}

h1 {
  font-size: clamp(44px, 9vw, 92px);
  letter-spacing: -0.02em;
  line-height: 0.9;
  margin: 0;
  text-shadow: 0 0 24px rgba(76, 158, 255, 0.35);
}

.tagline {
  color: var(--gold);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin: 12px 0 0;
  text-transform: uppercase;
}

.subhead {
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
  margin: 12px 0 0;
  max-width: 46rem;
}

.private-note {
  border: 3px solid var(--gold);
  color: var(--blue);
  font-size: 17px;
  font-weight: 900;
  margin: 0 0 22px;
  padding: 13px;
}

.platforms {
  align-items: start;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
}

.platform-card {
  background: var(--panel);
  border: 3px solid var(--blue);
  padding: 20px;
}

.platform-card.android {
  border-color: var(--gold);
  background: var(--panel-strong);
}

.platform-card.ios {
  border-color: rgba(76, 158, 255, 0.55);
}

.platform-heading {
  align-items: center;
  display: flex;
  gap: 14px;
}

.phone-icon {
  background: linear-gradient(160deg, var(--blue), var(--gold));
  border: 3px solid var(--white);
  height: 56px;
  width: 37px;
}

.phone-icon.iphone {
  background: #1a2032;
  border-color: var(--blue);
}

.button {
  background: linear-gradient(90deg, var(--blue), #7cbcff);
  color: var(--black);
  display: block;
  font-size: 18px;
  font-weight: 900;
  margin: 18px 0 10px;
  min-height: 60px;
  padding: 19px;
  text-align: center;
  text-decoration: none;
}

.button.feedback {
  display: inline-block;
  min-height: 0;
}

.button.muted {
  background: #262c40;
  color: var(--muted);
  cursor: not-allowed;
  pointer-events: none;
}

.download-status,
.status,
.note,
.testing-notes p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
}

.status {
  color: var(--blue);
  font-size: 22px;
}

dl {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
}

dl div {
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

dt {
  color: var(--muted);
  font-weight: 800;
}

dd {
  font-weight: 900;
  margin: 0;
  text-align: right;
}

.install-steps {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.install-steps div {
  align-items: center;
  background: rgba(76, 158, 255, 0.08);
  display: grid;
  gap: 12px;
  grid-template-columns: 42px 1fr;
  padding: 10px;
}

.install-steps span {
  align-items: center;
  background: var(--gold);
  color: var(--black);
  display: flex;
  font-weight: 900;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.install-steps p,
.fallback {
  font-size: 16px;
  font-weight: 800;
  margin: 0;
}

a {
  color: var(--blue);
}

details {
  border-top: 2px solid rgba(76, 158, 255, 0.22);
  margin-top: 16px;
  padding-top: 12px;
}

summary {
  color: var(--blue);
  cursor: pointer;
  font-size: 17px;
  font-weight: 900;
}

.hash {
  font-family: Consolas, Monaco, monospace;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.testing-notes {
  border-top: 4px solid var(--gold);
  margin-top: 28px;
  padding-top: 22px;
}

.site-foot {
  border-top: 1px solid rgba(76, 158, 255, 0.2);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 18px 28px 32px;
}

.site-foot a {
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.site-foot a:hover {
  color: var(--blue);
}

@media (max-width: 760px) {
  .site-bar,
  .page,
  .site-foot {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero,
  .platforms {
    grid-template-columns: 1fr;
  }

  .mark {
    height: 102px;
    width: 102px;
  }

  h1 {
    font-size: clamp(2.2rem, 11vw, 3rem);
    overflow-wrap: anywhere;
  }

  .button,
  .platform-card,
  .private-note,
  .subhead,
  dl,
  dd {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .site-bar {
    gap: 10px;
  }

  .site-bar__nav {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}
