/* ==========================================================================
   hockey.global v3, ice hockey energy
   Palette: rink navy, ice blue, goal-light red, faceoff yellow, arena white
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* Core palette */
  --navy: #0a1220;
  --navy-2: #0f1a2e;
  --navy-3: #172236;
  --navy-line: #1e2a42;
  --ice-1: #38bdf8;
  --ice-2: #60a5fa;
  --ice-3: #93c5fd;
  --red: #e11d48;
  --red-dark: #be123c;
  --red-glow: rgba(225, 29, 72, 0.35);
  --yellow: #f5c22b;
  --yellow-warm: #fbbf24;
  --green: #22c55e;
  --white: #f8fafc;
  --ice: #f1f5f9;
  --grey: #94a3b8;
  --grey-soft: #cbd5e1;
  --grey-line: #334155;

  --radius: 8px;
  --radius-lg: 14px;
  --radius-full: 999px;

  /* Type */
  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --shadow-card: 0 2px 6px rgba(0,0,0,0.15), 0 8px 24px rgba(0,0,0,0.25);
  --shadow-hover: 0 4px 12px rgba(0,0,0,0.2), 0 16px 40px rgba(0,0,0,0.35);
  --shadow-red: 0 0 0 1px var(--red), 0 0 24px var(--red-glow);
}

/* Reset + base */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--navy);
  color: var(--ice);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
}

/* Rink texture behind everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(56, 189, 248, 0.08), transparent 60%),
    radial-gradient(900px 500px at 85% 10%, rgba(225, 29, 72, 0.06), transparent 60%),
    radial-gradient(1400px 800px at 50% 100%, rgba(96, 165, 250, 0.05), transparent 70%),
    linear-gradient(180deg, #0a1220 0%, #0f1a2e 100%);
  pointer-events: none;
}

/* Ice-scrape lines subtle overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    repeating-linear-gradient(90deg, transparent 0, transparent 60px, rgba(96, 165, 250, 0.015) 60px, rgba(96, 165, 250, 0.015) 61px),
    repeating-linear-gradient(0deg, transparent 0, transparent 80px, rgba(56, 189, 248, 0.01) 80px, rgba(56, 189, 248, 0.01) 81px);
  pointer-events: none;
}

a { color: var(--ice-1); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--white); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--white);
  margin: 0 0 12px;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 18, 32, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--navy-line);
}
.site-header::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--red) 20%, var(--yellow) 50%, var(--ice-1) 80%, transparent 100%);
  opacity: 0.5;
}
.site-header .wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-header .logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-height: 44px;
}
.site-header .logo img { height: 40px; width: auto; display: block; }
.site-header nav {
  flex: 1;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.site-header nav::-webkit-scrollbar { display: none; }
.site-header nav a {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 6px;
  color: var(--grey-soft);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.site-header nav a:hover {
  background: var(--navy-2);
  color: var(--white);
}
.site-header nav a.live {
  color: var(--red);
  position: relative;
  padding-left: 22px;
}
.site-header nav a.live::before {
  content: "";
  position: absolute;
  left: 8px; top: 50%;
  transform: translateY(-50%);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: translateY(-50%) scale(1); }
  50% { opacity: 0.5; transform: translateY(-50%) scale(1.3); }
}
.site-header .lang {
  display: flex;
  gap: 4px;
  padding: 2px;
  background: var(--navy-2);
  border-radius: 20px;
  border: 1px solid var(--navy-line);
  flex-shrink: 0;
}
.site-header .lang a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 5px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--grey);
  letter-spacing: 0.05em;
}
.site-header .lang a.active {
  background: var(--white);
  color: var(--navy);
}

@media (max-width: 900px) {
  .site-header .wrap { padding: 10px 16px; gap: 12px; }
  .site-header .logo img { height: 32px; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 108px;
  border-bottom: 1px solid var(--navy-line);
  background-image: url('/assets/img/hero-bg.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  background-color: #050a14;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 8, 18, 0.92) 0%, rgba(3, 8, 18, 0.78) 40%, rgba(3, 8, 18, 0.38) 78%, rgba(3, 8, 18, 0.20) 100%),
    radial-gradient(600px 300px at 20% 0%, rgba(56, 189, 248, 0.12), transparent 70%);
  pointer-events: none;
}
/* Rink center circle accent, kept subtle over the photo */
.hero::after {
  content: "";
  position: absolute;
  right: -140px;
  top: -120px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  border: 2px solid rgba(56, 189, 248, 0.10);
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 768px) {
  .hero {
    background-image: url('/assets/img/hero-bg-mobile.jpg');
    background-position: center center;
  }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(3, 8, 18, 0.72) 0%, rgba(3, 8, 18, 0.88) 100%);
  }
}

