:root {
  --bg: #06100e;
  --panel: #0c1d18;
  --panel-2: #102721;
  --ink: #f5f4ee;
  --muted: #aebbb5;
  --line: rgba(122, 234, 213, 0.22);
  --mint: #78ead5;
  --teal: #0f8f81;
  --gold: #f4c75f;
  --red: #ee927a;
  --cream: #f4efe5;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(120, 234, 213, 0.14), transparent 34rem),
    linear-gradient(180deg, #06100e 0%, #0b1511 48%, #07110f 100%);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

.worldcup-shell {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 60px;
}

.worldcup-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 34px;
}

.worldcup-brand {
  display: inline-flex;
  align-items: center;
  width: min(310px, 54vw);
  min-height: 72px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.42);
}

.worldcup-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.worldcup-topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-weight: 900;
}

.worldcup-topbar-actions a,
.hero-actions a,
.worldcup-tabs button,
.filter-row select {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.worldcup-topbar-actions a,
.hero-actions a,
.worldcup-tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  font-weight: 1000;
}

.status-pill,
.eyebrow,
.risk-pill,
.decision-pill,
.review-pill,
.status-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  color: var(--mint);
  background: rgba(120, 234, 213, 0.08);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.worldcup-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 520px);
  gap: 30px;
  align-items: stretch;
  min-height: 520px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 0 52px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(56px, 8.5vw, 118px);
  line-height: 0.91;
  letter-spacing: -0.025em;
}

.hero-copy p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(245, 244, 238, 0.78);
  font-size: clamp(19px, 2.2vw, 27px);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-actions a:first-child {
  background: var(--mint);
  color: #06100e;
}

.ghost-link {
  color: var(--ink);
}

.proof-preview,
.mode-note,
.metric-grid article,
.workflow-grid article,
.fixture-card,
.group-card,
.knockout-card,
.launch-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(16, 39, 33, 0.94), rgba(6, 16, 14, 0.96));
  box-shadow: var(--shadow);
}

.proof-preview {
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.proof-preview-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
  color: var(--mint);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.proof-preview-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 30px;
}

.proof-preview-main h2 {
  max-width: 430px;
  margin-bottom: 16px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 0.96;
}

.proof-preview-main p,
.mode-note p,
.section-heading p,
.section-help,
.fixture-meta,
.group-card p,
.knockout-card p,
.launch-card li,
.rule-list p,
.watchlist-card p,
.group-state-card p,
.group-state-copy p,
.lock-bar-card p,
.market-card p,
.acca-card p,
.backtest-stage-card p,
.evidence-timeline p,
.workflow-grid p {
  color: var(--muted);
  line-height: 1.45;
}

.proof-preview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.proof-preview-stats div {
  min-height: 114px;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.proof-preview-stats div:last-child {
  border-right: 0;
}

.proof-preview-stats span,
.metric-grid span,
.watchlist-card small,
.fixture-card small,
.group-card small,
.knockout-card small,
.rule-list span {
  display: block;
  color: var(--mint);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.proof-preview-stats strong,
.metric-grid strong {
  display: block;
  margin-top: 10px;
  font-size: 38px;
  line-height: 1;
}

.mode-note {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 24px;
  margin: 28px 0;
  padding: 26px;
}

.challenge-join {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 18px;
  align-items: stretch;
  margin: 0 0 14px;
  padding: 22px;
  border: 1px solid rgba(120, 234, 213, 0.34);
  background:
    linear-gradient(145deg, rgba(120, 234, 213, 0.12), rgba(16, 39, 33, 0.96)),
    rgba(6, 16, 14, 0.96);
  box-shadow: var(--shadow);
}

.challenge-join h2 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(32px, 4.7vw, 60px);
  line-height: 0.96;
}

.challenge-join p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(245, 244, 238, 0.76);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
}

