/* =========================================================
   Come Sports Match — V9 FSL11 Scoreboard Portal
   Dark orange event system + Manrope typography
   ========================================================= */

:root {
  --primary: #FB9D4F;
  --primary-dark: #C47A3E;
  --accent: #34D7EF;
  --background: #1A0E08;
  --surface: #321A11;
  --surface-2: #4E2812;
  --surface-3: #5d2f17;
  --text: #F8FAFC;
  --muted: #CBD5E1;
  --muted-2: #9a8a82;
  --border: rgba(255,255,255,0.14);
  --soft-border: rgba(255,255,255,0.08);
  --gradient: linear-gradient(135deg, #1A0E08 0%, #321A11 48%, #4E2812 100%);
  --gradient-warm: linear-gradient(135deg, #FB9D4F 0%, #C47A3E 100%);
  --shadow-lg: 0 24px 48px rgba(0,0,0,0.45);
  --shadow-md: 0 12px 28px rgba(0,0,0,0.35);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1240px;
  --header-h: 76px;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: 'Manrope', 'Noto Sans Devanagari', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }

a { color: var(--primary); text-decoration: none; transition: color 160ms ease; }
a:hover { color: var(--accent); }

h1, h2, h3, h4, h5 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.18;
  margin: 0 0 0.5em 0;
  color: var(--text);
}

h1 { font-size: clamp(34px, 5.2vw, 58px); letter-spacing: -0.02em; }
h2 { font-size: clamp(26px, 3.4vw, 36px); }
h3 { font-size: clamp(20px, 2.2vw, 24px); }
h4 { font-size: 18px; }
p { margin: 0 0 1em 0; color: var(--muted); }

.container { width: min(var(--maxw), 92vw); margin: 0 auto; }

/* ========== TOP STRIP ========== */
.top-strip {
  background: rgba(0,0,0,0.35);
  border-bottom: 1px solid var(--soft-border);
  font-size: 13px;
  color: var(--muted);
}
.top-strip .container {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0;
  flex-wrap: wrap; gap: 8px;
}
.top-strip .ts-left { display: flex; align-items: center; gap: 14px; }
.top-strip .ts-live {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent); font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.top-strip .ts-live::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 8px var(--accent);
  animation: pulse 1.4s ease-in-out infinite;
}
.top-strip a { color: var(--muted); }
.top-strip a:hover { color: var(--primary); }
.top-strip .ts-right { display: flex; align-items: center; gap: 14px; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ========== HEADER (sticky) ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26,14,8,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
  gap: 18px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 800; font-size: 19px;
  color: var(--text);
}
.brand:hover { color: var(--primary); }
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--gradient-warm);
  display: grid; place-items: center;
  color: #1A0E08;
  font-weight: 900; font-size: 20px;
  box-shadow: 0 6px 18px rgba(251,157,79,0.35);
}
.brand-name { letter-spacing: -0.01em; }
.brand-tag {
  display: block;
  font-size: 11px; font-weight: 600; color: var(--muted-2);
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-top: 2px;
}
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  color: var(--muted);
  font-weight: 600; font-size: 14.5px;
  padding: 10px 14px; border-radius: 10px;
  transition: color 160ms ease, background 160ms ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--text); background: rgba(255,255,255,0.06); }