.hero .wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.hero .kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(225, 29, 72, 0.12);
  border: 1px solid rgba(225, 29, 72, 0.3);
  border-radius: 20px;
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.hero .kicker::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  animation: pulse 1.6s ease-in-out infinite;
}
.hero h1 {
  font-size: clamp(30px, 5.4vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  max-width: 860px;
  margin: 0 0 20px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--ice-1), var(--ice-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 .accent-red {
  color: var(--red);
}
.hero .lede {
  font-size: 20px;
  line-height: 1.5;
  color: var(--grey-soft);
  max-width: 680px;
  margin: 0 0 32px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  transform: translateY(-1px);
  background: var(--red-dark);
  color: var(--white);
  box-shadow: 0 0 0 1px var(--red), 0 0 32px var(--red-glow);
}
.btn-secondary {
  background: var(--navy-2);
  color: var(--ice);
  border: 1px solid var(--navy-line);
}
.btn-secondary:hover {
  background: var(--navy-3);
  border-color: var(--ice-1);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--ice-1);
  padding: 10px 14px;
}
.btn-ghost:hover { color: var(--white); }

/* Hero stat strip */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--navy-line);
}
.hero-stats .stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stats .stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.hero-stats .stat-num .unit {
  font-size: 16px;
  color: var(--grey);
  font-weight: 500;
  margin-left: 4px;
}
.hero-stats .stat-label {
  font-size: 13px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (max-width: 720px) {
  .hero { padding: 48px 0 60px; }
  .hero .lede { font-size: 17px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 16px 24px; }
  .hero-stats .stat-num { font-size: 24px; }
}

/* ==========================================================================
   Sections
   ========================================================================== */
main .wrap, .section .wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 64px 0;
  position: relative;
}
.section + .section { border-top: 1px solid var(--navy-line); }
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.section-head .title {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.section-head h2 {
  font-size: 34px;
  margin: 0;
}
.section-head .subtitle {
  color: var(--grey);
  font-size: 15px;
}
.section-head .more {
  color: var(--ice-1);
  font-weight: 500;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid var(--navy-line);
  transition: border-color 0.15s;
}
.section-head .more:hover { border-color: var(--ice-1); }

/* ==========================================================================
   Rankings / best-of cards
   ========================================================================== */
.ranking-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ranking-row {
  display: grid;
  grid-template-columns: 40px 60px 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  background: var(--navy-2);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
  position: relative;
  overflow: hidden;
}
.ranking-row:hover {
  transform: translateY(-2px);
  border-color: var(--ice-1);
  box-shadow: var(--shadow-hover);
}
.ranking-row .rank {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--grey);
  font-variant-numeric: tabular-nums;
  text-align: center;
}
.ranking-row.top .rank {
  color: var(--yellow);
  text-shadow: 0 0 24px rgba(245, 194, 43, 0.4);
}
.ranking-row .brand-logo {
  width: 60px; height: 60px;
  border-radius: 8px;
  background: var(--navy-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 18px;
  letter-spacing: -0.02em;
  border: 1px solid var(--navy-line);
}
.ranking-row .brand-info h3 {
  font-size: 18px;
  margin: 0 0 4px;
  color: var(--white);
}
.ranking-row .brand-info p {
  margin: 0;
  color: var(--grey);
  font-size: 13px;
}
.ranking-row .score {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}
.ranking-row .score-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--ice-1);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.ranking-row .score-label {
  font-size: 11px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}
