/* =========================================================================
   Simply Matched Boxing — theme styles
   Ported from the Simply Matched Boxing design system.
   ========================================================================= */

:root {
	--bg: #0a0908;
	--panel: #141210;
	--panel-2: #1d1a16;
	--fg: #EDEAE0;
	--fg-dim: rgba(237, 234, 224, .62);
	--fg-faint: rgba(237, 234, 224, .40);
	--line: rgba(237, 234, 224, .12);
	--gold: #E6A52A;
	--gold-ink: #E6A52A;
	--ink: #0a0908;
	--maxw: 1280px;
	--nav-h: 73px;
	color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--bg);
	color: var(--fg);
	font-family: 'Archivo', system-ui, sans-serif;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	transition: background-color .55s ease, color .4s ease;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold); color: #0a0908; }

[data-tw], .smb-nav, .smb-btn, .smb-event-row, .smb-fighter-card, .smb-filter__chip, .smb-footer, .smb-section--panel, .smb-ticker {
	transition: background-color .45s ease, border-color .45s ease, color .4s ease;
}

/* ---- Animations ---- */
@keyframes smb-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes smb-ticker-marquee { from { transform: translateX(0); } to { transform: translateX(-33.333%); } }   /* 3 identical copies -> one copy = 33.333%, seam invisible */
@keyframes smb-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes smb-scrolldot { 0% { transform: translateY(-2px); opacity: 0; } 35% { opacity: 1; } 100% { transform: translateY(16px); opacity: 0; } }

[data-reveal] {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	* { animation: none !important; transition: none !important; }
	[data-reveal] { opacity: 1; transform: none; }
	html { scroll-behavior: auto; }
}

/* ---- Layout ---- */
.smb-container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }
.smb-container--narrow { max-width: 1040px; }
.smb-container--form { max-width: 860px; }
.smb-main { display: block; }

.smb-skip-link {
	position: absolute; left: -9999px; top: 0; z-index: 200;
	background: var(--gold); color: #0a0908; padding: 10px 18px; font-weight: 700;
}
.smb-skip-link:focus { left: 12px; top: 12px; }

/* ---- Typography ---- */
.smb-h1 { margin: 0; font: 400 clamp(46px, 7vw, 110px)/0.86 'Anton', sans-serif; text-transform: uppercase; letter-spacing: -.01em; }
.smb-h2 { margin: 14px 0 0; font: 400 clamp(40px, 5.5vw, 88px)/0.9 'Anton', sans-serif; text-transform: uppercase; letter-spacing: -.01em; }
.smb-h3 { margin: 0 0 24px; font: 400 clamp(26px, 3.4vw, 44px)/0.95 'Anton', sans-serif; text-transform: uppercase; }
.smb-eyebrow { font: 600 12px/1 'Archivo'; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-ink); }
.smb-gold { color: var(--gold); }
.smb-skew { display: inline-block; transform: skewX(-7deg); }
.smb-muted { color: var(--fg-dim); }
.smb-lead { margin: 22px 0 0; max-width: 520px; font: 400 17px/1.7 'Archivo'; color: var(--fg-dim); }
.smb-mt { margin-top: 64px; }

.smb-prose { font: 400 16px/1.7 'Archivo'; color: var(--fg-dim); }
.smb-prose > :first-child { margin-top: 0; }
.smb-prose p { margin: 0 0 1em; }
.smb-prose a { color: var(--gold-ink); text-decoration: underline; }
.smb-prose strong, .smb-prose b { font-weight: 700; color: var(--fg); }

/* Section heading — Anton, uppercase, full cream, with a short gold rule above to breathe. */
.smb-prose h2 { margin: 1.9em 0 .6em; font: 400 clamp(26px, 3.4vw, 36px)/1.1 'Anton', sans-serif; text-transform: uppercase; letter-spacing: .005em; color: var(--fg); }
.smb-prose h2::before { content: ""; display: block; width: 44px; height: 3px; margin-bottom: 18px; border-radius: 3px; background: var(--gold); }

/* Subheading — bold Archivo, cream; clearly below h2. */
.smb-prose h3 { margin: 1.6em 0 .5em; font: 700 19px/1.4 'Archivo', sans-serif; letter-spacing: .01em; color: var(--fg); }
/* Minor heading — small uppercase label. */
.smb-prose h4 { margin: 1.4em 0 .45em; font: 700 13px/1.4 'Archivo', sans-serif; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-dim); }

/* Lists — body-dim text, gold markers, comfortable rhythm. */
.smb-prose ul, .smb-prose ol { margin: 0 0 1.25em; padding-left: 1.5em; color: var(--fg-dim); }
.smb-prose li { margin: 0 0 .5em; line-height: 1.7; padding-left: .25em; }
.smb-prose li::marker { color: var(--gold); }
.smb-prose ol > li::marker { font-weight: 700; }
.smb-prose li > ul, .smb-prose li > ol { margin: .5em 0 0; }

/* Divider + quote. */
.smb-prose hr { margin: 2em 0; border: 0; border-top: 1px solid var(--line); }
.smb-prose blockquote { margin: 1.4em 0; padding: 4px 0 4px 20px; border-left: 3px solid var(--gold); color: var(--fg-dim); font-style: italic; }

.smb-empty { font: 400 16px/1.6 'Archivo'; color: var(--fg-dim); padding: 30px 0; }

