:root {
  color-scheme: dark;
  --bg: #05080c;
  --panel: #0b1118;
  --panel-2: #111923;
  --line: rgba(255, 255, 255, 0.12);
  --text: #eef5fb;
  --muted: #a9b5c0;
  --soft: #6f7f8c;
  --cyan: #22c6f3;
  --cyan-2: #77e5ff;
  --green: #45d483;
  --red: #ff6262;
  --red-corner: #ff4b4b;
  --blue-corner: #348cff;
  --amber: #f4b84a;
  --gold: #f4b84a;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 8, 12, 0.74);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.header-cta,
.header-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 760;
  letter-spacing: 0;
}

.brand picture {
  display: flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: auto;
  height: 54px;
  max-width: min(42vw, 240px);
  object-fit: contain;
}

.brand-fallback {
  display: none;
  color: var(--text);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand-logo-missing .brand-fallback {
  display: inline-flex;
}

.nav {
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
}

.nav a,
.nav-social-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 13px;
  color: var(--muted);
  font-family: inherit;
  font-size: 14px;
  font-weight: inherit;
  line-height: 1.5;
}

.nav a:hover,
.nav-social-trigger:hover,
.nav-social-trigger:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.nav-social {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-social-trigger {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-social-trigger::after {
  content: "▾";
  margin-left: 6px;
  color: var(--soft);
  font-size: 11px;
}

.nav-social-menu {
  position: absolute;
  z-index: 70;
  top: calc(100% + 10px);
  right: 0;
  display: none;
  min-width: 154px;
  padding: 7px;
  border: 1px solid rgba(119, 229, 255, 0.22);
  background: rgba(5, 8, 12, 0.98);
  box-shadow: var(--shadow);
}

.nav-social.open .nav-social-trigger {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.nav-social.open .nav-social-menu {
  display: grid;
  gap: 3px;
}

.nav-social-menu a {
  min-height: 40px;
  padding: 10px 12px;
  white-space: nowrap;
}

.header-actions {
  justify-self: end;
  gap: 10px;
}

.header-cta,
.auth-trigger {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid rgba(119, 229, 255, 0.4);
  background: rgba(34, 198, 243, 0.1);
  color: var(--cyan-2);
  font-size: 14px;
  font-weight: 700;
}

.auth-trigger {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  cursor: pointer;
}

.mobile-auth-trigger {
  width: 100%;
  padding: 13px 12px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(119, 229, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.mobile-menu {
  display: none;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 14px;
  background: rgba(0, 0, 0, 0.68);
}

.auth-modal.open {
  display: grid;
}

.auth-dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100svh - 28px);
  overflow: auto;
  padding: 20px 22px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.auth-dialog .kicker {
  margin-bottom: 5px;
  font-size: 11px;
}

.auth-dialog h2 {
  margin: 0 36px 8px 0;
  font-size: clamp(20px, 3.4vw, 28px);
  line-height: 1.05;
}

.auth-dialog .auth-copy {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.auth-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
}

.auth-copy,
.auth-status {
  color: var(--muted);
}

.auth-tabs,
.auth-socials,
.auth-form,
.auth-form label,
.auth-form-actions {
  display: grid;
  gap: 8px;
}

.auth-tabs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 10px 0 8px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-tab {
  min-height: 34px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 820;
  cursor: pointer;
}

.auth-tab.active {
  background: rgba(119, 229, 255, 0.14);
  color: var(--text);
}

.auth-socials {
  margin: 10px 0;
  grid-template-columns: 1fr;
}

.auth-mode-login .auth-register-only,
.auth-mode-login .auth-optin-choice,
.auth-mode-login .auth-optin-note,
.auth-mode-login .auth-field-hint,
.auth-mode-login [data-auth-mode='register'] {
  display: none;
}

.auth-mode-register [data-auth-mode='login'] {
  display: none;
}

.auth-socials button,
.auth-form-actions button,
.auth-postlogin-actions button,
.auth-account-actions a,
.auth-resend,
.auth-signout {
  min-height: 38px;
  border: 1px solid rgba(119, 229, 255, 0.24);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  font-weight: 760;
  cursor: pointer;
}

.google-auth-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 40px;
  border-color: rgba(255, 255, 255, 0.2) !important;
  background: #ffffff !important;
  color: #1f1f1f !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
}

.google-auth-button:hover {
  background: #f8fafd !important;
}

.google-auth-button-primary {
  min-height: 42px;
}

.auth-optin-note {
  margin: -3px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
  text-align: center;
}

.google-auth-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.auth-socials button:disabled,
.auth-form-actions button:disabled,
.auth-form input:disabled,
.auth-postlogin-actions button:disabled,
.auth-resend:disabled,
.auth-signout:disabled {
  cursor: wait;
  opacity: 0.62;
}

.auth-account-actions {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.auth-account-actions[hidden] {
  display: none;
}

.auth-account-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  text-decoration: none;
  background: rgba(20, 184, 166, 0.18);
  border-color: rgba(45, 212, 191, 0.4);
}

.auth-account-actions a[hidden] {
  display: none;
}

.auth-resend,
.auth-signout {
  width: 100%;
  background: rgba(20, 184, 166, 0.18);
  border-color: rgba(45, 212, 191, 0.4);
}

.auth-postlogin-optin {
  display: grid;
  gap: 8px;
  margin-top: 10px;
  padding: 12px;
  border: 1px solid rgba(45, 212, 191, 0.36);
  background: rgba(20, 184, 166, 0.12);
}

.auth-postlogin-optin strong {
  color: var(--text);
  font-size: 14px;
}

.auth-postlogin-optin p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.auth-postlogin-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.auth-postlogin-actions button {
  border: 1px solid rgba(119, 229, 255, 0.24);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  font-weight: 760;
  cursor: pointer;
}

.auth-postlogin-actions button:first-child {
  background: rgba(20, 184, 166, 0.22);
  border-color: rgba(45, 212, 191, 0.5);
}

.auth-resend {
  margin-top: 10px;
}

.auth-signout {
  margin-top: 8px;
}

.auth-modal.has-auth-user .auth-tabs,
.auth-modal.has-auth-user .auth-socials,
.auth-modal.has-auth-user .auth-form {
  display: none;
}

.auth-form span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.auth-optin-choice {
  display: grid;
  gap: 6px;
  margin: 6px 0 2px;
  padding: 10px 12px;
  border: 1px solid rgba(119, 229, 255, 0.22);
  background: rgba(119, 229, 255, 0.07);
}

.auth-optin-choice legend {
  padding: 0 6px;
  color: var(--text);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-optin-choice p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.auth-optin-choice label {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.auth-optin-choice input {
  min-height: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--cyan);
}

.auth-optin-choice span {
  color: var(--text);
  font-size: 13px;
  font-weight: 720;
  line-height: 1.35;
  text-transform: none;
}

.auth-postlogin-optin[hidden] {
  display: none;
}

.auth-form input {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 8, 12, 0.72);
  color: var(--text);
  font: inherit;
  padding: 8px 10px;
}

.auth-field-hint {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.auth-form-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.auth-status {
  min-height: 20px;
  margin: 14px 0 0;
  font-size: 13px;
}

.auth-status.error {
  color: #ffb0b0;
}

.load-error {
  padding: 16px;
  background: #3a1010;
  color: #ffffff;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 112px clamp(18px, 5vw, 76px) 58px;
}

.hero > picture {
  display: contents;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 8, 12, 0.98) 0%, rgba(5, 8, 12, 0.82) 34%, rgba(5, 8, 12, 0.2) 72%),
    linear-gradient(0deg, var(--bg) 0%, rgba(5, 8, 12, 0) 34%);
}

.hero-content {
  position: relative;
  width: min(720px, 100%);
}

.eyebrow,
.kicker {
  color: var(--cyan-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 690px;
  margin-bottom: 20px;
  font-size: clamp(46px, 6vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 610px;
  color: #cad5dd;
  font-size: clamp(17px, 2vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  margin: 28px 0 14px;
}

.hero-action-note {
  max-width: 560px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.hero-actions > * {
  flex: 0 0 auto;
  white-space: nowrap;
}

.hero-actions .primary-button,
.hero-actions .secondary-button,
.hero-actions .text-button {
  min-height: 48px;
  padding-inline: clamp(11px, 1.6vw, 18px);
  font-size: clamp(14px, 1.45vw, 18px);
}

.hero-actions .text-button {
  display: inline-flex;
  align-items: center;
}

.primary-button,
.secondary-button,
.price-card a,
.price-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  font-weight: 800;
}

.primary-button,
.price-card a,
.price-card button {
  background: var(--cyan);
  color: #031018;
}

.price-card button {
  width: 100%;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(112px, 1fr));
  gap: 10px;
  max-width: 690px;
  min-height: 82px;
  margin: 0;
}

.hero-stats div {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 14, 20, 0.72);
}

.hero-stats dt {
  color: var(--soft);
  font-size: 12px;
}

.hero-stats dd {
  margin: 5px 0 0;
  font-size: 22px;
  font-weight: 820;
}

.section {
  padding: 94px clamp(18px, 5vw, 76px);
}

.section-tight {
  padding-top: 76px;
}

.section-band {
  border-block: 1px solid var(--line);
  background: #080d13;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 30px;
}

.section-heading > p,
.large-copy {
  color: var(--muted);
  font-size: 18px;
}

.pick-shell,
.ledger-panel,
.access-panel {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.pick-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.live-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(69, 212, 131, 0.8);
}

.pick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.fight-card-more {
  grid-column: 1 / -1;
  background: var(--bg);
}

.fight-card-more summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  background: rgba(34, 198, 243, 0.1);
  color: var(--cyan-2);
  font-weight: 850;
  cursor: pointer;
}

.fight-card-more summary::-webkit-details-marker {
  display: none;
}

.fight-card-more summary::after {
  content: "+";
  margin-left: 10px;
  font-size: 22px;
  line-height: 1;
}

.fight-card-more[open] summary::after {
  content: "-";
}

.pick-grid-nested {
  margin-top: 1px;
}

.pick-card {
  min-height: 420px;
  padding: 20px;
  background: var(--panel);
}

.pick-card.locked {
  position: relative;
  overflow: hidden;
}

.pick-card.locked > *:not(.lock-overlay) {
  filter: blur(4px);
  opacity: 0.38;
}

.lock-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  text-align: center;
  background: rgba(5, 8, 12, 0.54);
}

.lock-overlay strong {
  display: block;
  margin-bottom: 4px;
}

.fight-label {
  color: var(--soft);
  font-size: 12px;
  text-transform: uppercase;
}

.calc-state-label {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.calc-state-label.is-live {
  border-color: rgba(69, 212, 131, 0.58);
  background: rgba(69, 212, 131, 0.14);
  color: #9cffc3;
}

.calc-state-label.is-pass {
  border-color: rgba(244, 184, 74, 0.54);
  background: rgba(244, 184, 74, 0.12);
  color: var(--amber);
}

.pick-name {
  margin: 14px 0 14px;
  font-size: 23px;
  font-weight: 820;
  line-height: 1.12;
}

.pick-name-pass {
  color: var(--amber);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.pick-rationale {
  color: var(--muted);
  font-size: 13px;
}

.pass-info {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-left: 7px;
  border: 1px solid rgba(119, 229, 255, 0.58);
  border-radius: 999px;
  background: rgba(119, 229, 255, 0.08);
  color: var(--cyan-2);
  font-size: 11px;
  box-sizing: border-box;
  font-family: inherit;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
  text-transform: none;
  cursor: help;
}

.pass-info::after {
  content: attr(data-tooltip);
  position: absolute;
  z-index: 80;
  left: 50%;
  bottom: calc(100% + 9px);
  width: min(260px, 72vw);
  padding: 9px 10px;
  border: 1px solid rgba(119, 229, 255, 0.34);
  background: rgba(5, 8, 12, 0.98);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.36);
  color: var(--text);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.35;
  text-align: left;
  text-transform: none;
  white-space: normal;
  transform: translateX(-50%) translateY(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.pass-info:hover::after,
.pass-info:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.term-info {
  display: inline-flex;
  vertical-align: middle;
}

.pass-info.term-info,
.ledger-summary .term-info,
th .term-info,
dt .term-info,
.calc-state-label .term-info,
.locked-field .term-info {
  display: inline-flex;
  margin-left: 5px;
  vertical-align: -3px;
}

.ledger-summary span .term-info {
  display: inline-flex;
}

.versus-module {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 104px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  margin: 18px 0;
}

.fighter-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.fighter-panel.red {
  border-color: rgba(255, 75, 75, 0.38);
  border-top: 4px solid var(--red-corner);
  background:
    linear-gradient(180deg, rgba(255, 75, 75, 0.16), rgba(255, 255, 255, 0.025) 40%),
    rgba(255, 255, 255, 0.035);
}

.fighter-panel.blue {
  border-color: rgba(52, 140, 255, 0.4);
  border-top: 4px solid var(--blue-corner);
  background:
    linear-gradient(180deg, rgba(52, 140, 255, 0.16), rgba(255, 255, 255, 0.025) 40%),
    rgba(255, 255, 255, 0.035);
}

.fighter-panel.picked {
  border-color: rgba(69, 212, 131, 0.82);
  box-shadow:
    inset 0 0 0 1px rgba(69, 212, 131, 0.58),
    0 0 0 1px rgba(69, 212, 131, 0.18),
    0 16px 44px rgba(69, 212, 131, 0.13);
}

.pick-badge {
  position: absolute;
  z-index: 4;
  top: 46px;
  right: 18px;
  padding: 6px 9px;
  border: 1px solid rgba(69, 212, 131, 0.72);
  background: rgba(8, 39, 25, 0.94);
  box-shadow: 0 10px 26px rgba(69, 212, 131, 0.22);
  color: #9cffc3;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.fighter-image-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.1), rgba(5, 8, 12, 0) 44%),
    #05080c;
}

.fighter-image-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(5, 8, 12, 0), rgba(5, 8, 12, 0.72));
  pointer-events: none;
}

.fighter-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.1) contrast(1.08);
  transform: scale(1.02);
}

.corner-label {
  justify-self: start;
  padding: 4px 8px;
  color: var(--soft);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.fighter-panel.red .corner-label {
  background: rgba(255, 75, 75, 0.14);
  color: #ffb0b0;
}

.fighter-panel.blue .corner-label {
  background: rgba(52, 140, 255, 0.14);
  color: #a9cfff;
}

.fighter-identity strong,
.fighter-identity span,
.fighter-identity em {
  display: block;
}

.fighter-identity strong {
  line-height: 1.12;
}

.fighter-name-line {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.fighter-inline-odds,
.corner-odds-pill {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 3px 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 8, 12, 0.5);
  color: var(--text);
  font-size: 13px;
  box-sizing: border-box;
  font-family: inherit;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
}

.corner-odds-red {
  border-color: rgba(255, 75, 75, 0.44);
  color: #ffb0b0;
}

.corner-odds-blue {
  border-color: rgba(52, 140, 255, 0.48);
  color: #a9cfff;
}

.fighter-identity span,
.fighter-identity em {
  color: var(--muted);
  font-size: 13px;
}

.fighter-identity em {
  margin-top: 2px;
  font-style: normal;
}

.fighter-quick-facts,
.fighter-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin: 6px 0 0;
}

.fighter-quick-facts div,
.fighter-stat-grid div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  min-height: 52px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(5, 8, 12, 0.32);
}

.fighter-quick-facts div {
  min-height: 48px;
  background: rgba(255, 255, 255, 0.055);
}

.fighter-fight-parameters {
  margin: 4px 0 0;
}

.fighter-fight-parameters h4 {
  margin: 0;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 8, 12, 0.36);
  color: var(--soft);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.fighter-quick-facts dt,
.fighter-quick-facts dd,
.fighter-stat-grid dt,
.fighter-stat-grid dd {
  margin: 0;
  font-size: 12px;
}

.fighter-quick-facts dt,
.fighter-stat-grid dt {
  color: var(--soft);
}

.fighter-quick-facts dd,
.fighter-stat-grid dd {
  color: var(--text);
  font-weight: 750;
}

.versus-center {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 10px 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(90deg, rgba(255, 75, 75, 0.12), rgba(34, 198, 243, 0.08), rgba(52, 140, 255, 0.12)),
    rgba(255, 255, 255, 0.035);
  text-align: center;
}

.versus-center span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(34, 198, 243, 0.16);
  color: var(--text);
  font-weight: 900;
}

.versus-center strong {
  font-size: 13px;
  line-height: 1.15;
}

.versus-center small,
.versus-center em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
}

.compare-list {
  display: grid;
  margin-bottom: 16px;
}

.compare-section {
  margin: 14px 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 8, 12, 0.2);
}

.compare-section-locked {
  display: grid;
  gap: 4px;
  padding: 12px;
}

.compare-section-locked strong {
  color: var(--text);
}

.compare-section-locked span {
  color: var(--muted);
  font-size: 13px;
}