.ranking-row .cta-arrow {
  color: var(--ice-1);
  font-size: 20px;
  padding: 12px;
  border-radius: 6px;
  transition: background 0.15s, transform 0.15s;
}
.ranking-row:hover .cta-arrow {
  background: var(--navy-3);
  transform: translateX(3px);
}
@media (max-width: 720px) {
  .ranking-row {
    grid-template-columns: 32px 48px 1fr auto;
    gap: 12px;
    padding: 14px 16px;
  }
  .ranking-row .brand-logo { width: 48px; height: 48px; font-size: 14px; }
  .ranking-row .cta-arrow { display: none; }
  .ranking-row .rank { font-size: 22px; }
  .ranking-row .score-num { font-size: 20px; }
  .ranking-row .brand-info h3 { font-size: 15px; }
  .ranking-row .brand-info p { font-size: 12px; }
}

/* ==========================================================================
   Content grids
   ========================================================================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.card {
  background: var(--navy-2);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-2px);
  border-color: var(--ice-1);
  box-shadow: var(--shadow-hover);
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ice-1), transparent);
  opacity: 0;
  transition: opacity 0.15s;
}
.card:hover::before { opacity: 1; }
.card h3 { font-size: 20px; margin: 0 0 8px; color: var(--white); }
.card p { margin: 0 0 12px; color: var(--grey-soft); font-size: 14px; line-height: 1.6; }
.card .meta {
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.card .meta .tag {
  color: var(--yellow);
  padding: 3px 8px;
  background: rgba(245, 194, 43, 0.1);
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.card .meta .tag.ncaa { color: var(--ice-1); background: rgba(56, 189, 248, 0.1); }
.card .meta .tag.nhl { color: var(--red); background: rgba(225, 29, 72, 0.1); }
.card .cta { color: var(--ice-1); font-size: 14px; font-weight: 500; }
.card:hover .cta { color: var(--white); }

/* Team card grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.team-card {
  background: var(--navy-2);
  border: 1px solid var(--navy-line);
  border-left: 3px solid var(--grey-line);
  border-radius: 8px;
  padding: 14px 16px;
  text-decoration: none;
  color: var(--ice);
  font-size: 15px;
  font-weight: 500;
  transition: border-left-color 0.15s, background 0.15s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.team-card:hover {
  background: var(--navy-3);
  border-left-color: var(--yellow);
  color: var(--white);
}
.team-card.ca { border-left-color: var(--red); }
.team-card.us { border-left-color: var(--ice-1); }
.team-card.ncaa { border-left-color: var(--yellow); }

/* ==========================================================================
   Odds table
   ========================================================================== */
.odds-table-wrap {
  background: var(--navy-2);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 12px;
}
.odds-table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
  font-size: 15px;
}
.odds-table th {
  text-align: left;
  padding: 14px 16px;
  background: var(--navy-3);
  color: var(--grey);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--navy-line);
}
.odds-table td {
  padding: 16px;
  border-bottom: 1px solid var(--navy-line);
  color: var(--ice);
}
.odds-table tr:last-child td { border-bottom: none; }
.odds-table tr:hover td { background: rgba(56, 189, 248, 0.04); }
.odds-table .match-cell { display: flex; flex-direction: column; gap: 2px; }
.odds-table .match-teams { font-weight: 600; color: var(--white); }
.odds-table .match-time { font-size: 12px; color: var(--grey); text-transform: uppercase; letter-spacing: 0.03em; }
.odds-table .price {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: var(--navy-3);
  border: 1px solid var(--navy-line);
  border-radius: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--white);
  min-width: 60px;
  justify-content: center;
}
.odds-table .price.best {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.35);
  color: var(--green);
}
@media (max-width: 720px) {
  .odds-table { font-size: 13px; min-width: 500px; }
  .odds-table th, .odds-table td { padding: 10px 8px; }
  .odds-table-wrap { overflow-x: auto; }
}

