/* ═══════════════════════════════════════════════════════════
   OXFORD-METRO ANALYTICS — oma-predict.css
   Forecast Challenge Page — v1.0
   Loaded via functions.php on the predict page template only.
   Brand tokens inherited from oma-style.css :root
   --nv:#002147  --gd:#B8962E  --gd2:#D4AE48
   --cr:#F5F5F5  --cr2:#EAEAE2 --cr3:#D5D5CC
   --sl:#5A6474  --sl2:#8892A0 --sl3:#BDC5CF --w:#ffffff
═══════════════════════════════════════════════════════════ */

/* ─── KEYFRAMES ─────────────────────────────────────────── */
@keyframes fc-pulse    { 0%,100%{opacity:1} 50%{opacity:.35} }
@keyframes fc-fadeUp   { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }
@keyframes fc-slideIn  { from{opacity:0;transform:translateX(-14px)} to{opacity:1;transform:translateX(0)} }
@keyframes fc-glow     { 0%,100%{box-shadow:0 0 0 0 rgba(184,150,46,0)} 50%{box-shadow:0 0 0 6px rgba(184,150,46,.18)} }
@keyframes fc-ticker   { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes fc-spin     { to{transform:rotate(360deg)} }

/* ─── LAYOUT WRAPPER ──────────────────────────────────────── */
.fc-page { overflow-x: hidden; }

/* ─── § 0  STICKY SUBMIT CTA ──────────────────────────────── */
.fc-sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--nv);
  border-top: 3px solid var(--gd);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 900;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.fc-sticky-cta.visible { transform: translateY(0); }
.fc-sticky-cta__label {
  font-size: 11px;
  color: var(--sl2);
  letter-spacing: .05em;
}
.fc-sticky-cta__label strong { color: var(--w); }
.fc-sticky-cta__btn {
  background: var(--gd);
  color: var(--nv) !important;
  border: none;
  padding: 10px 22px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  transition: background .2s;
}
.fc-sticky-cta__btn:hover { background: var(--gd2); }
@media (max-width: 480px) {
  .fc-sticky-cta__label { display: none; }
  .fc-sticky-cta__btn { width: 100%; text-align: center; }
}

/* ─── § 1  HERO ───────────────────────────────────────────── */
.fc-hero {
  background: var(--nv);
  position: relative;
  overflow: hidden;
  padding: 52px 0 44px;
}
.fc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.025) 0 1px,
      transparent 1px 80px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,.025) 0 1px,
      transparent 1px 80px
    );
  pointer-events: none;
}
.fc-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gd), var(--gd2), var(--gd));
}
.fc-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}
.fc-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  animation: fc-fadeUp .45s .05s both;
}
.fc-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: fc-pulse 1.8s infinite;
  flex-shrink: 0;
}
.fc-hero__badge {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gd2);
}
.fc-hero__badge-sep {
  width: 1px; height: 11px;
  background: rgba(255,255,255,.2);
}
.fc-hero__date {
  font-size: 10px;
  color: var(--sl3);
  border: 1px solid rgba(255,255,255,.15);
  padding: 3px 10px;
}
.fc-hero__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}
.fc-hero__copy { animation: fc-fadeUp .45s .1s both; }
.fc-hero__h1 {
  font-family: 'EB Garamond', serif;
  font-size: clamp(30px, 4.8vw, 58px);
  color: var(--w);
  line-height: 1.04;
  margin-bottom: 14px;
  letter-spacing: -.02em;
}
.fc-hero__h1 em { color: var(--gd2); font-style: italic; }
.fc-hero__sub {
  font-size: 13.5px;
  color: var(--sl2);
  max-width: 540px;
  line-height: 1.74;
  margin-bottom: 10px;
}
.fc-hero__reward {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,150,46,.12);
  border: 1px solid rgba(184,150,46,.3);
  padding: 9px 16px;
  margin-bottom: 22px;
  font-size: 12.5px;
  color: var(--gd2);
  font-weight: 500;
}
.fc-hero__reward-ico { font-size: 15px; }
.fc-hero__btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  animation: fc-fadeUp .45s .18s both;
}
.fc-btn-pri {
  background: var(--gd);
  color: var(--nv) !important;
  border: none;
  padding: 13px 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background .2s, transform .15s;
}
.fc-btn-pri:hover { background: var(--gd2); transform: translateY(-2px); }
.fc-btn-sec {
  background: transparent;
  color: var(--w) !important;
  border: 1px solid rgba(255,255,255,.28);
  padding: 12px 24px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: border-color .2s, background .2s, transform .15s;
}
.fc-btn-sec:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.07); transform: translateY(-2px); }
/* Dark-background outline button */
.fc-btn-outline-nv {
  background: transparent;
  color: var(--nv) !important;
  border: 1.5px solid var(--nv);
  padding: 10px 22px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .2s, color .2s;
}
.fc-btn-outline-nv:hover { background: var(--nv); color: var(--w) !important; }
.fc-btn-outline-gd {
  background: transparent;
  color: var(--gd) !important;
  border: 1.5px solid var(--gd);
  padding: 10px 22px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .2s, color .2s;
}
.fc-btn-outline-gd:hover { background: var(--gd); color: var(--nv) !important; }

