/* ============================================================
   ANYTHING COMBAT — shared stylesheet
   No external dependencies. Drop-in static hosting friendly.
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  --bg:            #0a0a0c;
  --bg-2:          #101014;
  --bg-3:          #16161c;
  --line:          #1c1c23;
  --line-soft:     #141419;

  --ink:           #f4f2ef;
  --ink-2:         #b6b3ae;
  --ink-3:         #7d7a75;

  --accent:        #ed1c24;
  --accent-2:      #ff4046;
  --accent-ink:    #12060a;
  --gold:          #ff4046; /* brand rule: black & red only — "gold" accents render as hot red */

  --radius:        4px;
  --radius-lg:     10px;

  --wrap:          1200px;
  --gutter:        clamp(18px, 4vw, 40px);

  --font-display: "Helvetica Neue", "Arial Narrow", Impact, system-ui, sans-serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;

  --shadow: 0 20px 50px -20px rgba(0, 0, 0, .9);
}

/* ---------- 2. Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; display: block; }

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
}

h1 { font-size: clamp(2.6rem, 7.5vw, 5.6rem); }
h2 { font-size: clamp(1.9rem, 4.4vw, 3.2rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); letter-spacing: -0.01em; }

p { margin: 0 0 1em; }

::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

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

/* ---------- 3. Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding: clamp(56px, 9vw, 110px) 0; }
.section--tight { padding: clamp(40px, 6vw, 70px) 0; }
.section--alt { background: var(--bg-2); border-block: 1px solid var(--line-soft); }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.section-head p { max-width: 52ch; color: var(--ink-2); margin: 10px 0 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
}

.lede { font-size: clamp(1.02rem, 1.7vw, 1.2rem); color: var(--ink-2); max-width: 60ch; }

.stack > * + * { margin-top: 14px; }

/* ---------- 4. Buttons ---------- */
.btn {
  --btn-bg: var(--accent);
  --btn-ink: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--btn-bg);
  color: var(--btn-ink);
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .16s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--accent-2); }
.btn:active { transform: translateY(0); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-ink: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { background: var(--bg-3); border-color: var(--ink-3); }

.btn--light { --btn-bg: var(--ink); --btn-ink: #0a0a0c; }
.btn--light:hover { background: #fff; }

.btn--sm { padding: 10px 18px; font-size: 0.72rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- 5. Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 12, .86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: 1.02rem;
  line-height: 1;
  margin-right: auto;
}
.brand .mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  font-size: 0.9rem;
  letter-spacing: -0.06em;
  flex: none;
}
.brand small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.26em;
  color: var(--ink-3);
  font-weight: 400;
  margin-top: 3px;
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 9px 13px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-2);
  border-radius: var(--radius);
  transition: color .18s ease, background .18s ease;
}
.nav-links a:hover { color: var(--ink); background: var(--bg-3); }
.nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a[aria-current="page"]::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--accent);
  margin-top: 6px;
}

.nav-cta { display: flex; gap: 10px; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform .22s ease, opacity .22s ease;
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after { transform: translateY(4px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-2px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: grid; }
  .nav-links {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
    padding: 10px var(--gutter) 22px;
    transform: translateY(-120%);
    transition: transform .28s cubic-bezier(.2, .8, .3, 1);
    max-height: calc(100vh - 74px);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 4px; font-size: 0.95rem; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
  .nav-links a[aria-current="page"]::after { display: none; }
  .nav-links a[aria-current="page"] { color: var(--accent); }
  .nav-cta .btn { padding: 10px 16px; font-size: 0.7rem; }
}
@media (max-width: 560px) {
  .nav-cta { display: none; }
}

/* ---------- 6. Hero ---------- */
.hero {
  position: relative;
  padding: clamp(70px, 11vw, 140px) 0 clamp(56px, 8vw, 100px);
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 78% 8%, rgba(237, 28, 36, .22), transparent 62%),
    radial-gradient(700px 380px at 8% 92%, rgba(237, 28, 36, .08), transparent 60%),
    repeating-linear-gradient(115deg, rgba(255,255,255,.022) 0 2px, transparent 2px 9px);
  pointer-events: none;
}
.hero > * { position: relative; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 span { color: var(--accent); display: block; }
.hero .lede { margin-top: 22px; }
.hero .btn-row { margin-top: 32px; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 48px);
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.hero-stats div strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
}
.hero-stats div span {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.page-hero {
  padding: clamp(52px, 8vw, 96px) 0 clamp(32px, 5vw, 56px);
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(700px 320px at 82% 0%, rgba(237, 28, 36, .16), transparent 65%),
    var(--bg);
}
.page-hero .lede { margin-top: 18px; }

/* ---------- 7. Placeholder artwork ---------- */
.thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-3);
  display: grid;
  place-items: center;
  isolation: isolate;
}
.thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--thumb-bg, linear-gradient(140deg, #2a2a34, #14141a));
  z-index: -2;
}
.thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(0,0,0,.18) 0 3px, transparent 3px 10px);
  z-index: -1;
}
.thumb .monogram {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.4rem);
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, .16);
  text-transform: uppercase;
  text-align: center;
  padding: 0 12px;
}
.thumb--square { aspect-ratio: 1; }
.thumb--tall { aspect-ratio: 3 / 4; }
.thumb--wide { aspect-ratio: 21 / 9; }