/* ---- Buttons ---- */
.smb-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	background: var(--gold); color: #0a0908;
	font: 700 13px/1 'Archivo'; letter-spacing: .14em; text-transform: uppercase;
	padding: 16px 26px; border: 1px solid var(--gold); border-radius: 2px; cursor: pointer;
	transition: transform .25s, box-shadow .25s, background-color .25s, color .25s, border-color .25s;
}
.smb-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 38px -10px var(--gold); }
.smb-btn--sm { padding: 13px 20px; font-size: 12px; }
.smb-btn--lg { padding: 18px 32px; font-size: 13px; }
.smb-btn--ghost { background: transparent; color: var(--fg); border-color: var(--line); }
.smb-btn--ghost:hover { border-color: var(--fg); box-shadow: none; }

.smb-link-underline {
	font: 600 12px/1 'Archivo'; letter-spacing: .16em; text-transform: uppercase;
	color: var(--fg-dim); border-bottom: 1px solid var(--line); padding-bottom: 6px;
	transition: color .25s, border-color .25s; white-space: nowrap;
}
.smb-link-underline:hover { color: var(--fg); border-color: var(--gold); }

/* ---- Contact modal ---- */
.smb-modal {
	position: fixed; inset: 0; z-index: 120;
	display: flex; align-items: center; justify-content: center;
	padding: 24px;
	opacity: 0; visibility: hidden;
	transition: opacity .3s ease, visibility .3s ease;
}
.smb-modal[hidden] { display: flex; }            /* keep flex layout; visibility handles hide */
.smb-modal.is-open { opacity: 1; visibility: visible; }
.smb-modal__overlay {
	position: absolute; inset: 0; z-index: 1;
	background: rgba(0, 0, 0, .72);
	backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.smb-modal__dialog {
	position: relative; z-index: 2;
	width: 100%; max-width: 420px;
	background: var(--panel); border: 1px solid var(--line); border-top: 3px solid var(--gold);
	border-radius: 4px;
	padding: 40px 32px 34px;
	box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .9);
	transform: translateY(16px) scale(.98);
	transition: transform .35s cubic-bezier(.16, 1, .3, 1);
	max-height: calc(100vh - 48px); overflow-y: auto;
}
.smb-modal.is-open .smb-modal__dialog { transform: none; }
.smb-modal__title { margin: 8px 0 0; font: 400 clamp(30px, 6vw, 40px)/0.95 'Anton', sans-serif; text-transform: uppercase; }
.smb-modal__close {
	position: absolute; top: 14px; right: 14px;
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px;
	background: transparent; color: var(--fg-dim);
	border: 1px solid var(--line); border-radius: 50%; cursor: pointer;
	transition: color .25s, border-color .25s, background-color .25s;
}
.smb-modal__close:hover { color: var(--fg); border-color: var(--gold); }

.smb-modal__options { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.smb-contact {
	position: relative; z-index: 1;
	display: flex; align-items: center; gap: 16px;
	padding: 16px 18px;
	background: var(--panel-2); border: 1px solid var(--line); border-radius: 3px;
	color: var(--fg);
	transition: border-color .25s, transform .25s, background-color .25s;
}
/* Inner icon/text never swallow the row's click — the whole <a> stays the target. */
.smb-contact > * { pointer-events: none; }
.smb-contact:hover { border-color: var(--gold); transform: translateY(-2px); }
.smb-contact__icon {
	flex: 0 0 auto;
	display: inline-flex; align-items: center; justify-content: center;
	width: 46px; height: 46px;
	background: var(--gold); color: #0a0908;
	border-radius: 50%;
}
.smb-contact__text { font: 600 16px/1.3 'Archivo'; letter-spacing: .01em; word-break: break-word; }

body.smb-no-scroll { overflow: hidden; }

/* ---- Badges ---- */
.smb-badge {
	display: inline-block; font: 700 10px/1 'Archivo'; letter-spacing: .16em; text-transform: uppercase;
	padding: 8px 12px; border-radius: 2px; white-space: nowrap;
}
.smb-badge--gold { background: var(--gold); color: #0a0908; }
.smb-badge--outline { color: var(--gold-ink); border: 1px solid var(--line); }

/* ---- Logo ---- */
.smb-logo { display: inline-flex; align-items: center; }
.smb-logo__img { display: block; height: 34px; width: auto; }   /* transparent PNG; fits the 73px bar, vertically centred */
.smb-footer__brand .smb-logo__img { height: 46px; }             /* a touch larger in the footer */

/* ---- Nav ---- */
.smb-nav { position: fixed; top: 0; left: 0; width: 100%; z-index: 60; border-bottom: 1px solid transparent; }
.smb-nav.is-stuck { background: color-mix(in srgb, var(--bg) 86%, transparent); border-bottom-color: var(--line); backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%); }
.smb-nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; max-width: var(--maxw); margin: 0 auto; padding: 16px 40px; }
.smb-menu { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.smb-menu a { font: 600 12px/1 'Archivo'; letter-spacing: .18em; text-transform: uppercase; color: var(--fg-dim); transition: color .25s; }
.smb-menu a:hover, .smb-menu .current-menu-item > a { color: var(--fg); }
.smb-nav__actions { display: flex; align-items: center; gap: 12px; }

.smb-burger { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; align-items: center; justify-content: center; }
.smb-burger span { display: block; width: 18px; height: 2px; background: var(--fg); transition: transform .3s, opacity .3s; }
.smb-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.smb-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.smb-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Drawer-only chrome — hidden on desktop, shown inside the mobile drawer below. */
.smb-nav__backdrop, .smb-nav__close, .smb-nav__menu-cta { display: none; }

/* Desktop: the menu now lives at <body> level (moved out of the header so the mobile
   drawer can't be trapped by .is-stuck's backdrop-filter). Re-anchor it into the header
   bar — fixed, vertically centred over the 73px bar. The original space-between layout
   sat the menu a constant ~55px left of viewport-centre (the CTA is wider than the logo),
   so shift the links to match. Container is always centred, so this holds at all widths. */
@media (min-width: 861px) {
	.smb-nav__menu { position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); display: flex; align-items: center; justify-content: center; z-index: 61; pointer-events: none; }
	.smb-nav__menu .smb-menu { transform: translateX(-48px); pointer-events: auto; }
}