.fc-hero__statbar {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255,255,255,.12);
  animation: fc-fadeUp .45s .25s both;
}
.fc-stat {
  flex: 1;
  padding: 13px 16px;
  border-right: 1px solid rgba(255,255,255,.1);
  text-align: center;
}
.fc-stat:last-child { border-right: none; }
.fc-stat__num {
  font-family: 'EB Garamond', serif;
  font-size: 22px;
  color: var(--w);
  line-height: 1;
  margin-bottom: 4px;
}
.fc-stat__lbl {
  font-size: 9.5px;
  color: var(--sl2);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.fc-hero__small {
  margin-top: 14px;
  font-size: 10.5px;
  color: var(--sl);
  opacity: .75;
  max-width: 520px;
  line-height: 1.65;
}
/* Hero countdown card */
.fc-hero__countdown {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.13);
  padding: 18px 20px;
  min-width: 200px;
  animation: fc-slideIn .45s .15s both;
}
.fc-countdown-lbl {
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gd2);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.fc-countdown-units {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-bottom: 12px;
}
.fc-cu {
  background: rgba(0,0,0,.22);
  padding: 8px 4px;
  text-align: center;
}
.fc-cu__num {
  font-family: 'EB Garamond', serif;
  font-size: 24px;
  color: var(--w);
  line-height: 1;
  display: block;
}
.fc-cu__sub {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--sl3);
  margin-top: 2px;
  display: block;
}
.fc-deadline-tag {
  font-size: 10px;
  color: var(--sl2);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 10px;
}
.fc-deadline-tag strong { color: var(--gd2); }

/* ─── SECTION SCAFFOLD ─────────────────────────────────── */
.fc-sec {
  padding: 64px 0;
}
.fc-sec--light  { background: var(--cr); }
.fc-sec--white  { background: var(--w); }
.fc-sec--dark   { background: var(--nv); }
.fc-sec--navydp { background: #001530; }
.fc-sec--cream  { background: var(--cr2); }
.fc-sec--border { border-top: 1px solid var(--cr3); }

.fc-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.fc-sec__head {
  margin-bottom: 36px;
}
.fc-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gd);
  margin-bottom: 10px;
}
.fc-eyebrow--light { color: var(--gd2); }
.fc-eyebrow-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gd);
  flex-shrink: 0;
}
.fc-h2 {
  font-family: 'EB Garamond', serif;
  font-size: clamp(22px, 3vw, 36px);
  color: var(--nv);
  line-height: 1.1;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.fc-h2--light { color: var(--w); }
.fc-sub {
  font-size: 13.5px;
  color: var(--sl);
  max-width: 600px;
  line-height: 1.75;
}
.fc-sub--light { color: var(--sl2); }

/* Notices */
.fc-notice {
  padding: 12px 16px;
  font-size: 12px;
  line-height: 1.65;
  margin-bottom: 16px;
  border-left: 3px solid transparent;
}
.fc-notice--info  { background: rgba(0,33,71,.05); border-color: var(--nv); color: var(--sl); }
.fc-notice--warn  { background: rgba(184,150,46,.07); border-color: var(--gd); color: var(--sl); }
.fc-notice--light { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.2); color: var(--sl2); }

