.download-intro {
  padding-bottom: 42px;
}
.download-intro h1 {
  max-width: 19em;
  margin-top: 20px;
}
.download-lead {
  max-width: 51em;
  margin-top: 22px;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.8;
}
.download-lead a,
.client-info a,
.faq-body a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.download-route {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}
.download-route span {
  min-width: 0;
  padding: 17px 20px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg);
  color: var(--text-muted);
  box-shadow: var(--shadow-card);
  font-size: 14px;
}
.download-route b {
  display: block;
  margin-bottom: 3px;
  color: var(--accent-dark);
  font-family: var(--font-mono);
  font-size: 12px;
}
.download-body {
  padding-bottom: 32px;
}
.download-tabs {
  width: max-content;
  margin-bottom: 35px;
}
.platform-panel {
  min-width: 0;
}
.platform-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  align-items: end;
  gap: 32px;
  margin-bottom: 28px;
}
.platform-kicker {
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-family: var(--font-mono);
  font-size: 12px;
}
.platform-heading > p {
  color: var(--text-muted);
  line-height: 1.8;
}
.client-list {
  display: grid;
  gap: 14px;
}
.client-card {
  align-items: stretch;
  padding: 28px;
}
.client-info {
  flex: 1 1 auto;
  min-width: 0;
}
.client-name {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.client-name img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.client-name > div {
  min-width: 0;
}
.client-name h3 {
  overflow-wrap: anywhere;
}
.client-name .badge {
  margin-left: 5px;
}
.client-info p {
  max-width: 66ch;
  line-height: 1.75;
}
.client-info .package-note {
  margin-top: 13px;
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 12px;
}
.client-actions {
  display: flex;
  flex: 0 0 260px;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  min-width: 0;
}
.client-actions .btn {
  width: 100%;
  min-height: 50px;
  padding-inline: 14px;
  font-size: 14px;
}
.requirements {
  min-width: 0;
  margin-top: 30px;
  padding: 28px;
  border-radius: var(--r-xl);
  background: var(--bg-panel);
}
.requirements h3 {
  margin-bottom: 18px;
  font-size: 18px;
}
.requirements .table-scroll {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--bg);
}
.requirements .data-table th,
.requirements .data-table td {
  min-width: 10em;
}
.requirements .data-table th:first-child,
.requirements .data-table td:first-child {
  min-width: 7em;
}
.core-section {
  min-width: 0;
}
.core-intro {
  max-width: 72ch;
}
.core-intro h2 {
  margin-top: 17px;
}
.core-intro p {
  margin-top: 18px;
  color: var(--text-muted);
  line-height: 1.85;
}
.core-table-wrap {
  margin-top: 30px;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
}
.core-table th,
.core-table td {
  min-width: 8em;
}
.core-table .btn {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 13px;
  white-space: nowrap;
}
.core-section .callout {
  margin-top: 22px;
}
.download-help {
  max-width: 850px;
  margin-inline: auto;
  padding-top: 24px;
}
.help-heading {
  margin-bottom: 25px;
}
.help-heading h2 {
  margin-top: 16px;
}
.help-heading p {
  margin-top: 12px;
  color: var(--text-muted);
}
.faq-body p {
  line-height: 1.8;
}
@media (max-width: 800px) {
  .platform-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .download-route {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .download-route span {
    padding: 12px 16px;
  }
  .download-route b {
    display: inline;
    margin-right: 8px;
  }
  .client-card {
    flex-direction: column;
  }
  .client-actions {
    flex-basis: auto;
    width: 100%;
  }
}
@media (max-width: 640px) {
  .download-intro {
    padding-bottom: 26px;
  }
  .download-lead {
    font-size: 15px;
  }
  .download-route {
    margin-top: 24px;
  }
  .download-tabs {
    width: 100%;
    margin-bottom: 25px;
  }
  .client-card {
    gap: 18px;
    padding: 20px;
  }
  .client-name {
    gap: 10px;
  }
  .client-name h3 {
    font-size: 17px;
  }
  .client-info p {
    font-size: 14px;
  }
  .requirements {
    padding: 18px;
  }
  .core-table .btn {
    min-height: 40px;
  }
}