.main-nav a.cta-primary {
  background: var(--primary);
  color: #1A0E08;
  padding: 10px 18px;
  margin-left: 6px;
  font-weight: 700;
  border-radius: 10px;
}
.main-nav a.cta-primary:hover { background: var(--primary-dark); color: #1A0E08; }
.main-nav a.cta-ghost {
  border: 1px solid var(--border);
  color: var(--text);
  padding: 9px 16px;
  margin-left: 4px;
  font-weight: 600;
  border-radius: 10px;
}
.main-nav a.cta-ghost:hover { border-color: var(--primary); color: var(--primary); }

.header-right { display: flex; align-items: center; gap: 10px; }
.hamburger {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  width: 44px; height: 44px;
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
  color: var(--text);
  z-index: 200;
  position: relative;
}
.hamburger span {
  display: block;
  height: 2px; background: var(--text);
  border-radius: 2px;
  margin: 5px 0;
  transition: transform 220ms ease, opacity 220ms ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(86vw, 360px);
  background: linear-gradient(180deg, #1A0E08 0%, #2a170d 100%);
  border-left: 1px solid var(--border);
  padding: 80px 24px 32px;
  transform: translateX(100%);
  transition: transform 260ms ease;
  z-index: 90;
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer a {
  display: block;
  color: var(--text);
  font-size: 17px;
  font-weight: 600;
  padding: 14px 12px;
  border-bottom: 1px solid var(--soft-border);
}
.mobile-drawer a.cta-primary {
  background: var(--primary);
  color: #1A0E08;
  text-align: center;
  border-radius: 10px;
  margin-top: 16px;
  border: none;
  padding: 14px;
}
.mobile-drawer a.cta-ghost {
  border: 1px solid var(--border);
  text-align: center;
  border-radius: 10px;
  margin-top: 10px;
  border-bottom: 1px solid var(--border);
}
.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
  z-index: 80;
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }

/* ========== HERO (live scoreboard) ========== */
.hero {
  position: relative;
  padding: 56px 0 72px;
  background: var(--gradient);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(800px 400px at 90% 10%, rgba(251,157,79,0.18), transparent 60%),
    radial-gradient(600px 300px at 5% 80%, rgba(52,215,239,0.10), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.1fr) minmax(0, 0.85fr);
  gap: 36px;
  align-items: stretch;
  position: relative;
}
.hero-news { background: var(--gradient); }
.hero-copy { min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.hero-figure {
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: #0d0805;
  min-width: 0;
}
.hero-figure img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.hero-figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,8,5,0) 55%, rgba(13,8,5,0.55) 100%);
  pointer-events: none;
}
.hero-news .scoreboard { align-self: stretch; }
.hero h1 { color: var(--text); margin-bottom: 18px; }
.hero h1 .accent { color: var(--primary); }
.hero-lede {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 28px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 15.5px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
  text-align: center;
}
.btn-primary {
  background: var(--gradient-warm);
  color: #1A0E08;
  box-shadow: 0 12px 28px rgba(251,157,79,0.30);
}
.btn-primary:hover { transform: translateY(-1px); color: #1A0E08; }
.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #1A0E08; }
.btn-arrow::after { content: '→'; transition: transform 160ms ease; }
.btn-arrow:hover::after { transform: translateX(3px); }

/* Scoreboard widget */
.scoreboard {
  background: linear-gradient(160deg, #2a170d 0%, #4E2812 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-lg);
}
.scoreboard-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--soft-border);
}
.scoreboard-head .sh-left { display: flex; align-items: center; gap: 10px; }
.scoreboard-head .badge-live {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(52,215,239,0.15);
  color: var(--accent);
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 5px 10px; border-radius: 999px;
  border: 1px solid rgba(52,215,239,0.3);
}
.scoreboard-head .badge-live::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}
.scoreboard-head .sh-meta { font-size: 13px; color: var(--muted-2); }

.match-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--soft-border);
  align-items: center;
}
.match-row:last-child { border-bottom: none; }
.match-team { display: flex; flex-direction: column; gap: 4px; }
.match-team.t1 { align-items: flex-start; }
.match-team.t2 { align-items: flex-end; text-align: right; }
.team-name { font-weight: 700; color: var(--text); font-size: 16px; }
.team-meta { color: var(--muted-2); font-size: 13px; }
.match-score { font-weight: 800; color: var(--primary); font-size: 22px; }
.match-vs {
  font-size: 12px; color: var(--muted-2);
  padding: 4px 10px; border-radius: 999px;
  background: rgba(0,0,0,0.3);
  text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 700;
}
.match-status {
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ========== TRUST STRIP ========== */
.trust-strip {
  background: #0f0805;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.trust-strip .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--muted);
}
.trust-item strong { color: var(--text); font-weight: 700; }
.trust-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(251,157,79,0.12);
  color: var(--primary);
  font-weight: 800;
}

/* ========== GENERIC SECTIONS ========== */
.section {
  padding: 64px 0;
  position: relative;
}
.section.tinted { background: var(--surface); }
.section.deep { background: #120904; }
.section.warm { background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%); }