/* ---- Photo placeholders ---- */
.smb-photo { position: relative; overflow: hidden; border-radius: 3px; background: var(--panel-2); }
.smb-photo img { width: 100%; height: 100%; object-fit: cover; }
.smb-photo--empty { background: repeating-linear-gradient(45deg, var(--panel) 0 14px, var(--panel-2) 14px 28px); border: 1px solid var(--line); }
.smb-photo__tag { position: absolute; top: 14px; left: 14px; font: 600 9px/1 ui-monospace, monospace; letter-spacing: .12em; color: var(--fg-faint); }

/* ---- Hero ---- */
.smb-hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding: 140px 0 90px; }
.smb-hero__bg { position: absolute; top: -10%; left: 50%; width: 1100px; height: 1100px; margin-left: -550px; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--gold) 26%, transparent) 0%, transparent 62%); pointer-events: none; filter: blur(8px); }
.smb-hero__ghost { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font: 400 min(34vw, 560px)/0.8 'Anton', sans-serif; color: var(--fg); opacity: .035; letter-spacing: -.02em; white-space: nowrap; pointer-events: none; user-select: none; }
.smb-hero__layout { position: relative; z-index: 2; min-width: 0; max-width: 100%; }
/* Poster present: poster beside the headline. No poster: headline above a row of cards. */
.smb-hero__layout--poster { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); gap: 56px; align-items: center; }
.smb-hero__layout--cards { display: flex; flex-direction: column; align-items: center; }
.smb-hero__center { text-align: center; width: 100%; min-width: 0; max-width: 100%; }
.smb-hero__headline { width: fit-content; max-width: 100%; margin-inline: auto; }   /* shrink to the headline's own width so the matchup centres under its letters, not the page */
.smb-hero__title { margin: 18px 0 0; font: 400 clamp(34px, 8vw, 132px)/0.86 'Anton', sans-serif; text-transform: uppercase; letter-spacing: -.01em; overflow-wrap: break-word; }
.smb-hero__title-name { display: block; }
.smb-hero__title-vs { display: block; margin: 6px 0; font-size: .38em; line-height: 1; letter-spacing: .16em; color: var(--gold); }
.smb-hero__matchup { margin: 14px 0 0; font: 400 clamp(22px, 3.8vw, 48px)/0.95 'Anton', sans-serif; text-transform: uppercase; letter-spacing: -.005em; color: var(--fg); }   /* main-event matchup: below the event name, above the date/venue */
.smb-hero__matchup--split { display: grid; grid-template-columns: 1fr auto 1fr; align-items: baseline; column-gap: .34em; }   /* pivot on VS: the auto centre column keeps VS on the headline's centreline regardless of name lengths */
.smb-hero__matchup--split .smb-hero__matchup-name:first-child { text-align: right; }
.smb-hero__matchup--split .smb-hero__matchup-name:last-child { text-align: left; }
.smb-hero__meta { margin-top: 24px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 16px; font: 600 13px/1 'Archivo'; letter-spacing: .16em; text-transform: uppercase; color: var(--fg-dim); }
.smb-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.smb-hero__cta { margin-top: 34px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* Event poster panel (event has a poster) */
.smb-hero__poster-panel { position: relative; aspect-ratio: 4 / 5; border-radius: 3px; overflow: hidden; border: 1px solid var(--line); background: var(--panel-2); }
.smb-hero__poster-img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Fighter corner cards (no poster) — tidy bordered cards below the headline */
.smb-hero__cards { display: grid; grid-template-columns: repeat(2, minmax(0, 240px)); justify-content: center; gap: 20px; margin-top: 52px; width: 100%; }
.smb-hero__fighter { margin: 0; background: var(--panel); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.smb-hero__fighter--red { border-top: 3px solid #e0563f; }
.smb-hero__fighter--blue { border-top: 3px solid #4f7bd6; }
.smb-hero__fighter-photo { aspect-ratio: 4 / 5; }
.smb-hero__fighter-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.smb-hero__fighter-info { padding: 14px 16px 16px; text-align: left; }
.smb-hero__fighter-corner { display: block; font: 700 10px/1 'Archivo'; letter-spacing: .18em; text-transform: uppercase; }
.smb-hero__fighter--red .smb-hero__fighter-corner { color: #e0563f; }
.smb-hero__fighter--blue .smb-hero__fighter-corner { color: #4f7bd6; }
.smb-hero__fighter-name { display: block; margin-top: 9px; font: 400 22px/0.95 'Anton', sans-serif; text-transform: uppercase; }
.smb-hero__fighter-record { display: block; margin-top: 7px; font: 700 12px/1 'Archivo'; letter-spacing: .12em; color: var(--fg-dim); }
.smb-hero__scroll { position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 3; }
.smb-hero__scroll span:first-child { font: 600 10px/1 'Archivo'; letter-spacing: .28em; text-transform: uppercase; color: var(--fg-faint); }
.smb-hero__mouse { position: relative; width: 22px; height: 34px; border: 1px solid var(--line); border-radius: 12px; }
.smb-hero__dot { position: absolute; left: 50%; top: 7px; margin-left: -2px; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); animation: smb-scrolldot 1.6s infinite; }

/* ---- Ticker ---- */
.smb-ticker { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--gold); overflow: hidden; white-space: nowrap; }
.smb-ticker__track { display: inline-flex; width: max-content; animation: smb-ticker-marquee 16s linear infinite; will-change: transform; backface-visibility: hidden; }   /* max-content so -33.333% = one copy (seamless); 16s matches the sponsor banner ~63px/s */
.smb-ticker__group { display: inline-flex; align-items: center; padding: 16px 0; font: 400 22px/1 'Anton', sans-serif; color: #0a0908; letter-spacing: .02em; }
.smb-ticker__item { padding: 0 26px; }
.smb-ticker__sep { opacity: .45; }

/* Sponsor banner — black full-width strip, logos directly on the dark token, seamless
   marquee reusing the @keyframes smb-marquee loop (track = two duplicated groups). */
.smb-sponsors { background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; white-space: nowrap; }
.smb-sponsors__track { display: inline-flex; width: max-content; animation: smb-marquee 32s linear infinite; will-change: transform; backface-visibility: hidden; }
.smb-sponsors:hover .smb-sponsors__track { animation-play-state: paused; }   /* desktop: pause so a logo can be clicked */
.smb-sponsors__group { display: inline-flex; align-items: center; flex: none; }
.smb-sponsors__item { display: inline-flex; align-items: center; flex: none; padding: 28px 40px; }
.smb-sponsors__logo { display: block; height: 46px; width: auto; }            /* equal height -> equal visual weight */
@media (max-width: 560px) {
	.smb-sponsors__item { padding: 22px 26px; }
	.smb-sponsors__logo { height: 36px; }
}

/* ---- Sections ---- */
.smb-section { padding: 120px 0; }
.smb-section--top { padding-top: 70px; }
.smb-section--panel { background: var(--panel); }
.smb-section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 50px; }
.smb-section__center { text-align: center; margin-bottom: 56px; }

/* ---- Event list ---- */
.smb-event-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.smb-event-row { display: grid; grid-template-columns: 120px 1fr auto auto; align-items: center; gap: 28px; padding: 26px 20px; border-bottom: 1px solid var(--line); transition: background-color .3s, padding .3s; }
.smb-event-row:hover { background: var(--panel); padding-left: 30px; }
.smb-event-row__date { font: 400 19px/1 'Anton', sans-serif; color: var(--gold); }
.smb-event-row__title { font: 400 26px/1 'Anton', sans-serif; text-transform: uppercase; }
.smb-event-row__tagline { margin-top: 8px; font: 500 13px/1.3 'Archivo'; color: var(--fg-dim); }
.smb-event-row__venue { font: 600 12px/1.5 'Archivo'; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-dim); text-align: right; }
.smb-event-row__loc { display: block; color: var(--fg-faint); }
.smb-event-row__status { justify-self: end; }

/* ---- Tale of the tape ---- */
.smb-tape__grid { display: grid; grid-template-columns: 1fr minmax(180px, 260px) 1fr; align-items: center; gap: 24px; }
.smb-tape__fighter { text-align: center; }
.smb-tape__avatar { aspect-ratio: 1 / 1; max-width: 240px; margin: 0 auto; border-radius: 50%; overflow: hidden; border: 2px solid var(--fg-faint); }
.smb-tape__avatar--red { border-color: var(--gold); }
.smb-tape__avatar .smb-photo { aspect-ratio: 1/1; border-radius: 50%; }
.smb-tape__name { margin-top: 22px; font: 400 32px/0.95 'Anton', sans-serif; text-transform: uppercase; transform: skewX(-5deg); }
.smb-tape__nick { margin-top: 8px; font: 600 12px/1 'Archivo'; letter-spacing: .18em; text-transform: uppercase; }
.smb-tape__vs { display: block; width: fit-content; margin: 0 auto 24px; text-align: center; font: 400 64px/0.8 'Anton', sans-serif; }
.smb-tape__row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 13px 0; border-top: 1px solid var(--line); }
.smb-tape__row:last-child { border-bottom: 1px solid var(--line); }
.smb-tape__val { font: 400 22px/1 'Anton', sans-serif; }
.smb-tape__val--l { text-align: right; }
.smb-tape__val--r { text-align: left; }
.smb-tape__label { padding: 0 16px; font: 600 10px/1 'Archivo'; letter-spacing: .16em; text-transform: uppercase; color: var(--fg-faint); }

/* ---- Roster ---- */
.smb-roster-bar { display: flex; justify-content: flex-end; align-items: center; margin-bottom: 28px; }
.smb-sort { display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.smb-sort__label { font: 600 11px/1 'Archivo', sans-serif; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-dim); }
.smb-sort__select {
	-webkit-appearance: none; -moz-appearance: none; appearance: none;
	background: var(--panel); border: 1px solid var(--line); color: var(--fg);
	font: 600 12px/1 'Archivo', sans-serif; letter-spacing: .04em; padding: 11px 38px 11px 14px;
	border-radius: 2px; cursor: pointer; outline: none; transition: border-color .25s;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%23A29D93' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: right 14px center;
}
.smb-sort__select:hover, .smb-sort__select:focus { border-color: var(--gold); }
.smb-roster-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.smb-fighter-card { border: 1px solid var(--line); border-radius: 4px; overflow: hidden; display: block; transition: border-color .3s, transform .3s; }
.smb-fighter-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.smb-fighter-card__media { position: relative; aspect-ratio: 4 / 5; }
.smb-fighter-card__media .smb-photo { aspect-ratio: 4/5; height: 100%; }
.smb-fighter-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, var(--panel) 2%, transparent 50%); pointer-events: none; }
.smb-fighter-card__badge { position: absolute; top: 14px; right: 14px; z-index: 2; }
.smb-fighter-card__body { padding: 20px; }
.smb-fighter-card__name { font: 400 26px/0.95 'Anton', sans-serif; text-transform: uppercase; transform: skewX(-5deg); }
.smb-fighter-card__meta { margin-top: 4px; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; font: 600 11px/1 'Archivo'; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-dim); }
.smb-fighter-card__record { display: flex; gap: 16px; letter-spacing: 0; }
.smb-fighter-card__rec { display: flex; flex-direction: column; align-items: center; gap: 1px; }
.smb-fighter-card__rec-num { font: 700 18px/0.78 'Archivo', sans-serif; color: var(--gold-ink); }   /* 18px size kept; tight line-height shrinks the 2-line stack so the meta row is no taller than needed */
.smb-fighter-card__rec-lbl { font: 700 9px/0.8 'Archivo', sans-serif; letter-spacing: .1em; color: var(--fg-faint); }   /* 9px size kept; tight line-height */