.compare-section h3 {
  margin: 0;
  min-height: 42px;
  padding: 11px 12px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.compare-section .compare-head,
.compare-section .compare-list {
  padding-inline: 12px;
}

.odds-format-control,
.budget-control {
  display: grid;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 8, 12, 0.28);
}

.odds-format-control {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.odds-format-control span,
.budget-control span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.odds-format-control div {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(88px, 1fr));
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.odds-format-control button {
  min-height: 34px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.odds-format-control button.active {
  background: rgba(34, 198, 243, 0.14);
  color: var(--cyan-2);
}

.budget-control {
  grid-template-columns: minmax(160px, 0.8fr) minmax(92px, 0.35fr) minmax(180px, 1fr);
  align-items: center;
}

.budget-control label {
  display: grid;
  gap: 3px;
}

.budget-control strong {
  font-size: 20px;
}

.budget-control input[type="number"],
.budget-control input[type="range"] {
  width: 100%;
}

.budget-control input[type="number"] {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 8, 12, 0.72);
  color: var(--text);
  font: inherit;
  font-weight: 760;
  padding: 7px 9px;
}

.premium-gate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 184, 74, 0.1);
}

.premium-gate strong {
  font-size: 14px;
}

.premium-gate button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(244, 184, 74, 0.5);
  background: rgba(93, 67, 12, 0.72);
  color: #ffffff;
  font: inherit;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
}

.checkout-status {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.checkout-status.is-error {
  color: var(--amber);
}

[data-premium-checkout].is-loading {
  opacity: 0.72;
  pointer-events: none;
}

.odds-lab {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 8px;
}

.odds-lab label {
  display: grid;
  gap: 7px;
  padding: 11px;
  border: 1px solid rgba(119, 229, 255, 0.2);
  background: rgba(34, 198, 243, 0.06);
}

.odds-lab span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.odds-lab input {
  width: 100%;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 8, 12, 0.72);
  color: var(--text);
  font: inherit;
  font-weight: 760;
  padding: 7px 9px;
}

.odds-lab small {
  color: var(--soft);
  font-size: 11px;
}

.compare-head,
.compare-row {
  display: grid;
  grid-template-columns: minmax(92px, 0.7fr) minmax(110px, 1fr) minmax(110px, 1fr);
  gap: 8px;
  align-items: center;
}

.compare-head {
  padding: 8px 0;
  color: var(--soft);
  font-size: 11px;
  text-transform: uppercase;
}

.compare-row {
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.compare-row span {
  color: var(--soft);
  font-size: 12px;
}

.compare-row strong {
  font-size: 14px;
}

.compare-value {
  padding: 5px 7px;
  border: 1px solid transparent;
}

.compare-value.picked {
  border-color: rgba(34, 198, 243, 0.44);
  background: rgba(34, 198, 243, 0.08);
}

.compare-value.stat-edge,
.fighter-quick-facts dd.stat-edge,
.fighter-stat-grid dd.stat-edge {
  color: var(--green);
  font-weight: 900;
}

.unit-lock {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(69, 212, 131, 0.54);
  background:
    linear-gradient(135deg, rgba(69, 212, 131, 0.2), rgba(34, 198, 243, 0.09)),
    rgba(5, 8, 12, 0.78);
  box-shadow:
    inset 0 0 0 1px rgba(69, 212, 131, 0.12),
    0 16px 40px rgba(69, 212, 131, 0.14);
}

.unit-lock.no-bet {
  border-color: rgba(244, 184, 74, 0.54);
  background:
    linear-gradient(135deg, rgba(244, 184, 74, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(5, 8, 12, 0.78);
  box-shadow: 0 14px 34px rgba(244, 184, 74, 0.1);
}

.unit-lock strong {
  color: #9cffc3;
  font-size: clamp(20px, 2.4vw, 29px);
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1;
}

.unit-lock.no-bet strong {
  color: var(--amber);
}

.unit-lock span {
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.unit-lock-action {
  justify-self: start;
  margin-top: 4px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
}

.unit-lock-action:hover {
  border-color: rgba(69, 212, 131, 0.56);
  background: rgba(69, 212, 131, 0.14);
}

.pick-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.pick-meta span {
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 13px;
}

.pick-locked .fighter-panel {
  opacity: 0.88;
}

.access-teaser {
  display: grid;
  gap: 7px;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid rgba(119, 229, 255, 0.2);
  background: rgba(119, 229, 255, 0.06);
}

.access-teaser strong {
  color: var(--cyan-2);
}

.access-teaser span {
  color: var(--muted);
  font-size: 13px;
}

.access-teaser button,
.access-teaser a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(119, 229, 255, 0.28);
  background: rgba(34, 198, 243, 0.14);
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 44px;
  align-items: start;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.trust-list {
  display: grid;
  gap: 1px;
  border-block: 1px solid var(--line);
  background: var(--line);
}

.trust-list div {
  position: relative;
  padding: 18px 0 18px 28px;
  background: var(--bg);
}

.trust-list div::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid var(--cyan-2);
  border-radius: 999px;
  background: rgba(34, 198, 243, 0.14);
}

.trust-list h3 {
  margin: 0 0 5px;
}

.trust-list p {
  margin: 0;
  color: var(--muted);
}

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

.method-steps article,
.price-card {
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.method-steps span {
  color: var(--cyan-2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.method-steps p,
.price-card li,
.footer,
.ledger-list button span {
  color: var(--muted);
}

.ledger-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
}

.ledger-list-shell {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 10px;
  align-self: stretch;
  height: var(--ledger-panel-height, auto);
  min-height: 0;
}

.ledger-list {
  display: grid;
  align-content: start;
  gap: 10px;
  max-height: none;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 4px;
  scrollbar-width: thin;
}

.ledger-list button {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.ledger-photo {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 75, 75, 0.16), rgba(52, 140, 255, 0.16)),
    #05080c;
}

.ledger-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  image-rendering: auto;
  filter: saturate(1.12) contrast(1.1);
  transform: scale(1.03);
}

.ledger-photo .ledger-vs {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  justify-content: center;
  align-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(119, 229, 255, 0.65);
  border-radius: 999px;
  background: rgba(5, 8, 12, 0.86);
  color: var(--cyan-2);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.roi-badge {
  position: absolute;
  z-index: 3;
  top: 8px;
  left: 8px;
  display: inline-grid;
  place-items: center;
  min-height: 28px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 8, 12, 0.86);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.roi-green {
  color: #ffffff;
  border-color: rgba(69, 212, 131, 0.72);
  background: rgba(8, 70, 40, 0.92);
}

.roi-yellow {
  color: #ffffff;
  border-color: rgba(244, 184, 74, 0.72);
  background: rgba(93, 67, 12, 0.94);
}

.roi-red {
  color: #ffffff;
  border-color: rgba(255, 98, 98, 0.72);
  background: rgba(92, 20, 20, 0.94);
}

.roi-neutral {
  color: #ffffff;
}

.ledger-list button.active {
  border-color: rgba(34, 198, 243, 0.72);
  background: rgba(34, 198, 243, 0.08);
}

.ledger-list strong {
  display: block;
  margin-bottom: 4px;
}

.ledger-scroll-more {
  display: grid;
  place-items: center;
  min-height: 38px;
  border: 1px solid rgba(119, 229, 255, 0.28);
  background: rgba(34, 198, 243, 0.08);
  color: var(--cyan-2);
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
}

.ledger-scroll-more[hidden] {
  display: none;
}

.ledger-summary {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.ledger-summary div {
  padding: 15px;
  background: var(--panel);
}

.ledger-summary span {
  display: block;
  color: var(--soft);
  font-size: 12px;
}

.ledger-summary strong {
  display: block;
  margin-top: 4px;
  font-size: 22px;
}

.table-wrap {
  overflow-x: auto;
}

.mobile-ledger-track {
  display: none;
}

.mobile-ledger-scroll-shell {
  display: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--soft);
  font-size: 12px;
  text-transform: uppercase;
}

td {
  color: #d8e2e9;
}

.result {
  display: inline-flex;
  min-width: 72px;
  justify-content: center;
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.result.win {
  color: #062014;
  background: var(--green);
}

.result.loss {
  color: #2d0606;
  background: var(--red);
}

.result.push {
  color: #061d2d;
  background: var(--cyan-2);
}

.result.pending {
  color: #2b1a02;
  background: var(--amber);
}

.result.no-edge {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.08);
}

.profit-positive {
  color: var(--green);
}

.profit-negative {
  color: var(--red);
}

.access-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 34px;
  align-items: center;
  padding: clamp(22px, 4vw, 42px);
}

.price-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
}

.price-card.highlighted {
  border-color: rgba(34, 198, 243, 0.62);
  background: rgba(34, 198, 243, 0.07);
}

.price {
  display: flex;
  min-height: 82px;
  align-items: center;
  margin: 8px 0 12px;
  font-size: 34px;
  font-weight: 850;
  line-height: 1.05;
}

.price-card ul {
  display: grid;
  gap: 9px;
  min-height: 132px;
  margin: 0 0 22px;
  padding-left: 20px;
}

.price-card a,
.price-card button {
  width: 100%;
  margin-top: auto;
}

.ledger-locked-row td {
  padding: 18px;
  text-align: center;
}

.ledger-locked-row strong,
.ledger-locked-row span {
  display: block;
}

.ledger-locked-row span {
  margin: 6px 0 12px;
  color: var(--muted);
}

.ledger-locked-row button {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(119, 229, 255, 0.28);
  background: rgba(34, 198, 243, 0.14);
  color: var(--text);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(18px, 5vw, 76px);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.footer p {
  margin: 0;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto 1fr;
    justify-content: start;
  }

  .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
  }

  .nav {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .mobile-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 14px;
    right: 14px;
    display: none;
    padding: 8px;
    border: 1px solid var(--line);
    background: rgba(5, 8, 12, 0.96);
    box-shadow: var(--shadow);
  }

  .mobile-menu.open {
    display: grid;
  }

  .mobile-menu a,
  .mobile-socials summary {
    padding: 13px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--muted);
    font-size: 15px;
    font-weight: 700;
  }

  .mobile-socials summary {
    cursor: pointer;
    list-style: none;
  }

  .mobile-socials summary::-webkit-details-marker {
    display: none;
  }

  .mobile-socials summary::after {
    content: "▾";
    float: right;
    color: var(--soft);
  }

  .mobile-socials[open] summary::after {
    content: "▴";
  }

  .mobile-socials a {
    display: block;
    padding-left: 24px;
    background: rgba(255, 255, 255, 0.025);
  }

  .mobile-menu a:last-child {
    border-bottom: 0;
  }

  .mobile-menu a:hover,
  .mobile-socials summary:hover,
  .mobile-socials summary:focus-visible {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
  }

  .mobile-menu a.mobile-menu-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 1px solid rgba(119, 229, 255, 0.28);
    background: rgba(34, 198, 243, 0.1);
    color: var(--cyan-2) !important;
    line-height: 1.15;
    text-align: center;
  }

  .pick-grid,
  .hero-stats,
  .ledger-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .ledger-layout,
  .access-panel,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .ledger-list-shell {
    height: var(--ledger-panel-height, auto);
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 64px;
    padding-inline: 14px;
  }

  .brand span:last-child:not(.brand-fallback) {
    display: none;
  }

  .brand-logo-missing .brand-fallback {
    display: inline-flex;
  }

  .brand-logo {
    height: 48px;
    max-width: 56vw;
  }

  .hero {
    min-height: 88svh;
    align-items: flex-end;
    padding: 88px 18px 34px;
  }

  .hero-image {
    height: 54%;
    object-fit: contain;
    object-position: center top;
    background: #05080c;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, var(--bg) 0%, rgba(5, 8, 12, 0.98) 35%, rgba(5, 8, 12, 0.24) 78%, rgba(5, 8, 12, 0.06) 100%);
  }

  .hero-stats,
  .pick-grid,
  .odds-lab,
  .budget-control,
  .method-steps,
  .pricing-grid,
  .ledger-summary {
    grid-template-columns: 1fr;
  }

  .versus-module {
    grid-template-columns: minmax(0, 1fr) 46px minmax(0, 1fr);
    gap: 6px;
    align-items: stretch;
    margin: 14px 0;
  }

  .odds-format-control {
    grid-template-columns: 1fr;
  }

  .versus-center {
    min-height: auto;
    padding: 8px 3px;
    gap: 5px;
  }

  .versus-center span {
    width: 34px;
    height: 34px;
    font-size: 11px;
  }

  .versus-center strong,
  .versus-center em {
    display: none;
  }

  .fighter-panel {
    gap: 7px;
    padding: 8px;
  }

  .fighter-image-frame {
    aspect-ratio: 1 / 1;
  }

  .fighter-identity strong {
    font-size: 13px;
    line-height: 1.15;
  }

  .fighter-identity span,
  .fighter-identity em {
    font-size: 11px;
  }

  .fighter-quick-facts,
  .fighter-stat-grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .fighter-quick-facts div,
  .fighter-stat-grid div {
    min-height: auto;
    padding: 6px;
    gap: 3px;
  }

  .fighter-quick-facts dt,
  .fighter-quick-facts dd,
  .fighter-stat-grid dt,
  .fighter-stat-grid dd {
    font-size: 10px;
  }

  .fighter-fight-parameters h4 {
    padding: 6px;
    font-size: 10px;
  }

  .fighter-identity-row {
    display: grid;
    gap: 8px;
  }

  .fighter-market-odds {
    width: 100%;
    min-width: 0;
    text-align: left;
  }

  .pick-card {
    min-height: auto;
    padding: 14px;
  }

  .pick-name {
    font-size: 19px;
  }

  .corner-label,
  .pick-badge {
    font-size: 9px;
    padding: 3px 5px;
  }

  .pick-badge {
    top: 38px;
    right: 14px;
  }

  .compare-head,
  .compare-row {
    grid-template-columns: minmax(64px, 0.72fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 5px;
  }

  .compare-head {
    font-size: 9px;
  }

  .compare-row span {
    font-size: 10px;
  }

  .compare-row strong {
    min-width: 0;
    font-size: 11px;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .compare-value {
    padding: 5px 4px;
  }

  .unit-lock {
    flex-direction: column;
  }

  .unit-lock span {
    text-align: left;
  }

  .section {
    padding: 64px 18px;
  }

  .ledger-layout {
    display: none;
  }

  .mobile-ledger-scroll-shell {
    position: relative;
    display: block;
    margin-inline: -18px;
  }

  .mobile-ledger-track {
    display: flex;
    gap: 14px;
    padding: 0 18px 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .mobile-scroll-arrow {
    position: static;
    flex: 0 0 30px;
    display: grid;
    place-items: center;
    width: 30px;
    min-width: 30px;
    align-self: stretch;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-family: Inter, Arial, sans-serif;
    font-size: 228px;
    font-weight: 1000;
    line-height: 0.72;
    -webkit-text-stroke: 0;
    text-shadow: none;
    pointer-events: none;
  }

  .mobile-scroll-arrow.left {
    margin-left: -8px;
  }

  .mobile-scroll-arrow.right {
    margin-right: -8px;
  }

  .mobile-ledger-card {
    flex: 0 0 calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    scroll-snap-align: start;
    border: 1px solid var(--line);
    background: var(--panel);
    overflow: hidden;
  }

  .mobile-ledger-heading {
    padding: 14px;
  }

  .mobile-ledger-photo-row {
    display: flex;
    align-items: stretch;
    gap: 4px;
    width: 100%;
    margin-bottom: 12px;
  }

  .mobile-ledger-heading strong,
  .mobile-ledger-heading span {
    display: block;
  }

  .mobile-ledger-heading strong {
    margin-bottom: 4px;
  }

  .mobile-ledger-heading span {
    color: var(--muted);
    font-size: 13px;
  }

  .mobile-ledger-card .ledger-photo {
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
    margin-bottom: 0;
  }

  .mobile-ledger-card .ledger-photo .ledger-vs {
    left: 50%;
    top: 48%;
    transform: translate(-50%, -50%);
    width: 38px;
    height: 38px;
    padding: 0;
    line-height: 1;
    font-size: 10px;
    text-align: center;
  }

  .mobile-ledger-card .ledger-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-ledger-card .ledger-summary div {
    padding: 10px;
  }

  .mobile-ledger-card .ledger-summary span {
    font-size: 10px;
  }

  .mobile-ledger-card .ledger-summary strong {
    font-size: 15px;
  }

  .table-wrap {
    overflow-x: visible;
  }

  table {
    min-width: 0;
  }

  thead {
    display: none;
  }

  tbody,
  tr,
  td {
    display: block;
    width: 100%;
  }

  tr {
    margin: -2px 0 10px;
    padding: 12px;
    border: 1px solid var(--line);
    background: var(--panel);
  }

  td {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 13px;
  }

  td:last-child {
    border-bottom: 0;
  }

  td::before {
    content: attr(data-label);
    color: var(--soft);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .mobile-ledger-card table {
    width: 100%;
    min-width: 0;
  }

  .mobile-ledger-card tr {
    margin: 0;
    border-right: 0;
    border-left: 0;
  }

  .mobile-ledger-card td {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 8px;
    font-size: 12px;
    overflow-wrap: anywhere;
  }

  .mobile-ledger-card .result {
    min-width: 0;
    width: max-content;
    max-width: 100%;
  }

  .pick-toolbar,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* UX, mobile, SEO-content enhancements */
:focus-visible {
  outline: 3px solid var(--cyan-2);
  outline-offset: 3px;
}

.text-button {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: var(--cyan-2);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.proof-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-block: 1px solid var(--line);
  background: var(--line);
}

.proof-strip article {
  position: relative;
  min-height: 132px;
  padding: 24px clamp(18px, 5vw, 76px);
  background: linear-gradient(180deg, #081019, #060b10);
}

.proof-strip article:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 26px;
  right: 20px;
  color: rgba(119, 229, 255, 0.46);
  font-size: 22px;
  font-weight: 900;
}

.proof-strip strong,
.proof-strip p {
  display: block;
}

.proof-strip strong {
  margin-bottom: 8px;
  color: var(--text);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.proof-strip p {
  max-width: 36ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.45;
}

.proof-strip-compact article {
  min-height: 112px;
  padding-block: 20px;
}

.event-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 clamp(18px, 5vw, 76px) 18px;
}

.event-trust-strip > div {
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid rgba(119, 229, 255, 0.18);
  background: rgba(119, 229, 255, 0.055);
}

.event-trust-strip strong,
.event-trust-strip span {
  display: block;
}

.event-trust-strip strong {
  margin-bottom: 4px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.2;
}

.event-trust-strip span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.safety-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2.2vw, 28px);
  align-items: stretch;
  margin: 0 clamp(18px, 5vw, 76px) 18px;
  padding: 16px;
  border: 1px solid rgba(244, 184, 74, 0.18);
  background: rgba(244, 184, 74, 0.055);
}

.safety-strip > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 10px;
  align-content: start;
  min-width: 0;
}

.safety-label {
  flex: 0 0 auto;
  color: #ffd891;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.safety-strip p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.safety-strip strong {
  min-width: 0;
  color: var(--text);
  line-height: 1.2;
}

.safety-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: #ffd891;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-grid details {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.faq-grid summary {
  min-height: 54px;
  padding: 16px 18px;
  cursor: pointer;
  color: var(--text);
  font-weight: 850;
}