.challenge-form {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(122, 234, 213, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.challenge-form label {
  display: grid;
  gap: 6px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.challenge-form input[type="text"],
.challenge-form select {
  min-height: 44px;
  border: 1px solid var(--line);
  background: rgba(6, 16, 14, 0.8);
  color: var(--ink);
  padding: 0 12px;
  font: inherit;
  font-weight: 900;
}

.challenge-toggle {
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(122, 234, 213, 0.18);
  background: rgba(120, 234, 213, 0.07);
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
}

.challenge-toggle input {
  width: 18px;
  height: 18px;
  accent-color: var(--mint);
}

.challenge-form button,
.challenge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--mint);
  background: var(--mint);
  color: #06100e;
  padding: 0 14px;
  font: inherit;
  font-weight: 1000;
  cursor: pointer;
  text-align: center;
}

.challenge-link {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.challenge-link.secondary {
  min-height: 38px;
  border-color: rgba(122, 234, 213, 0.14);
  background: transparent;
  color: var(--muted);
  font-size: 13px;
}

.challenge-status {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
}

.how-to-win {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 0 0 28px;
}

.how-to-win article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 10px;
  align-items: center;
  min-height: 92px;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.how-to-win span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--mint);
  color: #06100e;
  font-weight: 1000;
}

.how-to-win strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.1;
}

.how-to-win small {
  color: var(--muted);
  font-weight: 850;
  line-height: 1.25;
}

.tracking-guide {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.75fr) auto;
  gap: 18px;
  align-items: stretch;
  padding: 22px;
  margin: 0 0 28px;
  border: 1px solid rgba(120, 234, 213, 0.35);
  background:
    linear-gradient(145deg, rgba(120, 234, 213, 0.14), rgba(16, 39, 33, 0.94)),
    rgba(6, 16, 14, 0.96);
  box-shadow: var(--shadow);
}

.tracking-guide h2 {
  margin: 4px 0 8px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 0.95;
}

.tracking-guide p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.tracking-guide-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.tracking-guide-stats article {
  display: grid;
  align-content: center;
  min-height: 116px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.tracking-guide-stats span {
  color: var(--mint);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tracking-guide-stats strong {
  margin-top: 6px;
  color: var(--ink);
  font-size: 54px;
  line-height: 0.95;
}

.tracking-guide-actions {
  display: grid;
  gap: 10px;
  align-content: center;
  min-width: 210px;
}

.tracking-guide-actions a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--mint);
  background: var(--mint);
  color: #06100e;
  font-weight: 1000;
  text-align: center;
}

.tracking-guide-actions .ghost-link {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.tracked-review {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.58fr);
  gap: 16px;
  margin: 0 0 28px;
  padding: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(16, 39, 33, 0.94), rgba(6, 16, 14, 0.96));
  box-shadow: var(--shadow);
}

.tracked-review-copy h2 {
  margin: 6px 0 10px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 0.98;
}

.tracked-review-copy p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 850;
  line-height: 1.42;
}

.tracked-review-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.tracked-review-summary article {
  min-height: 96px;
  padding: 14px;
  border: 1px solid rgba(122, 234, 213, 0.16);
  background: rgba(255, 255, 255, 0.035);
}

.tracked-review-summary span {
  display: block;
  color: var(--mint);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tracked-review-summary strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 38px;
  line-height: 1;
}

.tracked-review-list {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
}

.tracked-pick-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.42fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(122, 234, 213, 0.15);
  background: rgba(255, 255, 255, 0.035);
}

.tracked-pick-row span,
.tracked-pick-row small,
.tracked-pick-meta small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tracked-pick-row strong {
  display: block;
  margin: 5px 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.12;
}

.tracked-pick-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.tracked-pick-meta b {
  display: grid;
  gap: 4px;
  padding: 9px;
  border: 1px solid rgba(122, 234, 213, 0.14);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.035);
  font-size: 18px;
}

.tracked-pick-actions {
  display: grid;
  gap: 8px;
  justify-items: stretch;
}

.tracked-status {
  min-width: 120px;
  margin: 0;
  padding: 9px 11px;
  border: 1px solid rgba(244, 199, 95, 0.4);
  color: var(--gold);
  background: rgba(244, 199, 95, 0.08);
  font-size: 12px;
  font-weight: 1000;
  text-align: center;
  text-transform: uppercase;
}

.tracked-status.landed {
  border-color: rgba(120, 234, 213, 0.7);
  color: #06100e;
  background: var(--mint);
}

.tracked-status.missed {
  border-color: rgba(238, 146, 122, 0.65);
  color: #2b0701;
  background: var(--red);
}