/* ---- Past results ---- */
.smb-result-list { border-top: 1px solid var(--line); }
.smb-result-row { display: grid; grid-template-columns: 90px 200px 1fr auto; align-items: center; gap: 24px; padding: 22px 14px; border-bottom: 1px solid var(--line); transition: background-color .3s, padding .3s; }
.smb-result-row:hover { background: var(--panel-2); padding-left: 22px; }
.smb-result-row__date { font: 600 12px/1 'Archivo'; letter-spacing: .1em; color: var(--gold-ink); }
.smb-result-row__event { font: 400 19px/1 'Anton', sans-serif; text-transform: uppercase; color: var(--fg-dim); }
.smb-result-row__bout { font: 600 15px/1.4 'Archivo'; }
.smb-result-row__bout strong { font-weight: 700; }
.smb-result-row__method { justify-self: end; }

/* ---- About ---- */
.smb-about__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: center; }
.smb-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.smb-stat { background: var(--panel); padding: 36px 28px; }
.smb-stat__num { font: 400 56px/0.9 'Anton', sans-serif; }
.smb-stat__label { margin-top: 10px; font: 600 11px/1 'Archivo'; letter-spacing: .18em; text-transform: uppercase; color: var(--fg-dim); }
/* About Us band — editable body copy (matches .smb-lead) and 2x2 stat grid. */
.smb-about__body p { margin: 22px 0 0; max-width: 520px; font: 400 17px/1.7 'Archivo'; color: var(--fg-dim); }
@media (max-width: 560px) { .smb-stats { grid-template-columns: 1fr; } }