/* Brand rule: black & red only — six tones from charcoal to hot red */
.g1 { --thumb-bg: linear-gradient(140deg, #3a1109, #7a1f0c 55%, #1b0b07); }
.g2 { --thumb-bg: linear-gradient(140deg, #16161b, #2b2b33 60%, #0e0e12); }
.g3 { --thumb-bg: linear-gradient(140deg, #38130a, #93260e 58%, #170907); }
.g4 { --thumb-bg: linear-gradient(140deg, #1a0d0b, #381410 58%, #0d0908); }
.g5 { --thumb-bg: linear-gradient(140deg, #31090c, #6d1216 60%, #150708); }
.g6 { --thumb-bg: linear-gradient(140deg, #222227, #454550 58%, #131317); }

/* ---------- 8. Cards ---------- */
.grid { display: grid; gap: clamp(18px, 2.4vw, 26px); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease;
}
.card:hover { border-color: var(--line); transform: translateY(-3px); }
.card-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; gap: 10px; }
.card-body > :last-child { margin-top: auto; }
.card h3 a:hover { color: var(--accent); }
.card p { color: var(--ink-2); font-size: 0.93rem; margin: 0; }

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.meta .dot { color: var(--line); }

.tag {
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.tag--accent { border-color: rgba(237, 28, 36, .5); color: var(--accent); }
.tag--gold { border-color: rgba(232, 180, 71, .45); color: var(--gold); }

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 11px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}
.badge--gold { background: var(--gold); color: #1a1206; }
.badge--dark { background: rgba(10,10,12,.85); border: 1px solid var(--line); }

/* ---------- 9. Feature block (alternating) ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(26px, 4.5vw, 60px);
  align-items: center;
}
.feature--flip > :first-child { order: 2; }
@media (max-width: 860px) {
  .feature { grid-template-columns: 1fr; }
  .feature--flip > :first-child { order: 0; }
}

/* ---------- 10. Pillars ---------- */
.pillar {
  position: relative;
  padding: 26px 22px 28px;
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  transition: border-color .2s ease, transform .2s ease;
}
.pillar:hover { border-color: rgba(237,28,36,.4); transform: translateY(-3px); }
.pillar .num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.pillar h3 { margin: 12px 0 8px; }
.pillar p { color: var(--ink-2); font-size: 0.93rem; margin-bottom: 14px; }
.pillar .arrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
}
.pillar .arrow::after { content: " →"; color: var(--accent); }

/* ---------- 11. Podcast ---------- */
.player {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: clamp(20px, 3vw, 34px);
  padding: clamp(20px, 3vw, 30px);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
@media (max-width: 700px) { .player { grid-template-columns: 1fr; } }

.player-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 12px 14px;
  background: var(--bg-3);
  border: 1px solid var(--line-soft);
  border-radius: 100px;
}
.play-btn {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .16s ease, background .2s ease;
}
.play-btn:hover { transform: scale(1.06); background: var(--accent-2); }
.play-btn svg { width: 16px; height: 16px; fill: currentColor; }

.progress {
  flex: 1;
  height: 4px;
  background: var(--line);
  border-radius: 100px;
  overflow: hidden;
}
.progress i { display: block; height: 100%; width: 0%; background: var(--accent); transition: width .3s linear; }
.player-time { font-family: var(--font-mono); font-size: 0.72rem; color: var(--ink-3); flex: none; }

.player-note {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  text-transform: uppercase;
}

.ep-row {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
}
.ep-row:first-child { border-top: 1px solid var(--line-soft); }
.ep-row .thumb { aspect-ratio: 1; border-radius: var(--radius); }
.ep-row h3 { font-size: 1.05rem; margin-bottom: 6px; }
.ep-row h3:hover { color: var(--accent); }
.ep-row p { color: var(--ink-2); font-size: 0.9rem; margin: 6px 0 0; }
@media (max-width: 640px) {
  .ep-row { grid-template-columns: 60px 1fr; }
  .ep-row > :last-child { grid-column: 1 / -1; }
}

.subscribe-row { display: flex; flex-wrap: wrap; gap: 10px; }
.sub-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.sub-chip:hover { color: var(--ink); border-color: var(--ink-3); background: var(--bg-3); }
.sub-chip .dotmark { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: none; }

/* ---------- 12. Shop ---------- */
.product .thumb { aspect-ratio: 4 / 5; }
.price { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: -0.02em; }
.price s { color: var(--ink-3); font-size: 0.85rem; margin-left: 8px; font-family: var(--font-body); }
.price-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.swatches { display: flex; gap: 6px; }
.swatch { width: 14px; height: 14px; border-radius: 50%; border: 1px solid var(--line); }

.sizes { display: flex; flex-wrap: wrap; gap: 6px; }
.sizes span {
  min-width: 32px;
  text-align: center;
  padding: 4px 7px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--ink-2);
}

/* ---------- 13. Filters / search ---------- */
.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line-soft);
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 9px 16px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 100px;
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  transition: all .18s ease;
}
.chip:hover { color: var(--ink); border-color: var(--ink-3); }
.chip[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: #fff; }

.search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  min-width: 240px;
}
.search input { flex: 1; background: none; border: none; outline: none; font-size: 0.9rem; }
.search input::placeholder { color: var(--ink-3); }
.search svg { width: 15px; height: 15px; stroke: var(--ink-3); fill: none; stroke-width: 2; flex: none; }

.empty-state {
  display: none;
  padding: 60px 20px;
  text-align: center;
  color: var(--ink-3);
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
}
.empty-state.show { display: block; }

/* ---------- 14. Pricing / digital ---------- */
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px 26px 32px;
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
}
.plan--featured { border-color: var(--accent); background: linear-gradient(180deg, rgba(237,28,36,.08), var(--bg-2) 40%); }
.plan .plan-price {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1;
}
.plan .plan-price small { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em; color: var(--ink-3); }
.plan ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; flex: 1; }
.plan li { position: relative; padding-left: 24px; color: var(--ink-2); font-size: 0.92rem; }
.plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 6px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

/* ---------- 15. Article page ---------- */
.article-body {
  max-width: 72ch;
  margin-inline: auto;
  font-size: 1.06rem;
  line-height: 1.8;
}
.article-body h2 { margin: 2em 0 .6em; font-size: clamp(1.5rem, 3vw, 2rem); }
.article-body h3 { margin: 1.8em 0 .5em; }
.article-body p { color: var(--ink-2); }
.article-body ul, .article-body ol { color: var(--ink-2); padding-left: 1.2em; }
.article-body li { margin-bottom: .5em; }
.article-body blockquote {
  margin: 2em 0;
  padding: 4px 0 4px 24px;
  border-left: 3px solid var(--accent);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  text-transform: none;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--ink);
}
.article-body blockquote cite {
  display: block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-style: normal;
}
.article-body strong { color: var(--ink); }
.article-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.pull-box {
  margin: 2.4em 0;
  padding: 24px 26px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.pull-box h4 {
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.pull-box p:last-child { margin-bottom: 0; }

/* ---------- 16. Newsletter / CTA ---------- */
.cta-band {
  position: relative;
  padding: clamp(46px, 7vw, 84px) 0;
  background:
    radial-gradient(700px 300px at 20% 20%, rgba(237,28,36,.2), transparent 60%),
    var(--bg-2);
  border-block: 1px solid var(--line);
  overflow: hidden;
}

.form-row { display: flex; flex-wrap: wrap; gap: 10px; max-width: 520px; }
.form-row input[type="email"],
.form-row input[type="text"] {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  transition: border-color .2s ease;
}
.form-row input:focus { border-color: var(--accent); }
.form-note { font-size: 0.78rem; color: var(--ink-3); margin-top: 12px; }

.form-msg {
  display: none;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: rgba(237, 28, 36, .12);
  border: 1px solid rgba(237, 28, 36, .4);
  font-size: 0.88rem;
}
.form-msg.show { display: block; }

.field { display: grid; gap: 7px; }
.field label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.field input, .field textarea, .field select {
  padding: 13px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  transition: border-color .2s ease;
  width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); }
.field textarea { min-height: 130px; resize: vertical; }

/* ---------- 17. Marquee ---------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line-soft);
  background: var(--bg-2);
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: slide 34s linear infinite;
}
.marquee span {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  white-space: nowrap;
}
.marquee span b { color: var(--accent); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- 18. Footer ---------- */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: clamp(46px, 6vw, 74px) 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer h4 {
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  color: var(--ink-3);
  font-family: var(--font-mono);
  font-weight: 400;
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer li a { color: var(--ink-2); font-size: 0.92rem; }
.site-footer li a:hover { color: var(--accent); }
.site-footer .brand { margin-bottom: 16px; }
.site-footer .about-text { color: var(--ink-3); font-size: 0.9rem; max-width: 34ch; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  margin-top: clamp(34px, 5vw, 56px);
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.8rem;
  color: var(--ink-3);
}
.social { display: flex; gap: 8px; }
.social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: var(--ink-2);
  transition: all .18s ease;
}
.social a:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- 19. Utilities ---------- */
.center { text-align: center; }
.center .section-head { justify-content: center; text-align: center; flex-direction: column; align-items: center; }
.center .eyebrow::before { display: none; }
.mt-0 { margin-top: 0; }
.mt-s { margin-top: 14px; }
.mt-m { margin-top: 26px; }
.mt-l { margin-top: 44px; }
.hide { display: none !important; }
.muted { color: var(--ink-3); }
.accent { color: var(--accent); }

/* ---------- 20. Preloader ---------- */
html.is-loading { overflow: hidden; }

.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
}
.preloader::before,
.preloader::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 50.5%;
  background:
    radial-gradient(700px 300px at 70% 100%, rgba(237, 28, 36, .12), transparent 60%),
    var(--bg-2);
  z-index: 1;
  transition: transform .65s cubic-bezier(.75, 0, .2, 1) .08s;
}
.preloader::before { top: 0; border-bottom: 1px solid var(--line-soft); }
.preloader::after {
  bottom: 0;
  background:
    radial-gradient(700px 300px at 30% 0%, rgba(237, 28, 36, .12), transparent 60%),
    var(--bg-2);
}

.preloader-inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
  transition: opacity .28s ease, transform .28s ease;
}

.preloader-mark {
  position: relative;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  letter-spacing: -0.06em;
  animation: pre-punch .55s cubic-bezier(.5, 1.6, .4, 1) both;
}
.preloader-mark::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 2px solid var(--accent);
  border-radius: 16px;
  opacity: 0;
  animation: pre-shockwave .6s ease-out .42s;
}

.preloader-word {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.2rem, 4vw, 1.7rem);
  letter-spacing: 0.06em;
  line-height: 1;
  opacity: 0;
  animation: pre-rise .5s ease .5s forwards;
}
.preloader-word span { color: var(--accent); }

.preloader-round {
  width: 190px;
  height: 3px;
  background: var(--line);
  border-radius: 100px;
  overflow: hidden;
  opacity: 0;
  animation: pre-fade .3s ease .65s forwards;
}
.preloader-round i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--accent);
  animation: pre-fill 1s cubic-bezier(.4, 0, .3, 1) .7s forwards;
}

