/* ============================================================
   comesportslive — Newsroom CSS
   Factory V9 FSL11 / Dark Color System 209 (Neon Cricket)
   Typography System 004 — Manrope + Noto Sans Devanagari
   ============================================================ */

:root {
  /* Brand palette — Neon Cricket (dark-first) */
  --primary: #82FFB5;
  --primary-dark: #65C78D;
  --accent: #FFD951;
  --accent-2: #FF8A47;
  --live: #FF5C5C;
  --background: #071A15;
  --surface: #0C2924;
  --surface-2: #133C32;
  --surface-3: #1A4D40;
  --text: #F8FAFC;
  --muted: #CBD5E1;
  --muted-2: #94A3B8;
  --border: rgba(255,255,255,0.14);
  --soft-border: rgba(255,255,255,0.08);
  --gold: #FFD951;
  --shadow-1: 0 4px 18px rgba(0,0,0,0.35);
  --shadow-2: 0 12px 40px rgba(0,0,0,0.55);
  --gradient: linear-gradient(135deg, #071A15 0%, #0C2924 48%, #133C32 100%);
  --gradient-soft: linear-gradient(180deg, #0C2924 0%, #071A15 100%);
  --gradient-accent: linear-gradient(135deg, rgba(130,255,181,0.14) 0%, rgba(255,217,81,0.08) 100%);

  /* Typography scale */
  --font-display: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-deva: 'Noto Sans Devanagari', 'Manrope', system-ui, sans-serif;

  --shadow-card: 0 2px 8px rgba(0,0,0,0.3), 0 12px 32px rgba(0,0,0,0.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --container-w: 1280px;
  --pad-x: clamp(16px, 4vw, 48px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--background);
  background-image:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(130,255,181,0.08), transparent 60%),
    radial-gradient(ellipse 70% 60% at 90% 100%, rgba(255,217,81,0.05), transparent 65%);
  min-height: 100vh;
  overflow-x: hidden;
}
img, picture, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.18s ease; }
a:hover { color: var(--primary-dark); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.18rem, 2vw, 1.45rem); }
h4 { font-size: 1.1rem; }

.container { max-width: var(--container-w); margin: 0 auto; padding: 0 var(--pad-x); }
section { padding: clamp(40px, 6vw, 80px) 0; position: relative; }
section[id] { scroll-margin-top: 84px; }