.section-head {
  margin-bottom: 32px;
}
.section-head .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}
.section-head h2 { margin: 0 0 12px 0; }
.section-head p { max-width: 720px; margin: 0; }

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Cards */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(251,157,79,0.4);
  background: linear-gradient(180deg, #3a2014 0%, #2a170d 100%);
}
.card .icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(251,157,79,0.15);
  color: var(--primary);
  display: grid; place-items: center;
  margin-bottom: 14px;
  font-size: 22px;
  border: 1px solid rgba(251,157,79,0.25);
}
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { font-size: 15px; margin: 0 0 12px; line-height: 1.55; color: var(--muted); }
.card .more {
  color: var(--primary); font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
}
.card .more::after { content: '→'; transition: transform 160ms ease; }
.card:hover .more::after { transform: translateX(4px); }

/* Image card variant */
.img-card {
  position: relative; overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  transition: transform 200ms ease, border-color 200ms ease;
}
.img-card:hover { transform: translateY(-3px); border-color: rgba(251,157,79,0.4); }
.img-card .ic-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, #321A11 0%, #4E2812 100%);
  position: relative;
}
.img-card .ic-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 480ms ease;
}
.img-card:hover .ic-thumb img { transform: scale(1.05); }
.img-card .ic-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.img-card .ic-tag {
  font-size: 11px; font-weight: 800;
  color: var(--accent); text-transform: uppercase;
  letter-spacing: 0.12em; margin-bottom: 8px;
}
.img-card h3 { font-size: 18px; margin-bottom: 8px; }
.img-card p { font-size: 14.5px; margin-bottom: 14px; }
.img-card .more { margin-top: auto; color: var(--primary); font-weight: 700; font-size: 14px; }
.img-card .more::after { content: ' →'; }

/* Stat tile */
.stat-tile {
  background: linear-gradient(160deg, #3a2014 0%, #2a170d 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  text-align: left;
}
.stat-tile .num {
  font-size: 38px; font-weight: 800; color: var(--primary);
  line-height: 1; margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-tile .label { font-size: 13.5px; color: var(--muted); }

/* Step row */
.step-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  align-items: flex-start;
}
.step-row + .step-row { margin-top: 14px; }
.step-num {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--gradient-warm);
  color: #1A0E08;
  font-weight: 800; font-size: 20px;
  display: grid; place-items: center;
}
.step-row h3 { font-size: 18px; margin: 0 0 6px; }
.step-row p { margin: 0; font-size: 15px; line-height: 1.55; }

/* Comparison / data table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.data-table th, .data-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--soft-border);
  font-size: 14.5px;
}
.data-table th {
  background: rgba(0,0,0,0.25);
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12.5px;
  letter-spacing: 0.06em;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table td { color: var(--muted); }
.data-table .t-name { color: var(--text); font-weight: 600; }

/* Inline image + text row */
.inline-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: center;
  margin: 28px 0;
}
.inline-row.reverse { grid-template-columns: 1fr 1.1fr; }
.inline-row.reverse .ir-text { order: -1; }
.inline-row img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  object-fit: cover;
}
.inline-row h3 { font-size: 22px; margin-bottom: 10px; }
.inline-row p { margin: 0; font-size: 15.5px; line-height: 1.6; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  position: relative;
  font-size: 16px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--primary);
  font-size: 22px; font-weight: 700;
  transition: transform 220ms ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.faq-item .faq-body p { margin: 0; }
.faq-item .faq-body p + p { margin-top: 10px; }