.preloader-tag {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-3);
  opacity: 0;
  animation: pre-fade .3s ease .8s forwards, pre-blink 1.1s steps(2) 1.1s infinite;
}

/* Quick version for page-to-page navigation */
.preloader--fast .preloader-mark { animation-duration: .3s; }
.preloader--fast .preloader-mark::after { animation-delay: .2s; animation-duration: .35s; }
.preloader--fast .preloader-word { animation-delay: .12s; animation-duration: .25s; }
.preloader--fast .preloader-round { animation-delay: .12s; }
.preloader--fast .preloader-round i { animation-delay: .15s; animation-duration: .3s; }
.preloader--fast .preloader-tag { animation-delay: .15s; }

/* Exit */
.preloader--done { pointer-events: none; }
.preloader--done::before { transform: translateY(-101%); }
.preloader--done::after { transform: translateY(101%); }
.preloader--done .preloader-inner { opacity: 0; transform: scale(.94); }

@keyframes pre-punch {
  0% { transform: scale(2.8) rotate(-6deg); opacity: 0; }
  55% { transform: scale(.92) rotate(1deg); opacity: 1; }
  75% { transform: scale(1.05); }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}
@keyframes pre-shockwave {
  0% { opacity: .9; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.7); }
}
@keyframes pre-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
@keyframes pre-fade { to { opacity: 1; } }
@keyframes pre-fill { to { width: 100%; } }
@keyframes pre-blink { 50% { opacity: .35; } }