/* ==========================================================================
   Trust strip / stats bar
   ========================================================================== */
.trust-strip {
  background: var(--navy-2);
  border-top: 1px solid var(--navy-line);
  border-bottom: 1px solid var(--navy-line);
  padding: 20px 0;
}
.trust-strip .wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.trust-item .icon { font-size: 22px; color: var(--yellow); }
.trust-item .label { font-size: 13px; color: var(--grey-soft); }
.trust-item strong { color: var(--white); font-weight: 600; }

/* ==========================================================================
   Long-form article layout
   ========================================================================== */
.long-form {
  max-width: 740px;
  margin: 0 auto;
  padding: 48px 24px;
}
.long-form h1 {
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 12px;
  letter-spacing: -0.03em;
}
.long-form .byline {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--grey);
  font-size: 14px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--navy-line);
}
.long-form .byline a { color: var(--ice-1); }
.long-form h2 {
  font-size: 26px;
  margin: 40px 0 14px;
  color: var(--white);
}
.long-form h3 {
  font-size: 20px;
  margin: 28px 0 10px;
  color: var(--ice);
}
.long-form p, .long-form li {
  color: var(--grey-soft);
  line-height: 1.75;
  font-size: 17px;
}
.long-form ul, .long-form ol {
  padding-left: 22px;
  margin: 12px 0 20px;
}
.long-form li { margin-bottom: 6px; padding-left: 4px; }
.long-form em { color: var(--grey); font-style: normal; font-size: 14px; }
.long-form table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 14px;
}
.long-form th, .long-form td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--navy-line);
  vertical-align: top;
}
.long-form th {
  color: var(--grey);
  font-weight: 500;
  width: 200px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 12px;
}
.long-form td { color: var(--ice); }
.long-form blockquote {
  border-left: 3px solid var(--yellow);
  padding: 8px 20px;
  margin: 24px 0;
  color: var(--ice);
  background: var(--navy-2);
  border-radius: 0 8px 8px 0;
  font-style: italic;
}

/* Verdict card + pros/cons */
.verdict-card {
  background: linear-gradient(135deg, var(--navy-2), var(--navy-3));
  border: 1px solid var(--navy-line);
  border-top: 3px solid var(--yellow);
  padding: 28px 30px;
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
}
.verdict-card h2 { margin: 0 0 12px; font-size: 22px; color: var(--yellow); }
.verdict-card p { color: var(--ice); font-size: 17px; line-height: 1.7; margin: 0; }
.verdict-card .rating-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--navy-line);
}
.verdict-card .big-score {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--ice-1);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.verdict-card .big-score .of { font-size: 20px; color: var(--grey); }

.proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}
@media (max-width: 640px) {
  .proscons { grid-template-columns: 1fr; }
}
.proscons .pros, .proscons .cons {
  background: var(--navy-2);
  border: 1px solid var(--navy-line);
  padding: 22px 24px;
  border-radius: var(--radius-lg);
}
.proscons .pros { border-left: 3px solid var(--green); }
.proscons .cons { border-left: 3px solid var(--red); }
.proscons h3 { margin: 0 0 12px; font-size: 16px; color: var(--white); }
.proscons ul { padding-left: 20px; margin: 0; }
.proscons li { padding-left: 4px; margin-bottom: 8px; color: var(--grey-soft); font-size: 14px; line-height: 1.6; }

.brand-facts {
  background: var(--navy-2);
  border: 1px solid var(--navy-line);
  padding: 22px 26px;
  border-radius: var(--radius-lg);
  margin-top: 28px;
}
.brand-facts h3 { margin: 0 0 14px; font-size: 16px; color: var(--white); text-transform: uppercase; letter-spacing: 0.05em; }
.brand-facts table { width: 100%; border-collapse: collapse; font-size: 14px; }
.brand-facts th, .brand-facts td {
  text-align: left;
  padding: 10px 0;
  border-bottom: 1px solid var(--navy-line);
  vertical-align: top;
}
.brand-facts th { color: var(--grey); font-weight: 500; width: 160px; font-size: 13px; }
.brand-facts td { color: var(--ice); font-size: 14px; }
.brand-facts tr:last-child th, .brand-facts tr:last-child td { border-bottom: none; }