.faq-grid p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.footer a {
  color: var(--cyan-2);
}

@media (hover: hover) {
  .primary-button:hover,
  .secondary-button:hover,
  .header-cta:hover,
  .price-card a:hover,
  .price-card button:hover,
  .auth-trigger:hover,
  .mobile-auth-trigger:hover,
  .faq-grid summary:hover {
    filter: brightness(1.12);
    transform: translateY(-1px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 760px) {
  .hero-actions {
    flex-wrap: wrap;
  }
  .hero-actions > * {
    width: 100%;
  }

  .proof-strip,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip article {
    min-height: 0;
    padding: 18px;
  }

  .proof-strip article:not(:last-child)::after {
    top: auto;
    right: 18px;
    bottom: -16px;
    transform: rotate(90deg);
  }

  .safety-strip,
  .event-trust-strip {
    grid-template-columns: 1fr;
    margin: 0 18px 18px;
  }

  .safety-label {
    display: block;
    margin-bottom: 6px;
  }

  .mobile-menu a,
  .mobile-auth-trigger,
  .mobile-menu-cta,
  .primary-button,
  .secondary-button,
  .text-button,
  .price-card a,
  .price-card button,
  .access-teaser button,
  .access-teaser a {
    min-height: 48px;
  }

  .auth-modal {
    align-items: end;
    padding: 10px;
  }

  .auth-dialog {
    max-height: calc(100svh - 20px);
    overflow: auto;
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }
}

/* Hero proof cards: keep the proof compact and persuasive on mobile. */
@media (max-width: 700px) {
  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-stats div {
    padding: 12px 10px;
  }

  .hero-stats dt {
    font-size: 10px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .hero-stats dd {
    font-size: 20px;
  }
}

/* Decision explainer + conversion polish */
.decision-section {
  padding-top: 0;
}

.decision-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(119, 229, 255, 0.18);
  background:
    radial-gradient(circle at top right, rgba(34, 198, 243, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

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

.decision-grid article {
  min-height: 190px;
  max-height: calc(100vh - 28px);
  overflow-y: auto;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(5, 8, 12, 0.68);
}

.decision-grid span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(34, 198, 243, 0.16);
  color: var(--cyan-2);
  font-weight: 900;
}

.decision-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-stats small {
  display: block;
  margin-top: 6px;
  color: var(--soft);
  font-size: 11px;
  line-height: 1.25;
}

.price-card.highlighted {
  position: relative;
}

.price-card.highlighted::before {
  content: none;
}
.plan-badge {
  display: inline-flex;
  align-self: flex-start;
  margin: -2px 0 10px;
  padding: 5px 8px;
  background: rgba(69, 212, 131, 0.14);
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-transform: uppercase;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 1040px) {
  .decision-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 116px;
  }

  .decision-grid {
    grid-template-columns: 1fr;
  }

  .decision-grid article {
    min-height: auto;
  }

  .hero-stats small {
    display: none;
  }

  .mobile-sticky-cta {
    position: fixed;
    z-index: 70;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(119, 229, 255, 0.24);
    background: rgba(5, 8, 12, 0.9);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  }

  .mobile-sticky-cta a,
  .mobile-sticky-cta button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 1px solid rgba(119, 229, 255, 0.3);
    color: var(--text);
    font: inherit;
    font-size: 13px;
    font-weight: 900;
  }

  .mobile-sticky-cta button {
    border: 0;
    background: var(--cyan);
    color: #031018;
  }
}

/* Event links and generated event pages. */
.event-link-grid,
.event-fight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.event-link-card,
.event-fight-card {
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.event-link-grid-preview .event-link-card {
  min-height: 210px;
}

.event-link-card-more {
  border-color: rgba(244, 178, 35, 0.38);
  background: linear-gradient(135deg, rgba(244, 178, 35, 0.12), rgba(34, 198, 243, 0.08)), var(--panel);
}

.event-archive-controls {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) repeat(2, minmax(140px, 180px));
  gap: 12px;
  margin-bottom: 18px;
}

.event-archive-controls label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.event-archive-controls input,
.event-archive-controls select {
  min-height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0 12px;
  font: inherit;
  font-weight: 700;
}

.event-archive-list {
  display: grid;
  gap: 10px;
}

.event-archive-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) minmax(170px, auto);
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.event-archive-row span,
.event-year-jumps a {
  color: var(--cyan-2);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.event-archive-row a {
  font-weight: 900;
}

.event-archive-row p,
.event-archive-empty,
.event-archive-more {
  color: var(--muted);
  margin: 0;
}

.event-year-jumps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.event-year-jumps a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(119, 229, 255, 0.28);
  background: rgba(34, 198, 243, 0.1);
}

.archive-heading-tight {
  margin-bottom: 18px;
}

.event-archive-tree {
  display: grid;
  gap: 16px;
}

.event-archive-year,
.event-archive-month {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.event-archive-year > summary,
.event-archive-month > summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  list-style: none;
  padding: 0 18px;
}

.event-archive-year > summary::before,
.event-archive-month > summary::before {
  content: "▾";
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(119, 229, 255, 0.24);
  color: var(--cyan-2);
  font-size: 12px;
  margin-right: 2px;
}

.event-archive-year:not([open]) > summary::before,
.event-archive-month:not([open]) > summary::before {
  content: "▸";
}

.event-archive-year > summary::-webkit-details-marker,
.event-archive-month > summary::-webkit-details-marker {
  display: none;
}

.event-archive-year > summary span,
.event-archive-month > summary span {
  color: var(--text);
  font-weight: 900;
}

.event-archive-year > summary strong,
.event-archive-month > summary strong {
  color: var(--cyan-2);
  font-size: 12px;
  text-transform: uppercase;
}

.event-archive-month {
  margin: 0 16px 14px;
  background: rgba(5, 8, 12, 0.42);
}

.event-archive-month .event-archive-list {
  padding: 0 14px 14px;
}

.matchup-stat-table {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--panel);
}

.matchup-stat-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.matchup-stat-table th,
.matchup-stat-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.matchup-stat-table th {
  color: var(--cyan-2);
  font-size: 12px;
  text-transform: uppercase;
}

.matchup-stat-table td:first-child {
  color: var(--muted);
  font-weight: 850;
}

.matchup-stat-table .stat-favorable {
  color: #8dffb0;
  font-weight: 950;
  background: rgba(61, 220, 132, 0.1);
}

.matchup-read-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.matchup-read-card {
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.matchup-read-card span {
  display: block;
  color: var(--cyan-2);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.matchup-read-card strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.04;
}

.matchup-read-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.matchup-read-primary {
  border-color: rgba(119, 229, 255, 0.32);
  background: rgba(34, 198, 243, 0.08);
}

.matchup-reasoning {
  max-width: 940px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.matchup-reasoning p:last-child {
  margin-bottom: 0;
}

.events-archive-page .archive-hero {
  padding: 128px clamp(18px, 5vw, 76px) 36px;
}

.events-archive-page .archive-hero-copy {
  max-width: 920px;
}

.events-archive-page .archive-hero h1 {
  font-size: clamp(38px, 5vw, 68px);
}

.event-page .site-header .desktop-nav,
.events-archive-page .site-header .nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.matchup-page {
  overflow-x: hidden;
}

.matchup-page .event-hero-main-card h1 {
  font-size: clamp(38px, 5.8vw, 72px);
}

.events-archive-page #archive-controls {
  padding-top: 24px;
}

.events-archive-page .event-archive-row p {
  overflow-wrap: anywhere;
}

.event-link-card span,
.fight-card-topline {
  color: var(--cyan-2);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.event-link-card p,
.event-fight-card p,
.event-fight-card dd {
  color: var(--muted);
}

.event-link-card h3 {
  margin-bottom: 8px;
}

.event-link-card h3 a:hover,
.ledger-event-link:hover,
.event-link-cta:hover {
  color: var(--cyan-2);
}

.event-link-cta,
.ledger-event-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-top: 8px;
  padding: 0 12px;
  border: 1px solid rgba(119, 229, 255, 0.28);
  background: rgba(34, 198, 243, 0.1);
  color: var(--text);
  font-size: 13px;
  font-weight: 850;
}

.ledger-event-link {
  position: relative;
  z-index: 2;
}

.ledger-list-item {
  display: grid;
  gap: 8px;
  padding: 0;
}

.ledger-list-item.active > button {
  border-color: rgba(34, 198, 243, 0.72);
  background: rgba(34, 198, 243, 0.08);
}

.ledger-list-item .ledger-event-link {
  justify-content: center;
  width: 100%;
  margin-top: 0;
}

.event-page .site-header {
  position: sticky;
  top: 0;
  width: 100%;
}

.event-page .event-hero-clean,
.event-page .event-hero-main-card,
.event-page #fights {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  margin: 0;
}

.event-page .event-hero-clean,
.event-page .event-hero-main-card {
  display: grid;
  gap: 18px;
  padding: 102px clamp(18px, 5vw, 76px) 58px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 75, 75, 0.12), transparent 30%),
    radial-gradient(circle at 90% 12%, rgba(52, 140, 255, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    var(--bg);
}

.event-page .event-hero-copy {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.event-page .event-hero-clean h1,
.event-page .event-hero-main-card h1 {
  max-width: min(100%, 980px);
  margin: 8px 0 16px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.event-page .event-hero-clean .large-copy,
.event-page .event-hero-main-card .large-copy {
  max-width: min(100%, 880px);
  margin: 0 auto;
  font-size: clamp(17px, 1.35vw, 22px);
}

.event-page .event-hero-clean .hero-actions,
.event-page .event-hero-main-card .hero-actions {
  justify-content: center;
  margin-inline: auto;
}

.event-meta,
.rich-event-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(170px, 1fr));
  gap: 10px;
  width: 100%;
  max-width: min(100%, 980px);
  margin: 28px auto;
  position: relative;
  z-index: 1;
}

.event-meta div,
.event-fight-card dl div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
}

.event-meta dt,
.event-fight-card dt {
  color: var(--soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.event-meta dd,
.event-fight-card dd {
  margin: 4px 0 0;
  font-weight: 760;
}

.event-page .hero-main-fighter {
  display: grid;
  gap: 12px;
  justify-items: center;
  align-self: center;
  margin: 0;
  min-width: 0;
}

.event-page .hero-main-fighter img {
  width: min(100%, clamp(170px, 20vw, 320px));
  height: clamp(210px, 28vw, 400px);
  border-radius: 28px;
  object-fit: cover;
  object-position: center top;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.event-page .hero-main-fighter figcaption {
  max-width: 280px;
  color: var(--text);
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.event-page .hero-main-red img {
  box-shadow: 0 0 0 3px rgba(255, 75, 75, 0.3), var(--shadow);
}

.event-page .hero-main-blue img {
  box-shadow: 0 0 0 3px rgba(52, 140, 255, 0.32), var(--shadow);
}

.event-page #fights {
  scroll-margin-top: 92px;
  padding: clamp(64px, 5vw, 96px) clamp(32px, 5vw, 96px);
}

.event-page #fights .section-heading {
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.7fr);
  gap: clamp(28px, 4vw, 70px);
}

.event-page .compact-event-grid {
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 560px), 1fr));
  gap: clamp(16px, 1.8vw, 28px);
  align-items: stretch;
}

.event-page .compact-fight-card {
  min-width: 0;
  height: 100%;
  min-height: 0;
  padding: clamp(20px, 2vw, 32px);
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.025)), var(--panel);
}

.event-page .settled-fight-card {
  position: relative;
  min-height: 0;
  padding: clamp(10px, 1vw, 16px);
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.event-page .settled-fight-card::before {
  content: none;
}

.fight-card-topline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  font-weight: 900;
}

.settled-fight-card .fight-card-topline {
  margin-bottom: 6px;
}

.pick-outcome-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pick-outcome-win .pick-outcome-badge {
  background: rgba(69, 212, 131, 0.18);
  color: #a8f7c8;
}

.pick-outcome-loss .pick-outcome-badge {
  background: rgba(255, 98, 98, 0.18);
  color: #ffb6b6;
}

.pick-outcome-pass .pick-outcome-badge,
.pick-outcome-push .pick-outcome-badge {
  background: rgba(244, 184, 74, 0.16);
  color: #ffd990;
}

.compact-matchup {
  display: grid;
  grid-template-columns: clamp(88px, 8vw, 132px) minmax(0, 1fr) clamp(88px, 8vw, 132px);
  gap: clamp(14px, 2vw, 30px);
  align-items: center;
}

.settled-fight-card .compact-matchup {
  grid-template-columns: clamp(58px, 5.5vw, 82px) minmax(0, 1fr) clamp(58px, 5.5vw, 82px);
  gap: clamp(8px, 1vw, 14px);
}

.corner {
  position: relative;
  display: grid;
  gap: 6px;
  justify-items: center;
  min-width: 0;
  text-align: center;
}