/* ---- Shop ---- */
.smb-link-underline--muted { color: var(--fg-faint); border-color: var(--line); cursor: default; }
.smb-shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.smb-product { border: 1px solid var(--line); border-radius: 4px; overflow: hidden; transition: border-color .3s; }
.smb-product:hover { border-color: var(--gold); }
.smb-product__media { aspect-ratio: 1 / 1; }
.smb-product__body { padding: 20px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.smb-product__name { font: 600 14px/1.3 'Archivo'; text-transform: uppercase; letter-spacing: .04em; }
.smb-product__price { font: 400 22px/1 'Anton', sans-serif; }

/* ---- Tickets CTA ---- */
.smb-cta { position: relative; padding: 140px 0; overflow: hidden; background: linear-gradient(115deg, #1a1610 0%, #0a0908 55%); }
.smb-cta__glow { position: absolute; top: -30%; right: -5%; width: 760px; height: 760px; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--gold) 30%, transparent), transparent 60%); pointer-events: none; }
.smb-cta__inner { position: relative; z-index: 2; max-width: 1000px; text-align: center; }
.smb-cta__title { margin: 22px 0 0; font: 400 clamp(52px, 8vw, 140px)/0.84 'Anton', sans-serif; text-transform: uppercase; color: #EDEAE0; }
.smb-cta__text { margin: 24px auto 0; max-width: 520px; font: 400 17px/1.6 'Archivo'; color: rgba(237, 234, 224, .6); }
.smb-cta__buttons { margin-top: 40px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ---- Newsletter ---- */
.smb-newsletter { padding: 90px 0; border-top: 1px solid var(--line); }
.smb-newsletter__inner { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.smb-newsletter__form { display: flex; gap: 10px; min-width: 380px; }
.smb-newsletter__form input { flex: 1; background: var(--panel); border: 1px solid var(--line); color: var(--fg); font: 500 14px/1 'Archivo'; padding: 0 18px; height: 54px; border-radius: 2px; outline: none; transition: border-color .25s; }
.smb-newsletter__form input:focus { border-color: var(--gold); }
.smb-newsletter__form .smb-btn { height: 54px; }

/* ---- Footer ---- */
.smb-footer { padding: 70px 0 44px; border-top: 1px solid var(--line); background: var(--panel); }
.smb-footer__cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.smb-footer__brand p { margin: 22px 0 0; max-width: 280px; font: 400 13px/1.6 'Archivo'; color: var(--fg-dim); }
.smb-footer__head { font: 700 11px/1 'Archivo'; letter-spacing: .18em; text-transform: uppercase; color: var(--fg-faint); margin-bottom: 18px; }
.smb-footer__links { display: flex; flex-direction: column; gap: 12px; font: 500 13px/1 'Archivo'; list-style: none; margin: 0; padding: 0; }
.smb-footer__links a { color: var(--fg-dim); transition: color .25s; }
.smb-footer__links a:hover { color: var(--gold-ink); }
.smb-footer__bar { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 20px; font: 500 11px/1 'Archivo'; letter-spacing: .1em; text-transform: uppercase; color: var(--fg-faint); }
/* Footer credit — small Rowells "R" symbol + muted text; "Rowells Group" carries the
   liquid gradient. Mirrors the admin dashboard "Designed by" lockup (same asset/treatment). */
.smb-footer__credit { display: inline-flex; align-items: center; gap: 7px; color: var(--fg-faint); }
.smb-footer__credit .rg-symbol { height: 20px; width: auto; display: block; flex: none; }
.smb-credit-link { position: relative; color: var(--fg-faint); }

/*
 * The flowing gradient lives on an overlay (::after) that animates continuously.
 * We never start/stop the motion — we only fade the overlay's opacity, so the
 * colour eases in on hover and eases back out on leave with no snapping.
 */
.smb-credit-link::after {
	content: attr(data-text);
	position: absolute; left: 0; top: 0;
	/*
	 * One smooth gradient cycling the fluoro palette sideways through the text, with a
	 * gentle vertical wave. Single layer = no additive blending, so colours stay pure
	 * (never white). Wide soft bands keep the blends smooth with no harsh edges.
	 * Only background-position animates, so the letterforms never move.
	 */
	background-image: linear-gradient( 105deg,
		#39FF14 0%,  #39FF14 10%,   /* fluorescent green  */
		#E1FF00 18%, #E1FF00 27%,   /* fluorescent yellow */
		#FF1493 35%, #FF1493 44%,   /* hot pink           */
		#C724FF 52%, #C724FF 60%,   /* candy purple       */
		#1A237E 68%, #1A237E 77%,   /* navy blue          */
		#89CFF0 85%, #89CFF0 93%,   /* baby blue          */
		#39FF14 100% );             /* wrap back to green for a seamless loop */
	background-size: 300% 300%;
	-webkit-background-clip: text; background-clip: text;
	-webkit-text-fill-color: transparent; color: transparent;
	opacity: 0;
	transition: opacity 1.2s ease-in-out;            /* outro: eases gently back out on leave */
	animation: smb-credit-flow 16s linear infinite;  /* colour cycles sideways while gently waving up and down */
	pointer-events: none;
}

/* Desktop: reveal the gradient while hovered (or keyboard-focused); a little quicker on the way in. */
.smb-credit-link:hover::after,
.smb-credit-link:focus-visible::after {
	opacity: 1;
	transition: opacity 0.8s ease-out;               /* intro: quicker than the outro, no snap */
}

/* Touch / no-hover devices: gentle always-on drift. */
@media (hover: none) {
	.smb-credit-link::after { opacity: 1; }
}

/* Sideways liquid drift through the text, with a gentle vertical wave for a fluid, undulating feel. */
@keyframes smb-credit-flow {
	0%    { background-position:    0% 50%; }
	12.5% { background-position:  -37% 80%; }
	25%   { background-position:  -75% 92%; }
	37.5% { background-position: -113% 80%; }
	50%   { background-position: -150% 50%; }
	62.5% { background-position: -187% 20%; }
	75%   { background-position: -225%  8%; }
	87.5% { background-position: -263% 20%; }
	100%  { background-position: -300% 50%; }
}

/* ---- Page heads ---- */
.smb-pagehead { padding: 150px 0 50px; border-bottom: 1px solid var(--line); }
.smb-pagehead__lead { margin: 20px 0 0; max-width: 560px; font: 400 17px/1.6 'Archivo'; color: var(--fg-dim); }
.smb-event-meta { margin-top: 20px; display: flex; align-items: center; flex-wrap: wrap; gap: 14px; font: 600 13px/1 'Archivo'; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-dim); }
.smb-event-meta__cta { margin-top: 28px; }

/* ---- Filter chips ---- */
.smb-filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.smb-filter__chip { font: 600 11px/1 'Archivo'; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-dim); border: 1px solid var(--line); border-radius: 999px; padding: 10px 16px; }
.smb-filter__chip:hover { border-color: var(--gold); color: var(--fg); }
.smb-filter__chip.is-active { background: var(--gold); border-color: var(--gold); color: #0a0908; }

/* ---- Single fighter ---- */
.smb-fighter-single { padding: 150px 0 120px; }
.smb-fighter-single__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: start; }
.smb-fighter-single__media { position: relative; }
.smb-fighter-single__media .smb-photo { aspect-ratio: 4/5; }
.smb-fighter-single__badge { position: absolute; top: 16px; right: 16px; }
.smb-fighter-single__nick { margin-top: 10px; font: 600 14px/1 'Archivo'; letter-spacing: .14em; text-transform: uppercase; }
.smb-fighter-single__record { margin-top: 28px; display: flex; align-items: baseline; gap: 16px; }
.smb-fighter-single__record-num { font: 400 56px/0.9 'Anton', sans-serif; color: var(--gold); }
.smb-statline { margin-top: 34px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.smb-statline__item { background: var(--panel); padding: 22px 18px; }
.smb-statline__num { font: 400 30px/0.9 'Anton', sans-serif; }
.smb-statline__label { margin-top: 8px; font: 600 10px/1 'Archivo'; letter-spacing: .16em; text-transform: uppercase; color: var(--fg-faint); }
.smb-fighter-single__body .smb-prose { margin-top: 30px; max-width: 560px; }
.smb-fighter-single__body .smb-link-underline { display: inline-block; margin-top: 30px; }

/* ---- Card list (single event) ---- */
.smb-card-list { border-top: 1px solid var(--line); margin-bottom: 48px; }
.smb-card-list__row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 4px; border-bottom: 1px solid var(--line); }
.smb-card-list__main { font: 600 16px/1.4 'Archivo'; }
.smb-card-list__meta { font: 600 12px/1 'Archivo'; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-dim); }

/* ---- Sign-up form ---- */
.smb-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.smb-field { display: flex; flex-direction: column; gap: 8px; }
.smb-field--full { grid-column: 1 / -1; }
.smb-field label { font: 600 11px/1 'Archivo'; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-dim); }
.smb-req { color: var(--gold); }
.smb-field input, .smb-field select, .smb-field textarea {
	background: var(--panel); border: 1px solid var(--line); color: var(--fg);
	font: 500 15px/1.4 'Archivo'; padding: 14px 16px; border-radius: 2px; outline: none;
	transition: border-color .25s; width: 100%;
}
.smb-field textarea { resize: vertical; min-height: 130px; }
/* Strip the native <select> chrome so the dropdowns match the text inputs exactly
   (same bg/border/height/padding/radius/text/width), then re-add a custom chevron in
   the right padding so they still read as dropdowns. */