@media (prefers-reduced-motion: reduce) {
  .preloader { display: none; }
}

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

/* ---------- 21. Podcast: topic tiles ---------- */
.topic-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 900px) { .topic-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .topic-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

.topic-tile {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 110px;
  padding: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  isolation: isolate;
  transition: border-color .2s ease, transform .2s ease;
}
.topic-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--thumb-bg, linear-gradient(140deg, #2a2a34, #14141a));
  opacity: .55;
  z-index: -2;
  transition: opacity .25s ease;
}
.topic-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(6,6,8,.85), transparent 65%),
    repeating-linear-gradient(45deg, rgba(0,0,0,.14) 0 3px, transparent 3px 10px);
  z-index: -1;
}
.topic-tile:hover { border-color: rgba(237,28,36,.5); transform: translateY(-3px); }
.topic-tile:hover::before { opacity: .85; }
.topic-tile strong {
  font-family: var(--font-display);
  font-size: clamp(.95rem, 1.6vw, 1.15rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.topic-tile span {
  position: absolute;
  top: 12px;
  right: 14px;
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .16em;
  color: rgba(255,255,255,.55);
}

/* ---------- 22. Podcast: guest episode cards ---------- */
.guest-line { display: flex; align-items: center; gap: 10px; margin-top: 2px; }
.guest-avatar {
  width: 30px;
  height: 30px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--bg-3);
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .04em;
  color: var(--ink-2);
}
.guest-line b {
  font-size: .86rem;
  letter-spacing: .02em;
}
.guest-line small {
  display: block;
  font-size: .72rem;
  color: var(--ink-3);
  line-height: 1.3;
}

.tags-row { display: flex; flex-wrap: wrap; gap: 6px; }

.rank-flag {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: rgba(10,10,12,.82);
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: .9rem;
}

.card .thumb { border-radius: 0; }
.card--play .thumb .monogram { transition: opacity .2s ease; }
.card--play:hover .thumb .monogram { opacity: .4; }
.play-ring {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(237,28,36,.92);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(.8);
  transition: opacity .22s ease, transform .22s ease;
  z-index: 2;
}
.play-ring svg { width: 18px; height: 18px; fill: #fff; margin-left: 2px; }
.card--play:hover .play-ring { opacity: 1; transform: scale(1); }

/* ---------- 23. Become a Combatant ---------- */
.combatant {
  position: relative;
  background:
    radial-gradient(900px 460px at 85% 10%, rgba(237, 28, 36, .2), transparent 60%),
    radial-gradient(700px 400px at 5% 95%, rgba(237, 28, 36, .1), transparent 55%),
    var(--bg-2);
  border-block: 1px solid var(--line);
  overflow: hidden;
}
.combatant::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,.02) 0 2px, transparent 2px 9px);
  pointer-events: none;
}
.combatant > * { position: relative; }

.combatant-title {
  font-size: clamp(2rem, 6.2vw, 5.4rem);
  white-space: nowrap;
  color: var(--accent);
  animation: title-glow 3s ease-in-out infinite;
}
@keyframes title-glow {
  0%, 100% { text-shadow: 0 0 10px rgba(237, 28, 36, .35), 0 0 26px rgba(237, 28, 36, .18); }
  50% { text-shadow: 0 0 18px rgba(237, 28, 36, .75), 0 0 46px rgba(237, 28, 36, .4), 0 0 80px rgba(237, 28, 36, .18); }
}
@media (max-width: 420px) { .combatant-title { white-space: normal; } }

.combatant-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: clamp(16px, 2.4vw, 26px);
  align-items: stretch;
  margin-block: clamp(28px, 4vw, 44px);
}
@media (max-width: 860px) { .combatant-grid { grid-template-columns: 1fr; } }

