.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.site-header nav a {
  color: var(--muted);
  font-size: .9rem;
  text-decoration: none;
}
.site-header nav a:hover { color: var(--accent); }
.reports-main,
.report-article {
  padding-top: 60px;
}
.reports-hero,
.article-header {
  max-width: 880px;
  padding-bottom: 56px;
}
.article-header {
  width: auto;
  margin: 0;
  border-bottom: 0;
}
.report-feature,
.report-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--accent-soft);
  border: 1px solid #f3d5bf;
  border-radius: 18px;
  color: #090f2c;
  padding: 36px;
}
.report-feature p,
.report-callout p { color: #4f5267; }
.report-feature .eyebrow,
.report-callout .eyebrow { color: #9f4200; }
.report-feature h2,
.report-callout h2 { margin-top: 8px; }
.report-date {
  color: var(--muted);
  font-size: .9rem;
}
.report-actions,
.share-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.secondary-action {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  font-weight: 600;
  padding: 14px 20px;
  text-decoration: none;
}
.secondary-action:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.report-feature .report-date { color: #65697d; }
.report-archive {
  border-bottom: 1px solid var(--line);
  padding: 52px 0 18px;
}
.report-archive > p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
}
.text-link,
.number-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.text-link:hover,
.number-link:hover { text-decoration: underline; }
.report-button {
  flex: none;
  border-radius: 12px;
  background: var(--accent);
  color: #090f2c;
  font-weight: 600;
  padding: 15px 22px;
  text-decoration: none;
}
.report-button:hover { background: #ff9a45; }
.report-program,
.report-method,
.report-article section {
  padding-top: 76px;
}
.report-grid,
.report-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.report-grid article,
.report-metrics article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
}
.report-grid article p,
.report-method > p:last-child { color: var(--muted); }
.report-metrics article {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.report-metrics span {
  color: var(--muted);
  font-size: .85rem;
  font-weight: 600;
}
.report-metrics strong {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
}
.report-metrics small { color: var(--muted); }
.report-metrics-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.report-metrics .phone-metric,
.report-metrics .carrier-metric {
  overflow-wrap: anywhere;
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 2.5vw, 1.65rem);
  font-weight: 600;
}
.report-article > article {
  max-width: 940px;
  margin: auto;
}
.finding-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
.finding-list article {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
}
.finding-list article > span {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.5rem;
}
.finding-list h3 { margin-top: 2px; }
.finding-list p,
.methodology p,
.methodology li,
.report-list { color: var(--muted); }
.report-list,
.methodology ol {
  display: grid;
  gap: 12px;
  padding-left: 24px;
}
.section-intro,
.analysis-note {
  max-width: 820px;
  color: var(--muted);
}
.citation-block {
  border-top: 1px solid var(--line);
  margin-top: 76px;
}
.citation-block > p {
  max-width: 800px;
  color: var(--muted);
}
.citation-text {
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  padding: 24px;
}
.citation-text p {
  margin-bottom: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}
.share-links a {
  border-bottom: 1px solid var(--accent);
  color: var(--ink);
  font-weight: 600;
  padding: 8px 0 5px;
  text-decoration: none;
}
.share-links a:hover { color: var(--accent); }
.table-scroll {
  overflow-x: auto;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
}
table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
}
th,
td {
  padding: 15px 17px;
  border-bottom: 1px solid var(--line);
  text-align: right;
  vertical-align: middle;
}
th {
  color: var(--muted);
  background: rgba(255,255,255,.035);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
th:nth-child(1),
th:nth-child(2),
td:nth-child(1),
td:nth-child(2) { text-align: left; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: rgba(255,255,255,.025); }
.rank {
  width: 56px;
  color: var(--muted);
}
.total-cell {
  color: var(--accent);
  font-weight: 700;
}
.pattern-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}
.pattern-grid > div {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  padding: 26px;
}
.pattern-list {
  display: grid;
  margin-top: 18px;
}
.pattern-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 16px 0;
}
.pattern-row:first-child { border-top: 0; }
.pattern-row > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}
.pattern-row strong { overflow-wrap: anywhere; }
.pattern-row span {
  color: var(--muted);
  font-size: .78rem;
}
.pattern-value {
  flex: none;
  color: var(--accent);
  font-size: 1.15rem;
  font-weight: 700;
  text-align: right;
}
.analysis-note {
  margin-top: 22px;
  border-left: 3px solid var(--accent);
  padding-left: 18px;
}
.report-callout {
  display: block;
}
.report-callout .report-button {
  display: inline-block;
  margin-top: 14px;
}
.methodology {
  border-top: 1px solid var(--line);
  margin-top: 76px;
}
.report-end-nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  margin-top: 76px;
  padding-top: 28px;
}
@media (max-width: 720px) {
  .site-header,
  .report-feature,
  .report-end-nav {
    align-items: stretch;
    flex-direction: column;
  }
  .report-grid,
  .report-metrics,
  .report-metrics-four,
  .pattern-grid { grid-template-columns: 1fr; }
  .report-button { text-align: center; }
  .pattern-row { align-items: flex-start; }
  .report-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .secondary-action { justify-content: center; }
}