/* ─── § 2  TODAY'S FORECAST CHALLENGE ─────────────────── */
.fc-challenge-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

/* Candidate selection grid */
.fc-cands {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}
.fc-cand {
  background: var(--w);
  border: 2px solid var(--cr3);
  padding: 14px 12px;
  cursor: pointer;
  transition: border-color .18s, transform .18s, box-shadow .18s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  position: relative;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.fc-cand:hover {
  border-color: var(--sl3);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,33,71,.07);
}
.fc-cand.selected {
  border-color: var(--nv);
  background: var(--nv);
}
.fc-cand.selected .fc-cand__name,
.fc-cand.selected .fc-cand__party { color: var(--w); }
.fc-cand.selected .fc-cand__check { opacity: 1; }
.fc-cand.disabled { opacity: .5; pointer-events: none; }
.fc-cand__av {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'EB Garamond', serif;
  font-size: 16px;
  color: var(--w);
  font-weight: 600;
}
.fc-cand__av img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.fc-cand__name {
  font-size: 12px;
  font-weight: 500;
  color: var(--nv);
  line-height: 1.3;
  transition: color .18s;
}
.fc-cand__party {
  font-size: 10px;
  color: var(--sl2);
  transition: color .18s;
}
.fc-cand__check {
  position: absolute;
  top: 7px; right: 7px;
  width: 18px; height: 18px;
  background: var(--gd);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--nv);
  opacity: 0;
  transition: opacity .18s;
}

/* Vote action form */
.fc-action-card {
  background: var(--w);
  border: 1px solid var(--cr3);
  border-top: 3px solid var(--gd);
  padding: 24px;
  position: sticky;
  top: 80px;
}
.fc-action-card__h {
  font-family: 'EB Garamond', serif;
  font-size: 18px;
  color: var(--nv);
  margin-bottom: 6px;
}
.fc-action-card__sub {
  font-size: 11.5px;
  color: var(--sl2);
  margin-bottom: 18px;
  line-height: 1.6;
}
.fc-selected-who {
  background: var(--cr2);
  border: 1px solid var(--cr3);
  padding: 10px 14px;
  margin-bottom: 14px;
  font-size: 12px;
  color: var(--sl);
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
}
.fc-selected-who strong { color: var(--nv); }
.fc-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sl);
  margin-bottom: 5px;
}
.fc-select {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--cr3);
  background: var(--cr);
  color: var(--nv);
  font-size: 12.5px;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 14px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6474' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
  transition: border-color .18s;
}
.fc-select:focus { outline: none; border-color: var(--nv); }
.fc-textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--cr3);
  background: var(--cr);
  color: var(--nv);
  font-size: 12.5px;
  font-family: 'DM Sans', sans-serif;
  resize: vertical;
  min-height: 70px;
  margin-bottom: 14px;
  transition: border-color .18s;
}
.fc-textarea:focus { outline: none; border-color: var(--nv); }
.fc-submit-btn {
  width: 100%;
  background: var(--gd);
  color: var(--nv) !important;
  border: none;
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background .2s;
  animation: fc-glow 2.5s infinite;
}
.fc-submit-btn:hover { background: var(--gd2); }
.fc-submit-btn:disabled {
  opacity: .4;
  cursor: not-allowed;
  animation: none;
}
.fc-deadline {
  font-size: 10.5px;
  color: var(--sl2);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}
