/* 2026 — clean, light, minimal */
:root {
  --bg: #fafafa;
  --surface: #ffffff;
  --text: #0a0a0a;
  --text-secondary: #525252;
  --text-muted: #737373;
  --accent: #2563eb;
  --accent-soft: #eff6ff;
  --success: #16a34a;
  --success-soft: #f0fdf4;
  --border: #e5e5e5;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 1px 3px rgba(0,0,0,.04);
  --shadow-hover: 0 8px 30px rgba(0,0,0,.06);
  --font-display: 'Rajdhani', 'Inter', sans-serif;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(860px 320px at 10% -10%, rgba(37,99,235,.08), transparent 60%),
    radial-gradient(700px 280px at 90% -15%, rgba(14,165,233,.07), transparent 60%);
  z-index: -1;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: #1d4ed8; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.page-main { padding: 48px 0 80px; }

.skip-link { position: absolute; left: -999px; top: -999px; z-index: 100; }
.skip-link:focus { left: 16px; top: 16px; background: var(--surface); padding: 10px 16px; border-radius: var(--radius); box-shadow: var(--shadow-hover); color: var(--text); }

/* Header — light, nav always visible */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 50;
}
.nav-row {
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 64px;
}
.brand {
  display: inline-block;
  width: 188px;
  height: 32px;
  overflow: hidden;
  text-indent: -9999px;
  white-space: nowrap;
  background-image: url("../assets/svg/brand-logo.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
}
.brand:hover { opacity: .9; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}
.desktop-nav a {
  color: var(--text-secondary);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  transition: color .15s, background .15s;
}
.desktop-nav a:hover {
  color: var(--text);
  background: var(--bg);
}

.search-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  font-size: .8125rem;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: border-color .15s, color .15s;
}
.search-trigger:hover {
  color: var(--text);
  border-color: #d4d4d4;
}

/* Mega menu removed — no popups; nav is always visible */
.mega-menu { display: none !important; }

.menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  color: var(--text);
}
.menu-icon {
  position: relative;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: background .2s ease;
}
.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform .2s ease, top .2s ease;
}
.menu-icon::before { top: -5px; }
.menu-icon::after { top: 5px; }
.menu-btn.is-open .menu-icon {
  background: transparent;
}
.menu-btn.is-open .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}
.menu-btn.is-open .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Mobile nav — only on small screens */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 64px;
  background: var(--surface);
  z-index: 40;
  padding: 24px;
  overflow: auto;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover { color: var(--accent); }

/* Hero */
.hero {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow);
}
.hero-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.hero h1 {
  margin: 0 0 16px;
  font-size: 2.25rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: var(--text);
}
.hero-copy {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 48ch;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin: 28px 0 20px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .9375rem;
  background: var(--text);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: opacity .2s;
}
.btn-primary:hover { opacity: .9; color: #fff; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 500;
  font-size: .9375rem;
  border: 1px solid var(--border);
  color: var(--text);
  background: var(--surface);
  transition: border-color .2s, background .2s;
}
.btn-ghost:hover { border-color: #d4d4d4; background: var(--bg); color: var(--text); }

.pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--success-soft);
  color: var(--success);
  font-size: .8125rem;
  font-weight: 500;
}

.hero-panel img {
  width: 100%;
  border-radius: var(--radius);
  background: var(--bg);
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.metric {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 2px 10px rgba(15, 23, 42, .04);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.metric::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #2563eb 0%, #0ea5e9 100%);
  opacity: .85;
}
.metric::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 12px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid #dbeafe;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #eff6ff 70%);
}
.metric:hover {
  transform: translateY(-2px);
  border-color: #dbe5f3;
  box-shadow: 0 12px 26px rgba(15, 23, 42, .09);
}
.metric strong {
  display: block;
  font-size: 2rem;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin-bottom: 8px;
}
.metric span {
  font-size: .95rem;
  color: #475569;
  font-weight: 600;
  letter-spacing: .01em;
}

/* Sections */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 48px 0 20px;
}
.section-head h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  position: relative;
  padding-left: 14px;
}
.section-head h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2563eb 0%, #0ea5e9 100%);
}
.section-head a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
}
.section-head a:hover { color: var(--accent); }