/* Big video frame (click to load your embed) */
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(600px 300px at 50% 45%, rgba(237, 28, 36, .3), transparent 70%),
    linear-gradient(140deg, #1d0d08, #451407 55%, #12090a);
  display: grid;
  place-items: center;
  cursor: pointer;
  isolation: isolate;
}
.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(0,0,0,.16) 0 3px, transparent 3px 10px);
  z-index: -1;
}
.video-play {
  width: clamp(70px, 9vw, 100px);
  height: clamp(70px, 9vw, 100px);
  border-radius: 50%;
  background: var(--accent);
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 10px rgba(237, 28, 36, .18), 0 18px 50px -10px rgba(237, 28, 36, .55);
  transition: transform .2s ease, background .2s ease;
}
.video-frame:hover .video-play { transform: scale(1.09); background: var(--accent-2); }
.video-play svg { width: 36%; height: 36%; fill: #fff; margin-left: 5px; }
.video-caption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  right: 16px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-note {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 46px;
  display: none;
  padding: 11px 15px;
  background: rgba(10, 10, 12, .92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: var(--ink-2);
}
.video-note.show { display: block; }

/* Kickboxer poster art (swap for a real photo when you have one) */
.fighter-art {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 100%;
}
.fighter-art svg,
.fighter-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 860px) { .fighter-art { aspect-ratio: 4 / 5; min-height: 0; } }

/* The big one */
.btn--mega {
  width: 100%;
  padding: clamp(20px, 3.6vw, 32px) 30px;
  font-size: clamp(1.1rem, 3.2vw, 1.9rem);
  letter-spacing: 0.14em;
  border-radius: var(--radius-lg);
  gap: 18px;
  animation: mega-pulse 2.4s ease-out infinite;
}
.btn--mega:hover { transform: translateY(-3px) scale(1.005); }
.btn--mega .mega-arrow { font-family: var(--font-body); transition: transform .2s ease; }
.btn--mega:hover .mega-arrow { transform: translateX(8px); }
@keyframes mega-pulse {
  0% { box-shadow: 0 0 0 0 rgba(237, 28, 36, .5); }
  70% { box-shadow: 0 0 0 24px rgba(237, 28, 36, 0); }
  100% { box-shadow: 0 0 0 0 rgba(237, 28, 36, 0); }
}
.mega-sub {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 14px;
}

/* Instagram reels strip */
.reels-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: clamp(28px, 4.5vw, 46px) 0 18px;
}
.reels-head .eyebrow { margin: 0; }

.reels-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.8vw, 20px);
  margin-bottom: clamp(28px, 4.5vw, 46px);
}
@media (max-width: 980px) { .reels-row { grid-template-columns: repeat(2, 1fr); } }

.reel {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
  isolation: isolate;
  transition: transform .2s ease, border-color .2s ease;
}
.reel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--thumb-bg, linear-gradient(140deg, #2a2a34, #14141a));
  z-index: -2;
}
.reel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(6,6,8,.55), transparent 26%),
    linear-gradient(to top, rgba(6,6,8,.82), transparent 48%),
    repeating-linear-gradient(45deg, rgba(0,0,0,.16) 0 3px, transparent 3px 10px);
  z-index: -1;
}
.reel:hover { transform: translateY(-4px); border-color: rgba(237,28,36,.5); }

.reel-user {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,.9);
}
.reel-avatar {
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 50%;
  background: conic-gradient(from 210deg, #ed1c24, #7a1f0c, #ff4046, #ed1c24);
  display: grid;
  place-items: center;
}
.reel-avatar i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0e0e11;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 0.5rem;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-body);
}

.reel-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10, 10, 12, .6);
  border: 1px solid rgba(255, 255, 255, .35);
  display: grid;
  place-items: center;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.reel-play svg { width: 16px; height: 16px; fill: #fff; margin-left: 2px; }
.reel:hover .reel-play { background: var(--accent); border-color: transparent; transform: scale(1.1); }

.reel-title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.98rem;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #fff;
}
.reel-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 7px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}

/* ---------- 25. Product detail page ---------- */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 20px;
}
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span { color: var(--line); }

.pd-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(26px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 880px) { .pd-grid { grid-template-columns: 1fr; } }

.pd-gallery { display: grid; gap: 12px; }
.pd-main { aspect-ratio: 1; }
.pd-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.pd-thumbs button {
  padding: 0;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: none;
  cursor: pointer;
  overflow: hidden;
  transition: border-color .2s ease;
}
.pd-thumbs button .thumb { aspect-ratio: 1; border-radius: 0; }
.pd-thumbs button:hover { border-color: var(--ink-3); }
.pd-thumbs button[aria-pressed="true"] { border-color: var(--accent); }

.pd-price { font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.3rem); letter-spacing: -0.02em; }
.pd-price s { color: var(--ink-3); font-size: 0.55em; font-family: var(--font-body); margin-left: 10px; }

.pd-option { margin-top: 22px; }
.pd-option .field-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.option-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.option-chips .chip { border-radius: var(--radius); min-width: 52px; }

.pd-accordions { margin-top: 28px; border-bottom: 1px solid var(--line-soft); }
.pd-acc { border-top: 1px solid var(--line-soft); padding: 15px 0; }
.pd-acc summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.pd-acc summary::-webkit-details-marker { display: none; }
.pd-acc summary::after { content: "+"; color: var(--accent); font-size: 1.1rem; font-weight: 400; }
.pd-acc[open] summary::after { content: "–"; }
.pd-acc p, .pd-acc ul { color: var(--ink-2); font-size: 0.92rem; margin: 12px 0 0; }
.pd-acc ul { padding-left: 1.2em; }
.pd-acc li { margin-bottom: 6px; }