/* CTA strip */
.cta-strip {
  background: var(--gradient);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(700px 350px at 50% 50%, rgba(251,157,79,0.20), transparent 60%);
}
.cta-strip .container { position: relative; text-align: center; }
.cta-strip h2 { color: var(--text); }
.cta-strip p { max-width: 640px; margin: 0 auto 24px; font-size: 17px; }
.cta-strip .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Footer */
.site-footer {
  background: #0f0805;
  border-top: 1px solid var(--border);
  padding: 56px 0 24px;
  color: var(--muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 32px;
}
.footer-col h4 {
  color: var(--text);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  font-weight: 700;
}
.footer-col p { font-size: 14px; line-height: 1.6; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  color: var(--muted);
  font-size: 14px;
}
.footer-col ul li a:hover { color: var(--primary); }
.footer-brand .brand { margin-bottom: 14px; }
.footer-bottom {
  border-top: 1px solid var(--soft-border);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--muted-2);
}
.footer-bottom .legal-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom .legal-links a { color: var(--muted-2); }
.social-row { display: flex; gap: 10px; margin-top: 16px; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: grid; place-items: center;
  color: var(--muted);
  background: rgba(255,255,255,0.03);
  font-size: 15px;
}
.social-row a:hover { color: var(--primary); border-color: var(--primary); }

/* Compliance note */
.compliance-note {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--soft-border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 14px;
  color: var(--muted);
  margin: 22px 0;
}
.compliance-note strong { color: var(--text); }

/* Hero with image under copy (alt variant) */
.hero-image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.hero-image-row img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* Editorial photo card (figcaption lead-in for galleries) */
.photo-card {
  margin: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 160ms ease, transform 160ms ease;
}
.photo-card:hover { border-color: var(--primary); transform: translateY(-2px); }
.photo-card .ic-thumb { aspect-ratio: 16/9; border-bottom: 1px solid var(--soft-border); }
.photo-card .ic-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-card figcaption {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.photo-card figcaption strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.photo-card figcaption span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Related links block */
.related-links {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 14px;
}
.related-links a {
  padding: 8px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13.5px;
  color: var(--muted);
}
.related-links a:hover { border-color: var(--primary); color: var(--primary); }

/* Page header (non-home) */
.page-header {
  padding: 72px 0 48px;
  background: var(--gradient);
  border-bottom: 1px solid var(--border);
}
.page-header.has-image {
  padding: 0 0 56px;
  background: var(--gradient);
  border-bottom: 1px solid var(--border);
}
.page-header.has-image .ph-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 72px 0 48px;
}
.page-header.has-image .ph-copy {
  text-align: left;
}
.page-header.has-image .ph-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-lg);
}
.page-header.has-image .ph-image img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.page-header .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}
.page-header h1 { margin-bottom: 14px; }
.page-header .ph-meta { font-size: 14px; color: var(--muted-2); display: flex; flex-wrap: wrap; gap: 16px; }
.page-header .ph-meta span::before { content: '•'; color: var(--primary); margin-right: 8px; }
.page-header .ph-meta span:first-child::before { display: none; }

/* Generic prose */
.prose { max-width: 760px; }
.prose h2 { margin-top: 36px; }
.prose h3 { margin-top: 24px; }
.prose p { margin-bottom: 16px; font-size: 16px; line-height: 1.7; }
.prose ul, .prose ol { margin: 14px 0 24px 20px; color: var(--muted); }
.prose li { margin-bottom: 8px; line-height: 1.65; font-size: 15.5px; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote {
  border-left: 3px solid var(--primary);
  background: var(--surface);
  padding: 14px 18px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 22px 0;
  color: var(--muted);
}
.prose strong { color: var(--text); }

/* News post list */
.news-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.news-list .img-card .ic-tag { color: var(--accent); }

/* Hub nav cards */
.hub-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.hub-nav a {
  padding: 18px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--text);
  font-size: 14.5px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
}
.hub-nav a:hover { border-color: var(--primary); color: var(--primary); }
.hub-nav a::after { content: '→'; color: var(--primary); }

/* Featured ribbon */
.featured-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}
.featured-row .img-card { height: 100%; }

/* Sticky mobile CTA */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  left: 12px; right: 12px;
  bottom: 14px;
  z-index: 70;
  gap: 8px;
}
.sticky-mobile-cta a { flex: 1; }
.sticky-mobile-cta .btn { padding: 12px; font-size: 14px; }