/* Grid & cards */
.grid { display: grid; gap: 20px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.six { grid-template-columns: repeat(6, minmax(0, 1fr)); margin: 0; }

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, border-color .2s, transform .2s;
  border: 1px solid #e5e7eb;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  border-color: #cbd5e1;
  transform: translateY(-2px);
}

/* Home: direct links block */
.jump-links { margin-top: 22px; }
.section-head-tight { margin: 0 0 12px; }
.sport-title {
  font-family: var(--font-display);
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: 1.25rem;
}
.jump-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.jump-item {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 14px;
  padding: 14px 14px;
  color: var(--text);
  font-weight: 500;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  box-shadow: 0 2px 10px rgba(15,23,42,.04);
  position: relative;
  overflow: hidden;
  padding-right: 34px;
}
.jump-item:hover {
  transform: translateY(-2px);
  border-color: #cbd5e1;
  box-shadow: 0 10px 22px rgba(15,23,42,.08);
  color: var(--text);
}
.jump-item::before {
  content: "↗";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #94a3b8;
  font-weight: 700;
  z-index: 2;
  transition: transform .15s ease, color .15s ease;
}
.jump-item:hover::before {
  color: #334155;
  transform: translateY(-50%) translateX(2px);
}
.jump-item::after {
  content: "";
  position: absolute;
  right: -26px;
  top: -26px;
  width: 86px;
  height: 86px;
  border-radius: 100%;
  pointer-events: none;
}
.jump-ico {
  min-width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: #0f172a;
  color: #fff;
  font-size: .92rem;
  font-family: var(--font-display);
  letter-spacing: .02em;
  flex-shrink: 0;
}
.jump-ico i {
  font-size: .95rem;
  line-height: 1;
}
.jump-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.jump-copy strong {
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: #0f172a;
}
.jump-copy small {
  margin-top: 3px;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #64748b;
}

