/* ========================================================================
   iplfantasypicks.com — Stylesheet
   Layout: SCOREBOARD PORTAL (dark live-match newsroom)
   Palette: CYAN LIVE MATCH
   Type: DM Sans + Noto Sans Devanagari
   ======================================================================== */

/* -------- Layout primitives -------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: clamp(48px, 7vw, 88px) 0;
}
.section.tight { padding: clamp(32px, 4vw, 56px) 0; }
.band {
  background: var(--gradient-band);
}
.band-deep {
  background: linear-gradient(180deg, var(--surface) 0%, var(--background) 100%);
}
.band-bordered { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* -------- Skip link + a11y -------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary);
  color: var(--background);
  padding: 12px 18px;
  border-radius: var(--radius);
  z-index: 10000;
}
.skip-link:focus { left: 12px; top: 12px; }
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* -------- Header -------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 240;
  background: rgba(4, 20, 30, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-strong);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--gradient-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--background);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0;
  box-shadow: 0 0 0 2px rgba(33, 190, 217, 0.35);
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
.brand-tag { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 500; }

/* Desktop nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav a {
  color: var(--muted);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 15px;
  transition: color 180ms var(--t-ease), background 180ms var(--t-ease);
}
.main-nav a:hover {
  color: var(--text-strong);
  background: var(--primary-soft);
}
.main-nav a.active {
  color: var(--primary);
  background: var(--primary-soft);
}
.main-nav a.cta-link {
  background: var(--gradient-cta);
  color: var(--background);
  padding: 10px 18px;
  font-weight: 700;
  margin-left: 12px;
}
.main-nav a.cta-link:hover {
  background: var(--primary-dark);
  color: var(--text-strong);
}

.header-cta-row { display: flex; align-items: center; gap: 12px; }

/* Hamburger */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  z-index: 300;
}
.hamburger span {
  display: block;
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--text-strong);
  border-radius: 2px;
  transition: transform 280ms var(--t-snap), opacity 200ms var(--t-ease);
}
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 28px; }
.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;
  top: 0;
  right: 0;
  width: min(86vw, 360px);
  height: 100dvh;
  background: var(--surface);
  border-left: 1px solid var(--border);
  padding: 96px 24px 32px;
  transform: translateX(100%);
  transition: transform 280ms var(--t-snap);
  z-index: 220;
  overflow-y: auto;
  box-shadow: -8px 0 24px rgba(0,0,0,0.5);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer a {
  display: block;
  padding: 14px 16px;
  margin-bottom: 4px;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-weight: 500;
  font-size: 16px;
  border-bottom: 1px solid var(--soft-border);
}
.mobile-drawer a:hover { background: var(--primary-soft); color: var(--primary); }
.mobile-drawer a.cta-link {
  margin-top: 16px;
  background: var(--gradient-cta);
  color: var(--background);
  text-align: center;
  font-weight: 700;
  border: none;
}
body.no-scroll { overflow: hidden; }
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 210;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms var(--t-ease);
}
.drawer-backdrop.open { opacity: 1; pointer-events: auto; }

/* -------- Hero (asymmetric scorecard) -------- */
.hero {
  position: relative;
  background: var(--gradient-hero);
  padding: clamp(60px, 8vw, 110px) 0 clamp(60px, 8vw, 120px);
  overflow: hidden;
  min-height: 560px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(33, 190, 217, 0.18), transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(253, 227, 88, 0.08), transparent 50%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.hero-content { max-width: 620px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
  border: 1px solid rgba(33, 190, 217, 0.30);
}
.hero-eyebrow .dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(253, 227, 88, 0.2);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}
.hero h1 {
  margin-bottom: 20px;
}
.hero-lede {
  font-size: 19px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.65;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
}
.hero-meta-item strong {
  font-size: 24px;
  color: var(--text-strong);
  font-weight: 700;
}
.hero-meta-item span {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Scorecard widget */
.scorecard {
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.scorecard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-cta);
}
.scorecard-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.scorecard-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.scorecard-status .live-dot {
  width: 8px;
  height: 8px;
  background: var(--danger);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}