/* ===== Header / Navigation ===== */
.site-header {
  position: sticky; top: 0; z-index: 250;
  background: rgba(7, 26, 21, 0.86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header.scrolled { background: rgba(7, 26, 21, 0.96); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 28px; max-width: var(--container-w);
  margin: 0 auto; padding: 0 var(--pad-x);
}
.brand-mark {
  display: flex; align-items: center; gap: 12px;
  color: var(--text); font-weight: 800; font-size: 1.15rem;
}
.brand-logo {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 10px;
  display: grid; place-items: center;
  color: #0a1f18; font-weight: 900; font-size: 1.1rem;
  box-shadow: 0 2px 10px rgba(130,255,181,0.35);
}
.brand-name { letter-spacing: -0.02em; }
.brand-tag { font-size: 0.7rem; color: var(--muted-2); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
.main-nav { display: none; gap: 24px; align-items: center; flex: 1; justify-content: center; }
.main-nav a {
  color: var(--text); font-weight: 600; font-size: 0.95rem;
  padding: 8px 0; position: relative;
}
.main-nav a.active::after,
.main-nav a:hover::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 2px;
  height: 2px; background: var(--primary); border-radius: 2px;
}
.header-right { display: none; align-items: center; gap: 12px; }
.cta-ghost {
  padding: 9px 18px; border-radius: 8px;
  border: 1px solid var(--border); color: var(--text);
  font-weight: 600; font-size: 0.9rem;
  transition: background 0.18s;
}
.cta-ghost:hover { background: rgba(255,255,255,0.06); }
.cta-primary {
  padding: 10px 20px; border-radius: 8px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #0a1f18; font-weight: 700; font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 6px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.cta-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(130,255,181,0.35); color: #0a1f18; }

/* Hamburger */
.hamburger {
  z-index: 300; position: relative;
  width: 44px; height: 44px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
}
.hamburger-bar {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s;
}
.hamburger-bar:nth-child(2) { margin: 0; }
.hamburger[aria-expanded="true"] .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] .hamburger-bar:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0;
  width: 100%;
  height: 100dvh;
  min-height: 100dvh;
  max-height: 100dvh;
  background: var(--background);
  background-image: var(--gradient);
  z-index: 220;
  padding: 96px 24px 32px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.32s ease;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer[aria-hidden="true"] { pointer-events: none; }
.mobile-drawer nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-drawer nav a {
  color: var(--text); font-size: 1.15rem; font-weight: 600;
  padding: 14px 4px; border-bottom: 1px solid var(--soft-border);
}
.mobile-drawer .mobile-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.mobile-drawer .mobile-cta .cta-primary { justify-content: center; }

/* ===== Hero ===== */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(24px, 4vw, 48px) 0 clamp(48px, 7vw, 96px);
  background: var(--gradient);
  border-bottom: 1px solid var(--soft-border);
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(800px 280px at 80% -10%, rgba(130,255,181,0.18), transparent 70%),
    radial-gradient(600px 220px at 0% 110%, rgba(255,217,81,0.10), transparent 70%);
  z-index: 0;
}
.hero-banner {
  position: relative;
  width: min(1280px, calc(100% - clamp(20px, 4vw, 48px) * 2));
  margin: 0 auto clamp(24px, 4vw, 40px);
  aspect-ratio: 16 / 8;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface-2);
  box-shadow: var(--shadow-card);
}
.hero-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-banner-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,26,21,0.05) 0%, rgba(7,26,21,0.35) 100%);
  pointer-events: none;
}
@media (max-width: 720px) {
  .hero-banner { aspect-ratio: 16 / 10; margin-bottom: 22px; border-radius: var(--radius-md); }
}
.hero-grid {
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
  position: relative; z-index: 2;
}
@media (min-width: 980px) { .hero-grid { grid-template-columns: 1.4fr 1fr; align-items: center; gap: 56px; } }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--primary);
  padding: 6px 14px; border-radius: 999px;
  background: rgba(130,255,181,0.10);
  border: 1px solid rgba(130,255,181,0.30);
  margin-bottom: 20px;
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--live);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(255,92,92,0.6); }
  50% { transform: scale(1.18); opacity: 0.75; box-shadow: 0 0 0 6px rgba(255,92,92,0); }
}
#hero-h { margin-bottom: 18px; }
#hero-h .accent { color: var(--primary); }
.hero-lede {
  font-size: clamp(1.02rem, 1.7vw, 1.18rem); color: var(--muted);
  margin-bottom: 28px; max-width: 60ch;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-cta .cta-primary, .hero-cta .cta-ghost { font-size: 1rem; padding: 14px 22px; }
.hero-trust {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-top: 36px; max-width: 540px;
}
.hero-trust-item {
  padding: 14px; border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--soft-border);
}
.hero-trust-item .num {
  display: block; font-size: 1.45rem; font-weight: 800;
  color: var(--primary); line-height: 1;
}
.hero-trust-item .label { font-size: 0.78rem; color: var(--muted-2); margin-top: 4px; }

/* Scoreboard card */
.scoreboard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-card);
}
.scoreboard-head {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.78rem; color: var(--muted-2); margin-bottom: 16px;
}
.scoreboard-head .live-tag {
  background: var(--live); color: #fff; padding: 3px 8px; border-radius: 4px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.scoreboard .matchup { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 12px; }
.scoreboard .team {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1rem;
}
.team-crest {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface-2);
  display: grid; place-items: center;
  font-size: 0.85rem; font-weight: 700; color: var(--primary);
}
.scoreboard .score { font-size: 1.6rem; font-weight: 800; color: var(--text); font-variant-numeric: tabular-nums; }
.scoreboard .status {
  background: rgba(130,255,181,0.12); color: var(--primary);
  padding: 6px 12px; border-radius: 6px; font-size: 0.82rem; font-weight: 600;
  text-align: center; margin-top: 12px;
}
.scoreboard-upcoming-list { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.scoreboard-upcoming {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px; border-radius: 10px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--soft-border);
  font-size: 0.86rem;
}
.scoreboard-upcoming .time {
  font-weight: 700; color: var(--accent);
  background: rgba(255,217,81,0.1); padding: 3px 9px; border-radius: 6px;
}
.scoreboard-upcoming .fixture-meta { color: var(--muted-2); font-size: 0.72rem; margin-top: 2px; }

/* ===== Trust / Compliance Strip ===== */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.trust-strip-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px; font-size: 0.86rem;
}
.trust-strip-group {
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px;
  color: var(--muted-2);
}
.trust-strip-group strong { color: var(--text); margin-right: 6px; }
.trust-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); display: inline-block; margin-right: 6px; }

/* ===== Section Titles ===== */
.section-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px; margin-bottom: 28px; }
.section-head h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.section-head .lead { color: var(--muted); font-size: 0.95rem; max-width: 60ch; margin-top: 4px; }
.section-eyebrow {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--primary);
  margin-bottom: 8px;
}

