:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  color: #202124;
  background: #f6f4f0;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* { box-sizing: border-box; }

html {
  min-width: 20rem;
  min-height: 100%;
  background: #f6f4f0;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  color: #202124;
  background: #f6f4f0;
}

a { color: inherit; }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 3rem), 72rem);
  margin-inline: auto;
  padding-block: 1.5rem;
  border-bottom: 1px solid rgb(32 32 29 / 13%);
}

.site-header__logo {
  color: #1d1d1f;
  font-family: "Satoshi", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.site-header nav a {
  color: #6e6e73;
  font-size: 0.74rem;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: #171714;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.download-page {
  width: min(calc(100% - 3rem), 78rem);
  margin-inline: auto;
  padding: clamp(1.5rem, 3.5vw, 3rem) 0 clamp(4rem, 7vw, 6rem);
}

.download-intro { text-align: center; }

.download-intro h1 {
  margin: 0;
  color: #202124;
  font-family: "Satoshi", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(3rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.048em;
  text-wrap: balance;
}

.download-intro h1 span {
  display: block;
}

.download-title__secondary {
  color: #8a8a8f;
}

.download-action { margin-top: 1.35rem; }

.download-action p {
  margin: 0;
  color: #6e6e73;
  font-family: "Satoshi", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(0.9rem, 1.25vw, 1rem);
  line-height: 1.6;
}

.download-action a {
  color: #0674df;
  text-decoration: none;
}

.download-action a:hover,
.download-action a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.download-status {
  min-height: 1.4rem;
  padding-top: 0.2rem;
  font-size: 0.78rem !important;
}

.install-overview {
  display: block;
  width: 100%;
  height: auto;
  margin-top: clamp(2.25rem, 4vw, 3.5rem);
  object-fit: contain;
}

@media (max-width: 820px) {
  .download-page { width: min(calc(100% - 2rem), 62rem); }
}

@media (max-width: 900px) {
  .site-header { align-items: flex-start; }

  .site-header nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 14rem;
    row-gap: 0.6rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 2rem);
  }

  .site-header__logo { font-size: 1.35rem; }

  .site-header nav {
    gap: 0.75rem 1rem;
    max-width: 12rem;
  }

  .site-header nav a { font-size: 0.7rem; }
  .download-page { padding-top: 2rem; }
  .download-intro h1 { font-size: clamp(2.45rem, 12vw, 3.15rem); }

  .download-action {
    max-width: 22rem;
    margin: 1.25rem auto 0;
  }

  .install-overview { margin-top: 2.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}