.scorecard-venue {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.scorecard-teams { margin-bottom: 20px; }
.scorecard-team {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--soft-border);
}
.scorecard-team:last-child { border-bottom: none; }
.scorecard-team.batting {
  background: rgba(33, 190, 217, 0.06);
  border-radius: var(--radius-sm);
  padding: 16px 14px;
  border-bottom: 1px solid rgba(33, 190, 217, 0.20);
}
.team-info { display: flex; align-items: center; gap: 12px; }
.team-flag {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--surface-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-strong);
  border: 1px solid var(--border);
}
.team-name { font-weight: 700; font-size: 16px; color: var(--text-strong); }
.team-over { font-size: 12px; color: var(--muted); }
.team-score { font-size: 26px; font-weight: 800; color: var(--text-strong); letter-spacing: -0.01em; }
.team-rr { font-size: 12px; color: var(--muted); margin-top: 2px; }

.scorecard-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  margin-bottom: 18px;
}
.summary-cell {
  text-align: center;
  padding: 10px 8px;
  background: var(--surface);
  border-radius: var(--radius-sm);
}
.summary-cell strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--text-strong);
}
.summary-cell span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.scorecard-pick {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  background: var(--accent-soft);
  border: 1px solid rgba(253, 227, 88, 0.30);
  border-radius: var(--radius-sm);
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
}
.scorecard-pick-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 180ms var(--t-ease), background 220ms var(--t-ease), color 220ms var(--t-ease), box-shadow 220ms var(--t-ease);
  cursor: pointer;
  text-align: center;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gradient-cta);
  color: var(--background);
  box-shadow: 0 8px 20px rgba(33, 190, 217, 0.30);
}
.btn-primary:hover { background: var(--primary-dark); color: var(--text-strong); box-shadow: 0 10px 28px rgba(33, 190, 217, 0.45); }
.btn-secondary {
  background: transparent;
  color: var(--text-strong);
  border-color: var(--border);
}
.btn-secondary:hover {
  background: var(--primary-soft);
  border-color: var(--primary);
  color: var(--primary);
}
.btn-ghost {
  background: transparent;
  color: var(--primary);
  padding: 10px 16px;
}
.btn-ghost:hover { background: var(--primary-soft); }

/* -------- Trust 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: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.trust-pill svg { flex-shrink: 0; color: var(--primary); }
.trust-pill strong { display: block; color: var(--text-strong); font-size: 14px; font-weight: 700; }

/* -------- Section heading -------- */
.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-head.left { text-align: left; }
.eyebrow {
  display: inline-block;
  padding: 5px 14px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  border: 1px solid rgba(33, 190, 217, 0.30);
}
.eyebrow.gold {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: rgba(253, 227, 88, 0.30);
}
.section-head h2 { margin-bottom: 12px; }
.section-head p {
  color: var(--muted);
  font-size: 17px;
  max-width: 720px;
  margin: 0 auto;
}
.section-head.left p { margin: 0; }

/* -------- Card grid -------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card-grid.five { grid-template-columns: repeat(5, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 220ms var(--t-ease), border-color 220ms var(--t-ease), box-shadow 220ms var(--t-ease);
  position: relative;
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(33, 190, 217, 0.40);
  box-shadow: var(--shadow-hover);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(33, 190, 217, 0.30);
}
.card-icon.gold {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: rgba(253, 227, 88, 0.30);
}
.card h3 {
  margin-bottom: 10px;
  font-size: 19px;
}
.card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 0;
}
.card .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Hub card variant with image */
.hub-card { padding: 0; overflow: hidden; }
.hub-card .hub-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--border);
  transition: transform 380ms var(--t-ease);
}
.hub-card:hover .hub-img { transform: scale(1.04); }
.hub-card .hub-body { padding: 22px; }
.hub-card .hub-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.hub-card h3 { font-size: 19px; margin-bottom: 10px; }
.hub-card p { color: var(--muted); font-size: 15px; margin-bottom: 14px; }
.hub-card .hub-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
}

/* News card variant */
.news-card { padding: 0; overflow: hidden; }
.news-card .news-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.news-card .news-body { padding: 22px; }
.news-card .news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}
.news-card .news-meta .cat {
  padding: 3px 10px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: var(--radius-pill);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 10px;
}
.news-card h3 { font-size: 18px; margin-bottom: 10px; line-height: 1.35; }
.news-card p { color: var(--muted); font-size: 15px; margin-bottom: 0; line-height: 1.6; }