/* ===== Cards / Grids ===== */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 720px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 720px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* News cards */
.news-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
}
.news-card:hover { transform: translateY(-3px); border-color: rgba(130,255,181,0.4); box-shadow: var(--shadow-card); }
.news-card .image {
  position: relative; aspect-ratio: 16 / 9; overflow: hidden;
  background: var(--surface-2);
}
.news-card .image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.news-card:hover .image img { transform: scale(1.04); }
.news-card .tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(7,26,21,0.86); color: var(--primary);
  padding: 4px 10px; border-radius: 6px; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px solid rgba(130,255,181,0.3);
}
.news-card .body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.news-card .body h3 { margin-bottom: 8px; font-size: 1.08rem; line-height: 1.32; }
.news-card .body p { font-size: 0.88rem; color: var(--muted); margin-bottom: 12px; flex: 1; }
.news-card .meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.76rem; color: var(--muted-2);
  padding-top: 12px; border-top: 1px solid var(--soft-border);
}
.news-card .meta time { font-variant-numeric: tabular-nums; }
.news-card.featured { grid-column: span 1; }
@media (min-width: 980px) { .news-card.featured { grid-column: span 2; grid-row: span 2; } }
.news-card.featured .image { aspect-ratio: 16 / 10; }
.news-card.featured .body h3 { font-size: 1.4rem; }
.news-card.featured .body p { font-size: 0.95rem; }

/* Stat tile */
.stat-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}
.stat-tile .num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1.05;
}
.stat-tile .label { font-size: 0.84rem; color: var(--muted-2); margin-top: 6px; }
.stat-tile .desc { font-size: 0.84rem; color: var(--muted); margin-top: 8px; }

/* Hub card */
.hub-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px; display: flex; flex-direction: column; gap: 12px;
  transition: border-color 0.22s, transform 0.22s;
}
.hub-card:hover { border-color: rgba(130,255,181,0.4); transform: translateY(-3px); }
.hub-card .icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(130,255,181,0.12); color: var(--primary);
  display: grid; place-items: center; font-size: 1.4rem;
  border: 1px solid rgba(130,255,181,0.25);
}
.hub-card h3 { font-size: 1.05rem; }
.hub-card p { font-size: 0.88rem; color: var(--muted); }
.hub-card .arrow { color: var(--primary); font-weight: 700; font-size: 0.9rem; }

/* Match list rows */
.match-list { display: flex; flex-direction: column; gap: 10px; }
.match-row {
  display: grid; grid-template-columns: auto 1fr auto; gap: 14px;
  align-items: center; padding: 14px 18px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
}
.match-row .crest { width: 32px; height: 32px; border-radius: 50%; background: var(--surface-2); display: grid; place-items: center; font-weight: 700; color: var(--primary); font-size: 0.78rem; }
.match-row .teams { font-weight: 600; font-size: 0.92rem; }
.match-row .meta { font-size: 0.76rem; color: var(--muted-2); }
.match-row .pill {
  background: rgba(130,255,181,0.12); color: var(--primary);
  padding: 5px 10px; border-radius: 6px; font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.04em;
}
.match-row .pill.upcoming { background: rgba(255,217,81,0.12); color: var(--accent); }
.match-row .pill.final { background: rgba(148,163,184,0.14); color: var(--muted); }

