.sub-nav {
  position: sticky;
  top: 64px;
  z-index: 90;
  background: rgba(13, 17, 23, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 4vw;
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}
.sub-nav::-webkit-scrollbar {
  display: none;
}
.sn {
  font-family: var(--fm);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 0.95rem 1.1rem;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  font-weight: 500;
}
.sn:hover {
  color: var(--white);
}
.sn.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
}
.container {
  max-width: 1240px;
  margin: 0 auto;
}
.slabel {
  font-family: var(--fm);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 500;
}
.slabel::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--teal);
}
.stitle {
  font-family: var(--fd);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.stitle em {
  font-style: italic;
  color: var(--teal);
}
.sbody {
  font-size: 0.98rem;
  color: rgba(245, 244, 240, 0.62);
  max-width: 66ch;
  line-height: 1.8;
  font-weight: 300;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.f1 {
  animation: fadeUp 0.6s ease both;
}
.f2 {
  animation: fadeUp 0.6s 0.1s ease both;
}
.f3 {
  animation: fadeUp 0.6s 0.2s ease both;
}
#hero {
  padding: 9rem 4vw 4rem;
  background: radial-gradient(
      ellipse 50% 50% at 85% 30%,
      rgba(37, 99, 235, 0.09) 0%,
      transparent 65%
    ),
    linear-gradient(175deg, #0a0a0a 0%, #0d1117 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(37, 99, 235, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 90% 20%,
    black 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: end;
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
}
.hero-stats-inline {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hsi .n {
  font-family: var(--fd);
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
  display: block;
}
.hsi .l {
  font-family: var(--fm);
  font-size: 0.52rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-top: 0.2rem;
}
.disclaimer-band {
  background: rgba(37, 99, 235, 0.06);
  border-bottom: 1px solid rgba(37, 99, 235, 0.18);
  padding: 0.85rem 4vw;
}
.db-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.db-text {
  font-family: var(--fm);
  font-size: 0.62rem;
  color: rgba(245, 244, 240, 0.45);
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.db-text strong {
  color: rgba(245, 244, 240, 0.6);
}
.sec {
  padding: 5rem 4vw;
}
.sec-dark {
  background: var(--black);
}
.sec-mid {
  background: var(--ink);
}
.stats-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 3rem;
}
@media (max-width: 700px) {
  .stats-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}
.ss-cell {
  background: var(--slate);
  padding: 1.5rem 1.25rem;
  text-align: center;
}
.ss-n {
  font-family: var(--fd);
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
  display: block;
}
.ss-l {
  font-family: var(--fm);
  font-size: 0.5rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.3rem;
  display: block;
}
.chip {
  font-family: var(--fm);
  font-size: 0.52rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.18rem 0.55rem;
  border-radius: 2px;
  display: inline-block;
  white-space: nowrap;
  font-weight: 500;
}
.chip-official {
  background: rgba(37, 99, 235, 0.12);
  color: var(--teal);
  border: 1px solid rgba(37, 99, 235, 0.3);
}
.chip-product {
  background: rgba(34, 197, 94, 0.1);
  color: var(--green);
  border: 1px solid rgba(34, 197, 94, 0.2);
}
.chip-research {
  background: rgba(139, 92, 246, 0.1);
  color: var(--purple);
  border: 1px solid rgba(139, 92, 246, 0.25);
}
.chip-announcement {
  background: rgba(212, 136, 42, 0.1);
  color: var(--amber);
  border: 1px solid rgba(212, 136, 42, 0.25);
}
.chip-interview {
  background: rgba(6, 182, 212, 0.1);
  color: var(--cyan);
  border: 1px solid rgba(6, 182, 212, 0.25);
}
.chip-commentary {
  background: rgba(245, 244, 240, 0.07);
  color: rgba(245, 244, 240, 0.6);
  border: 1px solid var(--border);
}
.chip-rewrite {
  background: rgba(224, 82, 82, 0.1);
  color: var(--red);
  border: 1px solid rgba(224, 82, 82, 0.2);
}
.chip-syndication {
  background: rgba(107, 114, 128, 0.1);
  color: var(--muted);
  border: 1px solid rgba(107, 114, 128, 0.2);
}
.legend-band {
  background: var(--slate);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.legend-label {
  font-family: var(--fm);
  font-size: 0.58rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-right: 0.5rem;
  flex-shrink: 0;
}
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 4px;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 580px;
}
thead tr {
  background: var(--slate);
  border-bottom: 1px solid rgba(37, 99, 235, 0.2);
}
thead th {
  font-family: var(--fm);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.9rem 1.1rem;
  text-align: left;
  font-weight: 500;
  white-space: nowrap;
}
tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.15s;
}
tbody tr:last-child {
  border-bottom: none;
}
tbody tr:hover {
  background: rgba(37, 99, 235, 0.04);
}
tbody td {
  padding: 0.85rem 1.1rem;
  font-size: 0.82rem;
  color: rgba(245, 244, 240, 0.68);
  vertical-align: middle;
}
tbody td a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s;
}
tbody td a:hover {
  color: var(--white);
  text-decoration: underline;
}
tbody td:first-child {
  font-weight: 500;
  color: rgba(245, 244, 240, 0.82);
}
.td-date {
  font-family: var(--fm);
  font-size: 0.72rem;
  color: var(--muted);
  white-space: nowrap;
}
.commentary-grid {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.commentary-row {
  background: var(--ink);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 160px 1fr 120px;
  gap: 1.5rem;
  align-items: start;
  transition: background 0.15s;
}
@media (max-width: 800px) {
  .commentary-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}
.commentary-row:hover {
  background: rgba(37, 99, 235, 0.04);
}
.cr-outlet {
  font-weight: 600;
  font-size: 0.85rem;
}
.cr-geo {
  font-family: var(--fm);
  font-size: 0.55rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}
.cr-title {
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
  line-height: 1.35;
}
.cr-title a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.cr-title a:hover {
  color: var(--teal);
}
.cr-note {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.55;
}
.cr-date {
  font-family: var(--fm);
  font-size: 0.6rem;
  color: var(--muted);
  text-align: right;
}
@media (max-width: 800px) {
  .cr-date {
    text-align: left;
  }
}
.synd-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.synd-search {
  position: relative;
}
.synd-search input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.4rem 0.85rem 0.4rem 2rem;
  font-family: var(--fm);
  font-size: 0.6rem;
  color: var(--white);
  letter-spacing: 0.06em;
  width: 260px;
  transition: border-color 0.2s;
}
.synd-search input::placeholder {
  color: var(--muted);
}
.synd-search input:focus {
  outline: none;
  border-color: var(--teal);
}
.synd-si {
  position: absolute;
  left: 0.6rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  opacity: 0.4;
  pointer-events: none;
}
.synd-count {
  font-family: var(--fm);
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.synd-regions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.sr-btn {
  font-family: var(--fm);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all 0.15s;
}
.sr-btn:hover,
.sr-btn.active {
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.35);
  color: var(--teal);
}
.synd-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 4px;
}
.synd-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}
.synd-table thead tr {
  background: rgba(22, 28, 38, 0.8);
  border-bottom: 1px solid rgba(37, 99, 235, 0.15);
}
.synd-table thead th {
  font-family: var(--fm);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.8rem 1rem;
  text-align: left;
  font-weight: 500;
  white-space: nowrap;
}
.synd-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: background 0.12s;
}
.synd-table tbody tr:last-child {
  border-bottom: none;
}
.synd-table tbody tr:hover {
  background: rgba(37, 99, 235, 0.04);
}
.synd-table tbody tr.hidden {
  display: none;
}
.synd-table td {
  padding: 0.7rem 1rem;
  font-size: 0.8rem;
  color: rgba(245, 244, 240, 0.62);
  vertical-align: middle;
}
.synd-table td:first-child {
  font-weight: 500;
  color: rgba(245, 244, 240, 0.78);
}
.synd-table td:nth-child(2) {
  font-size: 0.75rem;
}
.synd-table td a {
  color: var(--teal);
  text-decoration: none;
  font-family: var(--fm);
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s, gap 0.2s;
}
.synd-table td a:hover {
  color: var(--white);
  gap: 0.5rem;
}
.rp {
  font-family: var(--fm);
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.12rem 0.45rem;
  border-radius: 2px;
  margin-left: 0.4rem;
  vertical-align: middle;
}
.rp-uae {
  background: rgba(37, 99, 235, 0.1);
  color: var(--teal);
  border: 1px solid rgba(37, 99, 235, 0.2);
}
.rp-mena {
  background: rgba(212, 136, 42, 0.1);
  color: var(--amber);
  border: 1px solid rgba(212, 136, 42, 0.2);
}
.rp-africa {
  background: rgba(34, 197, 94, 0.08);
  color: var(--green);
  border: 1px solid rgba(34, 197, 94, 0.18);
}
.rp-apac {
  background: rgba(6, 182, 212, 0.1);
  color: var(--cyan);
  border: 1px solid rgba(6, 182, 212, 0.2);
}
.rp-eu {
  background: rgba(139, 92, 246, 0.1);
  color: var(--purple);
  border: 1px solid rgba(139, 92, 246, 0.2);
}
.rp-us {
  background: rgba(224, 82, 82, 0.1);
  color: var(--red);
  border: 1px solid rgba(224, 82, 82, 0.2);
}
.rp-latam {
  background: rgba(6, 182, 212, 0.1);
  color: var(--cyan);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.updated-tag {
  font-family: var(--fm);
  font-size: 0.58rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}
