/* ============================================================
   DOWNLOAD PAGE — page-specific styles
   (page-hero, section-head, feature-card, step-card, cta-band,
   btn utilities all reused from main.css — not redefined here)
   ============================================================ */

/* ---------- DOWNLOAD CARD ---------- */
.download-card {
  max-width: 480px;
  margin-inline: auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border-red);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8);
  box-shadow: var(--shadow-glow);
  text-align: center;
}
.download-card__logo {
  width: 96px;
  height: 96px;
  margin-inline: auto;
  margin-bottom: var(--space-5);
  border-radius: var(--radius-lg);
  object-fit: contain;
  background: var(--color-surface-2);
  padding: var(--space-3);
}
.download-card__name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}
.download-card__meta {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-8);
}
.download-card .btn--block {
  margin-bottom: var(--space-6);
}
.download-card__proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}
.download-card__stars {
  color: var(--color-accent);
  letter-spacing: 2px;
  font-size: var(--text-base);
}

/* ---------- INSTALL STEPS (5-across) ---------- */
.install-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-6);
  position: relative;
}
.install-step {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5) var(--space-5);
}
.install-step__num {
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: var(--text-2xl);
  color: var(--color-accent);
  margin-bottom: var(--space-3);
  line-height: 1;
}
.install-step__shot {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  margin-bottom: var(--space-4);
}
.install-step h3 {
  font-size: var(--text-base);
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}
.install-step p {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}
@media (max-width: 1100px) {
  .install-steps { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .install-steps { grid-template-columns: 1fr; }
}

/* ---------- SYSTEM REQUIREMENTS ---------- */
.requirements-table {
  max-width: 640px;
  margin-inline: auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.requirements-table dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.requirements-table > dl > div {
  display: contents;
}
.requirements-table dt,
.requirements-table dd {
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--color-border);
  font-size: var(--text-sm);
}
.requirements-table dt {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-text-secondary);
  border-right: 1px solid var(--color-border);
}
.requirements-table dd {
  color: var(--color-text-primary);
  font-weight: var(--fw-medium);
}
.requirements-table > dl > div:last-child dt,
.requirements-table > dl > div:last-child dd {
  border-bottom: none;
}
@media (max-width: 560px) {
  .requirements-table dt,
  .requirements-table dd {
    padding: var(--space-4);
    font-size: var(--text-xs);
  }
}