/* Editorial spotlight card (large image, editorial) */
.spotlight-card {
  background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid; grid-template-columns: 1fr;
}
@media (min-width: 720px) { .spotlight-card { grid-template-columns: 1fr 1fr; } }
.spotlight-card .image { aspect-ratio: 16 / 10; background: var(--surface-2); }
.spotlight-card .image img { width: 100%; height: 100%; object-fit: cover; }
.spotlight-card .body { padding: 26px 28px; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.spotlight-card h3 { font-size: 1.45rem; line-height: 1.25; }
.spotlight-card p { color: var(--muted); font-size: 0.94rem; }

/* Form / newsletter */
.newsletter {
  background: var(--gradient-soft);
  border: 1px solid rgba(130,255,181,0.25);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 48px);
}
.newsletter h2 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); margin-bottom: 8px; }
.newsletter p { color: var(--muted); max-width: 56ch; margin-bottom: 22px; }
.newsletter-form { display: flex; flex-wrap: wrap; gap: 10px; max-width: 480px; }
.newsletter-form input {
  flex: 1; min-width: 200px;
  padding: 13px 18px; border-radius: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  color: var(--text); font-size: 0.94rem;
}
.newsletter-form input:focus { outline: none; border-color: var(--primary); }
.newsletter-form button { padding: 13px 24px; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 880px; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 18px 22px;
}
.faq-item summary {
  font-weight: 700; font-size: 1rem; cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.faq-item summary::after {
  content: '+'; font-size: 1.6rem; line-height: 1; color: var(--primary);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 14px; color: var(--muted); font-size: 0.94rem; }

/* Inline image row */
.inline-image-row {
  display: grid; grid-template-columns: 1fr; gap: 18px; margin: 28px 0;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 18px;
}
@media (min-width: 720px) { .inline-image-row { grid-template-columns: 1fr 1.4fr; align-items: center; gap: 22px; padding: 22px; } }
.inline-image-row img { border-radius: 10px; aspect-ratio: 4/3; object-fit: cover; }
.inline-image-row .copy h3 { margin-bottom: 8px; }
.inline-image-row .copy p { color: var(--muted); font-size: 0.92rem; }

/* Data callouts / data-row */
.data-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 22px 0;
}
@media (min-width: 720px) { .data-row { grid-template-columns: repeat(4, 1fr); } }
.data-callout {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 16px 18px; text-align: left;
}
.data-callout .val {
  font-family: var(--font-display); font-size: 1.45rem; font-weight: 800;
  color: var(--primary); line-height: 1.05;
}
.data-callout .lbl { font-size: 0.78rem; color: var(--muted-2); margin-top: 4px; }

/* Table */
.compare-table {
  width: 100%; border-collapse: collapse; margin-top: 22px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden;
}
.compare-table th, .compare-table td {
  padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--soft-border);
  font-size: 0.92rem;
}
.compare-table thead { background: var(--surface-2); }
.compare-table th { font-weight: 700; color: var(--primary); font-size: 0.84rem; text-transform: uppercase; letter-spacing: 0.05em; }
.compare-table tr:last-child td { border-bottom: none; }

/* Steps */
.steps { display: grid; gap: 14px; margin: 24px 0; }
.step {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 18px 22px; display: flex; gap: 16px; align-items: flex-start;
}
.step-num {
  flex: 0 0 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: grid; place-items: center; color: #0a1f18; font-weight: 800;
}
.step-body h3 { font-size: 1.02rem; margin-bottom: 4px; }
.step-body p { color: var(--muted); font-size: 0.9rem; }

/* Article styles (used on news articles and hubs) */
.article-hero {
  position: relative; padding: 80px 0 40px;
  background: var(--gradient);
  border-bottom: 1px solid var(--soft-border);
}
.article-meta {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px;
  font-size: 0.84rem; color: var(--muted-2);
}
.article-meta .cat {
  background: rgba(130,255,181,0.12); color: var(--primary);
  padding: 4px 10px; border-radius: 6px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.74rem;
}
.article-hero h1 { max-width: 760px; }
.article-hero .lede { font-size: 1.1rem; color: var(--muted); margin-top: 16px; max-width: 720px; }
.article-byline { display: flex; align-items: center; gap: 14px; margin-top: 22px; font-size: 0.86rem; color: var(--muted); }
.article-byline .avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: grid; place-items: center; color: #0a1f18; font-weight: 800;
}
.article-hero-image {
  margin-top: 36px; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); aspect-ratio: 16 / 8;
  background: var(--surface-2);
}
.article-hero-image img { width: 100%; height: 100%; object-fit: cover; }

.prose {
  max-width: 760px; margin: 0 auto;
  font-size: 1.04rem; line-height: 1.78; color: var(--muted);
}
.prose h2 { color: var(--text); margin: 36px 0 14px; font-size: 1.55rem; }
.prose h3 { color: var(--text); margin: 28px 0 10px; font-size: 1.18rem; }
.prose p { margin-bottom: 18px; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 18px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--text); font-weight: 700; }
.prose blockquote {
  border-left: 4px solid var(--primary);
  padding: 8px 18px; margin: 24px 0;
  background: rgba(130,255,181,0.06);
  border-radius: 0 8px 8px 0;
  color: var(--text); font-style: italic;
}
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose figure { margin: 28px 0; }
.prose figure img { border-radius: var(--radius-md); border: 1px solid var(--border); }
.prose figcaption { font-size: 0.84rem; color: var(--muted-2); margin-top: 8px; text-align: center; }

.toc {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 18px 22px; margin: 28px 0;
}
.toc h4 { margin-bottom: 10px; font-size: 0.86rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--primary); }
.toc ol { padding-left: 20px; color: var(--muted); }
.toc a { color: var(--muted); }
.toc a:hover { color: var(--primary); }

