/* comeliveipl1 — main stylesheet (Hindi News Magazine layout, DARK_COLOR_SYSTEM_092) */

/* ====== reset ====== */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
  scroll-padding-top: 76px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--text);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100dvh;
  max-width: 100%;
  overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
img { color: transparent; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--accent); }
button { font-family: inherit; cursor: pointer; }

/* ====== layout helpers ====== */
.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: 24px; }
.container-narrow { width: 100%; max-width: var(--max-w-narrow); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: 64px; }
.section-tight { padding-block: 40px; }
.section-loose { padding-block: 96px; }
.section-divider { border-top: 1px solid var(--soft-border); }

/* ====== skip link ====== */
.skip-link {
  position: fixed; left: 12px; top: 12px; z-index: 999;
  width: 1px; height: 1px; padding: 0; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
  background: var(--primary); color: var(--background); font-weight: 700;
}
.skip-link:focus {
  width: auto; height: auto; overflow: visible; clip-path: none;
  padding: 12px 20px;
  outline: 3px solid var(--accent);
}

/* ====== header / nav ====== */
.site-header {
  position: sticky; top: 0; z-index: 250;
  background: rgba(4, 20, 29, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  width: 100%;
  isolation: isolate;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 14px 0;
}
.brand-mark {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 20px; letter-spacing: -0.01em;
  color: var(--text);
}
.brand-mark:hover { color: var(--text); }
.brand-glyph {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px;
  background: var(--gradient-cyan);
  border: 1px solid var(--strong-border);
  border-radius: var(--radius-sm);
  color: var(--primary); font-weight: 800; font-size: 14px;
  font-family: var(--font-display);
}
.brand-name { color: var(--text); }
.brand-name span { color: var(--primary); }
.brand-tag {
  display: none;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  color: var(--dim); text-transform: uppercase;
  margin-top: 2px;
}
@media (min-width: 720px) { .brand-tag { display: block; } }

.nav-links {
  display: none; align-items: center; gap: 28px;
  list-style: none; margin: 0; padding: 0;
}
@media (min-width: 980px) { .nav-links { display: flex; } }
.nav-links a {
  color: var(--muted); font-weight: 500; font-size: 15px;
  padding: 8px 2px; position: relative;
}
.nav-links a:hover, .nav-links a.is-active { color: var(--text); }
.nav-links a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--primary); border-radius: 2px;
}
.header-right { display: flex; align-items: center; gap: 12px; }
.header-cta-ghost {
  display: none; padding: 9px 16px; border-radius: var(--radius-pill);
  border: 1px solid var(--border); color: var(--muted); font-weight: 600; font-size: 14px;
}
.header-cta-ghost:hover { color: var(--text); border-color: var(--primary); }
@media (min-width: 720px) { .header-cta-ghost { display: inline-flex; } }
.header-cta {
  display: none; padding: 9px 18px; border-radius: var(--radius-pill);
  background: var(--primary); color: var(--background); font-weight: 700; font-size: 14px;
}
.header-cta:hover { background: var(--accent); color: var(--background); }
@media (min-width: 720px) { .header-cta { display: inline-flex; } }

/* ====== hamburger ====== */
.hamburger {
  display: inline-grid; place-items: center; gap: 4px;
  width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  z-index: 300; position: relative;
}
.hamburger:hover { border-color: var(--primary); }
.hamburger span {
  display: block; width: 22px; height: 2px; background: var(--text);
  border-radius: 2px; transition: transform var(--duration-base) var(--ease);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media (min-width: 980px) { .hamburger { display: none; } }

/* ====== mobile drawer ====== */
.mobile-drawer {
  position: fixed; inset: 0 0 0 auto; width: min(360px, 86vw);
  max-width: calc(100vw - 40px); height: 100dvh;
  background: var(--surface); border-left: 1px solid var(--border);
  padding: 88px 28px 32px;
  display: none; transform: none;
  z-index: 200; overflow-y: auto; overscroll-behavior: contain;
  visibility: hidden; pointer-events: none;
  contain: layout paint; will-change: transform;
}
.mobile-drawer.is-open {
  display: block; visibility: visible; pointer-events: auto;
  animation: drawer-in var(--duration-base) var(--ease) both;
}
@keyframes drawer-in {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}
.nav-backdrop {
  position: fixed; inset: 0; z-index: 190;
  background: rgba(2, 10, 15, 0.64);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--duration-base) var(--ease), visibility var(--duration-base) var(--ease);
}
.nav-backdrop.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
body.nav-open { overflow: hidden; overscroll-behavior: none; }
.mobile-drawer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.mobile-drawer a {
  display: block; padding: 14px 12px; color: var(--text); font-weight: 600;
  border-radius: var(--radius-sm);
}
.mobile-drawer a:hover, .mobile-drawer a.is-active { background: var(--surface-2); color: var(--primary); }
.drawer-cta { display: grid; gap: 10px; margin-top: 24px; }
.drawer-cta .btn { width: 100%; }