.fc-deadline strong { color: var(--nv); }
.fc-feedback {
  display: none;
  padding: 11px 14px;
  margin-top: 12px;
  font-size: 12px;
  border-left: 3px solid transparent;
  align-items: flex-start;
  gap: 9px;
}
.fc-feedback--success { background: rgba(22,163,74,.08); border-color: #16a34a; color: #15803d; display: flex; }
.fc-feedback--error   { background: rgba(239,68,68,.08); border-color: #ef4444; color: #dc2626; display: flex; }
.fc-feedback--already { background: rgba(0,33,71,.06); border-color: var(--nv); color: var(--nv); display: flex; }
.fc-feedback__ico { flex-shrink: 0; font-size: 14px; }

/* ─── § 3  DAILY REWARD ────────────────────────────────── */
.fc-reward-band {
  background: linear-gradient(135deg, var(--nv) 0%, #001a3a 100%);
  position: relative;
  overflow: hidden;
}
.fc-reward-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.fc-reward-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 28px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.fc-reward__eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gd2);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fc-reward__h {
  font-family: 'EB Garamond', serif;
  font-size: clamp(22px, 3.2vw, 40px);
  color: var(--w);
  line-height: 1.1;
  margin-bottom: 12px;
}
.fc-reward__h em { color: var(--gd2); font-style: italic; }
.fc-reward__sub {
  font-size: 13px;
  color: var(--sl2);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 18px;
}
.fc-reward-criteria {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}
.fc-reward-criterion {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--sl2);
  line-height: 1.5;
}
.fc-reward-criterion::before {
  content: '◆';
  color: var(--gd);
  font-size: 8px;
  flex-shrink: 0;
  margin-top: 3px;
}
.fc-reward__card {
  background: rgba(184,150,46,.1);
  border: 1px solid rgba(184,150,46,.3);
  padding: 28px 32px;
  text-align: center;
  min-width: 200px;
}
.fc-reward__card-ico { font-size: 32px; margin-bottom: 10px; }
.fc-reward__card-amount {
  font-family: 'EB Garamond', serif;
  font-size: 36px;
  color: var(--gd2);
  line-height: 1;
  margin-bottom: 4px;
}
.fc-reward__card-sub {
  font-size: 11px;
  color: var(--sl2);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.fc-reward__small {
  font-size: 10.5px;
  color: var(--sl);
  margin-top: 14px;
  line-height: 1.65;
}

/* ─── § 4  FORECAST CATEGORIES ─────────────────────────── */
.fc-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.fc-cat-card {
  background: var(--w);
  border: 1px solid var(--cr3);
  border-top: 3px solid var(--nv);
  padding: 24px 20px;
  transition: transform .2s, box-shadow .2s;
}
.fc-cat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,33,71,.1);
}
.fc-cat-card__ico {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
  line-height: 1;
}
.fc-cat-card__title {
  font-family: 'EB Garamond', serif;
  font-size: 17px;
  color: var(--nv);
  margin-bottom: 8px;
  line-height: 1.2;
}
.fc-cat-card__desc {
  font-size: 12.5px;
  color: var(--sl);
  line-height: 1.68;
}

/* ─── § 5  HOW IT WORKS ────────────────────────────────── */
.fc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.fc-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 14%; right: 14%;
  height: 1px;
  background: var(--cr3);
  z-index: 0;
}
.fc-step {
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.fc-step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--nv);
  color: var(--w);
  font-family: 'EB Garamond', serif;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  flex-shrink: 0;
}
.fc-step__title {
  font-family: 'EB Garamond', serif;
  font-size: 16px;
  color: var(--nv);
  margin-bottom: 7px;
  line-height: 1.2;
}
.fc-step__desc {
  font-size: 12px;
  color: var(--sl);
  line-height: 1.68;
}

