:root {
  --accent: #ef3d23;
  --ink: #070708;
  --paper: #09090b;
  --paper-2: #0e0e11;
  --card: #121216;
  --card-2: #17171c;
  --line: rgba(255,255,255,.105);
  --line-strong: rgba(255,255,255,.18);
  --text: #f5f4f0;
  --muted: #96969f;
  --muted-2: #676771;
  --ok: #64d98b;
  --bad: #ff6f66;
  --radius: 18px;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { background: var(--paper); color-scheme: dark; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(900px 460px at 92% -5%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 66%),
    linear-gradient(180deg, #08080a 0%, var(--paper) 72%);
  color: var(--text);
  font: 15px/1.55 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: -1; opacity: .17;
  background-image: linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

a { color: inherit; }
button, input { font: inherit; }

.demo-banner {
  margin: 0; min-height: 34px; display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 7px 18px; background: var(--accent); color: white; font-size: 12px; letter-spacing: .02em;
}
.demo-banner span { text-transform: uppercase; font-weight: 800; letter-spacing: .12em; }
.demo-banner strong { font-weight: 550; }

.topbar {
  height: 72px; max-width: calc(var(--max) + 40px); margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  border-bottom: 1px solid var(--line); position: relative; z-index: 30;
}
.wordmark { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-size: 13px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.brand-sigil { width: 21px; height: 21px; display: inline-grid; place-items: center; position: relative; }
.brand-sigil i { position: absolute; width: 13px; height: 4px; background: var(--accent); transform: skewX(-20deg) rotate(-33deg); border-radius: 1px; }
.brand-sigil i:last-child { transform: skewX(-20deg) rotate(33deg); }
.topbar nav { display: flex; align-items: center; gap: 24px; font-size: 13px; }
.topbar nav a, .linkish { color: var(--muted); text-decoration: none; transition: color .18s; }
.topbar nav a:hover, .topbar nav a.on, .linkish:hover { color: var(--text); }
.inline { display: inline; margin: 0; }
.linkish { border: 0; background: none; padding: 0; cursor: pointer; }

.site-main { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; min-height: calc(100vh - 170px); }
.site-footer { width: min(var(--max), calc(100% - 40px)); margin: 64px auto 0; padding: 28px 0 40px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 24px; color: var(--muted); font-size: 12px; }
.site-footer > div { display: flex; flex-direction: column; gap: 3px; }
.site-footer > div:last-child { text-align: right; }
.site-footer strong { color: var(--text); font-size: 13px; }
.site-footer a { color: var(--text); }

.eyebrow { display: block; color: var(--muted); font-size: 10px; line-height: 1.2; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.live-pulse { color: #fff; display: inline-flex; align-items: center; gap: 7px; font-size: 10px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.live-pulse i, .admin-live i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent) 18%, transparent); }

.promotion-hero { min-height: 420px; padding: 102px 0 58px; position: relative; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; overflow: hidden; }
.promotion-hero::after { content:""; position:absolute; right:-100px; top:10px; width:460px; height:460px; border:1px solid color-mix(in srgb, var(--accent) 34%, transparent); transform:rotate(45deg); opacity:.32; box-shadow: 0 0 110px color-mix(in srgb, var(--accent) 11%, transparent); }
.promotion-hero h1 { margin: 12px 0 12px; max-width: 880px; font-size: clamp(54px, 9vw, 118px); line-height: .86; letter-spacing: -.065em; text-transform: uppercase; font-weight: 900; position: relative; z-index: 1; }
.hero-copy { margin: 0; color: #bbb9b4; max-width: 640px; font-size: clamp(18px, 2.1vw, 26px); letter-spacing: -.02em; }
.hero-next { margin-top: 38px; width: min(650px, 100%); min-height: 82px; padding: 15px 18px; display: grid; grid-template-columns: 110px 1fr auto 24px; gap: 18px; align-items: center; color: inherit; text-decoration: none; background: rgba(255,255,255,.045); border: 1px solid var(--line); border-radius: 14px; backdrop-filter: blur(10px); transition: .2s ease; }
.hero-next:hover { border-color: color-mix(in srgb, var(--accent) 58%, white 10%); transform: translateY(-2px); background: rgba(255,255,255,.065); }
.hero-next > span { color: var(--accent); font-size: 10px; text-transform: uppercase; font-weight: 850; letter-spacing: .12em; }
.hero-next strong { font-size: 16px; }
.hero-next small { color: var(--muted); }
.hero-next i { font-style: normal; font-size: 18px; }

.platform-hero { min-height: 610px; padding: 130px 0 80px; position: relative; }
.platform-hero::before { content:"GWL"; position:absolute; right:-3vw; top:40px; font-weight:950; font-size: clamp(170px, 30vw, 440px); line-height:.8; letter-spacing:-.09em; color:transparent; -webkit-text-stroke:1px rgba(255,255,255,.045); pointer-events:none; }
.platform-hero h1 { margin: 16px 0 24px; max-width: 1020px; font-size: clamp(56px, 8.3vw, 116px); line-height: .91; letter-spacing: -.065em; font-weight: 900; }
.platform-hero h1 em { color: var(--accent); font-style: normal; }
.platform-hero > p { max-width: 610px; color: var(--muted); font-size: 18px; }
.platform-stat { margin-top: 58px; display: flex; align-items: baseline; gap: 12px; }
.platform-stat strong { font-size: 44px; line-height: 1; }
.platform-stat span { color: var(--muted); }

.section-block { padding: 60px 0 22px; border-top: 1px solid var(--line); }
.section-title { display: flex; justify-content: space-between; gap: 30px; align-items: flex-end; margin-bottom: 26px; }
.section-title > div > span { color: var(--accent); font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .15em; }
.section-title h1, .section-title h2 { margin: 5px 0 0; font-size: clamp(30px, 4vw, 48px); line-height: 1; letter-spacing: -.045em; }
.section-title p { margin: 0; color: var(--muted); font-size: 12px; }

.event-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.event-card { display:block; min-width:0; text-decoration:none; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow:hidden; transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.event-card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--accent) 48%, var(--line)); box-shadow: 0 28px 70px rgba(0,0,0,.22); }
.event-art { min-height: 410px; position: relative; overflow: hidden; isolation: isolate; background: linear-gradient(145deg, color-mix(in srgb, var(--accent) 48%, #09090b), #101014 58%, #070708); }
.event-art.compact { min-height: 265px; }
.event-art.has-poster { background-image: linear-gradient(to top, rgba(5,5,7,.92), rgba(5,5,7,.12) 64%), var(--poster); background-size: cover; background-position: center; }
.event-art.typographic::before { content:""; position:absolute; width:66%; aspect-ratio:1; right:-18%; top:-26%; border:1px solid rgba(255,255,255,.24); transform:rotate(45deg); box-shadow: 0 0 0 34px rgba(255,255,255,.018), 0 0 0 74px rgba(255,255,255,.012); }
.event-art.typographic::after { content:""; position:absolute; inset:auto 0 0; height:45%; background:linear-gradient(to top, rgba(0,0,0,.72), transparent); z-index:-1; }
.event-art-noise { position:absolute; inset:0; opacity:.09; background-image: radial-gradient(circle at center, white .6px, transparent .7px); background-size: 7px 7px; mix-blend-mode:soft-light; }
.event-art-brand { position:absolute; left:25px; top:22px; font-size:10px; font-weight:850; letter-spacing:.15em; text-transform:uppercase; }
.event-art-title { position:absolute; left:25px; right:25px; bottom:24px; font-size: clamp(34px, 5vw, 76px); line-height:.88; font-weight:950; letter-spacing:-.06em; text-transform:uppercase; text-wrap:balance; }
.event-art.compact .event-art-title { font-size: clamp(30px, 4vw, 52px); }
.event-art-rule { position:absolute; left:25px; bottom:14px; width:76px; height:3px; background:var(--accent); }
.event-card-body { padding: 20px 22px 22px; }
.card-topline { display:flex; justify-content:space-between; gap:16px; align-items:center; }
.card-date { color:var(--muted); font-size:11px; }
.event-card h2 { margin:13px 0 7px; font-size:24px; line-height:1.05; letter-spacing:-.035em; }
.event-card .sub { color:var(--muted); min-height:42px; margin:0; font-size:13px; }
.card-footer { margin-top:20px; padding-top:16px; border-top:1px solid var(--line); display:flex; justify-content:space-between; align-items:flex-end; gap:18px; color:var(--muted); font-size:11px; }
.price-line { display:flex; gap:6px; align-items:center; color:var(--text); font-size:13px; font-weight:750; }
.price-line b { color:var(--muted-2); font-size:9px; font-weight:500; text-transform:uppercase; }

.event-detail { padding-top: 42px; }
.event-stage { min-height: 590px; display:grid; grid-template-columns: minmax(0, .92fr) minmax(420px, .76fr); align-items:stretch; gap:30px; padding-bottom:38px; }
.event-stage-copy { padding: 70px 0 26px; display:flex; flex-direction:column; }
.event-status { display:flex; gap:18px; align-items:center; color:var(--muted); font-size:11px; }
.event-status > span:first-child { color:var(--accent); font-weight:800; }
.event-stage h1 { margin:20px 0 18px; font-size:clamp(54px, 7.7vw, 104px); line-height:.87; letter-spacing:-.066em; text-transform:uppercase; font-weight:950; }
.event-deck { margin:0; max-width:650px; color:#b5b4b0; font-size:20px; line-height:1.4; letter-spacing:-.02em; }
.event-facts { margin-top:auto; padding-top:34px; border-top:1px solid var(--line); display:grid; grid-template-columns:1.25fr .7fr 1fr; gap:20px; font-size:12px; }
.event-facts span { display:flex; flex-direction:column; gap:4px; }
.event-facts small { color:var(--muted); text-transform:uppercase; letter-spacing:.12em; font-size:9px; }
.event-stage > .event-art { border-radius:var(--radius); border:1px solid var(--line); min-height:100%; }

.purchase-panel { padding:32px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); display:grid; grid-template-columns:1fr minmax(360px,.8fr); gap:50px; align-items:center; }
.purchase-panel h2 { margin:5px 0 8px; font-size:34px; letter-spacing:-.04em; }
.purchase-panel p { margin:0; color:var(--muted); }
.purchase-actions { justify-self:stretch; }
.checkout-options { display:grid; gap:9px; }
.checkout-option { margin:0; }
.btn { display:inline-flex; justify-content:center; align-items:center; gap:14px; min-height:46px; padding:11px 18px; border:1px solid var(--line-strong); border-radius:10px; background:rgba(255,255,255,.035); color:var(--text); text-decoration:none; font-weight:750; cursor:pointer; transition:.18s ease; }
.btn:hover { border-color:color-mix(in srgb, var(--accent) 70%, white 10%); transform:translateY(-1px); }
.btn.primary { background:var(--accent); color:#fff; border-color:var(--accent); }
.btn.xl { width:100%; min-height:66px; padding:13px 18px; justify-content:space-between; text-align:left; }
.btn.xl > span { display:flex; flex-direction:column; font-size:14px; }
.btn.xl small { opacity:.68; font-size:10px; text-transform:uppercase; letter-spacing:.1em; font-weight:650; }
.btn.xl strong { font-size:20px; letter-spacing:-.02em; }
.btn.xl i { font-style:normal; font-size:21px; }
.purchase-note { margin:10px 0 0 !important; font-size:11px; display:flex; align-items:center; gap:7px; }
.ok-dot { width:6px; height:6px; border-radius:50%; background:var(--ok); }
.sale-pending { padding:18px; border:1px solid var(--line); border-radius:12px; display:flex; flex-direction:column; gap:4px; }
.sale-pending span { color:var(--muted); font-size:12px; }

.fight-card-section { padding:64px 0 20px; }
.bouts { list-style:none; padding:0; margin:0; border-top:1px solid var(--line); }
.bout { display:grid; grid-template-columns:48px 130px 1fr 54px 1fr; gap:14px; min-height:94px; align-items:center; border-bottom:1px solid var(--line); }
.bout-num { color:var(--muted-2); font:11px/1 ui-monospace, monospace; }
.bout-type { color:var(--muted); font-size:10px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; display:flex; flex-direction:column; gap:4px; }
.bout-type small { font-size:9px; font-weight:500; letter-spacing:.04em; }
.fighter { font-size:20px; line-height:1.1; letter-spacing:-.02em; }
.fighter.right { text-align:right; }
.versus { justify-self:center; color:var(--accent); font-size:10px; font-weight:900; letter-spacing:.12em; }
.bout.main { min-height:120px; }
.bout.main .fighter { font-size:27px; }
.card-placeholder { min-height:110px; border-top:1px solid var(--line); border-bottom:1px solid var(--line); display:flex; gap:24px; align-items:center; }
.card-placeholder > span { font:11px ui-monospace,monospace; color:var(--muted-2); }
.card-placeholder strong { font-size:19px; }
.card-placeholder p { margin:3px 0 0; color:var(--muted); font-size:12px; }

.promoter-callout { margin:78px 0 30px; padding:48px; border:1px solid var(--line); border-radius:var(--radius); background:linear-gradient(135deg, color-mix(in srgb,var(--accent) 12%,var(--card)), var(--card)); }
.promoter-callout h2 { margin:9px 0; font-size:clamp(34px,5vw,58px); max-width:780px; line-height:.98; letter-spacing:-.05em; }
.promoter-callout p { color:var(--muted); max-width:570px; }
.text-link { display:inline-flex; gap:9px; margin-top:12px; text-decoration:none; font-weight:750; }
.text-link span { color:var(--accent); }

.watch-page .site-main { width:min(1440px, calc(100% - 34px)); }
.watch-shell { padding-top:24px; }
.watch-top { display:flex; justify-content:space-between; align-items:flex-end; gap:20px; padding:0 2px 17px; }
.watch-top > div { display:flex; gap:14px; align-items:baseline; }
.watch-top h1 { margin:0; font-size:19px; letter-spacing:-.025em; }
.watch-top > a { color:var(--muted); font-size:12px; text-decoration:none; }
.player-frame { aspect-ratio:16/9; max-height:calc(100vh - 180px); margin:auto; position:relative; background:#000; border:1px solid var(--line); border-radius:12px; overflow:hidden; box-shadow:0 42px 100px rgba(0,0,0,.44); }
#player { width:100%; height:100%; display:block; background:#000; }
.player-watermark { position:absolute; top:18px; right:18px; padding:7px 9px; border-radius:6px; background:rgba(0,0,0,.44); color:rgba(255,255,255,.68); backdrop-filter:blur(6px); pointer-events:none; font-size:9px; text-transform:uppercase; letter-spacing:.14em; font-weight:800; }
.watch-meta { padding:15px 2px; display:flex; justify-content:space-between; gap:20px; }
.watch-meta > div { display:flex; flex-direction:column; }
.watch-meta > div:last-child { text-align:right; }
.watch-meta span, .watch-meta small { color:var(--muted); font-size:11px; }
#playback-status { color:var(--text); display:flex; align-items:center; gap:7px; }
#playback-status::before { content:""; width:6px; height:6px; border-radius:50%; background:var(--muted); }
#playback-status[data-state="live"]::before { background:var(--ok); box-shadow:0 0 0 4px rgba(100,217,139,.12); }
#playback-status[data-state="error"] { color:var(--bad); }
#playback-status[data-state="error"]::before { background:var(--bad); }
.watch-denied { max-width:620px; padding:110px 0; }
.watch-denied h1 { font-size:56px; line-height:.95; letter-spacing:-.05em; }

.auth-shell { min-height:calc(100vh - 150px); display:grid; grid-template-columns:1fr 460px; gap:100px; align-items:center; padding:60px 0; }
.auth-mark h1 { margin:12px 0 18px; font-size:clamp(54px,7vw,86px); line-height:.9; letter-spacing:-.06em; }
.auth-mark p { color:var(--muted); max-width:490px; font-size:17px; }
.auth-card { padding:26px; border:1px solid var(--line); background:var(--card); border-radius:var(--radius); box-shadow:0 24px 70px rgba(0,0,0,.22); }
.auth-intro { color:var(--muted); margin:0 0 18px; }
label { display:block; color:var(--muted); font-size:11px; font-weight:700; letter-spacing:.05em; margin:0 0 18px; }
input { display:block; width:100%; margin-top:8px; padding:14px 15px; background:#0d0d10; color:var(--text); border:1px solid var(--line-strong); border-radius:9px; outline:none; }
input:focus { border-color:var(--accent); box-shadow:0 0 0 3px color-mix(in srgb,var(--accent) 15%,transparent); }
.code-input { font-size:25px; letter-spacing:.28em; font-variant-numeric:tabular-nums; }
.quiet-link { display:inline-block; margin-top:16px; color:var(--muted); font-size:11px; }

.account-shell { max-width:900px; padding:86px 0; }
.ticket-list { border-top:1px solid var(--line); }
.ticket-row { min-height:104px; padding:20px 4px; display:flex; justify-content:space-between; align-items:center; gap:20px; border-bottom:1px solid var(--line); text-decoration:none; }
.ticket-row div { display:flex; flex-direction:column; gap:3px; }
.ticket-row span { color:var(--accent); font-size:9px; text-transform:uppercase; letter-spacing:.1em; font-weight:800; }
.ticket-row strong { font-size:22px; letter-spacing:-.03em; }
.ticket-row small { color:var(--muted); }
.ticket-row > i { font-style:normal; font-size:22px; transition:transform .18s; }
.ticket-row:hover > i { transform:translateX(4px); color:var(--accent); }

.checkout-shell { min-height:calc(100vh - 160px); display:grid; place-items:center; padding:50px 0; }
.checkout-receipt { width:min(480px,100%); padding:32px; border:1px solid var(--line); border-radius:var(--radius); background:var(--card); }
.checkout-receipt h1 { margin:10px 0 2px; font-size:34px; letter-spacing:-.04em; }
.checkout-receipt > p { color:var(--muted); }
.checkout-total { margin:28px 0; padding:20px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); display:flex; justify-content:space-between; align-items:center; }
.checkout-total small { color:var(--muted); }
.checkout-total strong { font-size:30px; }

.notice { margin:20px 0; padding:13px 15px; border:1px solid var(--line); border-radius:10px; display:flex; gap:10px; align-items:flex-start; background:rgba(255,255,255,.025); }
.notice p { margin:0; font-size:12px; }
.notice-dot { flex:0 0 auto; width:7px; height:7px; border-radius:50%; margin-top:6px; background:var(--accent); }
.notice.warn { border-color:rgba(255,111,102,.35); }
.notice.warn .notice-dot { background:var(--bad); }
.fine { color:var(--muted); font-size:11px; }
.empty-state { min-height:140px; border:1px dashed var(--line-strong); border-radius:var(--radius); display:grid; place-items:center; color:var(--muted); }

/* operator */
.admin-page { background:linear-gradient(180deg,#08090b,#0b0c0f 55%,#09090b); }
.operator-shell { padding:54px 0 40px; }
.admin-hero { display:flex; justify-content:space-between; align-items:flex-end; gap:30px; padding:22px 0 38px; }
.admin-hero h1 { margin:8px 0; font-size:64px; line-height:.92; letter-spacing:-.055em; }
.admin-hero p { margin:0; color:var(--muted); }
.admin-live { min-width:150px; display:grid; grid-template-columns:auto 1fr; align-items:center; column-gap:11px; border-left:1px solid var(--line); padding-left:24px; }
.admin-live i { grid-row:1/3; }
.admin-live strong { font-size:34px; line-height:1; }
.admin-live span { color:var(--muted); font-size:10px; text-transform:uppercase; letter-spacing:.11em; }
.back-link { display:block; color:var(--muted); font-size:11px; text-decoration:none; margin-bottom:22px; }
.metric-grid { display:grid; grid-template-columns:1fr 1fr 2fr; gap:12px; }
.metric { min-height:154px; padding:20px; border:1px solid var(--line); border-radius:14px; background:rgba(255,255,255,.025); display:flex; flex-direction:column; justify-content:space-between; }
.metric > span { color:var(--muted); text-transform:uppercase; letter-spacing:.11em; font-size:9px; }
.metric > strong { font-size:44px; line-height:1; }
.metric > small { color:var(--muted-2); }
.metric-money { display:flex; gap:12px; flex-wrap:wrap; }
.money-chip { display:inline-flex; flex-direction:column; gap:1px; }
.money-chip small { color:var(--muted); font-size:8px; letter-spacing:.1em; }
.money-chip strong { font-size:17px; white-space:nowrap; }
.metric .money-chip strong { font-size:28px; }
.admin-section { padding:54px 0 0; }
.admin-section-head { display:flex; justify-content:space-between; align-items:flex-end; gap:20px; margin-bottom:18px; }
.admin-section-head span:first-child { color:var(--accent); text-transform:uppercase; letter-spacing:.13em; font-size:9px; font-weight:800; }
.admin-section-head h2 { margin:4px 0 0; font-size:30px; letter-spacing:-.04em; }
.admin-list, .event-admin-list { border-top:1px solid var(--line); }
.admin-row { min-height:98px; display:grid; grid-template-columns:2fr .55fr .55fr 1.1fr .75fr 30px; gap:20px; align-items:center; border-bottom:1px solid var(--line); text-decoration:none; transition:background .15s; padding:0 10px; }
.admin-row:hover { background:rgba(255,255,255,.025); }
.admin-row > div:not(.admin-identity) { display:flex; flex-direction:column; gap:4px; }
.admin-row small, .event-admin-stat > span { color:var(--muted); font-size:9px; text-transform:uppercase; letter-spacing:.09em; }
.admin-row > div > strong { font-size:18px; }
.admin-identity { display:flex; gap:12px; align-items:center; }
.admin-identity > div { display:flex; flex-direction:column; }
.admin-identity strong { font-size:15px !important; }
.admin-identity small { text-transform:none; letter-spacing:0; }
.tenant-dot { width:9px; height:36px; border-radius:10px; background:var(--tenant); }
.admin-money { gap:5px !important; }
.row-arrow { font-style:normal; color:var(--muted); }
.ledger-badge { display:inline-flex; align-items:center; gap:7px; width:max-content; padding:6px 9px; border-radius:99px; font-size:9px; text-transform:uppercase; letter-spacing:.08em; font-weight:800; border:1px solid var(--line); }
.ledger-badge i { width:5px; height:5px; border-radius:50%; }
.ledger-badge.ok { color:var(--ok); border-color:rgba(100,217,139,.2); }
.ledger-badge.ok i { background:var(--ok); }
.ledger-badge.bad { color:var(--bad); border-color:rgba(255,111,102,.24); }
.ledger-badge.bad i { background:var(--bad); }
.event-admin-card { min-height:108px; display:grid; grid-template-columns:2fr .55fr 1fr 1fr .8fr; gap:18px; align-items:center; border-bottom:1px solid var(--line); padding:10px 6px; }
.event-admin-main h3 { margin:6px 0 3px; font-size:17px; }
.event-admin-main p { margin:0; color:var(--muted); font-size:10px; }
.event-admin-stat { display:flex; flex-direction:column; gap:5px; }
.event-admin-stat > strong { font-size:20px; }
.event-admin-stat.money { gap:6px; }
.pill { display:inline-flex; width:max-content; padding:4px 7px; border-radius:5px; border:1px solid var(--line); color:var(--muted); text-transform:uppercase; letter-spacing:.1em; font-size:8px; font-weight:850; }
.pill.live { color:var(--accent); border-color:color-mix(in srgb,var(--accent) 36%,transparent); }
.broadcast-panel { margin-top:18px; padding:24px; display:grid; grid-template-columns:minmax(250px,.8fr) 1.5fr; gap:30px; border:1px solid var(--line); border-radius:14px; background:linear-gradient(135deg,rgba(255,255,255,.025),transparent); }
.broadcast-panel.not-ready { grid-template-columns:1fr auto; align-items:center; }
.broadcast-panel h3 { margin:5px 0; font-size:20px; }
.broadcast-panel p { margin:0; color:var(--muted); font-size:11px; }
dl.ingest { margin:0; display:grid; grid-template-columns:96px 1fr; gap:10px; align-items:center; }
dl.ingest dt { color:var(--muted); font-size:9px; text-transform:uppercase; letter-spacing:.08em; }
dl.ingest dd { margin:0; min-width:0; }
dl.ingest code { display:block; overflow:auto; padding:9px 11px; border-radius:7px; background:#08090a; border:1px solid var(--line); color:#d9d9dc; font-size:10px; }
.broadcast-notes { grid-column:1/-1; margin:0; padding:13px 0 0 17px; border-top:1px solid var(--line); color:var(--muted); font-size:10px; }

@media (max-width: 900px) {
  .event-grid { grid-template-columns:1fr; }
  .event-stage { grid-template-columns:1fr; min-height:0; }
  .event-stage-copy { padding-top:30px; }
  .event-stage > .event-art { min-height:480px; order:-1; }
  .event-facts { margin-top:36px; }
  .purchase-panel { grid-template-columns:1fr; gap:24px; }
  .auth-shell { grid-template-columns:1fr; gap:36px; align-content:center; }
  .metric-grid { grid-template-columns:1fr 1fr; }
  .metric.wide { grid-column:1/-1; }
  .admin-row { grid-template-columns:1.8fr .5fr .5fr 1fr 28px; }
  .admin-row > div:nth-child(5) { display:none; }
  .event-admin-card { grid-template-columns:1.7fr .5fr 1fr .8fr; }
  .event-admin-card > div:nth-child(4) { display:none; }
}

@media (max-width: 620px) {
  .site-main, .site-footer { width:min(100% - 28px,var(--max)); }
  .topbar { height:62px; padding:0 14px; }
  .wordmark { font-size:11px; max-width:66vw; overflow:hidden; white-space:nowrap; }
  .topbar nav { gap:14px; }
  .demo-banner { align-items:flex-start; gap:3px; flex-direction:column; padding:7px 14px; }
  .promotion-hero { min-height:380px; padding:70px 0 40px; }
  .promotion-hero h1 { font-size:clamp(48px,17vw,82px); }
  .hero-next { grid-template-columns:1fr 20px; gap:5px 12px; }
  .hero-next > span, .hero-next small { grid-column:1; }
  .hero-next i { grid-row:1/4; grid-column:2; }
  .platform-hero { min-height:540px; padding:95px 0 60px; }
  .platform-hero h1 { font-size:clamp(48px,15vw,74px); }
  .section-title { align-items:flex-start; flex-direction:column; gap:8px; }
  .event-art.compact { min-height:220px; }
  .event-card .sub { min-height:0; }
  .card-footer { align-items:flex-start; flex-direction:column; }
  .event-detail { padding-top:18px; }
  .event-stage > .event-art { min-height:390px; }
  .event-stage h1 { font-size:clamp(48px,15vw,74px); }
  .event-facts { grid-template-columns:1fr 1fr; }
  .event-facts span:last-child { grid-column:1/-1; }
  .bout { grid-template-columns:28px 74px 1fr 30px 1fr; gap:7px; min-height:82px; }
  .bout .fighter, .bout.main .fighter { font-size:14px; }
  .bout-type { font-size:8px; }
  .promoter-callout { padding:28px 22px; }
  .watch-page .site-main { width:100%; }
  .watch-top, .watch-meta { padding-left:14px; padding-right:14px; }
  .watch-top > div { align-items:flex-start; flex-direction:column; gap:4px; }
  .player-frame { border-left:0; border-right:0; border-radius:0; }
  .watch-meta > div:last-child { display:none; }
  .auth-shell { padding:35px 0; min-height:auto; }
  .auth-card { padding:20px; }
  .account-shell { padding:55px 0; }
  .site-footer { flex-direction:column; }
  .site-footer > div:last-child { text-align:left; }
  .admin-hero { align-items:flex-start; flex-direction:column; }
  .admin-hero h1 { font-size:52px; }
  .admin-live { border-left:0; padding-left:0; }
  .metric-grid { grid-template-columns:1fr 1fr; }
  .metric { min-height:125px; }
  .metric > strong { font-size:36px; }
  .admin-row { grid-template-columns:1fr auto; gap:10px; padding:14px 4px; }
  .admin-row > div:not(.admin-identity), .admin-row > .row-arrow { display:none; }
  .admin-row > div:nth-child(5) { display:flex; }
  .event-admin-card { grid-template-columns:1fr auto; padding:16px 4px; }
  .event-admin-card > div:not(.event-admin-main):not(:last-child) { display:none; }
  .broadcast-panel, .broadcast-panel.not-ready { grid-template-columns:1fr; }
  dl.ingest { grid-template-columns:1fr; }
}

/* legal pages
   Long-form text set for reading rather than skimming: a narrow measure, real
   paragraph spacing, and headings that separate clauses. A refund policy that
   is hard to read is one a buyer gives up on and charges back instead. */

.legal-shell { max-width: 46rem; margin: 0 auto; padding: 3rem 1.25rem 5rem; }
.legal-head { border-bottom: 1px solid var(--line, #262630); padding-bottom: 1.5rem; margin-bottom: 2rem; }
.legal-head h1 { margin: .35rem 0 .5rem; font-size: clamp(1.9rem, 4vw, 2.6rem); letter-spacing: -.02em; }
.legal-updated { color: var(--muted, #9a9aa8); font-size: .85rem; margin: 0; }
.legal-block { margin: 0 0 2.25rem; }
.legal-block h2 { font-size: 1.05rem; letter-spacing: .01em; margin: 0 0 .65rem; }
.legal-block p { margin: 0 0 .9rem; line-height: 1.65; color: var(--text, #f2f2f4); }
.legal-block ul { margin: 0 0 .9rem; padding-left: 1.15rem; }
.legal-block li { margin: 0 0 .5rem; line-height: 1.6; }
.legal-block a { color: var(--accent, #ef3d23); }

.site-footer .legal-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.site-footer .legal-links a { color: var(--muted, #9a9aa8); text-decoration: none; font-size: .85rem; }
.site-footer .legal-links a:hover { color: var(--text, #f2f2f4); text-decoration: underline; }

/* What the buyer receives, stated before they pay rather than after. */
.ticket-includes { list-style: none; margin: 1rem 0 .75rem; padding: 0; display: grid; gap: .45rem; }
.ticket-includes li { position: relative; padding-left: 1.35rem; font-size: .9rem; color: var(--muted, #9a9aa8); line-height: 1.5; }
.ticket-includes li::before { content: "✓"; position: absolute; left: 0; color: var(--accent, #ef3d23); font-weight: 700; }
