/* ===== TOKENS ===== */
:root {
  --bg: #faf9f3;
  --bg-soft: #f3f0e3;
  --bg-card: #ebe6d2;
  --line: #ddd6b8;
  --line-2: #c9c098;
  --ink: #0e1108;
  --ink-2: #2b2e22;
  --muted: #6c6a55;
  --green: #156a3a;
  --green-deep: #0d4e2a;
  --green-light: #2a8c52;
  --gold: #b88a1f;
  --gold-2: #8a661a;
  --gold-light: #e6c66c;
  --navy: #142a51;
  --red: #c8242d;
  --blue: #1d4ed8;
  --purple: #6d28d9;
  --orange: #d97706;
  --radius: 18px;
  --radius-lg: 28px;
  --font-serif: "Newsreader", "Times New Roman", Georgia, serif;
  --font-sans: "Manrope", -apple-system, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: var(--bg); color: var(--ink); font-family: var(--font-sans); font-size: 17px; line-height: 1.55; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;}
::selection { background: var(--green); color: #fff; }
a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--green); }
h1, h2, h3, h4, h5 { font-family: var(--font-serif); color: var(--ink); margin: 0; font-weight: 600; letter-spacing: -0.018em; }

/* ===== TOP NOTIFY ===== */
.notify { background: var(--bg-soft); border-bottom: 1px solid var(--line); font-size: 14px; padding: 10px 24px; display: flex; justify-content: center; align-items: center; gap: 16px; color: var(--ink-2); }
.notify .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 2.2s infinite; flex-shrink: 0; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(21,106,58,0.55); } 70% { box-shadow: 0 0 0 8px rgba(21,106,58,0); } 100% { box-shadow: 0 0 0 0 rgba(21,106,58,0); } }
.notify a { color: var(--green); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; white-space: nowrap; }