/* Category link tiles on shop pages */
.cat-strip { margin-bottom: clamp(26px, 4vw, 40px); }

/* Email capture strip */
.combatant-capture {
  margin-top: clamp(26px, 4vw, 40px);
  padding: clamp(22px, 3vw, 30px);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px 30px;
  align-items: center;
}
.combatant-capture h3 { margin-bottom: 6px; }
.combatant-capture p { color: var(--ink-2); margin: 0; font-size: 0.94rem; max-width: 46ch; }
.combatant-capture .form-msg { grid-column: 1 / -1; margin-top: 0; }
@media (max-width: 820px) { .combatant-capture { grid-template-columns: 1fr; } }


/* ---------- 26. Brand wordmark (stacked logo lockup) ---------- */
.brand-logo { height: 40px; width: auto; display: block; }
.brand-logo text {
  font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
  font-weight: 900;
  font-size: 47px;
  fill: var(--accent);
}
.site-footer .brand-logo { height: 34px; }
.preloader-word .brand-logo { height: clamp(64px, 13vw, 100px); }

/* ---------- 27. Biggest guests wall ---------- */
.guest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.8vw, 20px);
}
@media (max-width: 900px) { .guest-grid { grid-template-columns: repeat(2, 1fr); } }

.guest-tile {
  position: relative;
  min-height: 210px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  isolation: isolate;
  transition: transform .2s ease, border-color .2s ease;
}
.guest-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--thumb-bg, linear-gradient(140deg, #2a2a34, #14141a));
  opacity: .5;
  z-index: -2;
  transition: opacity .25s ease;
}
.guest-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(6,6,8,.88), transparent 60%),
    repeating-linear-gradient(45deg, rgba(0,0,0,.14) 0 3px, transparent 3px 10px);
}
.guest-tile:hover { transform: translateY(-4px); border-color: rgba(237,28,36,.55); }
.guest-tile:hover::before { opacity: .85; }

.guest-tile .g-initials {
  position: absolute;
  top: 6px;
  right: 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.4rem, 7vw, 5.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(237, 28, 36, .18);
}
.guest-tile h3 { font-size: clamp(1.2rem, 2.3vw, 1.6rem); }
.guest-tile .g-cred {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-top: 8px;
}
.guest-tile .g-ep {
  position: absolute;
  top: 14px;
  left: 16px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

/* ---------- 28. Keep 3-across (highlighted episodes) ---------- */
.grid--keep3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) {
  .grid--keep3 { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .grid--keep3 .card-body { padding: 12px; }
  .grid--keep3 h3 { font-size: 0.95rem; }
  .grid--keep3 .card-body > p { display: none; }
  .grid--keep3 .meta { font-size: 0.58rem; }
  .grid--keep3 .guest-line b { font-size: 0.74rem; }
  .grid--keep3 .guest-line small { font-size: 0.62rem; }
  .grid--keep3 .tags-row .tag { font-size: 0.5rem; padding: 3px 7px; }
}
@media (max-width: 480px) {
  .grid--keep3 { grid-template-columns: 1fr; }
  .grid--keep3 .card-body > p { display: block; }
}

/* ---------- 29. Brand asset placements ---------- */
.hero-banner-logo {
  position: relative;
  width: 100%;
  max-width: 780px;
  margin-inline: auto;
  margin-top: calc(-1 * clamp(46px, 8.5vw, 106px));
  padding: 0 var(--gutter);
  overflow: hidden;
}
.hero-banner-logo::before {
  content: "";
  position: absolute;
  inset: 0 var(--gutter);
  background: url("../img/banner-logo.png") center / 100% auto no-repeat;
  filter: blur(12px) contrast(1.3) brightness(1.35) saturate(1.25);
  mix-blend-mode: screen;
  animation: banner-glow 3s ease-in-out infinite;
}
.hero-banner-logo img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  margin-block: -7.5%; /* crop the empty space baked into the PNG */
  mix-blend-mode: screen; /* black background melts into the page; only the mark shows */
  animation: banner-breathe 3s ease-in-out infinite;
}
@keyframes banner-glow {
  0%, 100% { opacity: .28; transform: scale(.98); }
  50% { opacity: .62; transform: scale(1.03); }
}
@keyframes banner-breathe {
  0%, 100% { transform: scale(1); filter: contrast(1.1) brightness(1); }
  50% { transform: scale(1.01); filter: contrast(1.1) brightness(1.12); }
}

.hero-split { display: flex; align-items: center; justify-content: space-between; gap: clamp(20px, 4vw, 50px); flex-wrap: wrap; }
.hero-split > div:first-child { flex: 1 1 420px; }
.jk-logo { flex: 0 1 280px; max-width: 300px; }
.jk-logo svg { width: 100%; height: auto; display: block; }
.glove-art { flex: 0 1 260px; max-width: 280px; }
.glove-art svg { width: 100%; height: auto; display: block; }
@media (max-width: 720px) { .jk-logo, .glove-art { max-width: 190px; } }

.thumb > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.footer-outro { margin: 34px 0 8px; }
.footer-outro video {
  display: block;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
}