.event-page .corner img {
  width: clamp(78px, 7vw, 118px);
  height: clamp(78px, 7vw, 118px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  object-fit: cover;
  object-position: center top;
  background: rgba(255, 255, 255, 0.04);
}

.corner-red img {
  box-shadow: 0 0 0 2px rgba(255, 75, 75, 0.22);
}

.corner-blue img {
  box-shadow: 0 0 0 2px rgba(52, 140, 255, 0.24);
}

.event-page .corner-picked img {
  border-color: rgba(69, 212, 131, 0.82);
  box-shadow: 0 0 0 3px rgba(69, 212, 131, 0.34), 0 0 28px rgba(69, 212, 131, 0.22);
}

.event-page .corner-picked::after {
  content: "Value pick";
  margin-top: 2px;
  padding: 5px 9px;
  border: 1px solid rgba(69, 212, 131, 0.52);
  border-radius: 999px;
  background: rgba(69, 212, 131, 0.16);
  color: #a8f7c8;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.event-page .settled-fight-card .corner img {
  width: clamp(50px, 4.5vw, 66px);
  height: clamp(50px, 4.5vw, 66px);
}

.event-page .corner strong {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  max-width: 170px;
  color: var(--text);
  font-size: clamp(12px, 0.95vw, 16px);
  line-height: 1.15;
}

.event-page .corner-odds-pill {
  min-height: 23px;
  font-size: 12px;
}

.event-page .corner-record {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
}

.matchup-title {
  min-width: 0;
  text-align: center;
}

.event-page .matchup-title h2 {
  margin: 0 0 4px;
  font-size: clamp(24px, 2vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.event-page .settled-fight-card .matchup-title h2 {
  font-size: clamp(18px, 1.35vw, 24px);
}

.matchup-title p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.settled-pick-summary {
  display: inline-grid;
  gap: 1px;
  min-width: min(100%, 220px);
  margin: 5px auto 0;
  padding: 6px 9px;
  vertical-align: top;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
  text-align: center;
}

.settled-pick-summary span {
  color: var(--soft);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.settled-pick-summary strong {
  color: var(--text);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.1;
}

.settled-pick-summary em {
  color: var(--muted);
  font-size: clamp(15px, 1.1vw, 18px);
  font-style: normal;
  font-weight: 950;
}

.upcoming-odds-summary,
.read-summary,
.event-page .matchup-title .matchup-breakdown-link {
  box-sizing: border-box;
  width: min(100%, 240px);
  min-height: 52px;
  margin: 8px auto 0;
  border-radius: 0;
  vertical-align: top;
}

.upcoming-odds-summary,
.read-summary {
  border-color: rgba(119, 229, 255, 0.22);
  background: rgba(255, 255, 255, 0.065);
}

.upcoming-odds-summary span:first-child,
.read-summary span:first-child {
  color: rgba(223, 240, 255, 0.68);
}

.upcoming-odds-summary strong,
.read-summary strong {
  color: #f6fbff;
  font-size: clamp(17px, 1.25vw, 21px);
}

.event-page .matchup-title .matchup-breakdown-link {
  justify-content: center;
  padding: 6px 9px;
  border-color: rgba(119, 229, 255, 0.24);
  background: rgba(34, 198, 243, 0.08);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.02em;
  line-height: 1.1;
}


.corner-odds-red {
  color: #ffb6b6;
}

.corner-odds-blue {
  color: #9fc8ff;
}

.event-page .upcoming-odds-summary .corner-odds-red {
  color: #ff6262;
}

.event-page .upcoming-odds-summary .corner-odds-blue {
  color: #77a8ff;
}

.odds-divider {
  margin: 0 5px;
  color: var(--soft);
}

.upcoming-odds-summary .odds-divider {
  color: rgba(223, 240, 255, 0.7);
}

.pick-outcome-win .outcome-money {
  color: #a8f7c8;
}

.pick-outcome-loss .outcome-money {
  color: #ffb6b6;
}

.pick-outcome-pass .outcome-money,
.pick-outcome-push .outcome-money {
  color: #ffd990;
}

.pick-outcome-win .settled-pick-summary {
  border-color: rgba(69, 212, 131, 0.34);
}

.pick-outcome-win .settled-pick-summary em {
  color: #a8f7c8;
}

.pick-outcome-loss .settled-pick-summary {
  border-color: rgba(255, 98, 98, 0.36);
}

.pick-outcome-loss .settled-pick-summary em {
  color: #ffb6b6;
}

.fight-card-details {
  margin-top: clamp(6px, 0.7vw, 10px);
}

.fight-card-details summary {
  display: flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(119, 229, 255, 0.18);
  background: rgba(255, 255, 255, 0.035);
  color: var(--cyan-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.fight-card-details summary::-webkit-details-marker {
  display: none;
}

.fight-card-details summary::after {
  content: "+";
  margin-left: 8px;
  font-size: 18px;
}

.fight-card-details[open] summary::after {
  content: "−";
}

.event-page .compact-fight-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(8px, 1vw, 14px);
  margin: clamp(18px, 2vw, 28px) 0 10px;
}

.event-page .compact-fight-metrics div {
  min-width: 0;
  padding: clamp(12px, 1.2vw, 18px);
}

.compact-fight-metrics dt {
  color: var(--soft);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.event-page .compact-fight-metrics dd {
  overflow-wrap: anywhere;
  color: var(--text);
  white-space: normal;
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 850;
}

.corner-stat-table {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.09);
}

.corner-stat-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  padding: 6px 9px;
  background: var(--panel);
  font-size: 12px;
}

.corner-stat-row strong {
  color: var(--soft);
  font-size: 10px;
  text-transform: uppercase;
}

.corner-stat-row span:first-child {
  color: #ff9a9a;
  text-align: left;
  font-weight: 850;
}

.corner-stat-row span:last-child {
  color: #9fc4ff;
  text-align: right;
  font-weight: 850;
}

@media (min-width: 981px) {
  .event-page .event-hero-main-card {
    grid-template-columns: minmax(150px, 0.45fr) minmax(0, 1.7fr) minmax(150px, 0.45fr);
    gap: clamp(18px, 2.6vw, 50px);
    align-items: center;
    padding: clamp(54px, 5vw, 82px) clamp(32px, 5vw, 96px);
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .event-page .event-hero-main-card {
    grid-template-columns: minmax(120px, 0.35fr) minmax(0, 1.9fr) minmax(120px, 0.35fr);
  }

  .event-page .hero-main-fighter img {
    width: min(100%, 210px);
    height: 270px;
  }

  .event-page #fights .section-heading,
  .event-page .compact-event-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1040px) {
  .event-link-grid,
  .event-fight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-page .site-header .desktop-nav {
    display: none;
  }

  .event-archive-controls,
  .event-archive-row,
  .matchup-read-grid {
    grid-template-columns: 1fr;
  }

  .event-page .site-header {
    grid-template-columns: auto 1fr;
  }
}

@media (max-width: 980px) {
  .event-page .event-hero-main-card {
    grid-template-columns: 1fr 1fr;
  }

  .event-page .hero-main-fighter {
    grid-row: 1;
  }

  .event-page .event-hero-main-card .event-hero-copy {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .event-page .hero-main-fighter img {
    width: min(42vw, 220px);
    height: min(52vw, 270px);
    border-radius: 20px;
  }

  .event-page .hero-main-fighter figcaption {
    font-size: 14px;
  }

  .event-page #fights .section-heading,
  .event-page .compact-event-grid,
  .event-page .rich-event-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .event-link-grid,
  .event-fight-grid,
  .event-meta,
  .rich-event-meta {
    grid-template-columns: 1fr;
  }

  .event-page .event-hero-clean,
  .event-page .event-hero-main-card {
    padding-top: 94px;
  }

  .matchup-page .event-hero-main-card {
    gap: 12px;
    padding-inline: 18px;
  }

  .matchup-page .hero-main-fighter img {
    width: min(38vw, 150px);
    height: min(48vw, 190px);
  }

  .matchup-page .event-hero-main-card h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .matchup-page .matchup-stat-table table {
    min-width: 0;
  }

  .matchup-page .matchup-stat-table thead {
    display: none;
  }

  .matchup-page .matchup-stat-table tbody,
  .matchup-page .matchup-stat-table tr,
  .matchup-page .matchup-stat-table td {
    display: block;
  }

  .matchup-page .matchup-stat-table tr {
    padding: 14px;
    border-bottom: 1px solid var(--line);
  }

  .matchup-page .matchup-stat-table td {
    border: 0;
    padding: 6px 0;
  }

  .matchup-page .matchup-stat-table td:first-child {
    color: var(--cyan-2);
    font-size: 12px;
    text-transform: uppercase;
  }

  .matchup-page .matchup-stat-table td[data-fighter] {
    display: flex;
    justify-content: space-between;
    gap: 12px;
  }

  .matchup-page .matchup-stat-table td[data-fighter]::before {
    content: attr(data-fighter);
    color: var(--muted);
    font-weight: 850;
  }

  .compact-matchup {
    grid-template-columns: 70px minmax(0, 1fr) 70px;
    gap: 8px;
  }

  .event-page .compact-fight-card {
    min-height: 0;
    padding: 14px;
  }

  .event-page .corner img {
    width: 46px;
    height: 46px;
  }

  .event-page .corner strong {
    font-size: 10px;
  }

  .event-page .matchup-title h2 {
    font-size: 18px;
  }

  .settled-pick-summary {
    margin-top: 5px;
    padding: 6px 8px;
  }

  .fight-card-details:not([open]) {
    margin-top: 6px;
  }

  .event-page .matchup-title .read-summary,
  .event-page .matchup-title .matchup-breakdown-link {
    display: inline-flex;
    width: min(100%, 240px);
    height: 82px;
    min-height: 82px;
    align-items: center;
    justify-content: center;
    margin: 8px 0 0;
    padding-block: 0;
  }

  .event-page .matchup-title .read-summary {
    display: inline-grid;
    align-content: center;
  }

  .event-page .compact-fight-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-page:not(.matchup-page) #odds .table-wrap td:nth-child(1)::before {
    content: "#";
  }

  .event-page:not(.matchup-page) #odds .table-wrap td:nth-child(2)::before {
    content: "Matchup";
  }

  .event-page:not(.matchup-page) #odds .table-wrap td:nth-child(3)::before {
    content: "Odds";
  }

  .event-page:not(.matchup-page) #odds .table-wrap td:nth-child(4)::before {
    content: "Read";
  }

  .event-page:not(.matchup-page) #odds .table-wrap td:nth-child(5)::before {
    content: "Preview";
  }
}

@media (max-width: 840px) {
  .pick-grid {
    grid-template-columns: 1fr;
  }

  .versus-module {
    grid-template-columns: minmax(0, 1fr) 52px minmax(0, 1fr);
    gap: 8px;
    align-items: stretch;
  }

  .fighter-identity-row {
    display: grid;
    gap: 8px;
  }

  .fighter-market-odds {
    width: 100%;
    min-width: 0;
    text-align: left;
  }

  .versus-center {
    min-height: auto;
    padding: 8px 4px;
  }

  .versus-center span {
    width: 38px;
    height: 38px;
  }

  .versus-center small,
  .versus-center strong,
  .versus-center em {
    display: none;
  }
}

/* Profile page */
.profile-page {
  background:
    radial-gradient(circle at 16% 10%, rgba(34, 198, 243, 0.14), transparent 34%),
    radial-gradient(circle at 84% 0%, rgba(244, 184, 74, 0.1), transparent 28%),
    var(--bg);
}

.profile-header {
  position: sticky;
}

.profile-main {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.profile-hero {
  max-width: 760px;
  margin-bottom: 28px;
}

.profile-hero h1 {
  font-size: clamp(42px, 5vw, 74px);
}

.profile-auth-slot {
  min-height: 720px;
}

.profile-auth-loading #profile-content {
  visibility: hidden;
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  gap: 18px;
}

.profile-card,
.profile-login-panel {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
  padding: 20px;
}

.profile-wide-card {
  grid-column: 1 / -1;
}

.profile-facts,
.profile-stats {
  display: grid;
  gap: 10px;
}

.profile-facts div,
.profile-stats div,
.profile-session-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 8, 12, 0.42);
  padding: 12px;
}

.profile-facts dt,
.profile-stats span,
.profile-session-card span,
.profile-session-card p {
  color: var(--muted);
  font-size: 13px;
}

.profile-facts dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.profile-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.profile-stats strong {
  display: block;
  margin-top: 4px;
  font-size: 26px;
}

.profile-badge {
  display: inline-flex;
  margin: 0 5px 5px 0;
  padding: 4px 8px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.profile-badge.on {
  border-color: rgba(69, 212, 131, 0.48);
  color: #9cffc3;
}

.profile-badge.warn {
  border-color: rgba(244, 184, 74, 0.48);
  color: var(--amber);
}

.profile-section-head,
.profile-session-card,
.profile-session-metrics,
.profile-session-card li {
  display: flex;
  gap: 12px;
}

.profile-section-head,
.profile-session-card {
  justify-content: space-between;
}

.profile-session-list {
  display: grid;
  gap: 12px;
}

.profile-session-card {
  flex-direction: column;
}

.profile-session-metrics,
.profile-session-card ul {
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.profile-session-card li {
  justify-content: space-between;
  min-width: min(100%, 260px);
  padding: 8px 10px;
  border: 1px solid rgba(69, 212, 131, 0.16);
  background: rgba(69, 212, 131, 0.06);
}

.profile-empty {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(244, 184, 74, 0.32);
  background: rgba(244, 184, 74, 0.08);
}

.profile-empty a {
  width: fit-content;
  color: #031018;
  background: var(--cyan);
  padding: 11px 14px;
  font-weight: 900;
}

@media (max-width: 780px) {
  .profile-grid,
  .profile-stats {
    grid-template-columns: 1fr;
  }

  .profile-main {
    width: min(100% - 24px, 1180px);
    padding-top: 42px;
  }

  .profile-auth-slot {
    min-height: 860px;
  }
}


.profile-account-card h2,
.profile-facts dd {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.profile-account-card h2 {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
}

.profile-facts dd {
  min-width: 0;
}

/* Registration age confirmation alignment */
.auth-form label.auth-age-confirm {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(244, 184, 74, 0.35);
  background: rgba(244, 184, 74, 0.08);
  color: var(--text);
  font-weight: 850;
}

.auth-form label.auth-age-confirm input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin: 0;
  padding: 0;
  flex: 0 0 18px;
  accent-color: var(--cyan);
}

.auth-form label.auth-age-confirm span {
  display: block;
  line-height: 1.25;
  transform: translateY(1px);
}

.auth-mode-login .auth-form label.auth-age-confirm,
.auth-mode-login .auth-form label.auth-register-only {
  display: none;
}

.footer-link-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner {
  position: fixed;
  z-index: 120;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  left: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: min(440px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  overflow-y: auto;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(8, 13, 19, 0.94);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(18px);
}

.cookie-banner strong {
  display: block;
  margin-bottom: 3px;
  font-size: 15px;
}

.cookie-banner p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.cookie-copy {
  pointer-events: none;
}

.cookie-copy a {
  pointer-events: auto;
}

.cookie-actions {
  position: relative;
  z-index: 1;
}

.cookie-banner a {
  color: var(--cyan-2);
  font-size: 12px;
  font-weight: 800;
}

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

.cookie-actions button,
.cookie-choices button {
  min-height: 40px;
  border: 1px solid rgba(119, 229, 255, 0.28);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.cookie-actions .cookie-action-primary,
.cookie-choices .cookie-action-primary {
  border-color: rgba(34, 198, 243, 0.76);
  background: var(--cyan);
  color: #031018;
  box-shadow: 0 10px 24px rgba(34, 198, 243, 0.2);
}

.cookie-actions .cookie-action-secondary:hover,
.cookie-choices .cookie-action-secondary:hover {
  border-color: rgba(119, 229, 255, 0.48);
  background: rgba(119, 229, 255, 0.1);
}

.cookie-choices {
  display: grid;
  gap: 9px;
  margin-top: 0;
  padding: 12px;
  border: 1px solid rgba(34, 211, 238, 0.32);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.64);
}

.cookie-choices[hidden] {
  display: none !important;
}

.cookie-choices-title {
  color: var(--cyan-2);
  font-size: 13px;
}

.cookie-choices label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 8px;
  align-items: start;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.cookie-choices input {
  margin-top: 3px;
}

.cookie-choices span {
  grid-column: 2;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
}

.cookie-choices button {
  justify-self: stretch;
}

@media (max-width: 720px) {
  .cookie-banner {
    right: 10px;
    bottom: max(128px, env(safe-area-inset-bottom));
    left: 10px;
    width: auto;
    max-height: calc(100svh - 148px);
  }

  .cookie-actions {
    grid-template-columns: 1fr;
  }

  .cookie-actions button,
  .cookie-choices button {
    width: 100%;
  }
}

.contact-form {
  display: grid;
  gap: 14px;
  max-width: 760px;
}
.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.92rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.68);
  color: var(--text);
  padding: 12px 14px;
  font: inherit;
}
.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}
.contact-actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: 4px;
}
.contact-form button[type="submit"],
.contact-submit {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 168px;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  background: var(--accent);
  color: #04110f;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(34, 211, 238, 0.22);
  opacity: 1;
  visibility: visible;
}
.contact-form button[disabled] {
  opacity: 0.65;
  cursor: wait;
}
.contact-status {
  min-height: 1.4em;
  color: var(--accent);
  margin: 0;
}
.contact-status.is-error {
  color: #fca5a5;
}
.contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.small-copy {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 640px) {
  .contact-actions,
  .contact-form button[type="submit"],
  .contact-submit {
    width: 100%;
  }
}


#pricing[hidden] {
  display: none !important;
}
#pricing.is-registered-funnel .access-panel {
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  align-items: center;
}
#pricing.is-registered-funnel .pricing-grid {
  grid-template-columns: minmax(280px, 420px);
  justify-content: end;
}
#pricing.is-registered-funnel .price-card.highlighted {
  min-height: 0;
}
@media (max-width: 1040px) {
  #pricing.is-registered-funnel .access-panel {
    grid-template-columns: 1fr;
  }
  #pricing.is-registered-funnel .pricing-grid {
    justify-content: stretch;
  }
}


.price-card[hidden],
[data-access-card][hidden] {
  display: none !important;
}

/* Contact form submit must remain visible even when combined with global button styles. */
.contact-form .contact-submit,
.contact-form button.contact-submit[type="submit"] {
  background: linear-gradient(135deg, #22d3ee, #45d483) !important;
  color: #031014 !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 16px 34px rgba(34, 211, 238, 0.28) !important;
  text-shadow: none !important;
}
.contact-form .contact-submit::before,
.contact-form .contact-submit::after {
  content: none !important;
}

.odds-apply-button {
  align-self: end;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(34, 211, 238, 0.45);
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.14);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}
.odds-apply-button:disabled {
  opacity: 0.55;
  cursor: default;
}
.odds-lab input.is-invalid {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.18);
}