/* ─── § 6  SCORING TABLE ───────────────────────────────── */
.fc-score-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}
.fc-score-table {
  width: 100%;
  border-collapse: collapse;
}
.fc-score-table thead th {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--sl);
  padding: 10px 16px;
  text-align: left;
  border-bottom: 2px solid var(--nv);
}
.fc-score-table thead th:last-child { text-align: right; }
.fc-score-table tbody tr {
  border-bottom: 1px solid var(--cr3);
  transition: background .15s;
}
.fc-score-table tbody tr:hover { background: var(--cr2); }
.fc-score-table tbody td {
  padding: 13px 16px;
  font-size: 13px;
  color: var(--nv);
  vertical-align: middle;
}
.fc-score-table tbody td:last-child {
  text-align: right;
  font-family: 'EB Garamond', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--nv);
}
.fc-pts-pos  { color: #16a34a !important; }
.fc-pts-zero { color: var(--sl2) !important; }
.fc-pts-dis  { color: #dc2626 !important; font-size: 12px !important; }
.fc-score-table tr.streak-row td { color: var(--gd); }
.fc-score-aside {
  background: var(--nv);
  padding: 28px;
  color: var(--w);
}
.fc-score-aside__h {
  font-family: 'EB Garamond', serif;
  font-size: 18px;
  color: var(--gd2);
  margin-bottom: 12px;
}
.fc-score-aside__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: 12px;
  color: var(--sl2);
  line-height: 1.6;
}
.fc-score-aside__item:last-child { border-bottom: none; }
.fc-score-aside__ico {
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}
.fc-score-note {
  font-size: 10.5px;
  color: var(--sl2);
  margin-top: 12px;
  line-height: 1.65;
  padding-top: 12px;
  border-top: 1px solid var(--cr3);
}

/* ─── § 7  LEADERBOARD ─────────────────────────────────── */
.fc-lb-tabs {
  display: flex;
  gap: 2px;
  margin-bottom: 0;
  border-bottom: 2px solid var(--cr3);
}
.fc-lb-tab {
  background: transparent;
  border: none;
  padding: 9px 18px;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--sl);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color .18s, border-color .18s;
}
.fc-lb-tab:hover { color: var(--nv); }
.fc-lb-tab.on { color: var(--nv); border-bottom-color: var(--gd); }

.fc-lb-table {
  width: 100%;
  border-collapse: collapse;
}
.fc-lb-table thead th {
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sl);
  font-weight: 500;
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--cr3);
  background: var(--cr2);
}
.fc-lb-table tbody tr {
  border-bottom: 1px solid var(--cr3);
  transition: background .15s;
}
.fc-lb-table tbody tr:hover { background: var(--cr2); }
.fc-lb-table tbody td {
  padding: 12px 14px;
  font-size: 13px;
  color: var(--nv);
  vertical-align: middle;
}
.fc-lb-rank {
  font-family: 'EB Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--sl2);
  min-width: 36px;
}
.fc-lb-rank--gold { color: var(--gd); }
.fc-lb-rank--2 { color: var(--sl); }
.fc-lb-rank--3 { color: var(--nv); }
.fc-lb-av {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--nv);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--w);
  font-weight: 600;
  flex-shrink: 0;
}
.fc-lb-name { font-size: 13px; font-weight: 500; color: var(--nv); }
.fc-lb-loc  { font-size: 10.5px; color: var(--sl2); margin-top: 1px; }
.fc-lb-acc  {
  font-family: 'EB Garamond', serif;
  font-size: 17px;
  font-weight: 600;
  color: #16a34a;
}
.fc-lb-pts  {
  font-family: 'EB Garamond', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--nv);
}
.fc-lb-streak {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: var(--gd);
  background: rgba(184,150,46,.1);
  padding: 2px 8px;
}
.fc-lb-empty {
  text-align: center;
  padding: 48px 20px;
  color: var(--sl2);
  font-size: 13px;
  line-height: 1.7;
  border: 1px dashed var(--cr3);
  background: var(--cr2);
}
.fc-lb-empty__ico { font-size: 32px; margin-bottom: 10px; display: block; }