/* Compliance strip */
.contact-strip {
  background: var(--navy-2);
  border-left: 3px solid var(--yellow);
  padding: 24px 28px;
  border-radius: var(--radius);
  margin-top: 32px;
}
.contact-strip h3 { font-size: 18px; margin: 0 0 10px; color: var(--white); }
.contact-strip p { color: var(--grey-soft); line-height: 1.6; margin: 0 0 12px; font-size: 14px; }
.contact-strip p:last-child { margin-bottom: 0; }
.contact-strip a { color: var(--yellow); }
.contact-strip .fine-print {
  font-size: 12px;
  color: var(--grey);
  border-top: 1px dashed var(--navy-line);
  padding-top: 12px;
  margin-top: 12px;
}

/* News list */
.news-list { display: grid; gap: 16px; margin-top: 20px; }
.news-card {
  background: var(--navy-2);
  border: 1px solid var(--navy-line);
  border-left: 3px solid var(--yellow);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  transition: border-color 0.15s;
}
.news-card:hover { border-left-color: var(--red); }
.news-card .tag {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--yellow);
  background: rgba(245, 194, 43, 0.1);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.news-card h3 { margin: 0 0 8px; font-size: 20px; line-height: 1.3; }
.news-card h3 a { color: var(--white); text-decoration: none; }
.news-card h3 a:hover { color: var(--yellow); }
.news-card p { color: var(--grey-soft); font-size: 14px; line-height: 1.6; margin: 0 0 4px; }

/* Province / hub cards */
.province-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.province-card {
  background: var(--navy-2);
  border: 1px solid var(--navy-line);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s, border-color 0.15s;
  position: relative;
  overflow: hidden;
}
.province-card:hover {
  border-color: var(--ice-1);
  transform: translateY(-2px);
}
.province-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--yellow);
}
.province-card.ca::before { background: var(--red); }
.province-card.us::before { background: var(--ice-1); }
.province-card h3 { margin: 0 0 6px; font-size: 22px; color: var(--white); }
.province-card p { margin: 2px 0; color: var(--grey-soft); font-size: 14px; }
.province-card .stat {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--navy-line);
  font-size: 13px;
  color: var(--grey);
}
.province-card .stat strong { color: var(--yellow); font-weight: 600; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--navy-line);
  background: var(--navy-2);
  padding: 48px 0 24px;
  margin-top: 80px;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ice-1) 30%, var(--red) 70%, transparent);
  opacity: 0.4;
}
.site-footer .wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.site-footer .cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.site-footer .brand-col p { color: var(--grey); font-size: 14px; line-height: 1.6; margin: 12px 0 0; max-width: 280px; }
.site-footer h4 {
  font-size: 12px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
}
.site-footer nav { display: flex; flex-direction: column; gap: 8px; }
.site-footer nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: var(--grey-soft);
  font-size: 14px;
}
.site-footer nav a:hover { color: var(--white); }
.site-footer .legal {
  padding-top: 24px;
  border-top: 1px solid var(--navy-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--grey);
  font-size: 13px;
}
.site-footer .legal .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid var(--navy-line);
  border-radius: 4px;
  color: var(--grey-soft);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
@media (max-width: 720px) {
  .site-footer .cols { grid-template-columns: 1fr 1fr; gap: 28px; }
  .site-footer { padding: 32px 0 20px; }
}

/* ==========================================================================
   Utility
   ========================================================================== */