/* ====== 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: background var(--duration-fast) var(--ease), color var(--duration-fast) var(--ease), transform var(--duration-fast) var(--ease), border-color var(--duration-fast) var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--primary); color: var(--background);
}
.btn-primary:hover { background: var(--accent); color: var(--background); }
.btn-ghost {
  background: transparent; color: var(--text); border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn-accent {
  background: var(--accent); color: var(--background);
}
.btn-sm { padding: 10px 18px; font-size: 14px; }

/* ====== hero ====== */
.hero {
  position: relative; overflow: hidden;
  background: var(--gradient);
  padding: 80px 0 56px;
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: var(--radius-pill);
  background: var(--primary-soft); color: var(--primary);
  font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid var(--strong-border);
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 0 0 var(--live);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 77, 94, 0.7); }
  70%  { box-shadow: 0 0 0 12px rgba(255, 77, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 77, 94, 0); }
}
#hero-h {
  font-family: var(--font-display);
  font-weight: 800; font-size: 44px; line-height: 1.05; letter-spacing: -0.02em;
  margin: 18px 0 16px; color: var(--text);
}
.hero-lede {
  color: var(--muted); font-size: 18px; line-height: 1.6;
  max-width: 56ch;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-trust {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px; margin-top: 36px;
}
.hero-trust .stat {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 14px 16px; background: var(--surface);
}
.hero-trust .stat-num {
  font-family: var(--font-display); font-weight: 800; font-size: 24px;
  color: var(--primary); line-height: 1;
}
.hero-trust .stat-label {
  font-size: 12px; color: var(--dim); margin-top: 6px;
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* hero score panel */
.score-panel {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.score-panel-banner {
  height: 220px; overflow: hidden; position: relative;
  background: var(--gradient-cyan);
}
.score-panel-banner img {
  width: 100%; height: 100%; object-fit: cover;
}
.score-panel-banner .badge-live {
  position: absolute; top: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: var(--radius-pill);
  background: var(--live); color: white;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.score-panel-banner .badge-live .pulse {
  width: 6px; height: 6px; border-radius: 50%; background: white;
  animation: pulse 1.6s ease-in-out infinite;
}
.score-panel-body { padding: 24px; }
.match-title {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700; color: var(--text);
  margin-bottom: 18px; display: flex; justify-content: space-between; align-items: baseline;
}
.match-title small { font-size: 12px; color: var(--dim); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }
.score-row { display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; align-items: center; margin-bottom: 16px; }
.team-block { display: flex; align-items: center; gap: 12px; }
.team-block.right { justify-content: flex-end; text-align: right; }
.team-flag {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface-2);
  display: grid; place-items: center;
  font-weight: 800; color: var(--primary); font-size: 14px;
  border: 1px solid var(--border);
}
.team-name { font-weight: 700; font-size: 16px; }
.team-score { font-family: var(--font-display); font-weight: 800; font-size: 28px; color: var(--text); margin-top: 4px; }
.team-overs { font-size: 12px; color: var(--dim); margin-top: 2px; }
.vs-tag {
  font-family: var(--font-display); font-weight: 800; font-size: 14px;
  color: var(--dim); padding: 6px 10px; border-radius: var(--radius-sm);
  background: var(--surface-2);
}
.match-status {
  padding: 12px 14px; border-radius: var(--radius);
  background: var(--live-soft); color: var(--live);
  font-size: 13px; font-weight: 600; text-align: center;
  border: 1px solid rgba(255, 77, 94, 0.3);
}

/* ====== live status strip ====== */
.live-strip {
  background: var(--surface-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 14px 0; overflow: hidden;
}
.live-strip-inner {
  display: flex; align-items: center; gap: 24px;
  font-size: 14px; color: var(--muted);
}
.live-strip-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: var(--radius-pill);
  background: var(--live); color: white; font-weight: 700; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
  flex-shrink: 0;
}
.live-strip-tag .pulse { width: 6px; height: 6px; border-radius: 50%; background: white; animation: pulse 1.6s ease-in-out infinite; }
.live-strip-items { display: flex; gap: 28px; overflow-x: auto; -ms-overflow-style: none; scrollbar-width: none; }
.live-strip-items::-webkit-scrollbar { display: none; }
.live-strip-item { white-space: nowrap; color: var(--muted); }
.live-strip-item strong { color: var(--text); font-weight: 700; }
.live-strip-item .live-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--live); margin-right: 8px; vertical-align: middle; }

/* ====== generic section head ====== */
.section-head {
  display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between;
  gap: 16px; margin-bottom: 32px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.15;
  color: var(--text); margin: 0;
}
.section-head .section-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 10px;
}
.section-head .section-lede { color: var(--muted); font-size: 15px; max-width: 56ch; }
.section-head .section-link { color: var(--primary); font-weight: 600; font-size: 14px; }
@media (max-width: 720px) {
  .section-head h2 { font-size: 24px; }
}