.tracked-remove-button {
  min-height: 36px;
  border: 1px solid rgba(238, 146, 122, 0.55);
  background: rgba(238, 146, 122, 0.08);
  color: #ffc7b9;
  padding: 0 12px;
  font: inherit;
  font-size: 12px;
  font-weight: 1000;
  cursor: pointer;
  text-transform: uppercase;
}

.tracked-remove-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.tracked-empty {
  padding: 18px;
  border: 1px solid rgba(122, 234, 213, 0.16);
  background: rgba(255, 255, 255, 0.035);
}

.tracked-empty strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
}

.tracked-empty p {
  max-width: 720px;
  color: var(--muted);
  font-weight: 850;
}

.tracked-empty a,
.tracked-review-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--mint);
  background: var(--mint);
  color: #06100e;
  padding: 0 14px;
  font-weight: 1000;
}

.tracked-review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.tracked-review-actions .ghost-link {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.mode-note h2,
.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
}

.worldcup-tabs {
  position: sticky;
  top: 0;
  z-index: 3;
  display: flex;
  gap: 10px;
  padding: 14px 0;
  background: rgba(6, 16, 14, 0.92);
  backdrop-filter: blur(10px);
}

.worldcup-tabs button {
  cursor: pointer;
}

.worldcup-tabs button.is-active {
  background: var(--mint);
  color: #06100e;
}

.tab-panel {
  display: none;
  padding: 18px 0 34px;
}

.tab-panel.is-active {
  display: block;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin: 24px 0 16px;
}

.section-heading p {
  max-width: 560px;
  margin-bottom: 0;
}

.section-help {
  flex-basis: 100%;
  width: fit-content;
  max-width: 820px;
  border: 1px solid rgba(120, 234, 213, 0.2);
  background: rgba(120, 234, 213, 0.08);
  padding: 10px 12px;
  color: var(--mint);
  font-weight: 900;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.metric-grid article,
.workflow-grid article {
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(18, 46, 38, 0.98), rgba(9, 24, 20, 0.98));
}

.metric-grid article {
  min-height: 154px;
}

.metric-grid p {
  margin: 14px 0 0;
  color: rgba(245, 244, 238, 0.76);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.metric-grid strong {
  color: var(--ink);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.workflow-grid article span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  background: var(--mint);
  color: #06100e;
  font-weight: 1000;
}

.workflow-grid article {
  min-height: 236px;
}

.workflow-grid h3,
.fixture-card h3,
.group-card h3,
.knockout-card h3,
.launch-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.workflow-grid h3 {
  min-height: 54px;
}

.workflow-grid p {
  margin-bottom: 0;
  color: rgba(245, 244, 238, 0.74);
  font-size: 15px;
}

.compact-heading {
  margin-top: 34px;
}

.watchlist-grid {
  grid-template-columns: repeat(3, 1fr);
}

.watchlist-card {
  display: grid;
  min-height: 278px;
  padding: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(16, 42, 35, 0.98), rgba(6, 16, 14, 0.98));
  box-shadow: var(--shadow);
}

.watchlist-card h3 {
  margin: 12px 0 8px;
  font-size: 22px;
  line-height: 1.08;
}

.watchlist-card p {
  margin: 0;
  color: rgba(245, 244, 238, 0.74);
  line-height: 1.42;
}

.watchlist-card .pill-row {
  margin: 14px 0;
}

.watchlist-checks {
  display: grid;
  gap: 7px;
  margin-top: auto;
}

.watchlist-checks span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid rgba(122, 234, 213, 0.14);
  color: rgba(245, 244, 238, 0.8);
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
  font-weight: 900;
}

.watchlist-checks b {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lock-bar-grid {
  grid-template-columns: repeat(3, 1fr);
}

.lock-bar-card {
  display: grid;
  gap: 18px;
  min-height: 246px;
  padding: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(16, 42, 35, 0.98), rgba(6, 16, 14, 0.98));
  box-shadow: var(--shadow);
}

.lock-bar-card span,
.market-card span {
  display: block;
  color: var(--mint);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lock-bar-card h3 {
  margin: 10px 0;
  font-size: 22px;
}

.lock-bar-card p {
  margin-bottom: 0;
  color: rgba(245, 244, 238, 0.72);
}

.lock-bar-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  align-self: end;
}

