: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;
  --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 {
  padding: 8px 13px;
  color: var(--muted);
  font-size: 14px;
}

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

.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 34px;
}

.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-rationale {
  color: var(--muted);
  font-size: 13px;
}

.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-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 {
    padding: 13px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--muted);
    font-size: 15px;
    font-weight: 700;
  }

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

  .mobile-menu a:hover {
    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;
  }

  .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 */
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--cyan-2);
  color: #031018;
  font-weight: 900;
}

.skip-link:focus {
  transform: translateY(0);
}

: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;
}

.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 {
    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: 74px;
  }

  .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%;
}

.skip-link:not(:focus):not(:focus-visible) {
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.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 {
  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: start;
}

.event-page .compact-fight-card {
  min-width: 0;
  min-height: clamp(300px, 24vw, 420px);
  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);
}

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

.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;
}

.corner {
  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 strong {
  max-width: 140px;
  color: var(--text);
  font-size: clamp(12px, 0.95vw, 16px);
  line-height: 1.15;
}

.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;
}

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

.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 .corner img {
    width: 58px;
    height: 58px;
  }

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

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

/* 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-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-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: clamp(14px, 3vw, 28px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
  max-height: calc(100vh - 28px);
  overflow-y: auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(11, 17, 24, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
}

.cookie-banner p {
  margin: 0 0 6px;
  color: var(--muted);
}

.cookie-banner .cookie-note {
  font-size: 0.9rem;
}

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

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-actions button,
.cookie-choices button {
  min-width: 150px;
}

.cookie-choices {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
  margin-top: 2px;
  padding: 16px;
  border: 1px solid rgba(34, 211, 238, 0.32);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.72);
}

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

.cookie-choices-title {
  color: var(--cyan-2);
}

.cookie-choices label {
  display: grid;
  grid-template-columns: auto minmax(130px, max-content) minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--text);
  font-weight: 800;
}

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

.cookie-choices span {
  color: var(--muted);
  font-weight: 500;
}

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

@media (max-width: 720px) {
  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: stretch;
  }

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

  .cookie-choices-title {
  color: var(--cyan-2);
}

.cookie-choices label {
    grid-template-columns: auto 1fr;
  }

  .cookie-choices span {
    grid-column: 2;
  }
}

.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);
}

.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);
}
