:root {
  color-scheme: dark;
  --blue: #1476ff;
  --cyan: #16d4e3;
  --ink: #07111f;
  --line: rgba(255, 255, 255, 0.16);
  --text: #f7fbff;
  --muted: rgba(229, 241, 255, 0.72);
}

* { box-sizing: border-box; }

body {
  display: grid;
  min-height: 100svh;
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(145deg, #06101d 0%, #0a1b2e 48%, #06111f 100%);
  background-size: 64px 64px, 64px 64px, auto;
}

a { color: inherit; text-decoration: none; }

.download-page {
  display: grid;
  width: min(760px, calc(100% - 40px));
  align-content: center;
  justify-items: start;
  gap: 42px;
  margin: 0 auto;
  padding: 40px 0;
}

.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 800; }
.brand-mark { display: inline-grid; width: 38px; height: 38px; place-items: center; border-radius: 14px 14px 14px 5px; background: linear-gradient(145deg, var(--blue), var(--cyan)); }
.brand-mark span { width: 17px; height: 8px; border-radius: 99px; background: #fff; }
.download-status { max-width: 560px; }
.eyebrow { margin: 0 0 14px; color: #b9f450; font-size: 12px; font-weight: 800; letter-spacing: 0; text-transform: uppercase; }
h1 { margin: 0; font-size: clamp(34px, 7vw, 58px); line-height: 1.12; letter-spacing: 0; }
.download-status p:not(.eyebrow) { margin: 18px 0 0; color: var(--muted); font-size: 17px; line-height: 1.7; }
.back-link { display: inline-flex; min-height: 42px; align-items: center; margin-top: 30px; border: 1px solid var(--line); border-radius: 999px; padding: 0 18px; font-weight: 700; }

@media (max-width: 560px) {
  .download-page { width: calc(100% - 32px); gap: 32px; padding: 32px 0; }
  .download-status p:not(.eyebrow) { font-size: 16px; }
}