.lock-bar-metrics b {
  display: grid;
  gap: 5px;
  padding: 10px 8px;
  border: 1px solid rgba(122, 234, 213, 0.16);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.035);
  font-size: 20px;
}

.lock-bar-metrics small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.acca-policy {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 14px;
}

.acca-policy article,
.acca-card,
.backtest-summary article,
.backtest-stage-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(16, 42, 35, 0.98), rgba(6, 16, 14, 0.98));
  box-shadow: var(--shadow);
}

.acca-policy article {
  min-height: 174px;
  padding: 20px;
}

.acca-policy span,
.acca-card-head span,
.backtest-summary span,
.backtest-stage-card span {
  display: block;
  color: var(--mint);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.acca-policy h3,
.acca-card h3 {
  margin: 12px 0 8px;
  font-size: 22px;
}

.acca-policy p,
.acca-card p,
.backtest-stage-card p {
  margin-bottom: 0;
  color: rgba(245, 244, 238, 0.74);
}

.acca-lab-grid {
  grid-template-columns: repeat(3, 1fr);
}

.acca-card {
  display: grid;
  gap: 14px;
  min-height: 410px;
  padding: 20px;
}

.acca-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.acca-card-head strong {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 5px 9px;
  border: 1px solid rgba(244, 199, 95, 0.4);
  color: var(--gold);
  background: rgba(244, 199, 95, 0.08);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.acca-rules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.acca-rules b {
  display: grid;
  gap: 5px;
  padding: 10px 8px;
  border: 1px solid rgba(122, 234, 213, 0.16);
  background: rgba(255, 255, 255, 0.035);
  color: var(--ink);
  font-size: 22px;
}

.acca-rules small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.acca-legs {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.acca-legs div {
  padding: 10px;
  border: 1px solid rgba(122, 234, 213, 0.14);
  background: rgba(255, 255, 255, 0.035);
}

.acca-legs span,
.acca-legs small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.acca-legs strong {
  display: block;
  margin: 5px 0;
  color: var(--ink);
  font-size: 15px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.filter-row label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.filter-row select {
  min-width: 190px;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 0;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
}

.fixture-list,
.group-grid,
.knockout-grid,
.rule-list,
.standings-grid,
.watchlist-grid,
.venue-weather-grid,
.group-state-grid,
.lock-bar-grid,
.market-grid,
.evidence-timeline,
.acca-policy,
.acca-lab-grid,
.backtest-summary,
.backtest-stage-grid {
  display: grid;
  gap: 12px;
}

.fixture-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(170px, 0.55fr) minmax(220px, 0.75fr) minmax(190px, 0.6fr);
  gap: 18px;
  padding: 18px;
}

.fixture-card h3 {
  margin-top: 8px;
}

.fixture-meta {
  margin: 0;
}

.worldcup-track-box {
  display: grid;
  gap: 8px;
  align-content: start;
}

.worldcup-track-button {
  min-height: 44px;
  border: 1px solid var(--mint);
  background: var(--mint);
  color: #06100e;
  padding: 0 14px;
  font: inherit;
  font-size: 14px;
  font-weight: 1000;
  cursor: pointer;
}

.worldcup-track-button:disabled {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  cursor: not-allowed;
}

.worldcup-track-button.is-tracked {
  border-color: rgba(120, 234, 213, 0.42);
  background: rgba(120, 234, 213, 0.12);
  color: var(--mint);
}

.worldcup-track-box small {
  color: var(--muted);
  font-weight: 850;
  line-height: 1.35;
  text-transform: none;
  letter-spacing: 0;
}

.fixture-context-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.fixture-context-grid span {
  display: grid;
  gap: 4px;
  min-height: 66px;
  padding: 10px;
  border: 1px solid rgba(122, 234, 213, 0.14);
  color: rgba(245, 244, 238, 0.82);
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.25;
}

.fixture-context-grid span.medium {
  border-color: rgba(244, 199, 95, 0.35);
  color: #f7dfa5;
  background: rgba(244, 199, 95, 0.07);
}

.fixture-context-grid span.high {
  border-color: rgba(238, 146, 122, 0.45);
  color: #ffc7b9;
  background: rgba(238, 146, 122, 0.08);
}

.fixture-context-grid b {
  color: var(--mint);
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.worldcup-empty-state {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(120, 234, 213, 0.3);
  background:
    linear-gradient(145deg, rgba(16, 42, 35, 0.98), rgba(6, 16, 14, 0.98)),
    rgba(6, 16, 14, 0.98);
  box-shadow: var(--shadow);
}

.worldcup-empty-state span {
  color: var(--mint);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.worldcup-empty-state strong {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
}

.worldcup-empty-state p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
}

.worldcup-empty-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.worldcup-empty-grid div {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(122, 234, 213, 0.16);
  background: rgba(255, 255, 255, 0.035);
}

.worldcup-empty-grid b {
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
}

.worldcup-empty-grid small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.worldcup-empty-state a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  border: 1px solid var(--mint);
  background: var(--mint);
  color: #06100e;
  padding: 0 16px;
  font-weight: 1000;
}

.venue-weather-grid {
  grid-template-columns: repeat(4, 1fr);
}

.venue-weather-card {
  display: grid;
  gap: 18px;
  min-height: 226px;
  padding: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(16, 42, 35, 0.98), rgba(6, 16, 14, 0.98));
  box-shadow: var(--shadow);
}

.venue-weather-card h3 {
  margin: 14px 0 8px;
  font-size: 22px;
  line-height: 1.06;
}

.venue-weather-card p {
  margin: 0;
  color: rgba(245, 244, 238, 0.74);
  line-height: 1.38;
}

.venue-weather-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  align-self: end;
}

.venue-weather-meta b {
  display: grid;
  gap: 5px;
  padding: 10px 8px;
  border: 1px solid rgba(122, 234, 213, 0.16);
  background: rgba(255, 255, 255, 0.035);
  color: var(--ink);
  font-size: 22px;
}

.venue-weather-meta small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.risk-pill.low {
  color: #06100e;
  background: var(--mint);
}

.risk-pill.medium {
  color: #241804;
  border-color: rgba(244, 199, 95, 0.6);
  background: var(--gold);
}

.risk-pill.high {
  color: #2b0701;
  border-color: rgba(238, 146, 122, 0.72);
  background: var(--red);
}

.decision-pill {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
}

.review-pill {
  color: #06100e;
  border-color: rgba(120, 234, 213, 0.78);
  background: var(--mint);
}

.status-chip {
  color: var(--muted);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.045);
}

