/* ═══════════════════════════════════════
   DISTRIBUTION REACH
═══════════════════════════════════════ */
.distribution-reach {
  /* A deliberately distinct variant of --dark-gradient (steeper angle, cooler
     and darker, no bright-green endpoint), same family as Principals and
     Branches on either side so each of the three still reads as its own
     section on scroll, without breaking the shared "dark = proof" language. */
  background: linear-gradient(160deg, #203A5A 0%, #24476B 40%, #276B5E 100%);
  position: relative;
}

/* ── Outlet directory (names, no third-party logos) ── */
.reach-network {
  margin-top: 8px;
  padding: 44px 48px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.reach-channel {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 20px 44px;
  align-items: start;
}

.reach-channel + .reach-channel {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.reach-channel-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-top: 4px;
}

.reach-channel-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal2);
  margin: 0;
}

.reach-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.reach-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

/* Leading accent dot — a small shared mark that unifies names of very
   different lengths into one rhythm, standing in for the missing logos. */
.reach-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal2);
  flex-shrink: 0;
}

.reach-chip:hover {
  transform: translateY(-2px);
  background: rgba(46, 204, 113, 0.1);
  border-color: rgba(46, 204, 113, 0.55);
}

.reach-footer-note {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  padding-top: 22px;
}

@media (max-width: 760px) {
  .reach-network { padding: 32px 24px; border-radius: 22px; }
  .reach-channel {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .reach-chip { font-size: 13px; padding: 9px 15px; }
}

@media (prefers-reduced-motion: reduce) {
  .reach-chip { transition: none; }
  .reach-chip:hover { transform: none; }
}
