:root {
  --bg: #fbfcfe;
  --surface: #ffffff;
  --surface-soft: #f6f8fb;
  --ink: #101418;
  --muted: #647080;
  --quiet: #8a96a6;
  --line: #dfe5ee;
  --soft-line: #edf1f6;
  --accent: #d71920;
  --accent-dark: #aa1419;
  --focus: rgba(215, 25, 32, 0.14);
  --shadow: 0 16px 42px rgba(16, 20, 24, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  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;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
select {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  width: 100%;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: white;
  background: var(--accent);
  border-radius: 6px;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: #313b47;
  font-size: 0.9rem;
  font-weight: 760;
}

.main-nav a {
  padding-block: 6px;
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--accent);
}

main,
.site-footer {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.58fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: center;
  padding: clamp(54px, 8vw, 98px) 0 46px;
}

.hub-hero {
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  max-width: 760px;
  font-size: clamp(2.7rem, 5.5vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 3.1vw, 2.9rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.26;
  letter-spacing: 0;
}

.hero-copy > p:last-of-type,
.section-heading p,
.plan-section > div > p,
.video-card p,
.event-card span,
.fighter-card p,
.site-footer {
  color: var(--muted);
}

.hero-copy > p:last-of-type {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 1.08rem;
  line-height: 1.7;
}

.launch-note {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 9px 11px;
  color: var(--ink);
  background: var(--surface-soft);
  font-size: 0.92rem;
  font-weight: 760;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.primary-link,
.secondary-link,
.watch-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  width: fit-content;
  border-radius: 6px;
  padding: 0 16px;
  font-weight: 850;
}

.primary-link,
.watch-button {
  border: 0;
  color: white;
  background: var(--ink);
  cursor: pointer;
}

.primary-link:hover,
.watch-button:hover {
  background: var(--accent);
}

.primary-link:disabled {
  cursor: wait;
  opacity: 0.65;
}

.secondary-link {
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--surface);
}

.secondary-link:hover {
  border-color: #c4ccd8;
}

.hero-panel,
.hub-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.panel-header .eyebrow {
  margin: 0;
}

.panel-header span {
  color: var(--quiet);
  font-size: 0.85rem;
  font-weight: 800;
}

.mock-search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 8px 0 14px;
  background: var(--surface-soft);
}

.mock-search span {
  min-width: 0;
  color: var(--quiet);
  font-size: 0.95rem;
}

.mock-search strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 5px;
  padding: 0 12px;
  color: white;
  background: var(--ink);
  font-size: 0.85rem;
}

.quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 22px;
}

.quick-filters span,
.video-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 9px;
  color: #405061;
  background: var(--surface);
  font-size: 0.75rem;
  font-weight: 840;
}

.quick-filters span:first-child {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
}

.indexed-list {
  display: grid;
  gap: 8px;
}

.indexed-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--soft-line);
  padding-top: 12px;
}

.indexed-list strong,
.indexed-list span {
  min-width: 0;
  font-size: 0.9rem;
}

.indexed-list span {
  color: var(--muted);
  text-align: right;
}

.hub-lanes {
  display: grid;
  gap: 10px;
}

.hub-lanes a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  padding: 14px;
  background: var(--surface-soft);
}

.hub-lanes strong {
  font-size: 0.96rem;
}

.hub-lanes span {
  border-radius: 999px;
  padding: 4px 9px;
  color: var(--muted);
  background: var(--surface);
  font-size: 0.74rem;
  font-weight: 880;
  white-space: nowrap;
}

.hub-lanes a:hover {
  border-color: #cbd3df;
}

.hub-lanes a:hover strong {
  color: var(--accent);
}

.hub-lanes a:first-child span {
  color: white;
  background: var(--accent);
}

.metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 86px;
  background: var(--line);
}

.metrics-strip div {
  padding: 18px;
  background: var(--surface);
}

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

.metrics-strip strong {
  margin-bottom: 4px;
  font-size: 1.35rem;
  line-height: 1;
}

.metrics-strip span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 760;
}

.library-section,
.events-section,
.fighters-section,
.plan-section,
.media-section,
.calendar-section,
.rankings-section,
.advertise-section,
.home-section {
  margin-bottom: 86px;
}

.page-hero {
  padding: 54px 0 34px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 52px;
}