/* ─── § 8  GRAND CHAMPION ──────────────────────────────── */
.fc-champion-band {
  background: linear-gradient(135deg, #001a38 0%, var(--nv) 60%, #002d5a 100%);
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}
.fc-champion-band::before {
  content: 'GRAND\ACHAMPION';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'EB Garamond', serif;
  font-size: clamp(80px, 15vw, 180px);
  color: rgba(255,255,255,.025);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -.02em;
  line-height: 0.9;
}
.fc-champion-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.fc-champion__eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gd2);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fc-champion__h {
  font-family: 'EB Garamond', serif;
  font-size: clamp(24px, 3.5vw, 44px);
  color: var(--w);
  line-height: 1.1;
  margin-bottom: 14px;
}
.fc-champion__sub {
  font-size: 13px;
  color: var(--sl2);
  line-height: 1.75;
  margin-bottom: 22px;
}
.fc-champion__season-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.13);
  padding: 24px;
}
.fc-season-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: 12.5px;
}
.fc-season-row:last-child { border-bottom: none; }
.fc-season-row__label { color: var(--sl2); }
.fc-season-row__val   { color: var(--w); font-weight: 500; }
.fc-season-row__badge {
  background: rgba(184,150,46,.15);
  color: var(--gd2);
  border: 1px solid rgba(184,150,46,.3);
  font-size: 9.5px;
  padding: 2px 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.fc-champion__small {
  font-size: 10.5px;
  color: var(--sl);
  margin-top: 14px;
  line-height: 1.65;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 14px;
}

/* ─── § 9  REGIONAL FORECAST MAP ───────────────────────── */
.fc-zones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.fc-zone-card {
  background: var(--w);
  border: 1px solid var(--cr3);
  padding: 0;
  overflow: hidden;
  transition: box-shadow .2s;
}
.fc-zone-card:hover { box-shadow: 0 6px 20px rgba(0,33,71,.08); }
.fc-zone-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--cr3);
}
.fc-zone-card__badge {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--w);
  letter-spacing: .06em;
  flex-shrink: 0;
}
.fc-zone-card__name {
  font-family: 'EB Garamond', serif;
  font-size: 15px;
  color: var(--nv);
  font-weight: 600;
}
.fc-zone-card__states {
  font-size: 10px;
  color: var(--sl2);
  margin-top: 1px;
}
.fc-zone-card__body { padding: 14px 16px; }
.fc-zone-tier {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: 10px;
}
.fc-zone-tier--0 { background: var(--cr2); color: var(--sl2); }
.fc-zone-tier--1 { background: rgba(184,150,46,.1); color: var(--gd); }
.fc-zone-tier--2 { background: rgba(0,33,71,.07); color: var(--nv); }
.fc-zone-tier--3 { background: rgba(22,163,74,.1); color: #15803d; }
.fc-zone-await {
  font-size: 12px;
  color: var(--sl2);
  line-height: 1.6;
}
.fc-zone-data-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid var(--cr3);
  font-size: 12px;
}
.fc-zone-data-row:last-of-type { border-bottom: none; }
.fc-zone-data-lbl { color: var(--sl2); min-width: 60px; flex-shrink: 0; font-size: 10.5px; }
.fc-zone-data-val { color: var(--nv); font-weight: 500; }
.fc-zone-count {
  font-size: 10.5px;
  color: var(--sl2);
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--cr3);
}

/* ─── § 10  ARCHIVE ─────────────────────────────────────── */
.fc-archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}
.fc-arc-card {
  background: var(--w);
  border: 1px solid var(--cr3);
  padding: 20px;
}
.fc-arc-card__q {
  font-family: 'EB Garamond', serif;
  font-size: 15.5px;
  color: var(--nv);
  margin-bottom: 12px;
  line-height: 1.35;
}
.fc-arc-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 10.5px;
  color: var(--sl2);
}
.fc-arc-card__meta-item { display: flex; align-items: center; gap: 5px; }
.fc-arc-rows { display: flex; flex-direction: column; gap: 6px; }
.fc-arc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  font-size: 12px;
}
.fc-arc-row--correct { background: rgba(22,163,74,.08); }
.fc-arc-row--forecast { background: var(--cr2); }
.fc-arc-row__label { color: var(--sl); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.fc-arc-row__val { color: var(--nv); font-weight: 500; }
.fc-arc-row__val--green { color: #15803d; }
.fc-arc-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9.5px;
  padding: 3px 10px;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.fc-arc-status--resolved { background: rgba(22,163,74,.1); color: #15803d; }
.fc-arc-status--pending  { background: rgba(184,150,46,.1); color: var(--gd); }

/* Empty archive placeholder */
.fc-archive-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 56px 20px;
  border: 1px dashed var(--cr3);
  background: var(--cr2);
  color: var(--sl2);
}
.fc-archive-empty__ico { font-size: 36px; margin-bottom: 12px; display: block; }

/* ─── § 11  RULES ───────────────────────────────────────── */
.fc-rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}
.fc-rule-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--w);
  border: 1px solid var(--cr3);
  border-left: 3px solid var(--nv);
  font-size: 12.5px;
  color: var(--sl);
  line-height: 1.6;
}
.fc-rule-item__num {
  font-family: 'EB Garamond', serif;
  font-size: 18px;
  color: var(--nv);
  flex-shrink: 0;
  line-height: 1.2;
  font-weight: 700;
}

