/* Download page */
.dl { min-height: 92vh; display: flex; align-items: center; justify-content: center; padding: 140px 28px 80px; position: relative; overflow: hidden; }
.dl::before { content: ''; position: absolute; inset: 0; background: radial-gradient(50% 50% at 50% 30%, rgba(77,163,255,0.06), transparent 70%); pointer-events: none; }
.dl-inner { max-width: 720px; text-align: center; position: relative; z-index: 1; }
.dl h1 { font-size: clamp(2.5rem, 5.4vw, 3.6rem); font-weight: 600; letter-spacing: -0.035em; line-height: 1.05; margin: 22px 0 22px; text-wrap: balance; color: var(--ink-1); }
.dl em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--ink-2); }
.dl > .dl-inner > p { color: var(--ink-2); font-size: 1.125rem; line-height: 1.6; margin: 0 0 36px; text-wrap: pretty; }
.dl .appstore img { height: 60px; }
.dl .small { color: var(--ink-3); font-size: 13px; margin-top: 22px; letter-spacing: 0.04em; }
.dl .quote { font-family: var(--font-serif); font-style: italic; color: var(--ink-1); font-size: 1.5rem; line-height: 1.4; margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--line-1); }
.dl .quote-cap { display: block; font-family: var(--font-sans); font-style: normal; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); margin-top: 16px; font-weight: 600; }

/* Two install paths side-by-side: iPhone tap vs desktop QR scan.
   Splits like an "either/or" with a centered "or" divider. On mobile
   stacks vertically and the QR/SMS path moves below the badge. */
.dl-paths {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  margin: 32px 0 0;
  padding: 32px 0 0;
  border-top: 1px solid var(--line-1);
}
.dl-path { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.dl-path-eyebrow {
  margin: 0 !important;          /* override .dl > .dl-inner > p */
  font-size: 11px !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3) !important;
  font-weight: 600;
  line-height: 1.4 !important;
}
.dl-path-divider {
  display: flex; align-items: center; justify-content: center;
  position: relative;
  height: 100%;
  min-height: 240px;
  color: var(--ink-4);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.dl-path-divider span { background: var(--bg, #0B0B0E); padding: 8px 0; z-index: 1; }
.dl-path-divider::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 1px;
  background: var(--line-1);
}

.dl-qr-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.dl-qr {
  width: 180px;
  height: 180px;
  display: block;
}
.dl-qr-cap {
  margin: 0 !important;
  font-size: 12px !important;
  color: var(--ink-3) !important;
  letter-spacing: 0.02em;
  line-height: 1.4 !important;
}

.dl-sms {
  display: inline-block;
  margin: 4px 0 0;
  padding: 10px 16px;
  border: 1px solid var(--line-2, rgba(255,255,255,0.12));
  border-radius: 999px;
  color: var(--ink-1);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.005em;
  transition: border-color 200ms ease, background 200ms ease;
}
.dl-sms:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.04); opacity: 1; }

@media (max-width: 720px) {
  .dl-paths {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .dl-path-divider {
    min-height: 0;
    padding: 8px 0;
  }
  .dl-path-divider::before {
    width: 100%;
    height: 1px;
  }
  .dl-qr { width: 160px; height: 160px; }
  /* Order: badge → "or" → QR — same visual story on a small screen. */
}