.page-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(2.3rem, 4.8vw, 4.8rem);
}

.page-hero p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 20px;
}

.section-heading p {
  max-width: 460px;
  margin-bottom: 0;
  font-weight: 740;
}

.view-link {
  color: var(--accent);
  font-weight: 900;
}

.view-link:hover {
  color: var(--accent-dark);
}

.archive-status {
  display: grid;
  gap: 4px;
  justify-items: end;
  text-align: right;
}

.archive-status p {
  margin: 0;
}

#syncStatus {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.filter-bar {
  display: grid;
  grid-template-columns:
    minmax(240px, 1fr)
    minmax(170px, 0.34fr)
    minmax(135px, 0.22fr)
    minmax(125px, 0.2fr)
    minmax(145px, 0.22fr)
    auto;
  gap: 10px;
  align-items: end;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--surface);
}

.filter-bar label {
  display: grid;
  gap: 7px;
  color: #334155;
  font-size: 0.82rem;
  font-weight: 850;
}

.filter-bar input,
.filter-bar select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--surface);
}

.filter-bar input:focus,
.filter-bar select:focus {
  outline: 3px solid var(--focus);
  border-color: var(--accent);
}

.ghost-button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--surface);
  cursor: pointer;
  font-weight: 850;
}

.ghost-button:hover {
  border-color: #c4ccd8;
}

.danger-button:hover {
  border-color: var(--accent);
  color: white;
  background: var(--accent);
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.admin-tab {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 14px;
  color: var(--muted);
  background: var(--surface);
  cursor: pointer;
  font-weight: 850;
}

.admin-tab.is-active,
.admin-tab:hover {
  border-color: var(--ink);
  color: white;
  background: var(--ink);
}

.admin-token-bar,
.admin-toolbar {
  display: grid;
  gap: 10px;
  align-items: end;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--surface);
}

.admin-token-bar {
  grid-template-columns: minmax(260px, 1fr) auto;
}

.admin-toolbar {
  grid-template-columns: minmax(150px, 0.26fr) minmax(240px, 1fr) auto;
}

.admin-contact-toolbar {
  display: grid;
  grid-template-columns: minmax(140px, 0.22fr) minmax(150px, 0.24fr) minmax(260px, 1fr) auto;
  gap: 10px;
  align-items: end;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--surface);
}

.admin-token-bar label,
.admin-toolbar label,
.admin-contact-toolbar label,
.admin-fields label {
  display: grid;
  gap: 7px;
  color: #334155;
  font-size: 0.82rem;
  font-weight: 850;
}

.admin-token-bar input,
.admin-toolbar input,
.admin-toolbar select,
.admin-contact-toolbar input,
.admin-contact-toolbar select,
.admin-fields input,
.admin-fields select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 11px;
  color: var(--ink);
  background: var(--surface);
}

.admin-token-bar input:focus,
.admin-toolbar input:focus,
.admin-toolbar select:focus,
.admin-contact-toolbar input:focus,
.admin-contact-toolbar select:focus,
.admin-fields input:focus,
.admin-fields select:focus {
  outline: 3px solid var(--focus);
  border-color: var(--accent);
}

.admin-status {
  justify-items: start;
  margin-bottom: 18px;
  text-align: left;
}

.admin-list {
  display: grid;
  gap: 14px;
}

.admin-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: var(--surface);
}

.admin-card.needs-review {
  border-color: rgba(215, 25, 32, 0.35);
}

.admin-thumb {
  align-self: start;
  overflow: hidden;
  border-radius: 6px;
  background: #111;
}

.admin-thumb img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.admin-card-heading {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.admin-card-heading h3 {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.admin-card-heading > span {
  align-self: start;
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--accent);
  background: rgba(215, 25, 32, 0.08);
  font-size: 0.74rem;
  font-weight: 900;
  white-space: nowrap;
}

.admin-fields {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.admin-fields label:first-child,
.admin-fields label:nth-child(3) {
  grid-column: span 2;
}

.admin-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.admin-save-status {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.admin-empty {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--surface);
}

.admin-contact-list {
  display: grid;
  gap: 14px;
}

.admin-message-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--surface);
}