/* ====== news grid ====== */
.news-grid {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .news-grid { grid-template-columns: repeat(3, 1fr); } }
.news-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform var(--duration-base) var(--ease), border-color var(--duration-base) var(--ease);
}
.news-card:hover { transform: translateY(-3px); border-color: var(--strong-border); }
.news-card .news-media { aspect-ratio: 16/10; overflow: hidden; background: var(--surface-2); }
.news-card .news-media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration-slow) var(--ease); }
.news-card:hover .news-media img { transform: scale(1.04); }
.news-card .news-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.news-card .news-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary);
}
.news-card .news-title {
  font-family: var(--font-display); font-size: 19px; font-weight: 700; line-height: 1.3;
  color: var(--text); margin: 0;
}
.news-card .news-title a { color: inherit; }
.news-card .news-title a:hover { color: var(--primary); }
.news-card .news-meta { display: flex; align-items: center; gap: 12px; color: var(--dim); font-size: 13px; margin-top: auto; padding-top: 8px; }
.news-card .news-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--dim); }
.news-card .news-lede { color: var(--muted); font-size: 14px; line-height: 1.55; }

/* news featured (large first card) */
.news-grid.featured { grid-template-columns: 1fr; }
@media (min-width: 1024px) {
  .news-grid.featured {
    grid-template-columns: 1.4fr 1fr;
  }
  .news-grid.featured .news-card.featured { grid-row: span 2; }
  .news-grid.featured .news-card.featured .news-media { aspect-ratio: 16/11; }
  .news-grid.featured .news-card.featured .news-title { font-size: 28px; }
}

/* ====== hub grid ====== */
.hub-grid {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .hub-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .hub-grid { grid-template-columns: repeat(4, 1fr); } }
.hub-card {
  position: relative;
  background: var(--gradient-card), var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color var(--duration-base) var(--ease), transform var(--duration-base) var(--ease);
}
.hub-card:hover { border-color: var(--strong-border); transform: translateY(-2px); }
.hub-card .hub-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--primary-soft); color: var(--primary);
  display: grid; place-items: center;
  border: 1px solid var(--strong-border);
}
.hub-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin: 0; color: var(--text); }
.hub-card p { color: var(--muted); font-size: 14px; line-height: 1.55; margin: 0; }
.hub-card .hub-link { color: var(--primary); font-weight: 600; font-size: 14px; margin-top: auto; }
.hub-card .hub-link::after { content: " →"; }