.related-grid {
  display: grid; gap: 16px; grid-template-columns: 1fr;
}
@media (min-width: 720px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }

/* Footer */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
  font-size: 0.86rem;
}
.footer-grid {
  display: grid; gap: 28px;
  grid-template-columns: 1fr;
  margin-bottom: 32px;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; } }
.footer-grid h4 {
  color: var(--text); margin-bottom: 14px; font-size: 0.92rem;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.footer-grid ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-grid a { color: var(--muted); font-size: 0.86rem; }
.footer-grid a:hover { color: var(--primary); }
.footer-brand p { color: var(--muted); margin-top: 12px; max-width: 38ch; font-size: 0.86rem; }
.footer-bottom {
  border-top: 1px solid var(--soft-border); padding-top: 22px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px;
  color: var(--muted-2); font-size: 0.78rem;
}

/* Filters / Tags */
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0; }
.tag-btn {
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--border); color: var(--muted);
  background: transparent; font-size: 0.84rem; font-weight: 600;
}
.tag-btn:hover, .tag-btn[aria-pressed="true"] { background: rgba(130,255,181,0.10); color: var(--primary); border-color: rgba(130,255,181,0.4); }

/* Article outline / Key points */
.key-points {
  background: var(--gradient-accent);
  border: 1px solid rgba(130,255,181,0.3);
  border-radius: var(--radius-md);
  padding: 20px 24px; margin: 24px 0;
}
.key-points h4 { color: var(--primary); margin-bottom: 10px; font-size: 0.84rem; letter-spacing: 0.08em; text-transform: uppercase; }
.key-points ul { padding-left: 22px; }
.key-points li { margin-bottom: 6px; color: var(--text); }

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 180;
  display: flex; gap: 10px;
  transform: translateY(120%);
  transition: transform 0.3s ease;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .cta-primary, .sticky-cta .cta-ghost { flex: 1; text-align: center; justify-content: center; }
@media (min-width: 980px) { .sticky-cta { display: none; } }

/* Skip link / A11y */
.skip-link {
  position: absolute; top: -40px; left: 8px;
  padding: 8px 12px; background: var(--primary); color: #0a1f18;
  border-radius: 6px; font-weight: 700; z-index: 1000;
  transition: top 0.18s;
}
.skip-link:focus { top: 8px; }
:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px;
  border-radius: 4px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* Banner variant on hub / category pages */
.page-banner {
  padding: 70px 0 36px;
  background: var(--gradient);
  border-bottom: 1px solid var(--soft-border);
}
.page-banner h1 { margin-bottom: 14px; }
.page-banner p { color: var(--muted); font-size: 1.05rem; max-width: 64ch; }
.crumbs {
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
  font-size: 0.82rem; color: var(--muted-2);
  margin-bottom: 16px;
}
.crumbs a { color: var(--muted-2); }
.crumbs a:hover { color: var(--primary); }
.crumbs .sep { opacity: 0.5; }

/* Date / timestamp */
.timestamp { font-size: 0.76rem; color: var(--muted-2); font-variant-numeric: tabular-nums; }

/* Stats row */
.stats-band {
  display: grid; gap: 22px; grid-template-columns: 1fr 1fr;
  padding: 32px;
  background: var(--gradient-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin: 24px 0;
}
@media (min-width: 720px) { .stats-band { grid-template-columns: repeat(4, 1fr); } }

/* Photo strip */
.photo-strip {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 24px 0;
}
@media (min-width: 720px) { .photo-strip { grid-template-columns: repeat(4, 1fr); } }
.photo-strip img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--radius-md); border: 1px solid var(--border); }

/* Methodology strip */
.method-strip {
  background: var(--surface); border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  padding: 18px 22px; margin: 28px 0; border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.method-strip h4 { color: var(--primary); margin-bottom: 6px; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.06em; }
.method-strip p { color: var(--muted); font-size: 0.92rem; }

/* Buttons row */
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.btn-row .cta-primary, .btn-row .cta-ghost { font-size: 0.95rem; }

/* Mobile breakpoint nav switch */
@media (min-width: 980px) {
  .main-nav, .header-right { display: flex; }
  .hamburger { display: none; }
}
@media (max-width: 979px) {
  .main-nav, .header-right { display: none; }
  .hamburger { display: flex; }
}

/* Mobile hero cap */
@media (max-width: 899px) {
  .hero-trust { display: none; }
  .hero { padding: 48px 0 36px; }
  #hero-h { font-size: clamp(1.8rem, 7vw, 2.4rem); line-height: 1.12; }
  .hero-lede { font-size: 0.98rem; }
}