/* Stat tile */
.stat-tile {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  text-align: left;
}
.stat-tile .stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-strong);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-tile .stat-label {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
  font-weight: 600;
}
.stat-tile .stat-note {
  font-size: 13px;
  color: var(--accent);
  margin-top: 8px;
  font-weight: 600;
}

/* Comparison matrix */
.matrix-table {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  border-collapse: collapse;
}
.matrix-table thead th {
  background: var(--surface-2);
  padding: 16px 18px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-strong);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border);
}
.matrix-table tbody td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--soft-border);
  font-size: 15px;
  color: var(--muted);
}
.matrix-table tbody tr:last-child td { border-bottom: none; }
.matrix-table tbody tr:hover { background: var(--surface-2); }
.matrix-table .check { color: var(--success); font-weight: 700; }
.matrix-table .cross { color: var(--danger); }
.matrix-table .hl {
  background: rgba(33, 190, 217, 0.05);
  border-left: 3px solid var(--primary);
  font-weight: 700;
  color: var(--text-strong);
}

/* Step list */
.step-list {
  display: grid;
  gap: 20px;
}
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 220ms var(--t-ease);
}
.step:hover { border-color: rgba(33, 190, 217, 0.35); }
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gradient-cta);
  color: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  flex-shrink: 0;
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; line-height: 1.65; margin: 0; }

/* Points table */
.points-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.points-table thead {
  background: var(--surface-2);
}
.points-table th {
  padding: 16px 18px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-strong);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border);
}
.points-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--soft-border);
  font-size: 15px;
  color: var(--muted);
}
.points-table td:first-child {
  font-weight: 600;
  color: var(--text-strong);
}
.points-table td.points {
  font-weight: 800;
  color: var(--accent);
  text-align: right;
}
.points-table tbody tr:hover { background: var(--surface-2); }
.points-table tbody tr:last-child td { border-bottom: none; }

/* CTA strip */
.cta-strip {
  background: var(--gradient-cta);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 56px);
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 40px 0;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15), transparent 50%);
}
.cta-strip > * { position: relative; z-index: 1; }
.cta-strip h2 { color: var(--background); margin-bottom: 14px; }
.cta-strip p {
  color: var(--background);
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto 28px;
  font-size: 17px;
}
.cta-strip .btn-primary {
  background: var(--background);
  color: var(--primary);
}
.cta-strip .btn-primary:hover {
  background: var(--text-strong);
}
.cta-strip .btn-secondary {
  border-color: rgba(4, 20, 30, 0.40);
  color: var(--background);
}
.cta-strip .btn-secondary:hover {
  background: rgba(4, 20, 30, 0.10);
  border-color: var(--background);
  color: var(--background);
}

/* FAQ */
.faq-grid {
  display: grid;
  gap: 14px;
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 220ms var(--t-ease);
}
.faq-item.open { border-color: rgba(33, 190, 217, 0.40); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-strong);
  background: none;
  border: none;
  cursor: pointer;
  gap: 16px;
}
.faq-q::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--primary);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--primary-soft);
  transition: transform 220ms var(--t-ease);
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms var(--t-snap), padding 220ms var(--t-ease);
  padding: 0 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.faq-item.open .faq-a {
  max-height: 800px;
  padding: 0 24px 22px;
}

/* Footer */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 24px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand { color: var(--text-strong); }
.footer-brand p { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 14px 0 18px; }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 220ms var(--t-ease);
}
.footer-social a:hover {
  background: var(--primary);
  color: var(--background);
  border-color: var(--primary);
}
.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--muted);
  font-size: 14px;
  transition: color 180ms var(--t-ease);
}
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 18px;
}
.footer-disclaimer {
  background: var(--background);
  padding: 24px 0;
  border-top: 1px solid var(--soft-border);
}
.footer-disclaimer p {
  font-size: 12px;
  color: var(--muted-2);
  text-align: center;
  margin: 0;
  line-height: 1.5;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

/* Page banner (above the fold) */
.page-banner {
  background: var(--gradient-hero);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(33, 190, 217, 0.14), transparent 50%);
}
.page-banner > .container { position: relative; z-index: 1; }
.page-banner .breadcrumb {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
}
.page-banner .breadcrumb a { color: var(--primary); }
.page-banner h1 { max-width: 900px; margin-bottom: 20px; }
.page-banner p {
  font-size: 18px;
  color: var(--muted);
  max-width: 760px;
  line-height: 1.65;
}
.page-banner-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 22px;
  font-size: 13px;
  color: var(--muted);
}
.page-banner-meta span { display: flex; align-items: center; gap: 6px; }