.context-chip.low,
.recommendation-chip.recommended,
.recommendation-chip.tracked {
  color: #06100e;
  border-color: rgba(120, 234, 213, 0.78);
  background: var(--mint);
}

.context-chip.medium {
  color: #241804;
  border-color: rgba(244, 199, 95, 0.6);
  background: var(--gold);
}

.context-chip.high {
  color: #2b0701;
  border-color: rgba(238, 146, 122, 0.72);
  background: var(--red);
}

.recommendation-chip.not-recommended {
  color: var(--muted);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.035);
}

.recommendation-chip.pending {
  color: var(--gold);
  border-color: rgba(244, 199, 95, 0.45);
  background: rgba(244, 199, 95, 0.08);
}

.decision-note {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.4;
}

.worldcup-market-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.worldcup-market-summary b {
  display: grid;
  gap: 4px;
  min-height: 58px;
  padding: 9px;
  border: 1px solid rgba(122, 234, 213, 0.16);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.035);
  font-size: 14px;
}

.worldcup-market-summary small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.checks {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.checks li + li {
  margin-top: 6px;
}

.group-grid {
  grid-template-columns: repeat(3, 1fr);
}

.standings-note {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 18px;
  margin-bottom: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(120, 234, 213, 0.07);
}

.standings-note h3 {
  margin: 8px 0 0;
  font-size: 24px;
}

.standings-note p {
  margin: 0;
  color: rgba(245, 244, 238, 0.76);
  line-height: 1.45;
}

.group-state-engine {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 14px;
  margin-bottom: 18px;
}

.group-state-copy,
.group-state-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(16, 42, 35, 0.96), rgba(7, 18, 15, 0.96));
  box-shadow: var(--shadow);
}