/* ─── § 12  COMPLIANCE ──────────────────────────────────── */
.fc-compliance {
  background: var(--cr2);
  border-top: 1px solid var(--cr3);
  padding: 36px 0;
}
.fc-compliance-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.fc-compliance__h {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sl);
  margin-bottom: 12px;
}
.fc-compliance__text {
  font-size: 11.5px;
  color: var(--sl);
  line-height: 1.75;
  max-width: 820px;
}
.fc-compliance__text + .fc-compliance__text {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--cr3);
}

/* ─── § 13  FINAL CTA ───────────────────────────────────── */
.fc-cta-band {
  background: var(--nv);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fc-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(184,150,46,.1) 0%, transparent 70%);
  pointer-events: none;
}
.fc-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}
.fc-cta__eyebrow {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gd2);
  margin-bottom: 14px;
}
.fc-cta__h {
  font-family: 'EB Garamond', serif;
  font-size: clamp(26px, 3.8vw, 46px);
  color: var(--w);
  line-height: 1.1;
  margin-bottom: 14px;
}
.fc-cta__h em { color: var(--gd2); font-style: italic; }
.fc-cta__sub {
  font-size: 13.5px;
  color: var(--sl2);
  line-height: 1.72;
  margin-bottom: 28px;
}
.fc-cta__btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── MOBILE RESPONSIVE ────────────────────────────────── */
@media (max-width: 900px) {
  .fc-hero__grid { grid-template-columns: 1fr; }
  .fc-hero__countdown { display: none; }
  .fc-challenge-layout { grid-template-columns: 1fr; }
  .fc-action-card { position: static; }
  .fc-reward-inner { grid-template-columns: 1fr; }
  .fc-reward__card { min-width: unset; }
  .fc-cats { grid-template-columns: repeat(2, 1fr); }
  .fc-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .fc-steps::before { display: none; }
  .fc-score-layout { grid-template-columns: 1fr; }
  .fc-champion-inner { grid-template-columns: 1fr; gap: 28px; }
  .fc-zones { grid-template-columns: repeat(2, 1fr); }
  .fc-rules-grid { grid-template-columns: 1fr; }
  .fc-reward-criteria { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .fc-sec { padding: 44px 0; }
  .fc-hero { padding: 36px 0 32px; }
  .fc-inner { padding: 0 16px; }
  .fc-hero__inner { padding: 0 16px; }
  .fc-hero__h1 { font-size: 28px; }
  .fc-hero__statbar { flex-wrap: wrap; }
  .fc-stat { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .fc-stat:last-child, .fc-stat:nth-last-child(-n+2):nth-child(odd) { border-bottom: none; }
  .fc-cands { grid-template-columns: repeat(2, 1fr); }
  .fc-cand__av { width: 42px; height: 42px; }
  .fc-cats { grid-template-columns: 1fr; }
  .fc-steps { grid-template-columns: 1fr; }
  .fc-zones { grid-template-columns: 1fr; }
  .fc-champion__h { font-size: 24px; }
  .fc-lb-table thead { display: none; }
  .fc-lb-table tbody tr { display: flex; flex-wrap: wrap; padding: 12px 14px; gap: 8px; }
  .fc-lb-table tbody td { padding: 0; border: none; font-size: 12px; }
  .fc-reward-inner { padding: 36px 16px; }
  .fc-score-table { font-size: 12px; }
  .fc-score-table tbody td { padding: 10px 10px; }
  .fc-archive-grid { grid-template-columns: 1fr; }
  .fc-cta__btns { flex-direction: column; align-items: center; }
  .fc-sticky-cta { display: none; }
}

/* ─── UTILITY ───────────────────────────────────────────── */
.fc-cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.fc-cta-row--center { justify-content: center; }
.fc-spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(0,33,71,.2);
  border-top-color: var(--nv);
  border-radius: 50%;
  animation: fc-spin .7s linear infinite;
  display: inline-block;
}
.fc-divider { height: 1px; background: var(--cr3); margin: 32px 0; }