/* Article */
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  font-size: 13px;
  color: var(--muted);
}
.article-meta .author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--background);
  font-weight: 700;
}
.prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.75;
}
.prose h2 {
  font-size: 28px;
  margin: 40px 0 16px;
  scroll-margin-top: 96px;
}
.prose h3 {
  font-size: 22px;
  margin: 32px 0 12px;
  scroll-margin-top: 96px;
}
.prose p { color: var(--muted); }
.prose a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.prose ul, .prose ol { color: var(--muted); }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--text-strong); }
.prose blockquote {
  border-left: 3px solid var(--primary);
  margin: 28px 0;
  padding: 14px 22px;
  background: var(--primary-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text);
  font-style: italic;
}

section[id] { scroll-margin-top: 80px; }

/* Inline image row */
.inline-image-row {
  display: grid;
  grid-template-columns: minmax(0, 320px) 1fr;
  gap: 28px;
  align-items: center;
  margin: 36px 0;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.inline-image-row img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--soft-border);
}
.inline-image-row .text h4 {
  font-size: 18px;
  margin-bottom: 8px;
}
.inline-image-row .text p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
}

/* Hero trust panel (text-based, no images) */
.hero-trust {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  margin-top: 22px;
}
.hero-trust h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 700;
}
.hero-trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.hero-trust-list li {
  display: flex;
  gap: 10px;
  align-items: start;
  font-size: 14px;
  color: var(--text);
  margin: 0;
}
.hero-trust-list li .ic {
  color: var(--primary);
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1.5;
}

/* Player/team chip */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.chip .seed {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gradient-cta);
  color: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

/* Tournament ticker */
.ticker {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  height: 50px;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: tickerScroll 45s linear infinite;
  padding-left: 100%;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 8px; }
.ticker-track strong { color: var(--accent); font-weight: 700; }
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Timeline */
.timeline {
  display: grid;
  gap: 0;
  position: relative;
}
.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-left: 2px solid var(--border);
  padding-left: 24px;
  margin-left: 16px;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 28px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px var(--background);
}
.timeline-time {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.timeline-body h4 { font-size: 17px; margin-bottom: 4px; }
.timeline-body p { color: var(--muted); font-size: 15px; margin: 0; }

/* Image-grid gallery (related posts) */
.image-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 240ms var(--t-ease);
}
.image-card:hover {
  border-color: rgba(33, 190, 217, 0.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.image-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--border);
}
.image-card-body { padding: 20px; }
.image-card .cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}
.image-card h3 { font-size: 17px; margin: 8px 0 8px; line-height: 1.35; }
.image-card p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.55; }

/* Utility */
.text-center { text-align: center; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }
.flex-row { display: flex; gap: 16px; flex-wrap: wrap; }
.divider {
  height: 1px;
  background: var(--border);
  border: none;
  margin: 40px 0;
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .scorecard { max-width: 480px; }
  .card-grid.five { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 899px) {
  .main-nav { display: none; }
  .hamburger { display: block; }
  .card-grid, .card-grid.two, .card-grid.four { grid-template-columns: 1fr; }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .step { grid-template-columns: 1fr; }
  .step-num { width: 48px; height: 48px; font-size: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .inline-image-row { grid-template-columns: 1fr; }
  .hero { min-height: 480px; max-height: 720px; padding: 80px 0 60px; }
  .hero img { height: 100%; object-fit: cover; }
  .hero-lede { font-size: 16px; line-height: 1.5; }
  #hero-h { font-size: 32px; line-height: 1.1; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { flex: 1 1 auto; padding: 14px 18px; }
  .hero-trust { display: none; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .hero-meta { flex-direction: column; gap: 14px; }
  .scorecard { padding: 20px; }
  .team-score { font-size: 22px; }
  section[id] { scroll-margin-top: 88px; }
}