/* Scroll-margin for anchored sections */
section[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hub-nav { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .inline-row, .inline-row.reverse { grid-template-columns: 1fr; }
  .inline-row.reverse .ir-text { order: 0; }
  .featured-row { grid-template-columns: 1fr; }
  .news-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .main-nav { display: none; }
  .hamburger { display: grid; place-items: center; }
  .top-strip .container { padding: 8px 0; font-size: 12px; }
  .top-strip .ts-right { display: none; }
  .hero { padding: 40px 0 56px; }
  .section { padding: 48px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hub-nav { grid-template-columns: repeat(2, 1fr); }
  .news-list { grid-template-columns: 1fr; }
  .sticky-mobile-cta { display: flex; }
  body { padding-bottom: 84px; }
  .match-team.t2 { text-align: right; }
  .brand-tag { display: none; }
  .scoreboard { padding: 16px; }
  .page-header { padding: 56px 0 36px; }
}

@media (max-width: 420px) {
  h1 { font-size: 30px; }
  h2 { font-size: 24px; }
  .hero-image-row { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
  .stat-tile .num { font-size: 32px; }
}

/* utility */
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.text-mute { color: var(--muted); }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.flex-row { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }
.flex-1 { flex: 1; }
.center { text-align: center; }
/* === Verified-Build Additions (V9 FSL11 v2.0 compliance) === */
.data-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: border-color 200ms ease, transform 200ms ease;
}
.data-card:hover {
  border-color: rgba(251,157,79,0.4);
  transform: translateY(-2px);
}
.data-card .card-num {
  font-size: 28px; font-weight: 800; color: var(--primary);
  margin-bottom: 8px; line-height: 1;
}
.data-card h3 { font-size: 17px; margin-bottom: 6px; }
.data-card p { margin: 0; font-size: 14.5px; line-height: 1.55; }

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: grid; grid-template-columns: 48px 1fr; gap: 18px;
  align-items: flex-start;
}
.step-card + .step-card { margin-top: 14px; }
.step-card .step-num {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gradient-warm);
  color: #1A0E08; font-weight: 800; font-size: 20px;
  display: grid; place-items: center;
}
.step-card h3 { font-size: 18px; margin: 0 0 6px; }
.step-card p { margin: 0; font-size: 14.5px; line-height: 1.6; }

.loose-card {
  background: linear-gradient(135deg, rgba(255,215,0,0.10) 0%, rgba(255,215,0,0.03) 100%);
  border: 2px solid rgba(212,175,55,0.45);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  padding: 22px;
  margin: 22px 0;
}
.loose-card h3 { font-size: 18px; margin: 0 0 8px; color: var(--primary); }
.loose-card p { margin: 0; font-size: 14.5px; line-height: 1.6; }

.band {
  padding: 56px 0;
  position: relative;
}
.band.deep { background: #120904; }
.band.warm {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
}
.band.tinted { background: var(--surface); }

.inline-image-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: center;
  margin: 28px 0;
}
.inline-image-row.reverse { grid-template-columns: 1fr 1.1fr; }
.inline-image-row.reverse .ii-text { order: -1; }
.inline-image-row img {
  width: 100%; height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: block;
}
.inline-image-row h3 { font-size: 22px; margin-bottom: 10px; }
.inline-image-row p { margin: 0; font-size: 15.5px; line-height: 1.6; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 720px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* Mobile hero cap (480-720px) — sticky nav occlusion prevention */
@media (max-width: 899px) {
  .hero-trust { display: none !important; }
  .hero { min-height: 480px !important; max-height: 720px !important; padding: 80px 0 60px !important; }
  .hero img { height: 100% !important; object-fit: cover !important; }
  .hero-lede { font-size: 16px !important; line-height: 1.5 !important; }
  .hero h1, #hero-h { font-size: 32px !important; line-height: 1.1 !important; }
  .hero-cta .btn { flex: 1 1 auto !important; }
  .hero-news .hero-grid { grid-template-columns: 1fr !important; gap: 22px !important; }
  .hero-news .hero-figure { max-height: 320px !important; }
  .hero-news .hero-figure img { min-height: 240px !important; max-height: 320px !important; }
  .page-header { padding: 56px 0 36px !important; min-height: 0 !important; max-height: none !important; }
  .page-header.has-image { padding: 0 0 32px !important; }
  .page-header.has-image .ph-inner { grid-template-columns: 1fr !important; gap: 24px !important; padding: 48px 0 32px !important; }
}