.profile-session-card.is-actual {
  border-color: rgba(69, 212, 131, 0.55);
  box-shadow: 0 0 0 1px rgba(69, 212, 131, 0.18), 0 18px 40px rgba(69, 212, 131, 0.08);
}
.profile-variant-list .profile-session-card button,
.profile-performance-list .profile-session-card button {
  justify-self: start;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(34, 211, 238, 0.45);
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.14);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
}
.profile-variant-list .profile-session-card button:disabled,
.profile-performance-list .profile-session-card button:disabled {
  opacity: 0.6;
  cursor: default;
}

.variant-name-field {
  display: grid;
  gap: 6px;
  min-width: min(100%, 260px);
}
.variant-name-field span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.variant-name-field input {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 0 12px;
}
.profile-session-card small {
  color: var(--muted);
}

.profile-pick-list {
  display: grid;
  gap: 8px;
  max-height: none;
}
.profile-pick-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.profile-pick-list li span {
  color: var(--muted);
  text-align: right;
}
@media (max-width: 640px) {
  .profile-pick-list li {
    display: grid;
    gap: 2px;
  }
  .profile-pick-list li span {
    text-align: left;
  }
}

/* Premium saved-card variant controls */
.variant-save-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(150px, 220px);
  align-items: end;
  gap: 10px 12px;
  width: 100%;
}
.variant-save-panel #save-variant-button {
  min-height: 46px;
  height: 46px;
  align-self: end;
  padding: 0 18px;
  border-radius: 12px;
  white-space: nowrap;
}
.variant-save-panel .variant-save-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 600;
}
.variant-save-panel .variant-save-note a {
  color: var(--cyan);
  font-weight: 800;
  text-decoration: none;
}
.variant-save-panel .variant-name-field {
  min-width: 0;
}
.variant-save-panel .variant-name-field input {
  width: 100%;
  min-height: 46px;
}
@media (max-width: 760px) {
  .variant-save-panel {
    grid-template-columns: 1fr;
  }
  .variant-save-panel #save-variant-button {
    width: 100%;
  }
}

.fighter-identity-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.fighter-market-odds {
  flex: 0 0 auto;
  min-width: 92px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 8, 12, 0.32);
  text-align: right;
}

.fighter-market-odds span {
  display: block;
  color: var(--soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fighter-market-odds strong {
  display: block;
  color: var(--text);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.1;
}

.fighter-market-odds.stat-edge {
  border-color: rgba(69, 212, 131, 0.38);
  background: rgba(69, 212, 131, 0.09);
}

.fighter-market-odds.stat-edge strong {
  color: var(--green);
}

.locked-field {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.locked-field > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.locked-field-action,
.compare-section-locked button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(119, 229, 255, 0.28);
  border-radius: 999px;
  background: rgba(34, 198, 243, 0.14);
  color: var(--text);
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.compare-section-locked button {
  justify-self: start;
  margin-top: 4px;
}

.custom-odds-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(119, 229, 255, 0.18);
  background: rgba(119, 229, 255, 0.05);
}

.custom-odds-cta span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.odds-lab-heading {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 2px;
}

.odds-lab-heading strong {
  color: var(--cyan-2);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.odds-lab-heading a {
  color: var(--text);
  font-size: 12px;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tier-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid rgba(119, 229, 255, 0.35);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(34, 198, 243, 0.22), rgba(119, 229, 255, 0.10));
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(34, 198, 243, 0.12);
}

.tier-action-button:hover,
.tier-action-button:focus-visible {
  border-color: rgba(119, 229, 255, 0.65);
  transform: translateY(-1px);
}


.metric-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  width: fit-content;
  padding: 0 14px;
  border: 1px solid rgba(119, 229, 255, 0.36);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(34, 198, 243, 0.2), rgba(119, 229, 255, 0.08));
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.metric-cta-button:hover,
.metric-cta-button:focus-visible {
  border-color: rgba(119, 229, 255, 0.68);
  transform: translateY(-1px);
}

.compact-access-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 0;
}

.compact-access-metrics > div {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.compact-access-metrics dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.compact-access-metrics dd {
  margin: 0;
}

.registered-allocation-value {
  display: none;
}

.event-registered-view .visitor-allocation-cta {
  display: none;
}

.event-registered-view .registered-allocation-value {
  display: inline;
}

.premium-calculate-cta {
  display: none;
}

.event-premium-view .non-premium-custom-odds-cta {
  display: none;
}

.event-premium-view .premium-calculate-cta {
  display: inline-flex;
}


.event-access-pending .visitor-allocation-cta,
.event-access-pending .non-premium-custom-odds-cta {
  visibility: hidden;
}

.seo-summary-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-summary-list li {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 16px;
  color: #d8e2e9;
  background: rgba(255, 255, 255, 0.035);
}

@media (max-width: 760px) {
  .seo-summary-list {
    grid-template-columns: 1fr;
  }
}

/* Events archive visual redesign. */
.events-archive-page .archive-hero-visual {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: center;
  min-height: 0;
  padding-top: 128px;
  background:
    radial-gradient(circle at 18% 12%, rgba(209, 31, 43, 0.16), transparent 34%),
    radial-gradient(circle at 88% 10%, rgba(34, 198, 243, 0.18), transparent 32%),
    var(--bg);
}

.events-archive-page .archive-hero-copy {
  max-width: 760px;
}

.events-archive-page .archive-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.archive-visual-card {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(119, 229, 255, 0.18);
  border-radius: 30px;
  background: rgba(8, 13, 19, 0.78);
  box-shadow: var(--shadow);
}

.archive-visual-image {
  position: absolute;
  inset: 0;
  opacity: 0.54;
}

.archive-visual-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 12, 0.08), rgba(5, 8, 12, 0.88));
}

.archive-visual-stack {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 10px;
}

.archive-visual-stack a {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(5, 8, 12, 0.78);
  backdrop-filter: blur(8px);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.archive-visual-stack a:hover,
.archive-visual-stack a:focus-visible {
  border-color: rgba(119, 229, 255, 0.42);
  transform: translateY(-1px);
}

.archive-visual-stack span,
.archive-visual-stack em {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  text-transform: uppercase;
}

.archive-visual-stack strong {
  display: block;
  margin: 4px 0;
  color: var(--text);
  font-size: 20px;
}

.archive-search-section {
  padding-top: 42px;
}

.archive-search-shell {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  padding: 24px;
  border: 1px solid rgba(119, 229, 255, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(34, 198, 243, 0.1), rgba(209, 31, 43, 0.06)),
    rgba(8, 13, 19, 0.9);
  box-shadow: var(--shadow);
}

.archive-search-copy h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 3.4vw, 44px);
}

.archive-search-copy p:last-child {
  margin-bottom: 0;
}

.modern-archive-controls {
  align-items: end;
  margin-bottom: 0;
}

.modern-archive-controls input,
.modern-archive-controls select {
  border-radius: 18px;
  border-color: rgba(119, 229, 255, 0.22);
  background: rgba(3, 8, 13, 0.82);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.archive-search-field input {
  min-height: 58px;
  padding-left: 44px;
  background:
    radial-gradient(circle at 22px 50%, rgba(119, 229, 255, 0.8) 0 3px, transparent 4px),
    rgba(3, 8, 13, 0.82);
  font-size: 16px;
}

.archive-tree-section {
  padding-top: 58px;
}

.event-archive-tree .event-archive-year:not([open]),
.event-archive-tree .event-archive-month:not([open]) {
  background: rgba(255, 255, 255, 0.025);
}

@media (max-width: 980px) {
  .events-archive-page .archive-hero-visual,
  .archive-search-shell {
    grid-template-columns: 1fr;
  }

  .archive-visual-card {
    min-height: 330px;
  }
}

@media (max-width: 700px) {
  .events-archive-page .site-header {
    grid-template-columns: 1fr;
    justify-items: start;
    min-height: 70px;
    padding-inline: 18px;
  }

  .events-archive-page .site-header .brand {
    grid-column: 1;
    max-width: 210px;
  }

  .events-archive-page .site-header .brand-logo {
    max-width: 190px;
    height: auto;
    max-height: 48px;
  }

  .events-archive-page .site-header .nav {
    display: none;
  }

  .events-archive-page .archive-hero-visual {
    padding-top: 104px;
  }
}

@media (max-width: 360px) {
  .events-archive-page .site-header {
    width: 100%;
    max-width: 100vw;
  }

  .events-archive-page .archive-search-shell {
    padding: 16px;
  }

  .events-archive-page .archive-search-copy,
  .events-archive-page .modern-archive-controls,
  .events-archive-page .modern-archive-controls label,
  .events-archive-page .modern-archive-controls input,
  .events-archive-page .modern-archive-controls select {
    min-width: 0;
    max-width: 100%;
  }
}

.matchup-breakdown-link,
.ledger-matchup-link {
  color: var(--cyan-2);
  font-weight: 850;
  text-decoration: none;
}

.matchup-breakdown-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 8px 11px;
  border: 1px solid rgba(119, 229, 255, 0.28);
  border-radius: 999px;
  background: rgba(34, 198, 243, 0.08);
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.matchup-breakdown-link::after {
  content: "→";
}

.matchup-breakdown-link:hover,
.ledger-matchup-link:hover {
  color: var(--text);
  border-color: rgba(119, 229, 255, 0.52);
}

@media (max-width: 840px) {
  .pick-grid {
    grid-template-columns: 1fr;
  }

  .versus-module {
    grid-template-columns: minmax(0, 1fr) 52px minmax(0, 1fr);
    gap: 8px;
    align-items: stretch;
  }

  .fighter-identity-row {
    display: grid;
    gap: 8px;
  }

  .fighter-market-odds {
    width: 100%;
    min-width: 0;
    text-align: left;
  }

  .versus-center {
    min-height: auto;
    padding: 8px 4px;
  }

  .versus-center span {
    width: 38px;
    height: 38px;
  }

  .versus-center small,
  .versus-center strong,
  .versus-center em {
    display: none;
  }
}

@media (max-width: 840px) {
  body {
    overflow-x: hidden;
  }

  .ledger-layout {
    display: none;
  }

  .mobile-ledger-scroll-shell {
    position: relative;
    display: block;
    margin-inline: -18px;
  }

  .mobile-ledger-track {
    display: flex;
    gap: 14px;
    padding: 0 18px 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .mobile-ledger-card {
    flex: 0 0 calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }
}

/* Mobile visibility hotfix: keep primary content/actions above the first fold. */
@media (max-width: 700px) {
  .hero {
    min-height: auto;
    align-items: flex-start;
    padding: 96px 18px 42px;
  }

  .hero-image {
    height: 46%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.58;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 8, 12, 0.22) 0%, rgba(5, 8, 12, 0.88) 34%, var(--bg) 100%),
      linear-gradient(90deg, rgba(5, 8, 12, 0.94), rgba(5, 8, 12, 0.58));
  }

  .hero-content {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .event-page .event-hero-main-card {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 96px 18px 38px;
  }

  .event-page .event-hero-main-card .event-hero-copy {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .event-page .hero-main-fighter {
    grid-row: 2;
  }

  .event-page .hero-main-fighter img,
  .matchup-page .hero-main-fighter img {
    width: min(36vw, 128px);
    height: min(42vw, 150px);
    border-radius: 16px;
  }

  .event-page .hero-main-fighter figcaption {
    max-width: 130px;
    font-size: 12px;
  }

  .event-page .event-hero-main-card h1,
  .matchup-page .event-hero-main-card h1 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.02;
  }

  .event-page .event-hero-main-card .large-copy {
    font-size: 15px;
  }
}

@media (max-width: 700px) {
  .event-page .event-hero-copy .kicker,
  .event-page .event-hero-copy .main-event-label {
    order: 1;
  }

  .event-page .event-hero-copy h1 {
    order: 2;
  }

  .event-page .event-hero-copy .large-copy,
  .event-page .event-hero-copy > p:not(.kicker):not(.main-event-label) {
    order: 3;
  }

  .event-page .event-hero-copy .hero-actions {
    order: 4;
    margin: 18px 0 10px;
  }

  .event-page .event-hero-copy .event-meta,
  .event-page .event-hero-copy .rich-event-meta {
    order: 5;
    margin: 12px auto 0;
  }
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.footer-socials span {
  color: var(--soft);
  font-weight: 800;
}

.footer-socials a {
  min-height: 36px;
  padding: 8px 11px;
  border: 1px solid rgba(119, 229, 255, 0.24);
  border-radius: 999px;
  color: var(--cyan-2);
  font-weight: 800;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  border-color: rgba(119, 229, 255, 0.58);
  background: rgba(34, 198, 243, 0.11);
  color: var(--text);
}

/* 2026-05-18 PageSpeed contrast fixes: keep hero secondary actions legible over photo gradients. */
.hero-actions .text-button {
  border: 1px solid rgba(119, 229, 255, 0.34);
  background: rgba(5, 8, 12, 0.72);
  color: #bff4ff;
  justify-content: center;
  text-decoration-color: currentColor;
}
.calc-state-label {
  color: #b6c4cf;
}

/* Trust/performance preview proposal. */
.performance-preview-page .performance-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
  gap: 28px;
  align-items: stretch;
  padding-top: 120px;
}
.performance-hero-copy,
.performance-lock-card,
.performance-stats div,
.performance-card,
.rules-grid article,
.confidence-grid article,
.explicit-ledger-list article {
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
}
.performance-hero-copy,
.performance-lock-card { border-radius: 28px; padding: 32px; }
.performance-lock-card { display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.performance-lock-card span,
.performance-stats span,
.performance-card span,
.rules-grid span { color: var(--muted); text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; font-weight: 800; }
.performance-lock-card strong { font-size: clamp(1.35rem, 2.6vw, 2.25rem); line-height: 1.05; color: var(--text); }
.performance-lock-card p { color: var(--muted); margin: 0; }
.performance-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.performance-stats div { border-radius: 20px; padding: 20px; }
.performance-stats strong { display: block; margin-top: 8px; font-size: clamp(1.3rem, 2.4vw, 2rem); color: var(--text); }
.performance-smallprint { color: var(--muted); margin-top: 14px; }
.performance-card-grid { display: grid; grid-template-columns: repeat(4, minmax(240px, 1fr)); gap: 16px; }
.performance-card { border-radius: 24px; padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.performance-card strong { display: block; margin-top: 8px; color: var(--text); font-size: 1.05rem; line-height: 1.2; }
.performance-card p { color: var(--muted); margin: 6px 0 0; }
.performance-card dl { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 0; }
.performance-card dl div { border-radius: 14px; background: rgba(0,0,0,.2); padding: 10px; }
.performance-card dt { color: var(--muted); font-size: .72rem; }
.performance-card dd { margin: 4px 0 0; color: var(--text); font-weight: 800; }
.performance-card a { color: var(--accent); font-weight: 800; text-decoration: none; }
.rules-grid,
.confidence-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.rules-grid article,
.confidence-grid article { border-radius: 24px; padding: 22px; }
.rules-grid h3 { color: var(--text); margin: 12px 0 8px; }
.rules-grid p,
.confidence-grid span { color: var(--muted); margin: 0; }
.confidence-grid strong { color: var(--text); display: block; margin-bottom: 10px; }
.explicit-ledger-list { display: grid; gap: 12px; }
.explicit-ledger-list article { border-radius: 18px; padding: 18px 20px; }
.explicit-ledger-list strong { color: var(--text); display: block; margin-bottom: 8px; }
.explicit-ledger-list p { color: var(--muted); margin: 0; }
.is-positive { color: #42d392 !important; }
.is-negative { color: #ff6b6b !important; }
.is-neutral { color: var(--text) !important; }
@media (max-width: 980px) {
  .performance-preview-page .performance-hero,
  .performance-stats,
  .performance-card-grid,
  .rules-grid,
  .confidence-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .performance-preview-page .performance-hero,
  .performance-stats,
  .performance-card-grid,
  .rules-grid,
  .confidence-grid { grid-template-columns: 1fr; }
  .performance-hero-copy,
  .performance-lock-card { padding: 24px; }
}

/* Keep event read and breakdown CTAs paired without making the fight card feel heavy. */
.event-page .matchup-title .read-summary,
.event-page .matchup-title .matchup-breakdown-link {
  box-sizing: border-box;
  width: min(100%, 214px);
  height: 58px;
  min-height: 58px;
  margin: 6px 0 0;
  padding: 0 10px;
  align-items: center;
  justify-content: center;
}

.event-page .matchup-title .read-summary {
  display: inline-grid;
  align-content: center;
  gap: 0;
}

.event-page .matchup-title .read-summary span {
  font-size: 9px;
  letter-spacing: 0.02em;
}

.event-page .matchup-title .read-summary strong,
.event-page .matchup-title .read-summary em {
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.05;
}

.event-page .matchup-title .matchup-breakdown-link {
  display: inline-flex;
  font-size: 10px;
  letter-spacing: 0.01em;
}

.auth-value-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin: 10px 0 2px;
  padding: 0;
  list-style: none;
}

.auth-value-list li {
  padding: 7px 8px;
  border: 1px solid rgba(119, 229, 255, 0.2);
  background: rgba(119, 229, 255, 0.07);
  color: var(--text);
  font-size: 11px;
  font-weight: 780;
  line-height: 1.25;
}

.auth-password-row {
  position: relative;
  display: block;
}

.auth-password-row input {
  width: 100%;
  padding-right: 48px;
}

.auth-password-toggle,
.auth-forgot {
  border: 1px solid rgba(119, 229, 255, 0.24);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  font-weight: 760;
  cursor: pointer;
}

.auth-password-toggle {
  position: absolute;
  top: 50%;
  right: 6px;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  min-height: 0;
  padding: 0;
  border-radius: 999px;
  transform: translateY(-50%);
}

.auth-password-toggle svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  opacity: 0.9;
}

.auth-password-toggle[aria-pressed="true"] {
  color: var(--cyan-2);
  background: rgba(119, 229, 255, 0.12);
}

.auth-forgot {
  justify-self: start;
  min-height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--cyan-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.auth-form input[aria-invalid="true"] {
  border-color: rgba(255, 98, 98, 0.92);
  box-shadow: 0 0 0 2px rgba(255, 98, 98, 0.16);
}

.auth-age-confirm input[aria-invalid="true"] + span,
.auth-optin-choice[aria-invalid="true"] legend {
  color: #ffb0b0;
}

.auth-optin-choice[aria-invalid="true"] {
  border-color: rgba(255, 98, 98, 0.92);
  box-shadow: 0 0 0 2px rgba(255, 98, 98, 0.16);
}

.auth-forgot:disabled,
.auth-password-toggle:disabled {
  cursor: wait;
  opacity: 0.62;
}

@media (max-width: 560px) {
  .auth-value-list {
    grid-template-columns: 1fr;
  }
}


.pick-meta-tiered .locked-field {
  width: 100%;
  justify-content: space-between;
  gap: 10px;
}

.pick-meta-tiered .locked-field > span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.pick-meta-tiered .locked-field-action {
  flex: 0 0 auto;
}

.custom-odds-inline {
  margin: 0;
}

@media (max-width: 520px) {
  .pick-meta-tiered .locked-field {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
  }
}

.pick-meta .locked-field {
  display: flex;
  align-items: center;
}

@media (min-width: 521px) {
  .pick-meta-tiered .locked-field {
    flex-wrap: nowrap;
    min-height: 46px;
    padding: 8px 10px;
  }

  .pick-meta-tiered .locked-field > span {
    min-width: 0;
  }
}

.pick-meta-tiered .locked-field > span {
  padding: 0;
  border: 0;
}


@media (min-width: 701px) {
  .compact-access-metrics > div {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 9px 11px;
  }

  .compact-access-metrics dt {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-width: 0;
    line-height: 1.25;
  }

  .compact-access-metrics dd {
    justify-self: end;
  }

  .compact-access-metrics .metric-cta-button {
    min-height: 30px;
    padding: 0 11px;
    font-size: 12px;
    white-space: nowrap;
  }
}

@media (min-width: 701px) {
  .event-page .compact-access-metrics > div {
    padding: 8px 10px !important;
  }
}

/* Hidden tooltip bubbles should not create mobile horizontal scroll. */
.pass-info::after {
  display: none;
}

.pass-info:hover::after,
.pass-info:focus-visible::after {
  display: block;
}

@media (max-width: 700px) {
  .site-header {
    max-width: 100vw;
  }
}

/* FightAlpha Lab / articles */
.article-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.article-card,
.article-side-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.article-card {
  padding: 24px;
}

.article-card span,
.article-side-card span,
.article-kicker-row,
.article-data-table th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-card h3 {
  margin: 12px 0 10px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.04;
}

.article-card h3 a {
  color: var(--text);
  text-decoration: none;
}

.article-card p,
.article-body p,
.article-list,
.article-side-card p {
  color: var(--muted);
  line-height: 1.72;
}

.article-hub-hero,
.article-hero {
  padding-top: 132px;
}

.article-hero {
  max-width: 1120px;
}

.article-kicker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.article-kicker-row a {
  color: var(--gold);
  text-decoration: none;
}

.article-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.article-dek {
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.5;
}

.article-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 920px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--line);
}

.article-stat-strip div {
  padding: 20px;
  background: #0b1118;
}

.article-stat-strip span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-stat-strip strong {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 42px;
  align-items: start;
}

.article-body {
  max-width: 780px;
}

.article-body h2 {
  margin: 42px 0 12px;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.035em;
}

.article-body strong {
  color: var(--text);
}

.article-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.article-data-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  background: #0b1118;
}

.article-data-table th,
.article-data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.article-data-table td:last-child {
  color: var(--gold);
  font-weight: 800;
}

.article-callout {
  margin: 24px 0;
  padding: 18px 20px;
  border: 1px solid rgba(232, 190, 113, 0.32);
  border-radius: 20px;
  background: rgba(232, 190, 113, 0.08);
  color: var(--muted);
  line-height: 1.65;
}

.article-callout strong {
  color: var(--gold);
}

.article-list {
  padding-left: 22px;
}

.article-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
}