/* ====== schedule table ====== */
.schedule-table {
  width: 100%; border-collapse: collapse; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.schedule-table th, .schedule-table td {
  text-align: left; padding: 14px 18px; font-size: 14px;
  border-bottom: 1px solid var(--soft-border);
}
.schedule-table th {
  background: var(--surface-2); color: var(--dim);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
}
.schedule-table td { color: var(--text); }
.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table tr:hover td { background: var(--surface-2); }
.schedule-table .match-cell { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.schedule-table .team-pill { font-size: 12px; color: var(--muted); }
.schedule-table .live-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: var(--radius-pill);
  background: var(--live-soft); color: var(--live);
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
}
.schedule-table .live-tag .pulse { width: 5px; height: 5px; border-radius: 50%; background: var(--live); animation: pulse 1.6s ease-in-out infinite; }
.schedule-table .status-tag {
  display: inline-block; padding: 4px 10px; border-radius: var(--radius-pill);
  background: var(--surface-2); color: var(--dim);
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
}

/* ====== comparison table ====== */
.compare-table {
  width: 100%; border-collapse: collapse; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.compare-table th, .compare-table td {
  text-align: left; padding: 16px 18px; font-size: 14px;
  border-bottom: 1px solid var(--soft-border);
}
.compare-table th {
  background: var(--surface-2); color: var(--primary);
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700;
}
.compare-table td { color: var(--text); }
.compare-table td.label { color: var(--muted); font-weight: 500; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr.highlight td { background: rgba(22, 187, 215, 0.06); }

/* ====== stat strip ====== */
.stat-strip {
  display: grid; gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .stat-strip { grid-template-columns: repeat(4, 1fr); } }
.stat-tile {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
}
.stat-tile .stat-num {
  font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--primary); line-height: 1;
}
.stat-tile .stat-label { font-size: 13px; color: var(--muted); margin-top: 8px; }
.stat-tile .stat-sub { font-size: 12px; color: var(--dim); margin-top: 6px; }

/* ====== card (generic) ====== */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
}
.card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin: 0 0 8px; color: var(--text); }
.card p { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 0; }
.card .card-icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--primary-soft); color: var(--primary);
  display: grid; place-items: center; margin-bottom: 14px;
}

/* ====== how-to steps ====== */
.steps { display: grid; gap: 20px; }
.step {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
}
.step-num {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
  background: var(--primary-soft); color: var(--primary);
  display: grid; place-items: center; font-weight: 800; font-family: var(--font-display);
  border: 1px solid var(--strong-border);
}
.step h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin: 0 0 6px; color: var(--text); }
.step p { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 0; }

/* ====== FAQ ====== */
.faq { display: grid; gap: 12px; }
.faq details {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0;
  transition: border-color var(--duration-base) var(--ease);
}
.faq details[open] { border-color: var(--strong-border); }
.faq summary {
  padding: 18px 22px; font-weight: 600; color: var(--text);
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; color: var(--primary); font-weight: 800; font-size: 20px; transition: transform var(--duration-base) var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 22px 20px; color: var(--muted); font-size: 15px; line-height: 1.65; }
.faq .faq-body p { margin: 0 0 10px; }
.faq .faq-body p:last-child { margin-bottom: 0; }

/* ====== inline image row (3-across magazine split) ====== */
.inline-image-row {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 720px) { .inline-image-row { grid-template-columns: 1fr 1fr; } }
.inline-image-row .inline-media { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; background: var(--surface-2); }
.inline-image-row .inline-media img { width: 100%; height: 100%; object-fit: cover; }

/* ====== CTA band ====== */
.cta-band {
  background: var(--gradient);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 64px 0;
}
.cta-band-inner {
  display: grid; gap: 32px; align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 980px) { .cta-band-inner { grid-template-columns: 1.4fr 1fr; } }
.cta-band h2 {
  font-family: var(--font-display); font-size: 36px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1;
  margin: 0 0 12px; color: var(--text);
}
.cta-band p { color: var(--muted); font-size: 17px; margin: 0; max-width: 56ch; }
.cta-pair { display: flex; flex-wrap: wrap; gap: 12px; }

/* ====== footer ====== */
.site-footer {
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); } }
.footer-col h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary); margin: 0 0 16px;
}
.footer-col h2 {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary); margin: 0 0 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--muted); font-size: 14px; }
.footer-col a:hover { color: var(--text); }
.footer-brand p { color: var(--muted); font-size: 14px; margin: 12px 0 18px; max-width: 38ch; line-height: 1.55; }
.footer-meta {
  border-top: 1px solid var(--soft-border); margin-top: 48px; padding-top: 24px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px;
  font-size: 13px; color: var(--dim);
}
.footer-meta a { text-decoration: underline; text-underline-offset: 2px; }
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
  background: var(--surface-2); color: var(--muted); border: 1px solid var(--border);
}
.social-row a:hover { color: var(--primary); border-color: var(--primary); }