.jump-item--edu .jump-ico { background: #1d4ed8; }
.jump-item--risk .jump-ico { background: #b45309; }
.jump-item--sports .jump-ico { background: #0f766e; }
.jump-item--research .jump-ico { background: #4338ca; }
.jump-item--edu::after { background: radial-gradient(circle, rgba(37,99,235,.18) 0%, rgba(37,99,235,0) 70%); }
.jump-item--risk::after { background: radial-gradient(circle, rgba(180,83,9,.16) 0%, rgba(180,83,9,0) 70%); }
.jump-item--sports::after { background: radial-gradient(circle, rgba(15,118,110,.16) 0%, rgba(15,118,110,0) 70%); }
.jump-item--research::after { background: radial-gradient(circle, rgba(67,56,202,.16) 0%, rgba(67,56,202,0) 70%); }

.feature-story {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  border: 1px solid #dbe3ee;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}
.feature-story-copy h2 {
  margin: 0 0 10px;
  font-size: 1.6rem;
  letter-spacing: -.02em;
}
.feature-story-copy p {
  margin: 0 0 10px;
  color: #475569;
}
.feature-story-copy ul {
  margin: 0 0 14px;
  padding-left: 18px;
}
.feature-story-copy li {
  margin-bottom: 6px;
  color: #334155;
}
.feature-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #dbe3ee;
}

.sports-photo-grid {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.sport-photo-card {
  display: block;
  padding: 0;
  overflow: hidden;
  border: 1px solid #d9e2ec;
  background: #fff;
}
.sport-photo-card img {
  width: 100%;
  height: 188px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #dbe3ee;
  transition: transform .35s ease;
}
.sport-photo-copy {
  padding: 14px 14px 16px;
}
.sport-photo-copy h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
  color: #0f172a;
}
.sport-photo-copy p {
  margin: 0;
  color: #475569;
  font-size: .88rem;
  line-height: 1.45;
}
.sport-photo-card:hover {
  color: inherit;
  border-color: #bfd5ec;
  box-shadow: 0 14px 28px rgba(15,23,42,.1);
}
.sport-photo-card:hover img {
  transform: scale(1.045);
}

.sports-editorial {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 16px;
  border: 1px solid #dbe3ee;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.sports-editorial-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #dbe3ee;
}
.sports-editorial-copy h2 {
  margin: 0 0 10px;
  font-size: 1.52rem;
  letter-spacing: -.02em;
}
.sports-editorial-copy p {
  margin: 0 0 10px;
  color: #475569;
}
.sports-editorial-copy ul {
  margin: 0 0 14px;
  padding-left: 18px;
}
.sports-editorial-copy li {
  margin-bottom: 6px;
  color: #334155;
}

.quick-grid { margin-bottom: 0; }
.quick {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  min-height: 100px;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  text-align: left;
}
.quick span { font-size: .9375rem; }
.quick small {
  font-weight: 500;
  font-size: .8125rem;
  color: var(--text-muted);
}
.quick:hover { color: var(--text); }

.featured-wrap { padding: 28px; }
.featured-wrap .card .badge { margin-bottom: 10px; }
.featured-wrap .card h3 { margin: 0 0 6px; font-size: 1rem; font-weight: 600; }
.featured-wrap .card p { margin: 0; font-size: .875rem; color: var(--text-secondary); }
.featured-wrap .card small { display: block; margin-top: 8px; }
.featured-wrap .card a { color: var(--text); }
.featured-wrap .card a:hover { color: var(--accent); }

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: .6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.badge-edu { background: var(--accent-soft); color: #1d4ed8; }
.badge-risk { background: #fef3c7; color: #b45309; }
.badge-legal { background: #e0e7ff; color: #4338ca; }

/* Hub pages: list of topic links (replaces mega-menu content) */
.hub-links { margin-top: 24px; }
.hub-links h2 { margin: 0 0 16px; font-size: 1.0625rem; font-weight: 600; color: var(--text); }
.hub-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.hub-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 38px 14px 62px;
  min-height: 62px;
  border-radius: 10px;
  font-size: .95rem;
  color: #0f172a;
  background: #fff;
  border: 1px solid #e2e8f0;
  transition: box-shadow .15s ease, border-color .15s ease;
  position: relative;
  overflow: visible;
}
.hub-list a:hover {
  color: #0f172a;
  border-color: #bfdbfe;
  background: #fff;
  box-shadow: 0 8px 18px rgba(37,99,235,.1);
}
.hub-link-label { flex: 1; min-width: 0; font-weight: 600; letter-spacing: -.01em; }
.hub-link-arrow {
  color: #94a3b8;
  font-weight: 700;
  font-size: 1.06rem;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%) rotate(-12deg);
  transition: transform .15s ease, color .15s ease;
}
.hub-link-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #dbeafe;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(37,99,235,.16);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
}
.hub-topic-item .hub-link-label {
  line-height: 1.2;
  margin-left: 0;
}
.hub-topic-item:hover .hub-link-icon {
  transform: translateY(calc(-50% - 1px));
  box-shadow: 0 10px 18px rgba(37,99,235,.2);
}
.hub-topic-item:hover .hub-link-arrow {
  color: #334155;
  transform: translateY(-50%) rotate(-12deg) translateX(2px);
}
.hub-visual-layout {
  margin-top: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 12px;
  align-items: start;
}
.hub-visual-main {
  border: 1px solid #dbeafe;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 10px;
  align-items: center;
  min-height: auto;
}
.hub-visual-copy h2 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  letter-spacing: -.01em;
}
.hub-visual-copy p {
  margin: 0 0 10px;
  color: #475569;
}
.hub-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hub-tags span {
  padding: 5px 10px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: .78rem;
  font-weight: 600;
}
.hub-visual-art {
  display: grid;
  gap: 8px;
}
.hub-visual-art span {
  display: block;
  height: 28px;
  border-radius: 10px;
  background: linear-gradient(90deg, #93c5fd 0%, #bfdbfe 60%, #dbeafe 100%);
}
.hub-visual-art span:nth-child(2) { width: 82%; }
.hub-visual-art span:nth-child(3) { width: 66%; }
.hub-visual-side h3 {
  margin: 0 0 10px;
  font-size: .95rem;
}
.hub-mini-kpi {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 8px;
  background: #fff;
}
.hub-mini-kpi strong {
  display: block;
  font-size: 1.2rem;
}
.hub-mini-kpi small { color: #64748b; }
.hub-rich-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.hub-rich-item h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hub-rich-item h3::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2563eb 0%, #0ea5e9 100%);
}
.hub-rich-item {
  border: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #ffffff 0%, #fafcff 100%);
}
.hub-progress {
  height: 10px;
  border-radius: 999px;
  background: #e2e8f0;
  margin-bottom: 10px;
  overflow: hidden;
}
.hub-progress span {
  display: block;
  width: var(--w);
  height: 100%;
  background: linear-gradient(90deg, #2563eb 0%, #0ea5e9 100%);
  border-radius: 999px;
  position: relative;
  color: transparent;
}

/* Global visual/content blocks for all non-empty pages */
.global-visual-layout {
  margin-top: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 12px;
  align-items: start;
}
.gv-main,
.gv-side {
  min-height: auto;
}
.gv-main h3, .gv-side h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}
.gv-main p {
  margin: 0 0 10px;
  color: #475569;
}
.gv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.gv-tags span {
  padding: 5px 10px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: .78rem;
  font-weight: 600;
}
.gv-stat {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 8px;
  background: #fff;
}
.gv-stat strong {
  display: block;
  font-size: 1.15rem;
}
.gv-stat small { color: #64748b; }
.longform-auto h3 {
  margin: 0 0 12px;
  font-size: 1.08rem;
}
.longform-auto p {
  margin-bottom: 10px;
}
.hub-rich-item ul {
  margin: 0;
  padding-left: 18px;
}
.hub-rich-item li {
  margin-bottom: 6px;
  color: #475569;
}

.page-boost {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.boost-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}
.boost-card ul {
  margin: 0;
  padding-left: 18px;
}
.boost-card li {
  margin-bottom: 6px;
  color: #475569;
}
.boost-card a {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  color: #1d4ed8;
}

/* Glossary page */
#glossary-search {
  margin: 6px 0 12px;
}
#az-index {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.az-btn {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  color: #334155;
  border-radius: 7px;
  min-width: 28px;
  padding: 4px 8px;
  font-size: .74rem;
  font-weight: 700;
  cursor: pointer;
}
.az-btn:hover {
  background: #eff6ff;
  border-color: #93c5fd;
  color: #1d4ed8;
}
.az-btn.is-active {
  background: #1d4ed8;
  border-color: #1d4ed8;
  color: #fff;
}
#glossary-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.glossary-item {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) 20px;
  gap: 14px;
  align-items: start;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(15,23,42,.04);
  color: #0f172a;
}
.glossary-item:hover {
  border-color: #bfdbfe;
  box-shadow: 0 8px 20px rgba(37,99,235,.1);
  color: #0f172a;
}
.glossary-term {
  font-weight: 700;
  color: #1d4ed8;
}
.glossary-definition {
  color: #475569;
  font-size: .94rem;
  line-height: 1.45;
}
.glossary-arrow {
  color: #94a3b8;
  font-weight: 700;
}

.note-list { margin: 0; padding-left: 20px; color: var(--text-secondary); }
.card h3 { margin: 0 0 10px; font-size: 1.0625rem; font-weight: 600; }
.card p { margin: 0 0 10px; font-size: .9375rem; color: var(--text-secondary); }
.card p:last-child { margin-bottom: 0; }
.home-insights {
  margin-top: 18px;
}
.home-insights .insight-card {
  border: 1px solid #dbe3ee;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}
.card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.head-icon {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: .85rem;
  font-weight: 700;
}
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.chip-row span {
  padding: 5px 9px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  font-size: .76rem;
  font-weight: 600;
}
.mini-link {
  display: inline-block;
  margin-top: 8px;
  font-size: .86rem;
  font-weight: 600;
}

/* Banner */
.banner {
  margin: 22px 0 0;
  padding: 24px 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow);
}
.banner h3 { margin: 0 0 6px; font-size: 1rem; font-weight: 600; }
.banner p { margin: 0; font-size: .875rem; color: var(--text-secondary); }
.banner-strong {
  border: 1px solid #dbeafe;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.banner-copy {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

/* Newsletter */
.newsletter-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 32px;
  margin-top: 22px;
}
.newsletter-strong {
  border: 1px solid #dbe3ee;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.testimonial .person {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.testimonial .person img {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid #dbe3ee;
}
.testimonial .person strong {
  display: block;
  font-size: .93rem;
}
.testimonial .person small {
  color: #64748b;
  font-size: .78rem;
}
.testimonial p {
  margin: 0;
  color: #475569;
  font-size: .92rem;
  line-height: 1.45;
}

.faq-block details {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 14px;
  background: #fff;
  margin-bottom: 10px;
}
.faq-block summary {
  cursor: pointer;
  font-weight: 700;
  color: #0f172a;
}
.faq-block p {
  margin: 8px 0 0;
  color: #475569;
}
.newsletter-card h2 { margin: 0 0 8px; font-size: 1.125rem; font-weight: 700; }
.newsletter-card p { margin: 0; font-size: .875rem; color: var(--text-secondary); }
.inline-form { display: flex; gap: 10px; margin-top: 16px; }
.inline-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: .9375rem;
  background: var(--surface);
}
.inline-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.newsletter-card button {
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .9375rem;
  background: var(--text);
  color: #fff;
  border: none;
  cursor: pointer;
}
.newsletter-card button:hover { opacity: .9; }

/* Footer */
.site-footer {
  border-top: 1px solid #171717;
  padding: 48px 0;
  margin-top: 64px;
  background: #050505;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(500px 180px at 12% -10%, rgba(255,255,255,.05), transparent 65%),
    radial-gradient(420px 160px at 88% -20%, rgba(255,255,255,.035), transparent 70%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.footer-grid h4 {
  margin: 0 0 14px;
  font-size: .8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #a3a3a3;
}
.footer-grid p { margin: 0; font-size: .9rem; color: #d4d4d4; line-height: 1.55; }
.footer-grid a {
  display: block;
  margin-bottom: 10px;
  font-size: .875rem;
  color: #f5f5f5;
  width: fit-content;
  border-bottom: 1px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.footer-grid a:hover {
  color: #60a5fa;
  border-color: #60a5fa;
}
.footer-grid > div:first-child h4 {
  font-size: .86rem;
  letter-spacing: .07em;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-grid > div:first-child h4::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: url("../assets/svg/favicon.svg") center/contain no-repeat;
  flex-shrink: 0;
}
.footer-grid > div {
  min-width: 0;
}

/* Article & utility */
.breadcrumbs {
  margin-bottom: 24px;
  font-size: .875rem;
  color: var(--text-muted);
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--accent); }

.article { max-width: 680px; }
.article h1 { margin-top: 0; font-size: 1.75rem; font-weight: 700; letter-spacing: -0.03em; }
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: start;
}
.article-layout .article { max-width: none; }
.article-extended h2 {
  font-size: 1.12rem;
  margin: 24px 0 10px;
  letter-spacing: -.01em;
}
.article-extended p { margin: 0 0 10px; }
.article-aside {
  position: sticky;
  top: 84px;
  border: 1px solid #e2e8f0;
}
.article-aside h3 {
  margin: 0 0 10px;
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #334155;
}
.article-aside ul {
  margin: 0 0 12px;
  padding-left: 18px;
}
.article-aside li {
  margin-bottom: 7px;
  color: #475569;
  font-size: .88rem;
}
.article-aside .mini-chart {
  width: 100%;
  height: auto;
  margin: 8px 0 12px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
}
.aside-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.aside-links a {
  font-size: .86rem;
  padding: 8px 10px;
  border-radius: 8px;
  background: #f8fafc;
  color: #334155;
}
.aside-links a:hover {
  background: #eff6ff;
  color: #1d4ed8;
}
.notice {
  background: var(--bg);
  padding: 20px;
  border-radius: var(--radius);
  margin: 24px 0;
}
.disclaimer { margin-top: 24px; font-size: .875rem; color: var(--text-muted); }

input, textarea, select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: .9375rem;
  background: var(--surface);
}
textarea { min-height: 120px; }
.filters { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.filters select {
  background: #fff;
}
.blog-lead {
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 14px;
  border: 1px solid #dbe3ee;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.blog-lead h1 {
  margin: 0 0 8px;
  font-size: 1.92rem;
  letter-spacing: -.02em;
}
.blog-lead-copy p {
  margin: 0;
  color: #475569;
}
.blog-lead img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border: 1px solid #dbe3ee;
  border-radius: 12px;
}
.pagination {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
}
.pagination button {
  border: 1px solid #d1d5db;
  background: #fff;
  color: #0f172a;
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 600;
  cursor: pointer;
}
.pagination button:hover {
  border-color: #93c5fd;
  background: #eff6ff;
}
.pagination button:disabled {
  opacity: .45;
  cursor: not-allowed;
}

#blog-list .card {
  border: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #fff 0%, #fcfdff 100%);
}
#blog-list .blog-tease {
  padding: 0;
  overflow: hidden;
  display: block;
}
.blog-tease-cover {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #e2e8f0;
  transition: transform .28s ease;
}
.blog-tease-body {
  padding: 14px 14px 16px;
}
.blog-tease-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}
.blog-sport-tag,
.blog-level {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 1px solid #dbe3ee;
  color: #334155;
  background: #f8fafc;
}
#blog-list .blog-tease h3 {
  margin-bottom: 8px;
  line-height: 1.32;
}
#blog-list .blog-tease p {
  color: #475569;
  margin: 0;
}
#blog-list .blog-tease small {
  display: block;
  margin-top: 10px;
  color: #64748b;
  font-weight: 500;
}
#blog-list .blog-tease:hover .blog-tease-cover {
  transform: scale(1.03);
}
#blog-list .card h3 {
  margin-bottom: 8px;
  line-height: 1.35;
}
#blog-list .card small {
  display: block;
  margin-top: 10px;
  color: #64748b;
  font-weight: 500;
}