.article-side-card {
  padding: 18px;
}

.article-side-card p {
  margin-bottom: 0;
}

@media (max-width: 860px) {
  .article-card-grid,
  .article-layout,
  .article-stat-strip {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }
}

.article-layout,
.article-body,
.article-table-wrap {
  min-width: 0;
  max-width: 100%;
}

.article-visual {
  margin: 28px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #070c12;
  box-shadow: var(--shadow);
}

.article-hero-visual {
  max-width: 1040px;
}

.article-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.article-wide-table {
  min-width: 760px;
}

.article-body-section {
  padding-top: 78px;
}

.article-detail-page .article-hero h1 {
  max-width: 980px;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1.02;
}

.article-detail-page .article-dek {
  max-width: 900px;
  font-size: clamp(21px, 2.1vw, 27px);
  line-height: 1.55;
}

.article-detail-page .article-body {
  font-size: clamp(18px, 1.18vw, 20px);
}

.article-detail-page .article-body p,
.article-detail-page .article-list {
  color: #b8c3cd;
  line-height: 1.82;
}

.article-detail-page .article-body h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 54px 0 16px;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.12;
}

.article-heading-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  font-size: 18px;
}

.article-detail-page .article-visual {
  margin: 34px 0 32px;
}

.article-detail-page .article-hero-visual {
  margin-top: 38px;
}

.article-detail-page .article-table-wrap {
  margin: 28px 0 30px;
}

.article-detail-page .article-data-table th,
.article-detail-page .article-data-table td {
  padding: 16px 18px;
  vertical-align: top;
}

.article-detail-page .article-sidebar {
  gap: 18px;
}

.article-detail-page .article-side-card {
  background: linear-gradient(145deg, rgba(52, 140, 255, 0.08), rgba(255, 255, 255, 0.035));
}

@media (max-width: 760px) {
  .article-detail-page .article-body h2 {
    align-items: flex-start;
  }

  .article-heading-icon {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 640px) {
  .article-detail-page .article-body h2 {
    display: block;
  }

  .article-heading-icon {
    margin-right: 8px;
    vertical-align: middle;
  }

  .article-wide-table {
    min-width: 0;
  }

  .article-wide-table thead {
    display: none;
  }

  .article-wide-table,
  .article-wide-table tbody,
  .article-wide-table tr,
  .article-wide-table td {
    display: block;
    width: 100%;
  }

  .article-wide-table tr {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .article-wide-table td {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 12px;
    border-bottom: 0;
    padding: 6px 14px;
  }

  .article-wide-table td::before {
    content: attr(data-label);
    color: var(--soft);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
}

.article-mobile-chart {
  display: none;
}

@media (max-width: 860px) {
  .article-chart-visual {
    display: none;
  }

  .article-mobile-chart {
    display: grid;
    gap: 12px;
    margin: 28px 0 30px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #070c12;
    box-shadow: var(--shadow);
  }

  .article-mobile-chart div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4px 10px;
    align-items: center;
  }

  .article-mobile-chart span {
    color: var(--text);
    font-size: 16px;
    font-weight: 800;
  }

  .article-mobile-chart strong {
    color: var(--green);
    font-size: 18px;
  }

  .article-mobile-chart em {
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
  }

  .article-mobile-chart i {
    grid-column: 1 / -1;
    display: block;
    height: 9px;
    overflow: hidden;
    border-radius: 999px;
    background: #111923;
  }

  .article-mobile-chart i::before {
    content: "";
    display: block;
    width: var(--bar);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--red), var(--blue-corner), var(--green));
  }
}

@media (max-width: 640px) {
  .article-detail-page .article-hero {
    padding-bottom: 54px;
  }

  .article-detail-page .article-body-section {
    padding-top: 56px;
  }

  .article-detail-page .article-hero-visual {
    margin-bottom: 0;
  }
}

.article-photo-hero {
  position: relative;
  aspect-ratio: 16 / 9;
  border-color: rgba(255, 255, 255, 0.14);
}

.article-photo-hero picture,
.article-photo-hero img {
  display: block;
  width: 100%;
  height: 100%;
}

.article-photo-hero img {
  object-fit: cover;
}

.article-photo-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 98, 98, 0.18), transparent 38%, rgba(52, 140, 255, 0.2)),
    linear-gradient(0deg, rgba(5, 8, 12, 0.72), transparent 48%);
  pointer-events: none;
}

.article-photo-hero figcaption {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text);
}

.article-photo-hero figcaption span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-photo-hero figcaption strong {
  max-width: 420px;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.05;
  text-align: right;
}

@media (max-width: 640px) {
  .article-photo-hero {
    aspect-ratio: 4 / 3;
  }

  .article-photo-hero figcaption {
    display: grid;
    gap: 8px;
  }

  .article-photo-hero figcaption strong {
    text-align: left;
  }
}

/* Article module alignment pass */
.article-detail-page .article-hero,
.article-detail-page .article-layout {
  width: min(100%, 1142px);
  margin-inline: auto;
}

.article-detail-page .article-stat-strip,
.article-detail-page .article-hero-visual {
  max-width: 100%;
}

.article-detail-page .article-body .article-visual,
.article-detail-page .article-body .article-mobile-chart,
.article-detail-page .article-body .article-table-wrap,
.article-detail-page .article-body .article-callout,
.article-answer-box,
.article-data-notes,
.article-warning-note {
  width: 100%;
}

.article-detail-page .article-body > * + h2 {
  margin-top: 58px;
}

.article-detail-page .article-body > h2 + p,
.article-detail-page .article-body > p + p,
.article-detail-page .article-body > figure + p,
.article-detail-page .article-body > .article-mobile-chart + p,
.article-detail-page .article-body > .article-table-wrap + p {
  margin-top: 16px;
}

/* Article detail alignment refinement */
.article-detail-page .article-hero {
  width: min(calc(100% - 2 * clamp(18px, 5vw, 69px)), 1142px);
  padding-inline: 0;
  padding-bottom: 48px;
}

.article-detail-page .article-stat-strip,
.article-detail-page .article-hero-visual {
  width: 100%;
}

.article-detail-page .article-hero-visual {
  margin-bottom: 0;
}

.article-detail-page .article-body-section {
  padding-top: 56px;
}
.article-detail-page .article-hero {
  max-width: 1142px;
}

/* Article mobile chart/CSP and menu readability refinements */
.article-mobile-chart .bar-16 { --bar: 16%; }
.article-mobile-chart .bar-20 { --bar: 20%; }
.article-mobile-chart .bar-33 { --bar: 33%; }
.article-mobile-chart .bar-35 { --bar: 35%; }
.article-mobile-chart .bar-37 { --bar: 37%; }
.article-mobile-chart .bar-78 { --bar: 78%; }
.article-mobile-chart .bar-94 { --bar: 94%; }

@media (max-width: 1040px) {
  .mobile-menu {
    z-index: 50;
    background: #05080c;
  }
}
.article-mobile-chart .bar-41{--bar:41%}.article-mobile-chart .bar-43{--bar:43%}.article-mobile-chart .bar-44{--bar:44%}.article-mobile-chart .bar-45{--bar:45%}.article-mobile-chart .bar-47{--bar:47%}.article-mobile-chart .bar-48{--bar:48%}.article-mobile-chart .bar-54{--bar:54%}.article-mobile-chart .bar-59{--bar:59%}.article-mobile-chart .bar-60{--bar:60%}.article-mobile-chart .bar-62{--bar:62%}

.article-method-note {
  padding: 14px 16px;
  border: 1px solid rgba(119, 229, 255, 0.22);
  border-radius: 18px;
  background: rgba(34, 198, 243, 0.07);
  font-size: 15px;
}

.article-method-note strong {
  color: var(--cyan-2);
}

.article-faq-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.article-faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.article-faq-list summary {
  cursor: pointer;
  padding: 15px 18px;
  color: var(--text);
  font-weight: 850;
}

.article-faq-list p {
  margin: 0;
  padding: 0 18px 16px;
}

.article-answer-box,
.article-data-notes,
.article-warning-note {
  margin: 24px 0;
  border: 1px solid rgba(119, 229, 255, 0.24);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(34, 198, 243, 0.12), rgba(255, 255, 255, 0.035));
  color: var(--text);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
}

.article-answer-box {
  padding: 18px 20px;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.55;
}

.article-answer-box strong,
.article-warning-note strong {
  color: var(--green);
}

.article-data-notes {
  padding: 0;
  overflow: hidden;
}

.article-data-notes summary {
  cursor: pointer;
  padding: 16px 18px;
  color: var(--cyan-2);
  font-weight: 900;
}

.article-data-notes ul {
  margin: 0;
  padding: 0 20px 18px 36px;
}

.article-data-notes li {
  margin: 8px 0;
  color: var(--muted);
  line-height: 1.55;
}

.article-data-notes code {
  color: var(--text);
  font-size: 0.92em;
}

.article-warning-note {
  padding: 16px 18px;
  border-color: rgba(244, 184, 74, 0.34);
  background: linear-gradient(135deg, rgba(244, 184, 74, 0.12), rgba(255, 255, 255, 0.035));
  line-height: 1.55;
}

@media (max-width: 640px) {
  .article-detail-page .cookie-banner {
    top: auto;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    width: auto;
    max-height: min(34vh, 260px);
    padding: 12px;
  }

  .article-detail-page .cookie-banner p {
    font-size: 12px;
    line-height: 1.32;
  }

  .article-detail-page .cookie-actions {
    grid-template-columns: 1fr 1fr;
  }

  .article-detail-page .cookie-actions button {
    min-height: 36px;
  }

  .article-detail-page .cookie-actions [data-cookie-accept] {
    grid-column: 1 / -1;
  }
}
.article-mobile-chart .bar-49{--bar:49%}.article-mobile-chart .bar-51{--bar:51%}.article-mobile-chart .bar-50{--bar:50%}.article-mobile-chart .bar-55{--bar:55%}.article-mobile-chart .bar-56{--bar:56%}.article-mobile-chart .bar-57{--bar:57%}.article-mobile-chart .bar-64{--bar:64%}.article-mobile-chart .bar-65{--bar:65%}.article-mobile-chart .bar-66{--bar:66%}.article-mobile-chart .bar-68{--bar:68%}.article-mobile-chart .bar-73{--bar:73%}.article-mobile-chart .bar-74{--bar:74%}
.article-mobile-chart .bar-46{--bar:46%}.article-mobile-chart .bar-52{--bar:52%}.article-mobile-chart .bar-53{--bar:53%}.article-mobile-chart .bar-58{--bar:58%}.article-mobile-chart .bar-63{--bar:63%}.article-mobile-chart .bar-75{--bar:75%}
.article-mobile-chart .bar-25{--bar:25%}.article-mobile-chart .bar-61{--bar:61%}.article-mobile-chart .bar-67{--bar:67%}
.article-detail-page .article-body p a,
.article-detail-page .article-body li a {
  color: #77e5ff;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(119, 229, 255, 0.62);
  text-underline-offset: 4px;
}

.article-detail-page .article-body p a:hover,
.article-detail-page .article-body p a:focus-visible,
.article-detail-page .article-body li a:hover,
.article-detail-page .article-body li a:focus-visible {
  color: #f4b84a;
  text-decoration-color: rgba(244, 184, 74, 0.82);
}