/* ---------- 30. Red glitch transition (music-video style) ---------- */
.preloader-inner::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,.03) 0 2px, transparent 2px 4px);
}
.preloader-inner::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: var(--accent);
  opacity: 0;
  animation: strobe-red 1.7s steps(1) infinite;
}
@keyframes strobe-red {
  0%, 100% { opacity: 0; }
  7%  { opacity: .25; }
  9%  { opacity: 0; }
  38% { opacity: .12; }
  40% { opacity: 0; }
  69% { opacity: .32; }
  72% { opacity: 0; }
  74% { opacity: .1; }
  76% { opacity: 0; }
}
.preloader-word .brand-logo { animation: glitch-jitter 1.15s steps(2) infinite; }
@keyframes glitch-jitter {
  0%, 11%, 25%, 54%, 63%, 100% { transform: none; filter: none; }
  12% { transform: translate(-4px, 1px) skewX(-3deg); filter: drop-shadow(4px 0 0 rgba(237,28,36,.9)) drop-shadow(-4px 0 0 rgba(255,255,255,.3)); }
  18% { transform: translate(3px, -1px); filter: drop-shadow(-5px 0 0 rgba(237,28,36,.8)); }
  55% { transform: translate(2px, -2px) skewX(2deg); filter: drop-shadow(-4px 0 0 rgba(237,28,36,.85)) drop-shadow(4px 0 0 rgba(255,255,255,.25)); }
}

/* ---------- 31. Membership card (single-product instructionals) ---------- */
.membership {
  max-width: 680px;
  margin-inline: auto;
  padding: clamp(26px, 4vw, 46px);
}
.membership .plan-price { font-size: clamp(2.6rem, 6vw, 4rem); }
.membership ul { margin-bottom: 26px; }
.membership .btn--mega { margin-top: 6px; }

/* ---------- 32. Reels band (rotating strip) ---------- */
.reels-band {
  overflow: hidden;
  margin-bottom: clamp(28px, 4.5vw, 46px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.reels-track {
  display: flex;
  width: max-content;
  animation: reels-scroll 36s linear infinite;
}
.reels-band:hover .reels-track { animation-play-state: paused; }
@keyframes reels-scroll { to { transform: translateX(-50%); } }

.reels-track .reel {
  flex: none;
  width: clamp(138px, 15vw, 185px);
  aspect-ratio: 9 / 16;
  min-height: 0;
  margin-right: clamp(10px, 1.4vw, 16px);
  padding: 10px;
}
.reels-track .reel-title { font-size: 0.76rem; }
.reels-track .reel-user { font-size: 0.52rem; gap: 6px; }
.reels-track .reel-avatar { width: 20px; height: 20px; }
.reels-track .reel-avatar i { width: 15px; height: 15px; font-size: 0.4rem; }
.reels-track .reel-meta { font-size: 0.5rem; margin-top: 5px; }
.reels-track .reel-play { width: 38px; height: 38px; }
.reels-track .reel-play svg { width: 13px; height: 13px; }

/* ---------- 33. Combatant Apparel coming soon ---------- */
.coming-hero { text-align: center; padding-bottom: clamp(44px, 7vw, 80px); }
.coming-hero .eyebrow { justify-content: center; }
.coming-hero .lede { margin-inline: auto; }
.coming-mark { margin: clamp(10px, 2vw, 22px) auto 6px; max-width: 980px; animation: coming-glow 3s ease-in-out infinite; }
.coming-mark svg { width: 100%; height: auto; display: block; }
.coming-mark text {
  font-family: "Arial Black", Arial, sans-serif;
  font-weight: 900;
  font-size: 100px;
  fill: var(--accent);
}
@keyframes coming-glow {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(237, 28, 36, .25)); }
  50% { filter: drop-shadow(0 0 24px rgba(237, 28, 36, .55)); }
}
.coming-title { font-size: clamp(1.9rem, 4.4vw, 3rem); margin-bottom: 14px; }
.coming-form { justify-content: center; margin-top: 22px; }
.coming-hero .form-msg { text-align: center; }
.coming-glove { max-width: 200px; margin: clamp(24px, 4vw, 40px) auto 0; }

/* ---------- 34. Footer socials: icons only ---------- */
.social a {
  width: auto;
  height: auto;
  padding: 6px;
  border: none;
  background: none;
  color: var(--ink-2);
  transition: color .18s ease, transform .18s ease;
}
.social a:hover { color: var(--accent); background: none; transform: translateY(-2px); }
.social a svg { width: 21px; height: 21px; display: block; }

/* ---------- 35. Coming-soon icon video ---------- */
.coming-video video {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: clamp(6px, 1.5vw, 16px) auto 18px;
  border-radius: var(--radius-lg);
}

/* ---------- 36. Glowing blood drop (coming soon) ---------- */
.coming-drop {
  width: clamp(96px, 13vw, 150px);
  margin: clamp(8px, 1.5vw, 18px) auto 14px;
  animation: coming-glow 3s ease-in-out infinite;
}
.coming-drop svg { width: 100%; height: auto; display: block; }

/* ---------- 37. Transition: bigger everything ---------- */
.preloader-word .brand-logo { height: clamp(120px, 26vw, 220px); }
.preloader-round { width: clamp(280px, 44vw, 460px); height: 4px; }
.preloader-tag {
  font-size: clamp(0.9rem, 2vw, 1.25rem);
  letter-spacing: 0.3em;
  color: var(--ink-2);
}

/* ---------- 38. Live feed episode list ---------- */
.feed-list { display: grid; gap: 14px; }
.feed-ep {
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
}
.feed-ep h3 { font-size: clamp(1rem, 1.8vw, 1.3rem); margin: 8px 0 14px; }
.feed-ep audio { width: 100%; height: 40px; }