#related-posts .card,
#authors-list .card,
#author-posts .card {
  border: 1px solid #e2e8f0;
}
.related-posts-wrap {
  margin-top: 20px;
  border: 1px solid #dbe3ee;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}
.related-posts-wrap h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
}
#related-posts .related-post-card {
  position: relative;
  padding: 14px 40px 14px 14px;
  min-height: 138px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid #dbe3ee;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
#related-posts .related-post-card::after {
  content: "↗";
  position: absolute;
  right: 12px;
  top: 12px;
  color: #94a3b8;
  font-weight: 700;
  transform: rotate(-12deg);
  transition: transform .15s ease, color .15s ease;
}
#related-posts .related-post-card:hover::after {
  color: #334155;
  transform: rotate(-12deg) translateX(2px);
}
.related-post-meta {
  font-size: .69rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #1d4ed8;
  margin-bottom: 6px;
}
#related-posts .related-post-card h4 {
  margin: 0 0 6px;
  line-height: 1.32;
  color: #0f172a;
}
#related-posts .related-post-card p {
  margin: 0;
  color: #475569;
  font-size: .88rem;
  line-height: 1.45;
}
#related-posts .related-post-card small {
  margin-top: 10px;
  color: #64748b;
  font-weight: 500;
}

.hub-media-strip {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.hub-media-card {
  display: block;
  padding: 0;
  overflow: hidden;
}
.hub-media-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #dbe3ee;
  transition: transform .25s ease;
}
.hub-media-copy {
  padding: 12px 14px 14px;
}
.hub-media-copy h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: #0f172a;
}
.hub-media-copy p {
  margin: 0;
  font-size: .88rem;
  color: #475569;
}
.hub-media-card:hover {
  color: inherit;
}
.hub-media-card:hover img {
  transform: scale(1.03);
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.data-table th,
.data-table td {
  border: 1px solid var(--border);
  padding: 14px 16px;
  text-align: left;
}
.data-table th { background: var(--bg); font-weight: 600; color: var(--text); }

/* Replaces old canvas charts with cleaner visual panels */
.viz-panel {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  margin-bottom: 12px;
}
.viz-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}
.viz-head strong {
  font-size: .92rem;
  letter-spacing: -.01em;
  color: #0f172a;
}
.viz-head span {
  font-size: .75rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.viz-bars {
  height: 120px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: end;
  gap: 8px;
}
.viz-bars span {
  display: block;
  height: calc(var(--v) * 1%);
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, #3b82f6 0%, #1d4ed8 100%);
  box-shadow: 0 5px 12px rgba(37,99,235,.2);
}
.viz-foot {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.viz-foot small {
  font-size: .76rem;
  color: #64748b;
}

/* Search modal */
.search-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  padding: 24px;
  z-index: 100;
}
.search-modal[hidden] { display: none; }
.search-box {
  background: var(--surface);
  width: min(520px, 100%);
  border-radius: var(--radius-lg);
  max-height: 80vh;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,.12);
}
.search-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.search-header h3 { margin: 0; font-size: 1rem; font-weight: 600; }
#search-input {
  width: 100%;
  padding: 16px 20px;
  border: none;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  background: var(--surface);
}
#search-input:focus { outline: none; }
.search-results {
  max-height: 320px;
  overflow: auto;
}
.search-results a {
  display: block;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: .9375rem;
  color: var(--text);
}
.search-results a:hover { background: var(--bg); color: var(--accent); }
#search-close {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .875rem;
  cursor: pointer;
}
#search-close:hover { background: var(--border); }

