:root {
  color-scheme: light;
  --cream: #fdfaf5;
  --green: #1d4937;
  --gold: #ca9746;
  --text: #52585c;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--green);
  background: var(--cream);
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}
* { box-sizing: border-box; }
body { margin: 0; }
[hidden] { display: none !important; }
a { color: inherit; }
.page {
  min-height: calc(100svh - 48px);
  margin: 24px;
  border: 1px solid var(--gold);
  padding: 24px 36px 16px;
  display: flex;
  flex-direction: column;
}
.header { padding: 0 4px; }
.brand { display: block; width: 215px; height: auto; }
.download {
  flex: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 62px 20px 48px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: clamp(36px, 5vw, 100px);
}
h1 {
  margin: 0 0 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 9.1vw, 144px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.055em;
}
.lead { margin: 0 0 32px; color: var(--text); font-size: clamp(18px, 1.65vw, 25px); line-height: 1.48; }
.stores { display: flex; gap: 14px; align-items: stretch; }
.store {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 20px;
  min-height: 78px;
  border: 1px solid var(--green);
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.store span { display: grid; gap: 4px; }
.store small { font-size: 14px; font-weight: 400; }
.store strong { font-size: 17px; font-weight: 600; white-space: nowrap; }
.store-icon { width: 34px; height: 38px; flex: 0 0 34px; }
.store:hover { background: #123b2a; transform: translateY(-2px); box-shadow: 0 6px 16px #1d49371a; }
.store:active { transform: translateY(0); }
a:focus-visible { outline: 3px solid #977030; outline-offset: 5px; }
.identity { position: relative; display: grid; place-items: center; padding: 10px 0; }
.identity img { position: relative; width: 100%; max-width: 520px; height: auto; }
.orbit { position: absolute; border: 1px solid #ca974678; border-radius: 50%; width: 92%; aspect-ratio: 1; top: -7%; max-width: 410px; }
.orbit-inner { width: 81%; max-width: 360px; top: -2%; }
.footer { border-top: 1px solid #ca9746aa; padding: 19px 12px 0; display: flex; justify-content: space-between; gap: 20px; font-size: 12px; letter-spacing: .25em; }
.footer span:first-child { text-transform: uppercase; }
.browser-help { font-size: 15px; line-height: 1.6; border-left: 2px solid var(--gold); padding-left: 14px; margin: 20px 0; max-width: 500px; color: var(--text); }
@media (min-width: 1600px) { .download { padding-top: 80px; padding-bottom: 80px; } }
@media (max-width: 1150px) {
  .page { padding: 22px 26px 16px; }
  .download { grid-template-columns: 1.25fr 1fr; gap: 26px; padding: 50px 4px; }
  .store { gap: 10px; padding: 16px 12px; }
  .store strong { font-size: 15px; }
  .store small { font-size: 13px; }
  .store-icon { width: 28px; flex-basis: 28px; }
  .stores { flex-direction: column; max-width: 340px; }
  .store { justify-content: flex-start; padding-inline: 24px; }
}
@media (max-width: 850px) {
  .page { margin: 14px; min-height: calc(100svh - 28px); padding: 22px 24px 16px; }
  .header { display: flex; justify-content: center; }
  .brand { width: 190px; }
  .download { display: block; padding: 50px 0 44px; }
  .copy { max-width: 530px; margin: auto; text-align: center; }
  h1 { font-size: clamp(57px, 10vw, 80px); margin-bottom: 24px; }
  .lead { font-size: 18px; max-width: 390px; margin: 0 auto 28px; }
  .desktop-break { display: none; }
  .store { text-align: left; min-height: 78px; }
  .stores { max-width: none; flex-direction: row; }
  .identity { display: none; }
  .browser-help { text-align: left; }
  .footer { margin-top: auto; padding: 18px 0 0; letter-spacing: .14em; }
}
@media (max-width: 480px) {
  .page { padding: 22px 22px 16px; }
  .download { padding: 38px 0 34px; }
  .brand { width: 173px; }
  h1 { font-size: clamp(47px, 12vw, 60px); }
  .lead { font-size: 17px; }
  .stores { flex-direction: column; gap: 12px; }
  .store { justify-content: flex-start; padding: 16px 28px; gap: 20px; min-height: 76px; }
  .store strong { font-size: 18px; }
  .store small { font-size: 14px; }
  .store-icon { width: 31px; flex-basis: 31px; }
  .footer { font-size: 12px; letter-spacing: .06em; }
}
@media (max-width: 350px) {
  .page { margin: 10px; padding-inline: 16px; }
  .store { padding-inline: 18px; gap: 14px; }
  .store strong { font-size: 16px; }
}
@media (prefers-reduced-motion: reduce) { .store { transition: none; } }