/* ====== article / page body ====== */
.article-head {
  background: var(--gradient); padding: 56px 0 32px;
  border-bottom: 1px solid var(--border);
}
.article-eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 12px;
}
.article-head h1 {
  font-family: var(--font-display); font-size: 42px; font-weight: 800;
  letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 14px;
}
.article-dek { color: var(--muted); font-size: 18px; line-height: 1.55; max-width: 60ch; }
.article-meta {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px;
  font-size: 13px; color: var(--dim);
}
.article-meta .meta-item { display: inline-flex; align-items: center; gap: 6px; }
.article-meta .meta-item strong { color: var(--text); font-weight: 600; }

.article-banner {
  margin: 32px auto 0;
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 16/8;
  background: var(--surface-2);
  border: 1px solid var(--border);
}
.article-banner img { width: 100%; height: 100%; object-fit: cover; }

.prose {
  max-width: 720px; margin: 0 auto;
  font-size: 18px; line-height: 1.75; color: var(--text);
}
.prose h2 {
  font-family: var(--font-display); font-size: 28px; font-weight: 800;
  letter-spacing: -0.02em; line-height: 1.2; margin: 40px 0 14px; color: var(--text);
}
.prose h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  line-height: 1.3; margin: 28px 0 10px; color: var(--text);
}
.prose p { margin: 0 0 18px; color: var(--text); }
.prose a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--accent); }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 22px; color: var(--text); }
.prose li { margin-bottom: 6px; }
.prose blockquote {
  margin: 24px 0; padding: 18px 22px;
  border-left: 3px solid var(--primary);
  background: var(--surface-2); border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--muted); font-style: italic;
}
.prose strong { color: var(--text); }
.prose .info-callout {
  background: var(--surface); border: 1px solid var(--strong-border);
  border-radius: var(--radius); padding: 20px; margin: 24px 0;
}
.prose .info-callout h4 { margin: 0 0 8px; color: var(--primary); font-family: var(--font-display); font-size: 16px; font-weight: 700; }
.prose .info-callout p { margin: 0; color: var(--muted); font-size: 15px; }

.prose figure { margin: 24px 0; }
.prose figure img { width: 100%; height: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.prose figure figcaption { font-size: 13px; color: var(--dim); text-align: center; padding: 10px 0 0; }

/* ====== TOC ====== */
.toc {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 24px; margin: 32px 0;
}
.toc h4 { margin: 0 0 12px; font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--primary); letter-spacing: 0.08em; text-transform: uppercase; }
.toc ol { margin: 0; padding-left: 22px; color: var(--muted); }
.toc li { margin-bottom: 6px; font-size: 15px; }
.toc a { color: var(--text); }
.toc a:hover { color: var(--primary); }