/* ---------- 39. Hero: live latest episode card ---------- */
.hero-episode {
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 18px 18px 14px;
}

/* ---------- 40. Latest episode artwork from the feed ---------- */
.feed-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.feed-head img {
  width: clamp(72px, 9vw, 104px);
  height: clamp(72px, 9vw, 104px);
  flex: none;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--line-soft);
}

/* ---------- 41. Feed artwork over the Spotify player ---------- */
.sp-wrap { position: relative; }
.sp-wrap .sp-art {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 208px;
  height: 208px;
  border-radius: 8px;
  object-fit: cover;
  pointer-events: none; /* clicks pass through to the Spotify player */
}
@media (max-width: 560px) { .sp-wrap .sp-art { display: none; } }
.feed-head .feed-art-link { flex: none; display: block; }

/* ---------- 42. Clickable artwork on the Spotify box ---------- */
.sp-wrap .sp-art-link {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 208px;
  height: 208px;
  border-radius: 8px;
  overflow: hidden;
}
.sp-wrap .sp-art-link .sp-art { position: static; width: 100%; height: 100%; pointer-events: auto; }
@media (max-width: 560px) { .sp-wrap .sp-art-link { display: none; } }

/* ---------- 43. Champion gold (belt-holders only) ---------- */
.champ-banner {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 12px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f7d774, #d4a017 55%, #b8860b);
  color: #1a1200;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 0 0 1px rgba(255, 220, 120, .35), 0 6px 18px -6px rgba(212, 160, 23, .7);
}
.card--champ { border-color: rgba(212, 160, 23, .45); }
.card--champ .rank-flag { border-color: #d4a017; color: #f7d774; }
.guest-tile .champ-strip {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f7d774, #d4a017 55%, #b8860b);
  color: #1a1200;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.guest-tile--champ { border-color: rgba(212, 160, 23, .45); }
.guest-tile--champ .g-initials { color: rgba(212, 160, 23, .22); }

/* ---------- 44. Real YouTube thumbnails on featured cards ---------- */
.card--play .thumb .yt-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform .4s ease, filter .3s ease;
}
.card--play:hover .thumb .yt-thumb { transform: scale(1.05); filter: brightness(1.08); }
.card--play .thumb .rank-flag, .card--play .thumb .champ-banner, .card--play .thumb .play-ring { z-index: 2; }

/* ---------- 45. Hero episode card (own artwork + Spotify link) ---------- */
.ep-card {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px;
  background: var(--bg-3);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  transition: border-color .2s ease, transform .2s ease;
}
.ep-card:hover { border-color: rgba(237, 28, 36, .55); transform: translateY(-2px); }
.ep-card-art { width: 132px; height: 132px; border-radius: 8px; object-fit: cover; }
.ep-card-body { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.ep-card-body strong {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.ep-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ep-card-cta svg { width: 14px; height: 14px; fill: currentColor; }
@media (max-width: 480px) { .ep-card { grid-template-columns: 96px 1fr; } .ep-card-art { width: 96px; height: 96px; } }

/* ---------- 46. Red brand headline (section marker) ---------- */
.section-brand {
  color: var(--accent);
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.combatant .section-brand { margin-bottom: 10px; }

/* ---------- 47. Brand headline as link (dash + red, like The Combat Magazine) ---------- */
.section-brand--link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  transition: color .18s ease, gap .18s ease;
}
.section-brand--link::before { content: ""; width: 26px; height: 2px; background: var(--accent); }
.section-brand--link:hover { color: var(--accent-2); gap: 14px; }

/* ---------- 48. Combat Magazine poster (LinkedIn newsletter) ---------- */
.mag-poster {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: clamp(34px, 6vw, 72px);
  min-height: clamp(360px, 48vw, 520px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(237, 28, 36, .4);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(900px 420px at 85% 15%, rgba(237, 28, 36, .35), transparent 60%),
    linear-gradient(140deg, #1d0d08, #451407 55%, #0e0a0a);
  transition: border-color .2s ease, transform .2s ease;
}
.mag-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: repeating-linear-gradient(45deg, rgba(0,0,0,.16) 0 3px, transparent 3px 10px);
}
.mag-poster:hover { border-color: var(--accent); transform: translateY(-3px); }
.mag-poster-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.mag-poster-kicker::before { content: ""; width: 26px; height: 2px; background: var(--accent); }
.mag-poster-title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.96;
  letter-spacing: -0.02em;
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  color: #fff;
  max-width: 12ch;
}
.mag-poster-sub { color: var(--ink-2); max-width: 52ch; font-size: clamp(1rem, 1.5vw, 1.15rem); }
.mag-poster-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  padding: 16px 28px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.84rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: background .2s ease;
}
.mag-poster:hover .mag-poster-cta { background: var(--accent-2); }
.mag-poster-cta svg { width: 18px; height: 18px; fill: currentColor; }
.mag-poster-mark {
  position: absolute;
  right: -0.08em;
  bottom: -0.28em;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(8rem, 26vw, 22rem);
  line-height: 1;
  letter-spacing: -0.06em;
  color: rgba(237, 28, 36, .12);
  pointer-events: none;
  user-select: none;
}

/* ---------- 49. Instructionals poster: show the whole artwork, never crop the text ---------- */
.fighter-art img { object-fit: contain; object-position: center; background: #050505; }