.admin-message-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.admin-message-heading h3 {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.admin-message-heading time {
  flex: 0 0 auto;
  color: var(--quiet);
  font-size: 0.82rem;
  font-weight: 800;
}

.admin-message-meta {
  display: grid;
  gap: 5px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 720;
}

.contact-source-link,
.contact-source-empty {
  overflow-wrap: anywhere;
}

.contact-source-link {
  color: var(--accent);
}

.admin-message-body {
  color: var(--ink);
  white-space: pre-wrap;
}

.coming-soon-panel,
.roadmap-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--surface);
}

.coming-soon-panel div,
.roadmap-panel div {
  max-width: 760px;
}

.coming-soon-panel h2,
.roadmap-panel h2 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 2.6vw, 2.45rem);
}

.coming-soon-panel p:last-child,
.roadmap-panel p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-inline {
  margin-top: 16px;
  color: var(--ink);
  font-weight: 850;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.58fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: start;
}

.contact-form,
.contact-side {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 22px;
}

.contact-privacy {
  grid-column: 1 / -1;
  display: grid;
  gap: 4px;
  border: 1px solid var(--soft-line);
  border-radius: 6px;
  padding: 13px 14px;
  background: var(--surface-soft);
}

.contact-privacy strong,
.contact-privacy span {
  display: block;
}

.contact-privacy span {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.contact-form label em {
  color: var(--quiet);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--surface-soft);
}

.contact-form input,
.contact-form select {
  min-height: 44px;
  padding: 0 12px;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
  padding: 12px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid var(--focus);
  border-color: var(--accent);
}

.contact-message,
.contact-actions {
  grid-column: 1 / -1;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-actions p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.contact-actions p[data-tone="success"] {
  color: #116149;
}

.contact-actions p[data-tone="error"] {
  color: var(--accent-dark);
}

.honeypot {
  display: none !important;
}

.contact-side {
  padding: 22px;
}

.contact-side h2 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  overflow-wrap: anywhere;
}

.contact-side > p:not(.eyebrow) {
  color: var(--muted);
}

.contact-notes {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contact-notes article {
  border-top: 1px solid var(--soft-line);
  padding-top: 12px;
}

.contact-notes strong,
.contact-notes span {
  display: block;
}

.contact-notes span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.about-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--surface);
}

.about-grid span {
  display: inline-flex;
  margin-bottom: 22px;
  border-radius: 999px;
  padding: 4px 9px;
  color: var(--accent);
  background: rgba(215, 25, 32, 0.08);
  font-size: 0.74rem;
  font-weight: 900;
}

.about-grid strong {
  display: block;
  margin-bottom: 9px;
}

.about-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.compact-grid .video-card:nth-child(n + 7) {
  display: none;
}

.video-list-shell {
  position: relative;
}

.video-list-shell.is-collapsed {
  max-height: 1390px;
  overflow: hidden;
}

.video-list-shell.is-collapsed .video-fade {
  opacity: 1;
  pointer-events: auto;
}

.video-fade {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 245px;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 22px;
  background: linear-gradient(rgba(251, 252, 254, 0), rgba(251, 252, 254, 0.95) 62%, var(--bg));
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.reveal-button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--surface);
  box-shadow: var(--shadow);
  cursor: pointer;
  font-weight: 850;
}

.reveal-button:hover {
  border-color: #c4ccd8;
}

.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.video-card:hover {
  border-color: #cbd3df;
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

.thumb-button {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: #111;
  cursor: pointer;
}

.thumb-button img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 180ms ease;
}

.thumb-button:hover img {
  transform: scale(1.02);
}

.duration,
.full-label {
  position: absolute;
  border-radius: 5px;
  padding: 3px 7px;
  color: white;
  font-size: 0.74rem;
  font-weight: 900;
}

.duration {
  right: 8px;
  bottom: 8px;
  background: rgba(0, 0, 0, 0.78);
}

.full-label {
  left: 8px;
  bottom: 8px;
  background: rgba(215, 25, 32, 0.92);
}

.video-body {
  padding: 15px;
}

.video-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 10px;
}

.video-card p {
  margin-bottom: 13px;
  font-size: 0.92rem;
}

.video-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.watch-button {
  min-height: 36px;
  font-size: 0.88rem;
}

.correction-link {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.correction-link:hover {
  color: var(--accent);
}

.media-grid,
.calendar-list,
.ranking-grid,
.fighter-grid,
.plan-grid {
  display: grid;
  gap: 14px;
}

.media-grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
}