/* ===== NAV ===== */
header.nav { border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; backdrop-filter: blur(10px); background: rgba(250,249,243,0.92); }
.nav-inner { max-width: 1240px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.logo .crest { width: 40px; height: 40px; flex: 0 0 40px; display:grid; place-items:center; border-radius: 50%; background: radial-gradient(circle at 30% 25%, #fff5d6 0%, #f3dc92 45%, #c9a142 100%); box-shadow: 0 1px 0 rgba(255,255,255,0.55) inset, 0 -2px 6px rgba(0,0,0,0.12) inset, 0 6px 12px -6px rgba(184,138,31,0.5); padding: 4px;}
.logo .crest img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 1px 1px rgba(0,0,0,0.15));}
.logo .mark { font-family: var(--font-serif); font-weight: 700; font-size: 22px; letter-spacing: -0.01em; }
.logo .mark .rx { color: var(--green); font-style: italic; font-weight: 600; }
nav.primary { display: flex; align-items: center; gap: 28px; }
nav.primary a { color: var(--ink-2); font-weight: 500; font-size: 15px; }
nav.primary a:hover { color: var(--green); }

/* ===== LAYOUT ===== */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ===== HERO ===== */
.hero { padding: 80px 0 60px; position: relative; overflow: hidden; }
.hero .splat { position: absolute; pointer-events: none; mix-blend-mode: multiply; opacity: 0.55; filter: blur(0.4px); z-index: 0;}
.hero .splat-red    { top: 6%;  right: 8%;  width: 360px; transform: rotate(8deg); }
.hero .splat-blue   { bottom: -6%; right: 28%; width: 320px; transform: rotate(-12deg); }
.hero .splat-purple { top: 24%; right: 42%; width: 240px; transform: rotate(22deg); }
.hero .splat-green  { top: 56%; right: 4%;  width: 260px; transform: rotate(-26deg); opacity: 0.45;}
.hero .splat-orange { bottom: 4%; right: 56%; width: 200px; transform: rotate(36deg); opacity: 0.5;}
.hero .wrap { position: relative; z-index: 1;}

.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
h1.hero-title { font-size: clamp(48px, 6.2vw, 88px); line-height: 1.02; letter-spacing: -0.025em; font-weight: 600; color: var(--ink); }
h1.hero-title em { font-style: italic; color: var(--green); font-weight: 600; }
.hero-lede { font-size: 20px; color: var(--muted); max-width: 520px; margin: 24px 0 32px; line-height: 1.5; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-countdown { margin: 20px 0 24px; padding: 18px 22px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,0.72); backdrop-filter: blur(6px); display: inline-flex; flex-direction: column; gap: 8px; max-width: 100%;}
.hero-countdown-lbl { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);}
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 24px; border-radius: 999px; font-weight: 600; font-size: 15px; border: 1.5px solid transparent; cursor: pointer; transition: transform 0.1s ease, background 0.15s ease, border-color 0.15s ease; text-decoration: none; font-family: var(--font-sans); }
.btn.primary { background: var(--green); color: #fff; }
.btn.primary:hover { background: var(--green-deep); color: #fff; transform: translateY(-1px); }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn.ghost:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-1px); }
.btn .arrow { transition: transform 0.15s ease; }
.btn:hover .arrow { transform: translateX(2px); }

/* ===== HERO ART ===== */
.hero-art { position: relative; aspect-ratio: 1 / 1; max-width: 560px; margin-left: auto; width: 100%; }
.hero-art .platter {
  position: absolute; inset: 6%; border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, #f9f3da 0%, #d9c98a 55%, #a78a3e 100%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.55) inset, 0 -1px 0 rgba(0,0,0,0.05) inset, 0 40px 80px -30px rgba(184,138,31,0.42), 0 80px 100px -40px rgba(13,13,13,0.16);
}
.hero-art .platter::before {
  /* center circle, like a pitch */
  content:""; position:absolute; inset: 36%; border-radius: 50%;
  border: 2px dashed rgba(13,33,17,0.18);
}
.hero-art .platter::after {
  content: ""; position: absolute; inset: 8%; border-radius: 50%;
  border: 1px dashed rgba(13,33,17,0.18);
}
.mascot-wrap { position: absolute; inset: -4% 0 -8% 0; width: 100%; height: 110%; z-index: 3; display: grid; place-items: end center; pointer-events: none; }
.mascot-wrap img { width: 78%; height: auto; object-fit: contain; user-select: none; -webkit-user-drag: none; pointer-events: none;
  filter: drop-shadow(0 4px 3px rgba(13,13,13,0.10)) drop-shadow(0 16px 20px rgba(13,13,13,0.12)) drop-shadow(0 40px 40px rgba(13,13,13,0.10));
  transition: transform 0.6s cubic-bezier(0.2,0.8,0.2,1);
}
.mascot-wrap.kick img { transform: translateY(-6px) rotate(-2deg); }

/* Floating balls */
.ball-field { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden;}
.ballwrap { position: absolute; z-index: 1; will-change: transform; aspect-ratio: 1/1; pointer-events:none;}
.bw1 { width: 110px; top: 2%;   right: 0%;  }
.bw2 { width:  86px; bottom: 6%; left: -3%; }
.bw3 { width:  62px; top: 26%;  left: -4%;  }
.bw4 { width:  48px; bottom: -1%; right: 22%; }
.bw5 { width:  96px; top: 52%;  right: -5%; }
.bw6 { width:  44px; top: 5%;   left: 14%;  }
.bw7 { width:  70px; bottom: 28%; right: 4%; }
.bw8 { width:  54px; top: 72%;  left: 8%;  }
.bw9 { width:  38px; top: 16%;  right: 18%; }
.bw10{ width:  82px; top: 38%;  left: 36%;  }
.bw11{ width:  32px; bottom: 18%; left: 24%; }
.bw12{ width:  58px; top: 60%;  right: 32%; }
.bw13{ width:  46px; bottom: 36%; right: 46%; }
.bw14{ width:  40px; top: 88%;  right: 14%; }
.ball {
  display: block; width: 100%; height: 100%;
  object-fit: contain;
  animation: bob 7s ease-in-out infinite, spin 12s linear infinite;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.22));
  transform-origin: center;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes bob { 0%, 100% { translate: 0 0; } 50% { translate: 0 -12px; } }

.hero-art .seal-stamp { position: absolute; bottom: -4%; right: -3%; width: 130px; height: 130px; transform: rotate(-10deg); z-index: 4; }

/* ===== HERO STATS ===== */
.hero-stats { margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hero-stats .stat { padding: 22px 24px; border-right: 1px solid var(--line); }
.hero-stats .stat:last-child { border-right: 0; }
.hero-stats .stat .num { font-family: var(--font-serif); font-size: 40px; line-height: 1; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }
.hero-stats .stat .num em { font-style: italic; color: var(--green); }
.hero-stats .stat .lbl { font-size: 13px; color: var(--muted); margin-top: 8px; }

/* ===== STATEMENT ===== */
section.statement { padding: 96px 0; }
.statement-inner { max-width: 920px; margin: 0 auto; }
.eyebrow { font-size: 13px; font-weight: 600; color: var(--green); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 22px; display: flex; align-items: center; gap: 12px; }
.eyebrow::before { content: ""; width: 18px; height: 1.5px; background: var(--green); display: inline-block; }
h2.big { font-size: clamp(32px, 4.4vw, 56px); line-height: 1.08; letter-spacing: -0.02em; font-weight: 600; }
h2.big em { color: var(--green); font-style: italic; }
.lede { font-size: 20px; color: var(--muted); margin-top: 24px; max-width: 760px; line-height: 1.55; }

/* ===== BAR CHART ===== */
section.compare { padding: 24px 0 100px; }
.compare-card { background: var(--bg-card); border-radius: var(--radius-lg); padding: 48px; border: 1px solid var(--line); }
.compare-card .lbl-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 30px; flex-wrap: wrap; gap: 16px; }
.compare-card h3 { font-size: 22px; font-weight: 600; }
.compare-card .subhead { font-size: 14px; color: var(--muted); }
.bars { display: grid; gap: 24px; }
.bar-row { display: grid; grid-template-columns: 200px 1fr 140px; align-items: center; gap: 18px; }
.bar-row .name { font-size: 15px; color: var(--ink-2); font-weight: 500; }
.bar-row .name small { display: block; color: var(--muted); font-weight: 400; font-size: 13px; margin-top: 2px; }
.bar-track { height: 36px; background: rgba(13,13,13,0.06); border-radius: 6px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 6px; background: linear-gradient(90deg, #b03a3a 0%, #d76060 100%); width: 0; transition: width 1.2s cubic-bezier(0.2, 0.8, 0.2, 1); box-shadow: 0 1px 0 rgba(255,255,255,0.3) inset; }
.bar-fill.navy { background: linear-gradient(90deg, var(--navy) 0%, #3a5a96 100%); }
.bar-fill.gold { background: linear-gradient(90deg, var(--gold-2) 0%, var(--gold-light) 100%); }
.bar-fill.green { background: linear-gradient(90deg, var(--green-deep) 0%, var(--green-light) 100%); }
.bar-row .val { font-family: var(--font-serif); font-size: 28px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); text-align: right; }
.bar-row .val em { font-style: italic; color: var(--green); font-size: 16px; font-weight: 500; }

/* ===== SECTION HEAD ===== */
.section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 48px; align-items: end; }
.section-head .left .eyebrow { margin-bottom: 16px; }
.section-head .right p { color: var(--muted); margin: 0; font-size: 17px; max-width: 460px; }
.section-head h2 { font-size: clamp(34px, 4.2vw, 52px); line-height: 1.05; }
.section-head h2 em { font-style: italic; color: var(--green); }

/* ===== PROTOCOL ===== */
section.protocol { padding: 100px 0; }
.protocol-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.proto-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px 24px; position: relative; transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease; }
.proto-card:hover { transform: translateY(-3px); border-color: var(--line-2); background: #fff; }
.proto-card .icon-disc { width: 56px; height: 56px; border-radius: 50%; background: radial-gradient(circle at 30% 25%, #fff 0%, #f4d59f 45%, #b8902e 100%); box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset, 0 -2px 6px rgba(0,0,0,0.08) inset, 0 10px 20px -8px rgba(184,144,46,0.4); margin-bottom: 22px; display: grid; place-items: center; color: #fff; font-family: var(--font-serif); font-style: italic; font-weight: 700; font-size: 22px; }
.proto-card .icon-disc.navy { background: radial-gradient(circle at 30% 25%, #fff 0%, #c8d7ee 40%, #1d3a6d 100%); }
.proto-card .icon-disc.green { background: radial-gradient(circle at 30% 25%, #fff 0%, #bfe6cc 40%, #156a3a 100%); }
.proto-card .icon-disc.red { background: radial-gradient(circle at 30% 25%, #fff 0%, #f6c6c8 40%, #c8242d 100%); }
.proto-card .icon-disc.purple { background: radial-gradient(circle at 30% 25%, #fff 0%, #d9c7f4 40%, #6d28d9 100%); }
.proto-card .icon-disc.blue { background: radial-gradient(circle at 30% 25%, #fff 0%, #c5d4f4 40%, #1d4ed8 100%); }
.proto-card h4 { font-size: 22px; line-height: 1.15; margin-bottom: 10px; }
.proto-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55; }
.proto-card .step-no { position: absolute; top: 22px; right: 24px; font-family: var(--font-serif); font-style: italic; color: var(--muted); font-size: 14px; }

/* ===== SUPPLIES ===== */
section.supplies { background: var(--bg-soft); padding: 100px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.supplies-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.supply { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; transition: transform 0.15s ease, border-color 0.15s ease; display: flex; flex-direction: column; overflow: visible; }
.supply:hover { transform: translateY(-3px); border-color: var(--line-2); }
.supply .ration { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--green); margin-bottom: 14px; display: flex; align-items: center; gap: 8px;}
.supply .ration::before { content:""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); display: inline-block;}
.supply.c-red    .ration { color: var(--red); }    .supply.c-red    .ration::before { background: var(--red); }
.supply.c-blue   .ration { color: var(--blue); }   .supply.c-blue   .ration::before { background: var(--blue); }
.supply.c-purple .ration { color: var(--purple); } .supply.c-purple .ration::before { background: var(--purple); }
.supply.c-orange .ration { color: var(--orange); } .supply.c-orange .ration::before { background: var(--orange); }
.supply.c-navy   .ration { color: var(--navy); }   .supply.c-navy   .ration::before { background: var(--navy); }
.supply h4 { font-size: 22px; margin-bottom: 8px; color: var(--ink); }
.supply p { font-size: 15px; color: var(--muted); margin: 0 0 18px; }
.supply .qty { border-top: 1px solid var(--line); padding-top: 14px; display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); margin-top: auto; }
.supply .qty strong { font-family: var(--font-serif); font-size: 18px; color: var(--ink); font-weight: 600; letter-spacing: -0.01em; }

/* ===== FAQ ===== */
section.faq { padding: 100px 0; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: transparent; border: 0; text-align: left; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 24px; cursor: pointer; font-family: var(--font-serif); font-size: 22px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); line-height: 1.25; }
.faq-q:hover { color: var(--green); }
.faq-q .plus { width: 30px; height: 30px; flex: 0 0 30px; border-radius: 50%; border: 1.5px solid var(--line-2); display: grid; place-items: center; transition: transform 0.2s ease, border-color 0.15s ease, background 0.15s ease; color: var(--ink); font-family: var(--font-sans); font-size: 18px; }
.faq-q:hover .plus { border-color: var(--green); color: var(--green); }
.faq-item.open .plus { transform: rotate(45deg); background: var(--ink); color: #fff; border-color: var(--ink); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; color: var(--muted); font-size: 16px; }
.faq-a-inner { padding: 0 0 26px; max-width: 760px; }

/* ===== CTA BANNER ===== */
section.cta-banner { padding: 0 0 100px; }
.cta-card { background: var(--green-deep); color: #fff; border-radius: var(--radius-lg); padding: 56px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; position: relative; overflow: hidden; }
.cta-card::before { content: ""; position: absolute; right: -120px; top: -120px; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #2a8c52 0%, #0d4e2a 60%); opacity: 0.7; }
.cta-card::after {
  content:""; position:absolute; inset:0;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 60px, rgba(255,255,255,0.04) 60px 120px);
  pointer-events:none;
}
.cta-card h2 { color: #fff; font-size: clamp(28px, 3.4vw, 44px); line-height: 1.08; }
.cta-card h2 em { color: var(--gold-light); font-style: italic; }
.cta-card p { color: rgba(255,255,255,0.82); margin: 16px 0 28px; font-size: 17px; max-width: 520px; }
.cta-card .left, .cta-card .right { position: relative; z-index: 2; }
.cta-card .right { display:flex; justify-content:flex-end; }
.stamp-mini { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border: 2px solid var(--gold-light); padding: 8px 12px; border-radius: 999px; transform: rotate(-3deg); white-space: nowrap; color: var(--gold-light);}

/* ===== FIXTURE GRID (replaces ticker section bottom) ===== */
/* ===== COUNTDOWN ===== */
.countdown { display: inline-flex; align-items: baseline; gap: 8px; font-family: var(--font-mono); font-size: 14px; font-weight: 500; color: var(--ink); letter-spacing: 0.02em; font-variant-numeric: tabular-nums;}
.countdown .cseg { display: inline-flex; align-items: baseline; gap: 2px;}
.countdown .cnum { font-family: var(--font-serif); font-style: italic; font-size: 22px; font-weight: 600; color: var(--green); letter-spacing: -0.01em; line-height: 1;}
.countdown .clbl { font-family: var(--font-sans); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);}
.countdown.big .cnum { font-size: 44px; }
.countdown.big .clbl { font-size: 12px; }
.countdown .csep { color: var(--muted); opacity: 0.4;}

.team-chip { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--ink-2); font-family: var(--font-sans);}
.team-chip .flag { width: 18px; height: 13px; border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,0.08); display: inline-block; flex: 0 0 18px;}
.fixture-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 18px;}
.fixture { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; display: flex; flex-direction: column; gap: 8px;}
.fixture .meta { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);}
.fixture .teams { display:flex; align-items:center; justify-content: space-between; gap: 10px; font-family: var(--font-serif); font-size: 20px; font-weight: 600;}
.fixture .flag { width:24px; height:18px; border-radius: 3px; display:inline-block; box-shadow: 0 0 0 1px var(--line);}
.fixture .vs { color: var(--muted); font-style: italic; font-family: var(--font-serif); font-size: 14px;}
.fixture .when { font-size: 13px; color: var(--muted); font-variant-numeric: tabular-nums;}
.fixture .score { font-family: var(--font-mono); font-size: 22px; font-weight: 600; color: var(--ink); letter-spacing: 0.02em;}
.fixture .live-pill { background: var(--green); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: 0.1em; padding: 3px 8px; border-radius: 999px; align-self: flex-start; display:inline-flex; align-items: center; gap: 6px;}
.fixture .live-pill .dot { width: 5px; height: 5px; background: #fff; border-radius: 50%; animation: pulse 2.2s infinite;}

/* ===== DASHBOARD ===== */
.ob-dash { padding: 80px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-soft);}
.ob-dash-head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; margin-bottom: 40px; flex-wrap: wrap;}
.ob-dash-head h2 { font-size: clamp(28px, 3.4vw, 40px); line-height: 1.08; margin: 0;}
.ob-dash-head h2 em { color: var(--green); font-style: italic; }
.ob-dash-meta { display: flex; align-items: center; gap: 10px; flex-shrink: 0;}
.ob-live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 2.2s infinite; flex-shrink: 0;}
.ob-dash-updated { font-size: 13px; color: var(--muted); font-variant-numeric: tabular-nums;}
.ob-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--bg-card); margin-bottom: 40px;}
.ob-stat-cell { padding: 28px 24px; border-right: 1px solid var(--line); background: #fff;}
.ob-stat-cell:last-child { border-right: none; }
.ob-stat-val { font-family: var(--font-serif); font-size: clamp(32px, 4vw, 48px); font-weight: 600; line-height: 1; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 8px; font-variant-numeric: tabular-nums;}
.ob-stat-val em { color: var(--green); font-style: italic; }
.ob-stat-lbl { font-size: 13px; color: var(--muted);}
.ob-signals-head { font-size: 13px; font-weight: 600; color: var(--green); letter-spacing: 0.06em; text-transform: uppercase; margin: 0; padding-bottom: 16px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 12px;}
.ob-signals-head::before { content: ""; width: 18px; height: 1.5px; background: var(--green); display: inline-block;}
.ob-sig-row { display: grid; grid-template-columns: 100px 1fr auto auto; gap: 16px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); text-decoration: none; color: inherit; transition: background 0.1s; cursor: pointer;}
.ob-sig-row:last-child { border-bottom: none; }
.ob-sig-row:hover .ob-sig-title { color: var(--green); }
.ob-tier-badge { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; text-align: center; white-space: nowrap;}
.ob-tier-live { background: var(--green); color: #fff; display: inline-flex; align-items: center; gap: 6px; justify-content: center;}
.ob-tier-live .dot { width: 5px; height: 5px; background: #fff; border-radius: 50%; animation: pulse 2.2s infinite;}
.ob-tier-final { background: transparent; color: var(--muted); border: 1.5px solid var(--line-2);}
.ob-tier-upcoming { background: transparent; color: var(--gold-2); border: 1.5px solid var(--gold-2);}
.ob-tier-opener { background: var(--red); color: #fff;}
.ob-tier-group { background: transparent; color: var(--blue); border: 1.5px solid var(--blue);}
.ob-tier-knockout { background: transparent; color: var(--purple); border: 1.5px solid var(--purple);}
.ob-tier-final-match { background: var(--navy); color: #fff;}
.ob-sig-title { font-size: 15px; font-weight: 500; color: var(--ink-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: color 0.1s;}
.ob-sig-source { font-size: 12px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 180px;}
.ob-sig-time { font-size: 13px; color: var(--muted); white-space: nowrap; font-variant-numeric: tabular-nums;}
.ob-dash-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 24px; flex-wrap: wrap; gap: 12px;}
.ob-source-note { font-size: 13px; color: var(--muted);}

/* ===== TICKER ===== */
.ob-ticker-bar { background: var(--bg-soft); border-bottom: 1px solid var(--line); overflow: hidden; white-space: nowrap;}
.ob-ticker-row { display: flex; align-items: center; height: 36px;}
.ob-ticker-badge { flex-shrink: 0; display: flex; align-items: center; gap: 8px; background: var(--green); color: #fff; font-family: var(--font-sans); font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; padding: 0 14px; height: 100%; z-index: 2;}
.ob-ticker-badge .tick-dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: pulse 2.2s infinite; flex-shrink: 0;}
.ob-ticker-scroll { flex: 1; overflow: hidden; position: relative;}
.ob-ticker-scroll::before, .ob-ticker-scroll::after { content: ""; position: absolute; top: 0; bottom: 0; width: 32px; z-index: 1; pointer-events: none;}
.ob-ticker-scroll::before { left: 0; background: linear-gradient(to right, var(--bg-soft), transparent); }
.ob-ticker-scroll::after { right: 0; background: linear-gradient(to left, var(--bg-soft), transparent); }
.ob-ticker-inner { display: inline-block; animation: ticker-scroll 56s linear infinite; padding-left: 24px;}
.ob-ticker-inner:hover { animation-play-state: paused; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ob-ticker-text { font-family: var(--font-sans); font-size: 11px; font-weight: 600; letter-spacing: 0.06em; color: var(--ink-2); line-height: 36px;}
.ob-ticker-text strong { color: var(--green); }

/* ===== FOOTER TICKER ===== */
.footer-ticker { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-soft); padding: 12px 0;}
.footer-ticker-inner { max-width: 1240px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap;}
.ft-live { display: flex; align-items: center; gap: 7px; flex-shrink: 0;}
.ft-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2.2s infinite; flex-shrink: 0;}
.ft-live-label { font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green);}
.ft-divider { width: 1px; height: 14px; background: var(--line-2); flex-shrink: 0;}
.ft-stat { font-size: 13px; color: var(--muted); white-space: nowrap; font-variant-numeric: tabular-nums;}
.ft-stat strong { color: var(--ink-2); font-weight: 600;}

/* ===== FOOTER ===== */
footer.site { background: var(--bg-soft); border-top: 1px solid var(--line); padding: 56px 24px 32px; }
footer .row { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
footer h5 { font-family: var(--font-sans); font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); margin: 0 0 14px; }
footer .brand-block p { color: var(--muted); max-width: 360px; margin-top: 12px; font-size: 15px; }
footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
footer li a { color: var(--ink-2); font-size: 15px; }
footer li a:hover { color: var(--green); }
.disclaimer { max-width: 1240px; margin: 40px auto 0; padding-top: 24px; border-top: 1px solid var(--line); font-size: 12px; color: var(--muted); display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; line-height: 1.55; }
.disclaimer span { max-width: 740px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero { padding: 56px 0 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { max-width: 420px; margin: 0 auto; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats .stat:nth-child(2) { border-right: 0; }
  .hero-stats .stat:nth-child(1), .hero-stats .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .protocol-grid { grid-template-columns: 1fr 1fr; }
  .supplies-grid { grid-template-columns: 1fr 1fr; }
  .fixture-grid { grid-template-columns: 1fr; }
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .compare-card { padding: 32px 24px; }
  .bar-row { grid-template-columns: 140px 1fr 100px; gap: 12px; }
  .bar-row .val { font-size: 22px; }
  .cta-card { grid-template-columns: 1fr; padding: 40px 32px; }
  .cta-card .right { justify-content: flex-start; }
  .ob-stat-grid { grid-template-columns: 1fr 1fr; }
  .ob-stat-cell:nth-child(2) { border-right: none; }
  .ob-stat-cell:nth-child(1), .ob-stat-cell:nth-child(2) { border-bottom: 1px solid var(--line); }
  .ob-sig-row { grid-template-columns: 90px 1fr; gap: 10px 12px;}
  .ob-sig-source, .ob-sig-time { grid-column: 2; font-size: 12px;}
  footer .row { grid-template-columns: 1fr 1fr; }
  nav.primary a { display: none; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .protocol-grid { grid-template-columns: 1fr; }
  .supplies-grid { grid-template-columns: 1fr; }
  .bar-row { grid-template-columns: 1fr; gap: 6px; }
  .bar-row .val { text-align: left; }
  .notify { font-size: 12px; padding: 8px 16px; gap: 10px; }
  .notify .label { display: none; }
  footer .row { grid-template-columns: 1fr; }
}