/* ====== breadcrumb ====== */
.breadcrumb {
  font-size: 13px; color: var(--dim); padding: 14px 0;
}
.breadcrumb a { color: var(--dim); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { margin: 0 8px; }

/* ====== mobile bottom CTA ====== */
.mobile-cta {
  display: block; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 220;
  background: var(--primary); color: var(--background); text-align: center;
  padding: 14px 20px; border-radius: var(--radius-pill);
  font-weight: 700; box-shadow: var(--shadow-lift);
}
.mobile-cta:hover { background: var(--accent); color: var(--background); }
@media (min-width: 980px) { .mobile-cta { display: none; } }
body.has-mobile-cta { padding-bottom: 80px; }

/* ====== responsive tweaks ====== */
@media (max-width: 980px) {
  body { padding-top: 69px; }
  .site-header { position: fixed; inset: 0 0 auto; }
  .header-inner { min-height: 68px; gap: 12px; padding-block: 10px; }
  .brand-mark { min-width: 0; font-size: clamp(16px, 5vw, 20px); }
  .brand-name { overflow-wrap: anywhere; }
  .mobile-drawer {
    top: 69px; bottom: 0; height: calc(100dvh - 69px);
    padding-top: 18px;
  }
  .hero { padding: 48px 0 40px; min-height: 0; max-height: none; }
  .hero img { height: 100%; object-fit: cover; }
  .hero-trust { display: none; }
  .hero-lede { font-size: 16px; }
  #hero-h { font-size: 32px; line-height: 1.1; }
  .hero-cta .btn { flex: 1 1 auto; }
  .score-panel-banner { height: 160px; }
  .article-head { padding: 40px 0 24px; }
  .article-head h1 { font-size: 30px; }
  .section { padding-block: 48px; }
  .cta-band { padding: 48px 0; }
  .cta-band h2 { font-size: 26px; }
}

@media (max-width: 720px) {
  .schedule-table th:nth-child(3), .schedule-table td:nth-child(3) { display: none; }
  .compare-table th:nth-child(4), .compare-table td:nth-child(4) { display: none; }
  .score-row { grid-template-columns: 1fr; text-align: center; gap: 8px; }
  .team-block.right { justify-content: center; text-align: center; }
  .vs-tag { justify-self: center; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
}

@media (max-width: 540px) {
  body { font-size: 16px; }
  .container, .container-narrow { padding-inline: 16px; }
  .section { padding-block: 40px; }
  .section-head { margin-bottom: 24px; }
  .section-head h2 { font-size: 22px; }
  .news-card .news-title { font-size: 17px; }
  .article-head h1 { font-size: 26px; }
  .prose { font-size: 16px; }
  .prose h2 { font-size: 22px; }
  .prose h3 { font-size: 18px; }
  .mobile-drawer { width: min(330px, 88vw); max-width: calc(100vw - 28px); padding: 18px 18px 28px; }
  .mobile-drawer a { padding: 12px 10px; }
}

/* focus-visible */
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
:focus:not(:focus-visible) { outline: none; }

/* anchor scroll margin */
section[id], h2[id] { scroll-margin-top: 80px; }

/* ===== added by enricher: data-card, step-card, loose-card, band, faq-grid ===== */
.data-card-row { display: grid; gap: 18px; grid-template-columns: 1fr; margin: 24px 0; }
@media (min-width: 720px) { .data-card-row { grid-template-columns: repeat(3, 1fr); } }
.data-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px;
}
.data-card h4 { margin: 0 0 8px; font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--text); }
.data-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

.step-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; display: flex; flex-direction: column; gap: 10px;
}
.step-card .step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary-soft); color: var(--primary);
  display: grid; place-items: center; font-weight: 800; font-family: var(--font-display);
  border: 1px solid var(--strong-border);
}
.step-card h4 { margin: 0; font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--text); }
.step-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.loose-card {
  background: linear-gradient(135deg, rgba(22,187,215,0.10) 0%, rgba(22,187,215,0.02) 100%);
  border: 1px solid var(--strong-border);
  border-radius: var(--radius); padding: 18px 22px; margin: 16px 0;
  display: flex; align-items: flex-start; gap: 14px;
}
.loose-card .loose-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(253,226,81,0.18); color: #FDE251;
  display: grid; place-items: center; font-size: 16px; font-weight: 800;
  border: 1px solid rgba(253,226,81,0.4); flex-shrink: 0;
}
.loose-card p { margin: 0; color: var(--text); font-size: 14px; line-height: 1.6; }

.band { padding: 56px 0; border-top: 1px solid var(--soft-border); border-bottom: 1px solid var(--soft-border); }
.band.band-elev-1 { background: var(--surface); }
.band.band-elev-2 { background: var(--gradient); }
.band h2 { font-family: var(--font-display); font-size: 26px; font-weight: 800; letter-spacing: -0.01em; margin: 0 0 16px; color: var(--text); }

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


/* ===== added by enricher: data-card, step-card, loose-card, band, faq-grid ===== */
.data-card-row { display: grid; gap: 18px; grid-template-columns: 1fr; margin: 24px 0; }
@media (min-width: 720px) { .data-card-row { grid-template-columns: repeat(3, 1fr); } }
.data-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px;
}
.data-card h4 { margin: 0 0 8px; font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--text); }
.data-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

.step-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; display: flex; flex-direction: column; gap: 10px;
}
.step-card .step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary-soft); color: var(--primary);
  display: grid; place-items: center; font-weight: 800; font-family: var(--font-display);
  border: 1px solid var(--strong-border);
}
.step-card h4 { margin: 0; font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--text); }
.step-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.loose-card {
  background: linear-gradient(135deg, rgba(22,187,215,0.10) 0%, rgba(22,187,215,0.02) 100%);
  border: 1px solid var(--strong-border);
  border-radius: var(--radius); padding: 18px 22px; margin: 16px 0;
  display: flex; align-items: flex-start; gap: 14px;
}
.loose-card .loose-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(253,226,81,0.18); color: #FDE251;
  display: grid; place-items: center; font-size: 16px; font-weight: 800;
  border: 1px solid rgba(253,226,81,0.4); flex-shrink: 0;
}
.loose-card p { margin: 0; color: var(--text); font-size: 14px; line-height: 1.6; }