.calendar-list,
.ranking-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fighter-grid,
.plan-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fighter-card,
.plan-grid article,
.event-card,
.media-card,
.calendar-list article,
.ranking-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.media-card,
.calendar-list article,
.ranking-grid article {
  padding: 18px;
}

.media-card span,
.calendar-list span,
.ranking-grid span {
  display: inline-flex;
  margin-bottom: 22px;
  border-radius: 999px;
  padding: 4px 9px;
  color: var(--accent);
  background: rgba(215, 25, 32, 0.08);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.media-card strong,
.calendar-list strong,
.ranking-grid strong {
  display: block;
  margin-bottom: 9px;
}

.media-card p,
.calendar-list p,
.ranking-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.calendar-list article.is-featured {
  border-color: rgba(215, 25, 32, 0.26);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
}

.calendar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.calendar-actions a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--ink);
  background: white;
  font-size: 0.78rem;
  font-weight: 850;
}

.calendar-actions a:first-child {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
}

.lead-card {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}

.lead-card p {
  color: rgba(255, 255, 255, 0.72);
}

.lead-card span {
  color: white;
  background: rgba(255, 255, 255, 0.14);
}

.fighter-card {
  padding: 18px;
}

.fighter-card span {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--accent);
  font-size: 0.83rem;
  font-weight: 900;
}

.fighter-card strong,
.fighter-card p {
  display: block;
}

.fighter-card strong {
  margin-bottom: 8px;
}

.fighter-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.muted-card span {
  color: var(--ink);
  background: var(--surface-soft);
}

.polished-grid .fighter-card {
  min-height: 176px;
}

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

.event-card {
  display: block;
  padding: 16px;
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.event-link:hover {
  border-color: #cbd3df;
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

.event-link:hover strong {
  color: var(--accent);
}

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

.event-card strong {
  margin-bottom: 7px;
}

.event-card span {
  font-size: 0.92rem;
}

.plan-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 52px;
}

.plan-section > div > p {
  font-size: 1rem;
}

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

.plan-grid article {
  padding: 18px;
}

.plan-grid strong {
  display: block;
  margin-bottom: 10px;
}

.plan-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.advertise-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 44px 0;
}

.advertise-section div {
  max-width: 720px;
}

.advertise-section p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.collection-hero {
  padding: 46px 0 30px;
  border-bottom: 1px solid var(--line);
}

.collection-hero h1 {
  max-width: 820px;
  margin-bottom: 14px;
}

.collection-hero p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.back-link:hover {
  color: var(--accent);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 900;
}

@media (max-width: 1000px) {
  .hero,
  .plan-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .filter-bar {
    grid-template-columns: 1fr 1fr;
  }

  .contact-side {
    order: -1;
  }

  .admin-token-bar,
  .admin-toolbar,
  .admin-contact-toolbar,
  .admin-fields {
    grid-template-columns: 1fr 1fr;
  }

  .admin-card {
    grid-template-columns: 180px minmax(0, 1fr);
  }

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

  .fighter-grid,
  .about-grid,
  .media-grid,
  .calendar-list,
  .ranking-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-list-shell.is-collapsed {
    max-height: 1580px;
  }
}

@media (max-width: 680px) {
  main,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .site-header,
  .section-heading,
  .coming-soon-panel,
  .roadmap-panel,
  .advertise-section,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .archive-status {
    justify-items: start;
    text-align: left;
  }

  .main-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-actions,
  .primary-link,
  .secondary-link {
    width: 100%;
  }

  .primary-link,
  .secondary-link {
    min-width: 0;
  }

  .metrics-strip,
  .filter-bar,
  .contact-form,
  .admin-token-bar,
  .admin-toolbar,
  .admin-contact-toolbar,
  .admin-fields,
  .admin-card,
  .about-grid,
  .video-grid,
  .event-grid,
  .media-grid,
  .calendar-list,
  .ranking-grid,
  .fighter-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-fields label:first-child,
  .admin-fields label:nth-child(3) {
    grid-column: auto;
  }

  .admin-message-heading,
  .admin-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .indexed-list article {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .indexed-list span {
    text-align: left;
  }

  .video-list-shell.is-collapsed {
    max-height: 1650px;
  }
}