.article-visual:not(.article-photo-hero) figcaption{display:grid;gap:6px;padding:14px 16px;border-top:1px solid rgba(255,255,255,.08);background:rgba(5,8,12,.72)}
.article-visual:not(.article-photo-hero) figcaption span{display:block;color:var(--green);font-size:12px;font-weight:900;letter-spacing:.12em;text-transform:uppercase}
.article-visual:not(.article-photo-hero) figcaption strong{display:block;color:var(--text);font-size:15px;line-height:1.35}
.article-bottom-cta{display:grid;gap:12px;margin:30px 0 8px;padding:22px;border:1px solid rgba(69,212,131,.32);border-radius:22px;background:linear-gradient(135deg,rgba(69,212,131,.12),rgba(34,198,243,.08));box-shadow:0 18px 50px rgba(0,0,0,.24)}
.article-bottom-cta span{color:var(--green);font-size:12px;font-weight:900;letter-spacing:.12em;text-transform:uppercase}
.article-bottom-cta strong{color:var(--text);font-size:clamp(18px,2vw,24px);line-height:1.3}
.article-bottom-cta .primary-button{justify-self:start}
@media (max-width:640px){.article-detail-page .cookie-banner{max-height:min(24vh,190px);padding:10px;border-radius:14px;background:rgba(8,13,19,.88)}.article-detail-page .cookie-banner strong{font-size:13px}.article-detail-page .cookie-banner p{font-size:11px;line-height:1.25}.article-detail-page .cookie-actions button{min-height:32px;font-size:11px}.article-bottom-cta .primary-button{justify-self:stretch}}

/* Fight Lab performance polish: reserve enough space for fluid in-article ads to avoid mobile CLS. */
.article-ad-label{align-self:end;justify-self:center;color:var(--soft);font-size:11px;font-weight:800;letter-spacing:.12em;text-transform:uppercase}

.event-update-note {
  display: grid;
  gap: 0.35rem;
  margin: 1rem 0 0;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.event-update-note strong {
  color: var(--text-primary);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Age record article refinements */
.age-record-article .article-stat-strip strong {
  font-size: clamp(26px, 3.4vw, 42px);
}
.age-record-table-wrap {
  margin-left: min(-4vw, -24px);
  margin-right: min(-4vw, -24px);
}
.age-record-table {
  min-width: 860px;
  font-size: 14px;
}
.age-record-table th,
.age-record-table td {
  padding: 12px 12px;
}
.age-record-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #0b1118;
}
.age-record-table td[data-label="Age"],
.age-record-table td[data-label="Result"],
.age-record-table td[data-label="Div."] {
  white-space: nowrap;
}
.age-record-article .article-sidebar {
  position: sticky;
  top: 86px;
}
.age-record-article .article-side-card a {
  color: var(--gold);
  text-decoration: none;
}
@media (max-width: 860px) {
  .age-record-article .article-chart-visual {
    display: block;
  }
}
@media (max-width: 640px) {
  .age-record-table-wrap {
    margin-left: 0;
    margin-right: 0;
  }
  .age-record-table {
    min-width: 0;
    font-size: inherit;
  }
  .age-record-table th {
    position: static;
  }
  .age-record-article .article-chart-visual {
    overflow-x: auto;
  }
  .age-record-article .article-chart-visual img {
    min-width: 760px;
  }
  .age-record-article .article-bottom-cta .hero-actions {
    grid-template-columns: 1fr;
  }
  .age-record-article .article-stat-strip strong {
    font-size: 30px;
  }
}

/* Keep article CTA buttons inside the content column */
.article-bottom-cta .hero-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  align-items: stretch;
  gap: 10px;
  margin: 18px 0 0;
}
.article-bottom-cta .hero-actions > * {
  min-width: 0;
  justify-content: center;
  white-space: normal;
  text-align: center;
}