.method-table th { background: var(--navy-3); color: var(--grey); font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
.rg-help th { color: var(--yellow); font-weight: 600; }

@media (max-width: 640px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  .section { padding: 40px 0; }
  .brand-facts th, .long-form th { width: 130px; }
}

/* Overnight editorial and data components */
.site-header.scrolled { box-shadow: 0 4px 12px rgba(0,0,0,.15); }
.author-card { max-width: 820px; margin: 0 auto 20px; padding: 18px 22px; border: 1px solid var(--navy-line); border-left: 3px solid var(--ice-1); background: var(--navy-2); border-radius: var(--radius); }
.author-card strong, .author-card span { display: block; }
.author-card span { color: var(--grey); font-size: 13px; margin-top: 3px; }
.author-card p { color: var(--grey-soft); margin: 8px 0 0; font-size: 14px; }
.eyebrow { color: var(--yellow); font-weight: 700; text-transform: uppercase; letter-spacing: .09em; font-size: 12px; margin-bottom: 10px; }
.chart-shell { height: 310px; padding: 16px; border: 1px solid var(--navy-line); background: var(--navy-2); border-radius: var(--radius); margin: 20px 0 34px; }
.data-note { padding: 20px; background: rgba(56,189,248,.08); border: 1px solid rgba(56,189,248,.35); border-radius: var(--radius); }
.data-note p { margin: 8px 0 0; }
.faq-list details { border-top: 1px solid var(--grey-line); padding: 14px 0; }
.faq-list details:last-child { border-bottom: 1px solid var(--grey-line); }
.faq-list summary {
  display: flex;
  align-items: center;
  min-height: 44px;
  cursor: pointer;
  color: var(--white);
  font-weight: 600;
}
@media (max-width: 768px) { .hero h1 { font-size: clamp(1.75rem, 8vw, 2.5rem); } .chart-shell { height: 260px; padding: 10px; } }
.cross-book { min-width: 1580px; font-size: 13px; }
.cross-book th, .cross-book td { white-space: nowrap; vertical-align: middle; }
.cross-book td small { color: var(--grey); font-size: 10px; }
.cross-book .sticky-match { position: sticky; left: 0; z-index: 3; min-width: 185px; background: var(--navy-2); white-space: normal; }
.cross-book .sticky-match span { display:block; color:var(--grey); font-size:11px; margin-top:3px; }
.best-price { display: inline-block; padding: 2px 6px; border-radius: 4px; background: rgba(34,197,94,.18); color: #bbf7d0; font-weight: 700; }
.refresh-prices { min-height: 44px; border: 0; cursor: pointer; font: inherit; }
.movement-toggle { min-height: 36px; padding: 6px 9px; border: 1px solid var(--grey-line); border-radius: 4px; color: var(--ice-2); background: transparent; cursor:pointer; }
.movement-row td { background: rgba(15,26,46,.8); }
.movement-chart { min-height: 88px; color: var(--grey); font-size: 13px; }
@media (max-width:768px) { .cross-book { min-width: 1580px; } .board-wrap { margin-left:-16px; margin-right:-16px; } .cross-book .sticky-match { left:0; } }
.market-page { max-width: 900px; }
.operator-read { padding: 24px 0; border-bottom: 1px solid var(--grey-line); }
.operator-list { columns: 3; column-gap: 28px; }
.operator-list li { break-inside: avoid; }
@media (max-width: 650px) { .operator-list { columns: 2; } }
.book-wordmarks { display:flex; gap:8px; flex-wrap:wrap; margin:0 0 18px; }
.book-wordmarks img { width:108px; height:30px; object-fit:contain; }
.trust-item .icon { width:24px; height:24px; display:inline-flex; align-items:center; justify-content:center; }
.trust-item .icon::before { content:'✓'; font-size:18px; color:var(--ice-1); }
.trust-item:nth-child(1) .icon::before { content:'⌑'; }
.trust-item:nth-child(2) .icon::before { content:'▤'; }
.trust-item:nth-child(3) .icon::before { content:'◷'; }
.trust-item:nth-child(4) .icon::before { content:'✓'; }