.smb-field select {
	-webkit-appearance: none; -moz-appearance: none; appearance: none;
	padding-right: 42px; cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%23A29D93' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: right 16px center;
}
.smb-field input:focus, .smb-field select:focus, .smb-field textarea:focus { border-color: var(--gold); }
.smb-form .smb-btn { display: flex; width: fit-content; margin: 28px auto 0; }   /* centre the submit button */
.smb-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.smb-form-notice { padding: 16px 20px; border-radius: 3px; margin-bottom: 28px; font: 600 14px/1.5 'Archivo'; }
.smb-form-notice--ok { background: color-mix(in srgb, var(--gold) 18%, transparent); border: 1px solid var(--gold); color: var(--fg); }
.smb-form-notice--err { background: color-mix(in srgb, #d33 16%, transparent); border: 1px solid #d33; color: var(--fg); }

/* Conditional parent/guardian consent section — shown by JS for under-18 applicants. */
.smb-guardian { min-width: 0; margin: 6px 0 0; padding: 22px 26px 28px; border: 1px solid var(--gold); border-radius: 3px; background: color-mix(in srgb, var(--gold) 7%, transparent); }
.smb-guardian[hidden] { display: none; }
.smb-guardian__legend { padding: 0 10px; font: 700 12px/1 'Archivo'; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.smb-guardian__note { margin: 2px 0 22px; max-width: 640px; font: 500 13px/1.55 'Archivo'; color: var(--fg-dim); }
.smb-field--check .smb-check { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; font: 500 13px/1.55 'Archivo'; letter-spacing: normal; text-transform: none; color: var(--fg-dim); }
.smb-field--check .smb-check input { flex: none; width: 20px; height: 20px; margin: 1px 0 0; accent-color: var(--gold); cursor: pointer; }

/* ---- Blog list ---- */
.smb-post-list { display: flex; flex-direction: column; gap: 40px; }
.smb-post-item { border-bottom: 1px solid var(--line); padding-bottom: 30px; }
.smb-post-item__meta { margin: 8px 0 14px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.smb-pagination { margin-top: 50px; }
.smb-pagination a, .smb-pagination .current { padding: 8px 14px; border: 1px solid var(--line); border-radius: 2px; margin-right: 6px; }
.smb-pagination .current { background: var(--gold); color: #0a0908; border-color: var(--gold); }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1024px) {
	.smb-hero__layout--poster { grid-template-columns: 1fr; gap: 34px; justify-items: center; }
	.smb-hero__layout--poster .smb-hero__center { order: -1; }   /* headline above the poster when stacked */
	.smb-hero__poster-panel { width: 100%; max-width: 340px; }
	.smb-roster-grid { grid-template-columns: repeat(2, 1fr); }
	.smb-shop-grid { grid-template-columns: repeat(3, 1fr); }
	.smb-about__grid { grid-template-columns: 1fr; gap: 48px; }
	/* Stacked footer: brand on its own full-width row, link columns evenly gridded below. */
	.smb-footer__cols { grid-template-columns: repeat(3, 1fr); gap: 44px 26px; }
	.smb-footer__brand { grid-column: 1 / -1; }
	.smb-fighter-single__grid { grid-template-columns: 1fr; gap: 40px; }
	.smb-fighter-single__media { max-width: 420px; margin-inline: auto; }   /* centre the photo */
	/* Centre the header block (weight class / name / nickname / record) so it matches the
	   full-width stat grid below. Desktop (two-column) layout is unchanged. */
	.smb-fighter-single__body .smb-eyebrow,
	.smb-fighter-single__nick { text-align: center; }
	.smb-fighter-single__body .smb-h1 { display: block; text-align: center; }   /* .smb-skew makes it inline-block; force block so the name box centres */
	.smb-fighter-single__record { justify-content: center; }
}

@media (max-width: 860px) {
	.smb-container { padding: 0 22px; }
	.smb-nav__inner { padding: 14px 22px; }

	/* Mobile menu — drawer + backdrop live INSIDE .smb-nav (its own stacking context),
	   so their z-indexes are comparable. The old backdrop was body::after at root z65,
	   which painted on top of the whole nav (z60) and buried the drawer. */
	.smb-burger { display: flex; }
	.smb-nav__inner { position: relative; z-index: 2; }   /* bar above the backdrop */
	.smb-nav__backdrop {
		display: block; position: fixed; inset: 0; z-index: 70;   /* above the header (z60), below the drawer */
		background: rgba(0, 0, 0, .6); opacity: 0; visibility: hidden;
		transition: opacity .35s ease, visibility .35s ease;
	}
	body.smb-menu-open .smb-nav__backdrop { opacity: 1; visibility: visible; }
	.smb-nav__menu {
		position: fixed; inset: 0 0 0 auto; width: min(82vw, 320px); z-index: 80;   /* above the header (z60) now that the drawer is a <body> child */
		display: flex; flex-direction: column; align-items: stretch;
		background: var(--panel); border-left: 1px solid var(--line);
		transform: translateX(100%); transition: transform .35s cubic-bezier(.16, 1, .3, 1);
		padding: 88px 30px 40px; overflow-y: auto;
	}
	body.smb-menu-open .smb-nav__menu { transform: translateX(0); }
	body.smb-menu-open { overflow: hidden; }            /* lock background scroll */
	.smb-nav__close {
		display: inline-flex; position: absolute; top: 22px; right: 22px;
		width: 40px; height: 40px; align-items: center; justify-content: center;
		background: transparent; color: var(--fg-dim);
		border: 1px solid var(--line); border-radius: 50%; cursor: pointer;
		transition: color .25s, border-color .25s;
	}
	.smb-nav__close:hover { color: var(--fg); border-color: var(--gold); }
	.smb-menu { flex-direction: column; align-items: stretch; gap: 4px; width: 100%; }
	.smb-menu a { font-size: 16px; display: block; padding: 12px 0; border-bottom: 1px solid var(--line); }
	.smb-nav__cta { display: none; }                    /* the cramped bar CTA */
	.smb-nav__menu-cta { display: inline-flex; justify-content: center; margin-top: 28px; }

	.smb-section { padding: 80px 0; }
	.smb-section__head { flex-direction: column; align-items: flex-start; gap: 18px; }
	.smb-tape__grid { grid-template-columns: 1fr; row-gap: 0; }
	/* Flatten the ledger so the VS and the stat rows become orderable grid items
	   (they're both inside .smb-tape__ledger). Sequence: fighter1, VS, fighter2, stats —
	   so VS sits between the two fighters. Desktop layout is unchanged. */
	.smb-tape__ledger { display: contents; }
	.smb-tape__fighter:first-of-type { order: 1; }
	.smb-tape__vs { order: 2; margin: 34px auto; }
	.smb-tape__fighter:last-of-type { order: 3; margin-bottom: 34px; }
	.smb-tape__row { order: 4; }
	.smb-event-row { grid-template-columns: 70px 1fr; grid-template-areas: "date info" "date venue" "status status"; gap: 6px 18px; }
	.smb-event-row__date { grid-area: date; align-self: start; }
	.smb-event-row__info { grid-area: info; }
	.smb-event-row__venue { grid-area: venue; text-align: left; margin-top: 6px; }
	.smb-event-row__status { grid-area: status; justify-self: start; margin-top: 10px; }
	.smb-event-row:hover { padding-left: 20px; }
	.smb-result-row { grid-template-columns: 1fr auto; grid-template-areas: "date date" "event method" "bout bout"; gap: 8px 16px; }
	.smb-result-row__date { grid-area: date; }
	.smb-result-row__event { grid-area: event; }
	.smb-result-row__method { grid-area: method; justify-self: end; }
	.smb-result-row__bout { grid-area: bout; }
	.smb-newsletter__inner { grid-template-columns: 1fr; gap: 24px; }
	.smb-newsletter__form { min-width: 0; }
	.smb-footer__bar { flex-direction: column; align-items: flex-start; }
	.smb-form-grid { grid-template-columns: 1fr; gap: 18px; }
	.smb-statline { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
	.smb-roster-grid { grid-template-columns: 1fr; }
	.smb-shop-grid { grid-template-columns: 1fr; }
	.smb-hero { padding-top: 120px; }
	.smb-hero__cards { grid-template-columns: minmax(0, 320px); margin-top: 40px; }   /* stack the two corner cards */
}