/* Article table layout: use available desktop width, never collide with sidebar */
@media (min-width: 981px) {
  .article-detail-page .article-layout {
    width: min(calc(100% - 2 * clamp(18px, 4vw, 52px)), 1280px);
    grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
    gap: clamp(28px, 3vw, 42px);
  }
  .article-detail-page .article-body {
    max-width: none;
    min-width: 0;
  }
  .article-detail-page .article-body > p,
  .article-detail-page .article-body > h2,
  .article-detail-page .article-body > h3,
  .article-detail-page .article-body > ul,
  .article-detail-page .article-body > ol,
  .article-detail-page .article-body > .article-faq-list,
  .article-detail-page .article-body > .article-method-note,
  .article-detail-page .article-body > .article-answer-box,
  .article-detail-page .article-body > .article-data-notes,
  .article-detail-page .article-body > .article-warning-note {
    max-width: 780px;
  }
  .article-detail-page .article-table-wrap,
  .article-detail-page .article-body > .article-visual,
  .article-detail-page .article-body > .article-callout,
  .article-detail-page .article-bottom-cta {
    max-width: 100%;
  }
  .age-record-table-wrap {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 980px) {
  .article-detail-page .article-layout {
    grid-template-columns: 1fr;
  }
  .article-detail-page .article-sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  .article-wide-table {
    min-width: 0;
  }
  .article-wide-table thead {
    display: none;
  }
  .article-wide-table,
  .article-wide-table tbody,
  .article-wide-table tr,
  .article-wide-table td {
    display: block;
    width: 100%;
  }
  .article-wide-table tr {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .article-wide-table td {
    display: grid;
    grid-template-columns: minmax(96px, 34%) minmax(0, 1fr);
    gap: 12px;
    border-bottom: 0;
    padding: 7px 14px;
  }
  .article-wide-table td::before {
    content: attr(data-label);
    color: var(--soft);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
}

/* Wider readable article tables, stack sidebar before tables need horizontal scroll */
@media (min-width: 1181px) {
  .article-detail-page .article-layout {
    width: 100%;
    max-width: 1280px;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
  }
}
@media (max-width: 1180px) {
  .article-detail-page .article-layout {
    width: 100%;
    max-width: 1142px;
    grid-template-columns: 1fr;
  }
  .article-detail-page .article-sidebar {
    position: static;
  }
}
@media (min-width: 761px) {
  .age-record-table {
    min-width: min(760px, 100%);
  }
}

/* FightAlpha Lab left-rail article template */
@media (min-width: 1181px) {
  .article-detail-page .article-layout {
    width: 100%;
    max-width: 1280px;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: clamp(30px, 3vw, 46px);
  }
  .article-detail-page .article-sidebar {
    grid-column: 1;
    grid-row: 1;
    position: sticky;
    top: 96px;
    align-self: start;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding-right: 2px;
  }
  .article-detail-page .article-body {
    grid-column: 2;
    grid-row: 1;
    max-width: none;
    min-width: 0;
  }
  .article-detail-page .article-sidebar .primary-button,
  .article-detail-page .article-sidebar .secondary-button {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 1180px) {
  .article-detail-page .article-layout {
    width: 100%;
    max-width: 1142px;
    grid-template-columns: 1fr;
  }
  .article-detail-page .article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
  }
  .article-detail-page .article-sidebar .primary-button,
  .article-detail-page .article-sidebar .secondary-button {
    justify-content: center;
    text-align: center;
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .article-detail-page .article-sidebar {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }
  .article-detail-page .article-side-card {
    padding: 16px;
    border-radius: 18px;
  }
}

/* FightAlpha Lab split-rail template: left metadata, center article, right guide */
.article-left-rail {
  display: grid;
  gap: 14px;
  min-width: 0;
}
.article-left-rail .article-side-card a,
.article-sidebar .article-side-card a {
  color: var(--gold);
  text-decoration: none;
}
.article-left-rail .article-side-card a:hover,
.article-left-rail .article-side-card a:focus-visible,
.article-sidebar .article-side-card a:hover,
.article-sidebar .article-side-card a:focus-visible {
  color: var(--text);
}
@media (min-width: 1380px) {
  .article-detail-page .article-layout {
    width: 100%;
    max-width: 1440px;
    grid-template-columns: minmax(180px, 220px) minmax(0, 1fr) minmax(220px, 280px);
    gap: clamp(24px, 2.4vw, 38px);
  }
  .article-detail-page .article-left-rail {
    grid-column: 1;
    grid-row: 1;
    position: sticky;
    top: 96px;
    align-self: start;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }
  .article-detail-page .article-body {
    grid-column: 2;
    grid-row: 1;
    max-width: none;
    min-width: 0;
  }
  .article-detail-page .article-sidebar {
    grid-column: 3;
    grid-row: 1;
    position: sticky;
    top: 96px;
    align-self: start;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }
}
@media (min-width: 1181px) and (max-width: 1379px) {
  .article-detail-page .article-layout {
    width: 100%;
    max-width: 1280px;
    grid-template-columns: minmax(190px, 250px) minmax(0, 1fr);
    gap: clamp(26px, 3vw, 40px);
  }
  .article-detail-page .article-left-rail {
    grid-column: 1;
    grid-row: 1;
    position: sticky;
    top: 96px;
    align-self: start;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }
  .article-detail-page .article-body {
    grid-column: 2;
    grid-row: 1;
    max-width: none;
    min-width: 0;
  }
  .article-detail-page .article-sidebar {
    grid-column: 1 / -1;
    grid-row: 2;
    position: static;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
  }
}
@media (max-width: 1180px) {
  .article-detail-page .article-layout {
    width: 100%;
    max-width: 1142px;
    grid-template-columns: 1fr;
  }
  .article-detail-page .article-left-rail,
  .article-detail-page .article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
  }
  .article-detail-page .article-left-rail {
    order: 2;
  }
  .article-detail-page .article-sidebar {
    order: 3;
  }
}
@media (max-width: 640px) {
  .article-detail-page .article-left-rail,
  .article-detail-page .article-sidebar {
    grid-template-columns: 1fr;
  }
}

/* Split rails are enabled on normal desktop widths, not only ultra-wide screens. */
@media (min-width: 1280px) {
  .article-detail-page .article-layout {
    width: 100%;
    max-width: 1440px;
    grid-template-columns: minmax(170px, 220px) minmax(0, 1fr) minmax(210px, 270px);
    gap: clamp(20px, 2vw, 34px);
  }
  .article-detail-page .article-left-rail {
    grid-column: 1;
    grid-row: 1;
    position: sticky;
    top: 96px;
    align-self: start;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    margin-top: 0;
  }
  .article-detail-page .article-body {
    grid-column: 2;
    grid-row: 1;
  }
  .article-detail-page .article-sidebar {
    grid-column: 3;
    grid-row: 1;
    position: sticky;
    top: 96px;
    align-self: start;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 0;
  }
}
@media (min-width: 1181px) and (max-width: 1279px) {
  .article-detail-page .article-layout {
    width: 100%;
    max-width: 1280px;
    grid-template-columns: minmax(190px, 250px) minmax(0, 1fr);
  }
  .article-detail-page .article-left-rail {
    grid-column: 1;
    grid-row: 1;
  }
  .article-detail-page .article-body {
    grid-column: 2;
    grid-row: 1;
  }
  .article-detail-page .article-sidebar {
    grid-column: 1 / -1;
    grid-row: 2;
    position: static;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 18px;
  }
}

/* Split-rail safety pass: dual rails only on genuinely wide screens. */
@media (min-width: 1181px) and (max-width: 1439px) {
  .article-detail-page .article-layout {
    width: 100%;
    max-width: 1280px;
    grid-template-columns: minmax(190px, 250px) minmax(0, 1fr);
    gap: clamp(26px, 3vw, 40px);
  }
  .article-detail-page .article-left-rail {
    grid-column: 1;
    grid-row: 1;
    position: sticky;
    top: 96px;
    align-self: start;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    margin-top: 0;
  }
  .article-detail-page .article-body {
    grid-column: 2;
    grid-row: 1;
  }
  .article-detail-page .article-sidebar {
    grid-column: 1 / -1;
    grid-row: 2;
    position: static;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
    max-height: none;
    overflow: visible;
  }
}
@media (min-width: 1440px) {
  .article-detail-page .article-layout {
    width: 100%;
    max-width: 1440px;
    grid-template-columns: minmax(180px, 220px) minmax(720px, 1fr) minmax(220px, 280px);
    gap: clamp(22px, 2.2vw, 34px);
  }
  .article-detail-page .article-left-rail {
    grid-column: 1;
    grid-row: 1;
    position: sticky;
    top: 96px;
    align-self: start;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    margin-top: 0;
  }
  .article-detail-page .article-body {
    grid-column: 2;
    grid-row: 1;
  }
  .article-detail-page .article-sidebar {
    grid-column: 3;
    grid-row: 1;
    position: sticky;
    top: 96px;
    align-self: start;
    display: grid;
    grid-template-columns: 1fr;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    margin-top: 0;
  }
}

/* Final split-rail breakpoint: reserve true dual rails for wide desktop only. */
@media (min-width: 1181px) and (max-width: 1535px) {
  .article-detail-page .article-layout {
    width: 100%;
    max-width: 1280px;
    grid-template-columns: minmax(190px, 250px) minmax(0, 1fr);
    gap: clamp(26px, 3vw, 40px);
  }
  .article-detail-page .article-left-rail {
    grid-column: 1;
    grid-row: 1;
    position: sticky;
    top: 96px;
    align-self: start;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    margin-top: 0;
  }
  .article-detail-page .article-body {
    grid-column: 2;
    grid-row: 1;
  }
  .article-detail-page .article-sidebar {
    grid-column: 1 / -1;
    grid-row: 2;
    position: static;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
    max-height: none;
    overflow: visible;
  }
}
@media (min-width: 1536px) {
  .article-detail-page .article-layout {
    width: 100%;
    max-width: 1440px;
    grid-template-columns: minmax(180px, 220px) minmax(760px, 1fr) minmax(220px, 280px);
    gap: clamp(22px, 2.2vw, 34px);
  }
}

/* Decision article trust, table emphasis, and cookie overlap fixes */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.article-data-table td:last-child {
  color: inherit;
  font-weight: inherit;
}

.article-data-table td.decision-rate-cell,
.article-data-table th:nth-child(3) {
  color: var(--gold);
  font-weight: 900;
}

.article-key-findings,
.article-inline-cta {
  display: grid;
  gap: 12px;
  margin: 26px 0;
  padding: 20px;
  border: 1px solid rgba(119, 229, 255, 0.26);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(34, 198, 243, 0.12), rgba(255, 255, 255, 0.035));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.article-key-findings > strong,
.article-inline-cta > span {
  color: var(--cyan-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-key-findings ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.article-key-findings li,
.article-inline-cta p {
  color: #b8c3cd;
  line-height: 1.55;
}

.article-inline-cta strong {
  color: var(--text);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.25;
}

.article-inline-cta .primary-button {
  justify-self: start;
}

body.cookie-banner-visible.article-detail-page {
  padding-bottom: 180px;
}

@media (max-width: 720px) {
  body.cookie-banner-visible.article-detail-page {
    padding-bottom: 240px;
  }

  .article-detail-page .cookie-banner {
    top: auto;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 10px;
    width: auto;
    max-height: min(30svh, 220px);
    padding: 10px;
    border-radius: 14px;
    background: rgba(8, 13, 19, 0.9);
  }

  .article-detail-page .cookie-banner strong {
    font-size: 13px;
  }

  .article-detail-page .cookie-banner p {
    font-size: 11px;
    line-height: 1.25;
  }

  .article-detail-page .cookie-actions {
    grid-template-columns: 1fr 1fr;
  }

  .article-detail-page .cookie-actions button,
  .article-detail-page .cookie-choices button {
    min-height: 32px;
    font-size: 11px;
  }

  .article-detail-page .cookie-actions [data-cookie-manage] {
    grid-column: 1 / -1;
  }

  .article-inline-cta .primary-button,
  .article-bottom-cta .primary-button {
    justify-self: stretch;
  }
}
.article-mobile-chart .bar-17 { --bar: 17%; }
.article-mobile-chart .bar-32 { --bar: 32%; }
.article-mobile-chart .bar-42 { --bar: 42%; }

.article-mobile-chart .bar-39{--bar:39%}

/* Ring rust article polish: make charts visibly chart-like and keep consent UI from covering the hero. */
.ring-rust-article .ring-rust-chart {
  background: linear-gradient(135deg, #070c12, #130913);
}

.ring-rust-article .ring-rust-chart img {
  display: block;
  width: 100%;
  min-height: 280px;
  aspect-ratio: 1200 / 560;
  object-fit: contain;
  background: #070c12;
}

@media (min-width: 861px) {
  .ring-rust-article .ring-rust-chart {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .article-detail-page .cookie-banner {
    right: 8px;
    bottom: max(8px, env(safe-area-inset-bottom));
    left: 8px;
    max-height: 118px;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(8, 13, 19, 0.92);
  }

  .article-detail-page .cookie-banner strong {
    margin-bottom: 0;
    font-size: 12px;
  }

  .article-detail-page .cookie-banner p {
    display: none;
  }

  .article-detail-page .cookie-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .article-detail-page .cookie-actions button,
  .article-detail-page .cookie-choices button {
    min-height: 30px;
    padding: 0 8px;
    font-size: 10px;
  }

  .article-detail-page .cookie-actions [data-cookie-manage],
  .article-detail-page .cookie-actions [data-cookie-accept] {
    grid-column: auto;
  }

  body.cookie-banner-visible.article-detail-page {
    padding-bottom: 136px;
  }
}

@media (max-width: 860px) {
  .ring-rust-article .ring-rust-chart {
    display: block;
    margin: 22px 0 12px;
    border-radius: 18px;
  }

  .ring-rust-article .ring-rust-chart img {
    min-height: 176px;
  }

  .ring-rust-article .ring-rust-chart figcaption {
    padding: 10px 12px;
  }

  .ring-rust-article .ring-rust-chart figcaption strong {
    font-size: 13px;
  }
}

@media (max-width: 860px) {
  .ring-rust-article .ring-rust-chart {
    display: none;
  }
}

/* Value-picks article fixes: inline chart reliability, trust cue, and less intrusive article consent bar. */
.article-byline{margin:-10px 0 18px;color:var(--muted);font-size:13px;font-weight:800;letter-spacing:.02em;text-transform:none}.article-byline a{color:var(--cyan-2);text-decoration:none}.article-byline a:hover{text-decoration:underline}.article-formula-card{display:grid;gap:6px;margin:20px 0;padding:18px 20px;border:1px solid rgba(119,229,255,.24);border-radius:20px;background:linear-gradient(135deg,rgba(76,201,240,.12),rgba(255,70,85,.08));box-shadow:inset 0 0 0 1px rgba(255,255,255,.04)}.article-formula-card strong{color:var(--text);font-size:clamp(18px,2vw,24px);line-height:1.25}.article-formula-card span{color:var(--muted);font-weight:800}.article-inline-svg{background:#07101a}.article-inline-svg svg{display:block;width:100%;height:auto;min-height:280px}.article-inline-svg figcaption{border-top:1px solid rgba(255,255,255,.08)}@media (max-width:860px){.value-picks-article .article-inline-svg{display:none}.article-byline{margin-top:-6px;font-size:12px;line-height:1.45}.article-formula-card{padding:15px 16px;border-radius:16px}}
@media (min-width:721px){.article-detail-page .cookie-banner{right:50%;bottom:10px;left:auto;transform:translateX(50%);grid-template-columns:minmax(0,1fr) auto;width:min(920px,calc(100vw - 32px));max-height:132px;padding:10px 12px;border-radius:16px;background:rgba(8,13,19,.9)}.article-detail-page .cookie-banner p{margin:0;font-size:12px;line-height:1.3}.article-detail-page .cookie-banner strong{margin-bottom:2px;font-size:13px}.article-detail-page .cookie-actions{grid-template-columns:repeat(3,minmax(0,1fr));min-width:min(430px,45vw)}.article-detail-page .cookie-actions button,.article-detail-page .cookie-choices button{min-height:34px;font-size:11px}body.cookie-banner-visible.article-detail-page{padding-bottom:124px}}

/* Article hero hardening: prevent title/byline/deck collisions on long headlines. */
.article-detail-page .article-hero h1{margin-bottom:clamp(16px,2vw,24px);line-height:1.08}.article-byline{margin:0 0 20px;line-height:1.45}@media(max-width:640px){.article-detail-page .article-hero h1{line-height:1.1;margin-bottom:16px}.article-byline{margin:0 0 18px;line-height:1.5}}

/* Article text-fit guardrails: long labels and table cells should wrap inside their cards. */
.article-detail-page h1,.article-detail-page h2,.article-detail-page h3,.article-stat-strip strong,.article-stat-strip span,.article-side-card,.article-answer-box,.article-callout,.article-formula-card,.article-inline-cta,.article-bottom-cta,.article-data-table th,.article-data-table td{overflow-wrap:anywhere;word-break:normal}.article-data-table td,.article-data-table th{hyphens:auto}.article-side-card a,.article-byline a{overflow-wrap:anywhere}.article-stat-strip div{min-width:0}@media(max-width:640px){.article-detail-page .article-stat-strip strong{font-size:clamp(24px,8vw,34px)}.article-detail-page .article-stat-strip span{font-size:11px;line-height:1.25}.article-data-table td{max-width:100%}}
.odds-decimal{display:block;color:var(--muted);font-size:.86em;font-weight:700;white-space:nowrap}

/* Article UX polish: keep consent UI from covering article content and avoid awkward table hyphenation. */
.article-detail-page .cookie-banner{top:auto!important;bottom:max(10px,env(safe-area-inset-bottom))!important;transform:none!important}.article-detail-page.cookie-banner-visible,.article-detail-page body.cookie-banner-visible{padding-bottom:0}.article-data-table th,.article-data-table td{hyphens:none}.article-data-table th:first-child,.article-data-table td:first-child{min-width:150px;white-space:normal;word-break:normal;overflow-wrap:normal}.article-detail-page h2,.article-detail-page h3,.article-detail-page [id]{scroll-margin-top:110px}@media(max-width:720px){.article-detail-page .cookie-banner{left:8px!important;right:8px!important;width:auto!important;max-height:96px!important;padding:7px 9px!important}.article-detail-page .cookie-banner p{display:none!important}.article-detail-page .cookie-actions{grid-template-columns:repeat(3,minmax(0,1fr))!important}.article-detail-page .cookie-actions button{min-height:28px!important;font-size:10px!important}.article-data-table th:first-child,.article-data-table td:first-child{min-width:128px}}
@media(min-width:721px){.article-detail-page .cookie-banner{left:50%!important;right:auto!important;width:min(880px,calc(100vw - 32px))!important;max-height:108px!important;grid-template-columns:minmax(0,1fr) auto!important;transform:translateX(-50%)!important}.article-detail-page .cookie-banner p{font-size:11px!important;line-height:1.25!important}.article-detail-page .cookie-actions{min-width:min(410px,44vw)!important}}

/* Final article consent behavior: never float over article content. It renders after page content instead. */
body.article-detail-page .cookie-banner{position:static!important;inset:auto!important;transform:none!important;width:min(920px,calc(100vw - 32px))!important;max-height:none!important;margin:24px auto!important;grid-template-columns:minmax(0,1fr) auto!important}body.cookie-banner-visible.article-detail-page{padding-bottom:0!important}@media(max-width:720px){body.article-detail-page .cookie-banner{width:calc(100vw - 20px)!important;margin:16px auto!important;grid-template-columns:1fr!important}.article-detail-page .cookie-actions{grid-template-columns:1fr 1fr!important}.article-detail-page .cookie-actions [data-cookie-manage]{grid-column:1/-1!important}}

/* Article consent placement: visible after header, in normal flow, never overlaying content. */
body.article-detail-page > .cookie-banner{position:relative!important;inset:auto!important;transform:none!important;width:min(920px,calc(100vw - 32px))!important;max-height:none!important;margin:18px auto 0!important;grid-template-columns:minmax(0,1fr) auto!important;z-index:3!important}body.article-detail-page.cookie-banner-visible,body.cookie-banner-visible.article-detail-page{padding-bottom:0!important}@media(max-width:720px){body.article-detail-page > .cookie-banner{width:calc(100vw - 20px)!important;margin:12px auto 0!important;grid-template-columns:1fr!important}.article-detail-page .cookie-actions{grid-template-columns:1fr 1fr!important}.article-detail-page .cookie-actions [data-cookie-manage]{grid-column:1/-1!important}}

/* FightAlpha odds calculator tool */
.odds-calculator-page main{padding-top:88px;overflow:hidden}.odds-tool-hero{display:grid;grid-template-columns:minmax(0,.9fr) minmax(360px,1fr);gap:clamp(24px,5vw,64px);align-items:center;min-height:calc(100vh - 88px);padding-top:clamp(42px,7vw,86px);padding-bottom:clamp(38px,6vw,76px);background:radial-gradient(circle at 82% 12%,rgba(34,198,243,.22),transparent 34%),radial-gradient(circle at 22% 72%,rgba(255,70,85,.2),transparent 38%)}.odds-hero-copy h1{max-width:680px;margin:0 0 18px;font-size:clamp(48px,8vw,104px);line-height:.88;letter-spacing:-.07em}.odds-hero-copy .large-copy{max-width:680px;color:var(--muted);font-size:clamp(18px,2.2vw,24px)}.odds-hero-pills{display:flex;flex-wrap:wrap;gap:10px;margin-top:28px}.odds-hero-pills span{padding:9px 13px;border:1px solid rgba(119,229,255,.25);border-radius:999px;background:rgba(255,255,255,.05);color:var(--cyan-2);font-size:12px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}.odds-calculator-card{position:relative;display:grid;gap:14px;padding:clamp(18px,3vw,30px);border:1px solid rgba(119,229,255,.24);border-radius:30px;background:linear-gradient(145deg,rgba(12,19,30,.96),rgba(10,12,18,.92));box-shadow:0 32px 90px rgba(0,0,0,.42),0 0 80px rgba(34,198,243,.08)}.odds-calculator-card:before{content:"";position:absolute;inset:1px;border-radius:29px;pointer-events:none;background:linear-gradient(135deg,rgba(119,229,255,.14),transparent 35%,rgba(255,70,85,.12));mask:linear-gradient(#000,#000) content-box,linear-gradient(#000,#000);mask-composite:exclude;padding:1px}.odds-card-top{display:flex;justify-content:space-between;gap:16px;align-items:flex-start;margin-bottom:2px}.odds-card-top span{color:var(--green);font-size:12px;font-weight:950;letter-spacing:.14em;text-transform:uppercase}.odds-card-top strong{color:var(--text);font-size:clamp(18px,2vw,24px);text-align:right}.odds-calculator-card label{display:grid;gap:7px}.odds-calculator-card label span{color:var(--muted);font-size:12px;font-weight:850;letter-spacing:.08em;text-transform:uppercase}.odds-calculator-card input{width:100%;min-height:58px;padding:0 16px;border:1px solid rgba(255,255,255,.12);border-radius:17px;background:rgba(255,255,255,.045);color:var(--text);font:inherit;font-size:24px;font-weight:850;outline:none}.odds-calculator-card input:focus{border-color:rgba(119,229,255,.68);box-shadow:0 0 0 4px rgba(34,198,243,.12)}.odds-error{min-height:20px;margin:0;color:#ff9292;font-size:13px;font-weight:700}.odds-results{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px}.odds-results div{min-width:0;padding:13px;border:1px solid rgba(255,255,255,.11);border-radius:17px;background:rgba(255,255,255,.04)}.odds-results span{display:block;color:var(--soft);font-size:11px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}.odds-results strong{display:block;margin-top:5px;color:var(--text);font-size:clamp(18px,2.2vw,28px);line-height:1;overflow-wrap:anywhere}.odds-examples{display:flex;flex-wrap:wrap;gap:8px}.odds-examples button{min-height:38px;padding:0 12px;border:1px solid rgba(119,229,255,.24);border-radius:999px;background:rgba(34,198,243,.08);color:var(--cyan-2);font:inherit;font-size:13px;font-weight:850;cursor:pointer}.odds-examples button:hover,.odds-examples button:focus-visible{background:rgba(34,198,243,.16);outline:none}.odds-explainer-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.odds-info-card,.odds-formula-grid div{padding:22px;border:1px solid rgba(255,255,255,.1);border-radius:22px;background:rgba(255,255,255,.045);box-shadow:0 18px 44px rgba(0,0,0,.2)}.odds-info-card span{color:var(--cyan-2);font-size:12px;font-weight:900;letter-spacing:.1em;text-transform:uppercase}.odds-info-card h2{margin:8px 0 10px;font-size:clamp(24px,3vw,34px);line-height:1}.odds-info-card p{margin:0;color:var(--muted)}.odds-guide-section{padding-top:clamp(38px,6vw,70px)}.odds-formula-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.odds-formula-grid strong{display:block;margin-bottom:8px;color:var(--text)}.odds-formula-grid span{color:var(--muted);font-size:14px}@media(max-width:980px){.odds-tool-hero{grid-template-columns:1fr;min-height:0}.odds-explainer-grid,.odds-formula-grid{grid-template-columns:1fr 1fr}}@media(max-width:640px){.odds-calculator-page main{padding-top:76px}.odds-tool-hero{padding-top:28px}.odds-hero-copy h1{font-size:clamp(44px,16vw,64px)}.odds-calculator-card{border-radius:22px}.odds-card-top{display:grid}.odds-card-top strong{text-align:left}.odds-results{grid-template-columns:1fr 1fr}.odds-explainer-grid,.odds-formula-grid{grid-template-columns:1fr}.odds-calculator-card input{min-height:54px;font-size:21px}}

/* Rematch article: keep SVG chart trust intact and make the article consent banner less intrusive. */
.rematch-article .rematch-chart{position:relative;min-height:420px}.rematch-article .rematch-chart img{min-height:280px;aspect-ratio:1200/560;object-fit:contain;background:#070c12}.rematch-article .article-chart-fallback{display:none;padding:16px 18px;border-top:1px solid rgba(255,255,255,.08);background:rgba(244,184,74,.1);color:#d8e2e9;line-height:1.55}.rematch-article .article-chart-fallback strong{color:var(--gold)}.rematch-article .rematch-chart.chart-failed img,.rematch-article .rematch-chart:not(.chart-loaded) img{background:linear-gradient(135deg,rgba(34,198,243,.08),rgba(244,184,74,.08)),#070c12}.rematch-article .rematch-chart.chart-failed .article-chart-fallback{display:block}@media(max-width:860px){.rematch-article .rematch-chart{display:none}}.rematch-article .article-stat-note{max-width:760px;margin:-6px auto 20px;color:var(--muted);font-size:13px;line-height:1.45;text-align:center}@media(min-width:721px){.rematch-article .cookie-banner{position:fixed;right:18px;bottom:max(18px,env(safe-area-inset-bottom));left:auto;top:auto;width:min(360px,calc(100vw - 36px));max-height:132px;overflow:auto;padding:9px 10px;z-index:45}.rematch-article .cookie-banner strong{font-size:12px}.rematch-article .cookie-banner p{display:none}.rematch-article .cookie-actions{grid-template-columns:repeat(3,minmax(0,1fr));gap:6px}.rematch-article .cookie-actions button,.rematch-article .cookie-choices button{min-height:30px;padding:0 7px;font-size:10px}.rematch-article .cookie-actions [data-cookie-manage],.rematch-article .cookie-actions [data-cookie-accept]{grid-column:auto}.rematch-article.cookie-banner-visible{padding-bottom:0}}

.article-mobile-chart .bar-40{--bar:40%}.article-mobile-chart .bar-12{--bar:12%}.article-mobile-chart .bar-1{--bar:1%}.article-mobile-chart .bar-0{--bar:.5%}

/* Frequency article trust fixes: charts must render without lazy-load risk, cookie prompt must not cover hero. */
.frequency-article .article-chart-visual img{display:block;min-height:260px;aspect-ratio:1200/620;object-fit:contain;background:linear-gradient(135deg,rgba(34,198,243,.08),rgba(244,184,74,.08)),#070c12}.frequency-article .cookie-banner{position:fixed!important;right:18px!important;bottom:max(18px,env(safe-area-inset-bottom))!important;left:auto!important;top:auto!important;transform:none!important;width:min(360px,calc(100vw - 36px))!important;max-height:104px!important;overflow:auto!important;margin:0!important;padding:7px 9px!important;grid-template-columns:1fr!important;z-index:45!important}.frequency-article .cookie-banner p{display:none!important}.frequency-article .cookie-banner strong{font-size:12px!important}.frequency-article .cookie-actions{grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:6px!important;min-width:0!important}.frequency-article .cookie-actions button,.frequency-article .cookie-choices button{min-height:26px!important;padding:0 6px!important;font-size:9px!important}.frequency-article.cookie-banner-visible{padding-bottom:0!important}@media(max-width:720px){.frequency-article .cookie-banner{right:10px!important;bottom:max(10px,env(safe-area-inset-bottom))!important;left:10px!important;width:auto!important;max-height:96px!important}.frequency-article .cookie-actions{grid-template-columns:1fr 1fr!important}.frequency-article .cookie-actions [data-cookie-manage]{grid-column:1/-1!important}.frequency-article .article-chart-visual img{min-height:220px}}
body.frequency-article > .cookie-banner{position:fixed!important;right:18px!important;bottom:max(18px,env(safe-area-inset-bottom))!important;left:auto!important;top:auto!important;transform:none!important;width:min(360px,calc(100vw - 36px))!important;max-height:132px!important;overflow:auto!important;margin:0!important;grid-template-columns:1fr!important;z-index:45!important}body.frequency-article.cookie-banner-visible{padding-bottom:0!important}@media(max-width:720px){body.frequency-article > .cookie-banner{right:10px!important;bottom:max(10px,env(safe-area-inset-bottom))!important;left:10px!important;top:auto!important;width:auto!important;max-height:96px!important}}
@media(max-width:860px){.frequency-article .article-chart-visual{display:block;overflow-x:auto;-webkit-overflow-scrolling:touch}.frequency-article .article-chart-visual img{width:100%;min-width:min(760px,100%);height:auto}}