.group-state-copy {
  padding: 22px;
}

.group-state-copy h3 {
  margin: 10px 0;
  font-size: 28px;
}

.group-state-copy p {
  margin-bottom: 0;
  color: rgba(245, 244, 238, 0.74);
  line-height: 1.45;
}

.group-state-grid {
  grid-template-columns: repeat(3, 1fr);
}

.group-state-card {
  min-height: 154px;
  padding: 18px;
}

.group-state-card span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 5px 9px;
  border: 1px solid rgba(120, 234, 213, 0.24);
  color: var(--mint);
  background: rgba(120, 234, 213, 0.07);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.group-state-card h4 {
  margin: 14px 0 8px;
  font-size: 19px;
}

.group-state-card p {
  margin: 0;
  color: rgba(245, 244, 238, 0.74);
  font-size: 14px;
  line-height: 1.38;
}

.standings-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 20px;
}

.standings-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(18, 46, 38, 0.96), rgba(7, 18, 15, 0.96));
  box-shadow: var(--shadow);
}

.standings-card h3 {
  margin: 0;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--mint);
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.standings-table {
  width: 100%;
  border-collapse: collapse;
}

.standings-table th,
.standings-table td {
  padding: 10px 8px;
  border-bottom: 1px solid rgba(122, 234, 213, 0.12);
  text-align: right;
  font-size: 13px;
}

.standings-table th:first-child,
.standings-table td:first-child {
  width: 44%;
  padding-left: 18px;
  text-align: left;
}

.standings-table th {
  color: var(--muted);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.standings-table td {
  color: rgba(245, 244, 238, 0.9);
  font-weight: 850;
}

.standings-table tr:last-child td {
  border-bottom: 0;
}

.standings-state {
  display: inline-flex;
  min-width: 86px;
  justify-content: center;
  padding: 5px 7px;
  border: 1px solid rgba(120, 234, 213, 0.28);
  color: var(--mint);
  background: rgba(120, 234, 213, 0.07);
  font-size: 11px;
  font-weight: 1000;
  text-transform: uppercase;
}

.group-card,
.knockout-card,
.launch-card {
  padding: 22px;
}

.team-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 16px 0;
}

.team-list span {
  padding: 9px 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 900;
}

.knockout-grid {
  grid-template-columns: repeat(2, 1fr);
}

.knockout-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.knockout-card strong {
  color: var(--mint);
  font-size: 34px;
}

.market-grid {
  grid-template-columns: repeat(4, 1fr);
}

.market-readiness-summary {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.market-readiness-summary article,
.market-readiness-empty,
.market-readiness-row {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(16, 42, 35, 0.98), rgba(6, 16, 14, 0.98));
  box-shadow: var(--shadow);
}

.market-readiness-summary article {
  min-height: 128px;
  padding: 18px;
}

.market-readiness-summary span,
.market-readiness-empty span {
  display: block;
  color: var(--mint);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.market-readiness-summary strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
}

.market-readiness-empty {
  grid-column: 1 / -1;
  padding: 22px;
}

.market-readiness-empty strong {
  display: block;
  margin: 12px 0 8px;
  color: var(--ink);
  font-size: 26px;
}

.market-readiness-empty p {
  max-width: 720px;
  margin: 0;
  color: rgba(245, 244, 238, 0.74);
  line-height: 1.45;
}

.market-readiness-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.market-readiness-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: 18px;
  align-items: center;
  padding: 16px;
}

.market-readiness-row small {
  display: block;
  color: var(--mint);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.market-readiness-row h3 {
  margin: 8px 0 10px;
  font-size: 20px;
  line-height: 1.08;
}

.readiness-status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 5px 9px;
  border: 1px solid rgba(244, 199, 95, 0.38);
  color: var(--gold);
  background: rgba(244, 199, 95, 0.08);
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.readiness-status.ready_all_markets,
.readiness-status.ready_goals_markets {
  border-color: rgba(120, 234, 213, 0.5);
  color: #06100e;
  background: var(--mint);
}

.readiness-status.no_markets {
  border-color: rgba(238, 146, 122, 0.45);
  color: #ffc7b9;
  background: rgba(238, 146, 122, 0.08);
}

.market-depth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.market-depth-grid b {
  display: grid;
  gap: 5px;
  padding: 10px;
  border: 1px solid rgba(122, 234, 213, 0.16);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.035);
  font-size: 20px;
}