.progress {
  height: 3px;
  background: var(--accent);
  width: 0;
  position: sticky;
  top: 64px;
  z-index: 18;
}
.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 14px;
  align-items: start;
}
.toc {
  position: sticky;
  top: 84px;
}
.toc h3 {
  margin: 0 0 8px;
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #334155;
}
.toc ul { padding-left: 18px; margin: 0 0 12px; }
.toc li { margin-bottom: 6px; }
.toc .toc-meta {
  border-top: 1px solid #e2e8f0;
  padding-top: 10px;
  display: grid;
  gap: 6px;
}
.toc .toc-meta span {
  font-size: .82rem;
  color: #64748b;
}

.reveal { opacity: 0; transform: translateY(10px); transition: opacity .35s ease, transform .35s ease; }
.reveal.show { opacity: 1; transform: translateY(0); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

/* Mobile */
@media (max-width: 900px) {
  .brand { width: 164px; height: 28px; }
  .desktop-nav { display: none; }
  .menu-btn { display: flex; }
  .search-trigger { order: 2; margin-left: auto; }
  .menu-btn { order: 3; }
  .hero-home,
  .grid.two,
  .newsletter-card { grid-template-columns: 1fr; }
  .grid.six { grid-template-columns: repeat(2, 1fr); }
  .grid.three,
  .footer-grid,
  .filters { grid-template-columns: 1fr; }
  .jump-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .jump-item { padding: 12px; }
  .jump-copy strong { font-size: .95rem; }
  .blog-lead { grid-template-columns: 1fr; }
  .blog-lead img { min-height: 200px; }
  .feature-story { grid-template-columns: 1fr; }
  .sports-photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sports-editorial { grid-template-columns: 1fr; }
  .sports-editorial-media img { min-height: 220px; }
  .hub-media-strip { grid-template-columns: 1fr; }
  .blog-tease-cover { height: 190px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .filters { grid-template-columns: 1fr 1fr; }
  .glossary-item { grid-template-columns: 1fr; gap: 6px; }
  .glossary-arrow { display: none; }
  .hub-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hub-visual-layout { grid-template-columns: 1fr; }
  .hub-visual-main { grid-template-columns: 1fr; }
  .hub-rich-grid { grid-template-columns: 1fr; }
  #related-posts { grid-template-columns: 1fr; }
  .global-visual-layout { grid-template-columns: 1fr; }
  .page-boost { grid-template-columns: 1fr; }
  .article { max-width: none; }
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; }
  .post-layout { grid-template-columns: 1fr; }
  .toc { position: static; }
  .banner { flex-direction: column; align-items: flex-start; }
  .metric-grid { grid-template-columns: 1fr; }
  .hero-home { padding: 32px 24px; }
  .hero h1 { font-size: 1.75rem; }
}
@media (max-width: 480px) {
  .jump-grid { grid-template-columns: 1fr; }
  .sports-photo-grid { grid-template-columns: 1fr; }
  .sport-photo-card img { height: 200px; }
  .blog-tease-cover { height: 178px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hub-list { grid-template-columns: 1fr; }
  .filters { grid-template-columns: 1fr; }
}