.band { padding: 56px 0; border-top: 1px solid var(--soft-border); border-bottom: 1px solid var(--soft-border); }
.band.band-elev-1 { background: var(--surface); }
.band.band-elev-2 { background: var(--gradient); }
.band h2 { font-family: var(--font-display); font-size: 26px; font-weight: 800; letter-spacing: -0.01em; margin: 0 0 16px; color: var(--text); }

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


/* ===== added by enricher: data-card, step-card, loose-card, band, faq-grid ===== */
.data-card-row { display: grid; gap: 18px; grid-template-columns: 1fr; margin: 24px 0; }
@media (min-width: 720px) { .data-card-row { grid-template-columns: repeat(3, 1fr); } }
.data-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px;
}
.data-card h4 { margin: 0 0 8px; font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--text); }
.data-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

.step-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; display: flex; flex-direction: column; gap: 10px;
}
.step-card .step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary-soft); color: var(--primary);
  display: grid; place-items: center; font-weight: 800; font-family: var(--font-display);
  border: 1px solid var(--strong-border);
}
.step-card h4 { margin: 0; font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--text); }
.step-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.loose-card {
  background: linear-gradient(135deg, rgba(22,187,215,0.10) 0%, rgba(22,187,215,0.02) 100%);
  border: 1px solid var(--strong-border);
  border-radius: var(--radius); padding: 18px 22px; margin: 16px 0;
  display: flex; align-items: flex-start; gap: 14px;
}
.loose-card .loose-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(253,226,81,0.18); color: #FDE251;
  display: grid; place-items: center; font-size: 16px; font-weight: 800;
  border: 1px solid rgba(253,226,81,0.4); flex-shrink: 0;
}
.loose-card p { margin: 0; color: var(--text); font-size: 14px; line-height: 1.6; }

.band { padding: 56px 0; border-top: 1px solid var(--soft-border); border-bottom: 1px solid var(--soft-border); }
.band.band-elev-1 { background: var(--surface); }
.band.band-elev-2 { background: var(--gradient); }
.band h2 { font-family: var(--font-display); font-size: 26px; font-weight: 800; letter-spacing: -0.01em; margin: 0 0 16px; color: var(--text); }

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


/* ===== added by enricher: data-card, step-card, loose-card, band, faq-grid ===== */
.data-card-row { display: grid; gap: 18px; grid-template-columns: 1fr; margin: 24px 0; }
@media (min-width: 720px) { .data-card-row { grid-template-columns: repeat(3, 1fr); } }
.data-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px;
}
.data-card h4 { margin: 0 0 8px; font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--text); }
.data-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

.step-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; display: flex; flex-direction: column; gap: 10px;
}
.step-card .step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary-soft); color: var(--primary);
  display: grid; place-items: center; font-weight: 800; font-family: var(--font-display);
  border: 1px solid var(--strong-border);
}
.step-card h4 { margin: 0; font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--text); }
.step-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.loose-card {
  background: linear-gradient(135deg, rgba(22,187,215,0.10) 0%, rgba(22,187,215,0.02) 100%);
  border: 1px solid var(--strong-border);
  border-radius: var(--radius); padding: 18px 22px; margin: 16px 0;
  display: flex; align-items: flex-start; gap: 14px;
}
.loose-card .loose-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(253,226,81,0.18); color: #FDE251;
  display: grid; place-items: center; font-size: 16px; font-weight: 800;
  border: 1px solid rgba(253,226,81,0.4); flex-shrink: 0;
}
.loose-card p { margin: 0; color: var(--text); font-size: 14px; line-height: 1.6; }

.band { padding: 56px 0; border-top: 1px solid var(--soft-border); border-bottom: 1px solid var(--soft-border); }
.band.band-elev-1 { background: var(--surface); }
.band.band-elev-2 { background: var(--gradient); }
.band h2 { font-family: var(--font-display); font-size: 26px; font-weight: 800; letter-spacing: -0.01em; margin: 0 0 16px; color: var(--text); }

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