.market-depth-grid small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.market-card {
  min-height: 184px;
  padding: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(16, 42, 35, 0.98), rgba(6, 16, 14, 0.98));
  box-shadow: var(--shadow);
}

.market-card strong {
  display: block;
  margin: 22px 0 12px;
  color: var(--ink);
  font-size: 36px;
  line-height: 1;
}

.market-card p {
  margin-bottom: 0;
}

.evidence-timeline {
  grid-template-columns: repeat(5, 1fr);
}

.evidence-timeline article {
  min-height: 188px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.evidence-timeline span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: #06100e;
  background: var(--mint);
  font-weight: 1000;
}

.evidence-timeline h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.evidence-timeline p {
  margin-bottom: 0;
  font-size: 14px;
}

.backtest-summary {
  grid-template-columns: repeat(5, 1fr);
}

.backtest-summary article {
  min-height: 142px;
  padding: 20px;
}

.backtest-summary strong {
  display: block;
  margin-top: 20px;
  color: var(--ink);
  font-size: 36px;
  line-height: 1;
}

.backtest-stage-grid {
  grid-template-columns: repeat(4, 1fr);
}

.backtest-stage-card {
  min-height: 174px;
  padding: 20px;
}

.backtest-stage-card strong {
  display: block;
  margin: 18px 0 10px;
  color: var(--mint);
  font-size: 40px;
  line-height: 1;
}

.backtest-recommendations {
  margin-top: 14px;
}

.rules-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 16px;
}

.launch-card ul {
  margin: 0;
  padding-left: 20px;
}

.rule-list article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.rule-list strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
}

.rule-thresholds {
  margin: 10px 0 0;
  color: rgba(120, 234, 213, 0.86);
  font-size: 13px;
  font-weight: 900;
}

.empty-message {
  padding: 24px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 980px) {
  .worldcup-hero,
  .mode-note,
  .challenge-join,
  .tracking-guide,
  .tracked-review,
  .tracked-pick-row,
  .fixture-card,
  .market-readiness-row,
  .rules-layout,
  .standings-note,
  .group-state-engine {
    grid-template-columns: 1fr;
  }

  .tracking-guide-actions {
    min-width: 0;
  }

  .metric-grid,
  .how-to-win,
  .workflow-grid,
  .group-grid,
  .knockout-grid,
  .standings-grid,
  .watchlist-grid,
  .venue-weather-grid,
  .market-readiness-summary,
  .group-state-grid,
  .lock-bar-grid,
  .market-grid,
  .evidence-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .acca-policy,
  .acca-lab-grid,
  .backtest-summary,
  .backtest-stage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  body {
    background: #06100e;
  }

  .worldcup-shell {
    width: min(100% - 22px, 520px);
    padding-top: 14px;
  }

  .worldcup-topbar,
  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .worldcup-brand {
    width: 220px;
    min-height: 56px;
  }

  .worldcup-topbar-actions {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    font-size: 54px;
  }

  .worldcup-tabs {
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .worldcup-tabs button {
    min-width: max-content;
  }

  .proof-preview-stats,
  .tracked-review-summary,
  .tracked-pick-meta,
  .how-to-win,
  .worldcup-empty-grid,
  .worldcup-market-summary,
  .metric-grid,
  .workflow-grid,
  .group-grid,
  .knockout-grid,
  .standings-grid,
  .watchlist-grid,
  .venue-weather-grid,
  .market-readiness-summary,
  .market-depth-grid,
  .group-state-grid,
  .lock-bar-grid,
  .market-grid,
  .evidence-timeline,
  .acca-policy,
  .acca-lab-grid,
  .backtest-summary,
  .backtest-stage-grid,
  .team-list {
    grid-template-columns: 1fr;
  }

  .standings-card {
    overflow-x: auto;
  }

  .standings-table {
    min-width: 520px;
  }

  .fixture-context-grid {
    grid-template-columns: 1fr;
  }

  .proof-preview-stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-preview-stats div:last-child {
    border-bottom: 0;
  }
}
