/* ═══════════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════════ */
:root {
  color-scheme: dark;

  /* ── Colors ───────────────────────────────────────── */
  --bg:         #0d0d0d;
  --surface:    #1a1a1a;
  --surface-hi: #222222;
  --red:        #e53e3e;
  --red-dim:    #9b2020;
  --red-bright: #ff5555;
  --text:       #f5f5f5;
  --muted:      #888888;
  --faint:      #555555;
  --border:     #2a2a2a;

  /* ── Easing ───────────────────────────────────────── */
  --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-spring: cubic-bezier(.16, 1, .3, 1);

  /* ── Fonts ────────────────────────────────────────── */
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* ── Layout ───────────────────────────────────────── */
  --nav-h: 64px;
}


/* ═══════════════════════════════════════════════════════
   RESET
═══════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

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

video { display: block; }


/* ═══════════════════════════════════════════════════════
   GRAIN OVERLAY
═══════════════════════════════════════════════════════ */
.grain {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}


/* ═══════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform    160ms var(--ease-out),
    background   200ms var(--ease-out),
    border-color 200ms var(--ease-out),
    color        200ms var(--ease-out);
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-full {
  width: 100%;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateY(101%);
  transition: transform 280ms var(--ease-out);
  z-index: -1;
  pointer-events: none;
}

.btn-primary::before { background: #f05555; }
.btn-ghost::before   { background: var(--red); }

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover::before { transform: translateY(0); }
  .btn-ghost:hover::before   { transform: translateY(0); }
  .btn-ghost:hover { color: #fff; border-color: var(--red); }
}

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


/* ═══════════════════════════════════════════════════════
   BTN SM (nav CTA)
═══════════════════════════════════════════════════════ */
.btn-sm {
  padding: 0.5rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--red);
  color: #fff;
  border-radius: 6px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 160ms var(--ease-out), background 200ms var(--ease-out);
}

.btn-sm::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #f05555;
  transform: translateY(101%);
  transition: transform 280ms var(--ease-out);
  z-index: -1;
}

.btn-sm:active { transform: scale(0.97); }

@media (hover: hover) and (pointer: fine) {
  .btn-sm:hover::before { transform: translateY(0); }
}


/* ═══════════════════════════════════════════════════════
   BUTTON CLICK RIPPLE
═══════════════════════════════════════════════════════ */
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  pointer-events: none;
  transform: scale(0);
  animation: btnRipple 420ms var(--ease-out) forwards;
}

@keyframes btnRipple {
  to { transform: scale(4); opacity: 0; }
}


/* ═══════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition:
    background     300ms var(--ease-out),
    border-color   300ms var(--ease-out),
    backdrop-filter 300ms var(--ease-out);
}

.nav.scrolled {
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 2rem;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
}

/* ── Logo ─────────────────────────────────────────── */
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
  /* black logo → white on dark nav */
  filter: brightness(0) invert(1);
  opacity: 0.92;
  transition: opacity 200ms var(--ease-out);
}

.nav-logo:hover .nav-logo-img { opacity: 1; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.nav-logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--red);
  border-radius: 6px;
  color: #fff;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.nav-logo-text em {
  font-style: normal;
  color: var(--red);
}

/* ── Nav links ───────────────────────────────────── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-left: auto;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--muted);
  position: relative;
  transition: color 200ms var(--ease-out);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 300ms var(--ease-spring);
}

@media (hover: hover) and (pointer: fine) {
  .nav-links a:hover           { color: var(--text); }
  .nav-links a:hover::after    { width: 100%; }
}

/* ── Hamburger ───────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition:
    transform 250ms var(--ease-out),
    opacity   200ms var(--ease-out);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav.mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: rgba(13, 13, 13, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 99;
    margin-left: 0;
  }

  .nav.mobile-open .nav-links a {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
  }

  .nav.mobile-open .nav-links a::after { display: none; }
}


/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 97.5%, 0 100%);
}

.hero-media {
  position: absolute;
  inset: -10% 0;
  z-index: 0;
  will-change: transform;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.3s var(--ease-out);
}

.hero-media.is-revealed {
  clip-path: inset(0 0 0% 0);
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 110% 80% at 50% 50%, rgba(10,10,10,0.72) 0%, transparent 100%),
    linear-gradient(
      to bottom,
      rgba(13,13,13,0.88) 0%,
      rgba(13,13,13,0.62) 30%,
      rgba(13,13,13,0.60) 55%,
      rgba(13,13,13,0.78) 75%,
      rgba(13,13,13,0.97) 100%
    );
}

.hero-glow-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(320px, 55vw, 620px);
  height: clamp(320px, 55vw, 620px);
  background: radial-gradient(circle, rgba(229,62,62,0.13) 0%, rgba(229,62,62,0.04) 50%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.hero-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  pointer-events: none;
  z-index: 0;
}

.hero-line--left {
  left: 25%;
  background: linear-gradient(to bottom, transparent 0%, rgba(229,62,62,0.22) 50%, transparent 100%);
}

.hero-line--right {
  right: 33%;
  background: linear-gradient(to bottom, transparent 0%, rgba(229,62,62,0.14) 40%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: calc(var(--nav-h) + 3rem) clamp(1.25rem, 6vw, 5rem) 5rem;
  width: 100%;
  max-width: 1060px;
  transform: scale(1.08);
  transition: transform 1200ms var(--ease-out);
}

.hero-content.is-zoomed { transform: scale(1); }

/* Text elements start hidden; JS adds .hero-text-in directly for a reliable CSS transition */
.hero-eyebrow,
.hero-tagline,
.hero-ctas,
.hero-info {
  opacity: 0;
  transition: opacity 1.1s ease;
}

.hero-eyebrow.hero-text-in,
.hero-tagline.hero-text-in,
.hero-ctas.hero-text-in,
.hero-info.hero-text-in {
  opacity: 1;
}

/* Eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.75rem;
  text-shadow: 0 1px 12px rgba(0,0,0,0.9), 0 0 32px rgba(0,0,0,0.7);
}

/* Title */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 13vw, 12rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 2rem;
}

/* Tagline */
.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1.8vw, 1.125rem);
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2.75rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.95), 0 1px 4px rgba(0,0,0,0.9);
}

/* CTA row */
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

/* Info row */
.hero-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
  text-shadow: 0 1px 10px rgba(0,0,0,0.95), 0 0 24px rgba(0,0,0,0.8);
}

.hero-info-item svg { color: var(--red); flex-shrink: 0; }

.hero-info-sep {
  color: rgba(255,255,255,0.45);
  font-size: 0.75rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.9);
}

/* Entrance keyframes */
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero-scroll-track {
  width: 1px;
  height: 3.5rem;
  overflow: hidden;
  position: relative;
}

.hero-scroll-bar {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
  animation: scrollTravel 2s var(--ease-in-out) infinite;
}

@keyframes scrollTravel {
  from { transform: translateY(-100%); }
  to   { transform: translateY(200%); }
}

@media (max-width: 640px) {
  .hero-title { font-size: clamp(3.8rem, 11vw, 4.5rem); }
  .hero-content { padding-left: 1.5rem; padding-right: 1.5rem; }
  .hero-ctas { flex-direction: column; align-items: center; width: 100%; }
  .hero-ctas .btn { width: 100%; max-width: 300px; }
  .hero-info-sep { display: none; }
  .hero-info { flex-direction: column; gap: 0.5rem; }
}


/* ═══════════════════════════════════════════════════════
   SPLIT-TEXT HERO TITLE
═══════════════════════════════════════════════════════ */
.hero-title--split {
  animation: none;
  opacity: 1;
}

.split-line {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  line-height: 0.96;
  padding-bottom: 0.04em;
}

.char {
  display: inline-block;
  transform: translateY(1.1em) rotate(8deg) scale(0.85);
  opacity: 0;
  transition:
    transform 750ms var(--ease-spring),
    opacity   600ms var(--ease-spring);
  transition-delay: calc(var(--ci, 0) * 50ms);
}

.hero-title--split.chars-active .char {
  transform: translateY(0) rotate(0deg) scale(1);
  opacity: 1;
}

.char-red  { color: var(--red); }
/* Keep backward-compat alias */
.char-gold { color: var(--red); }

.char-sp {
  display: inline-block;
  width: 0.38em;
  transform: none;
  opacity: 1;
}

/* Line 1: chars sweep in from the LEFT */
.split-line--left .char {
  transform: translateX(-1.6em) rotate(-7deg) scale(0.85);
}

/* Line 2: chars sweep in from the RIGHT */
.split-line--right .char {
  transform: translateX(1.6em) rotate(7deg) scale(0.85);
}


/* ═══════════════════════════════════════════════════════
   CONTAINER
═══════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
}


/* ═══════════════════════════════════════════════════════
   SECTION LABEL
═══════════════════════════════════════════════════════ */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
}

.section-label.reveal {
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(55px);
  transition:
    opacity        700ms var(--ease-spring),
    transform      700ms var(--ease-spring),
    letter-spacing 900ms var(--ease-spring) 200ms;
  transition-delay: calc(var(--i, 0) * 80ms);
}

.section-label.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  letter-spacing: 0.22em;
}


/* ═══════════════════════════════════════════════════════
   SECTION HEADINGS (h2 with <em> for red accent)
═══════════════════════════════════════════════════════ */
.about h2,
.training-heading,
.reviews h2,
.schedule h2,
.contact h2 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.about h2 em,
.training-heading em,
.reviews h2 em,
.schedule h2 em,
.contact h2 em {
  font-style: normal;
  color: var(--red);
  display: inline-block;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 900ms var(--ease-spring) 280ms;
}

.reveal.is-visible em {
  clip-path: inset(0 0% 0 0);
}

.schedule h2 em { font-style: italic; }


/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(55px);
  transition:
    opacity   850ms var(--ease-spring),
    transform 850ms var(--ease-spring);
  transition-delay: calc(var(--i, 0) * 80ms);
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal--punch {
  transform: translateX(-40px);
  transition: opacity 600ms var(--ease-spring), transform 600ms var(--ease-spring);
}
.reveal--punch.is-visible { opacity: 1; transform: translateX(0); }

.reveal--card {
  transform: translateY(40px) rotateY(8deg);
  perspective: 1000px;
  transform-style: preserve-3d;
  transition: opacity 700ms var(--ease-spring), transform 700ms var(--ease-spring);
  transition-delay: calc(var(--i, 0) * 150ms);
}
.reveal--card.is-visible { opacity: 1; transform: translateY(0) rotateY(0deg); }

.reveal--left {
  transform: translateX(-80px);
  transition: opacity 700ms var(--ease-spring), transform 700ms var(--ease-spring);
  transition-delay: calc(var(--i, 0) * 120ms);
}
.reveal--left.is-visible { opacity: 1; transform: translateX(0); }

.reveal--right {
  transform: translateX(80px);
  transition: opacity 700ms var(--ease-spring), transform 700ms var(--ease-spring);
  transition-delay: calc(var(--i, 0) * 120ms);
}
.reveal--right.is-visible { opacity: 1; transform: translateX(0); }

.reveal--scale {
  transform: scale(0.85) translateY(40px);
  transition: opacity 700ms var(--ease-spring), transform 700ms var(--ease-spring);
  transition-delay: calc(var(--i, 0) * 100ms);
}
.reveal--scale.is-visible { opacity: 1; transform: scale(1) translateY(0); }

.reveal--zoom {
  transform: scale(0.88) translateY(24px);
  transition: opacity 800ms var(--ease-spring), transform 800ms var(--ease-spring);
  transition-delay: calc(var(--i, 0) * 100ms);
}
.reveal--zoom.is-visible { opacity: 1; transform: scale(1) translateY(0); }

.reveal--tilt-left {
  transform: translateY(40px) translateX(-20px) rotate(-3deg);
  transform-origin: right center;
  transition: opacity 750ms var(--ease-spring), transform 750ms var(--ease-spring);
  transition-delay: calc(var(--i, 0) * 120ms);
}
.reveal--tilt-left.is-visible { opacity: 1; transform: translateY(0) translateX(0) rotate(0deg); }

.reveal--tilt-right {
  transform: translateY(40px) translateX(20px) rotate(3deg);
  transform-origin: left center;
  transition: opacity 750ms var(--ease-spring), transform 750ms var(--ease-spring);
  transition-delay: calc(var(--i, 0) * 120ms);
}
.reveal--tilt-right.is-visible { opacity: 1; transform: translateY(0) translateX(0) rotate(0deg); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal--punch, .reveal--card, .reveal--left, .reveal--right, .reveal--scale,
  .reveal--zoom, .reveal--tilt-left, .reveal--tilt-right {
    transition-duration: 0.01ms;
    transition-delay: 0ms;
  }
}


/* ═══════════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════════ */
.stats-bar {
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--border);
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity   800ms ease,
    transform 800ms ease;
  transition-delay: calc(var(--i, 0) * 150ms);
}

.stats-item:last-child { border-right: none; }

.stats-item.stats-visible {
  opacity: 1;
  transform: none;
}

.stats-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.stats-plus,
.stats-unit {
  font-size: 0.6em;
  vertical-align: super;
  line-height: 0;
}

.stats-label {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.stats-sub {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-item:nth-child(2) { border-right: none; }
  .stats-item:nth-child(3),
  .stats-item:nth-child(4) { border-top: 1px solid var(--border); }
  .stats-item:nth-child(4) { border-right: none; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stats-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stats-item:last-child { border-bottom: none; }
}


/* ═══════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════ */
.about {
  padding: clamp(5rem, 10vw, 9rem) 0;
  border-bottom: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

/* ── Image column ─────────────────────────────────── */
.about-image-col {
  position: relative;
}

/* Dark placeholder — swap .about-img-box for <img class="about-img"> with a real photo */
.about-img-box {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(150deg, #1c0808 0%, #220d0d 45%, #111111 100%);
  border-radius: 8px;
  border: 1px solid #2a1515;
  position: relative;
  overflow: hidden;
}

.about-img-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255,255,255,0.012) 3px,
    rgba(255,255,255,0.012) 6px
  );
}

.about-img-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(229,62,62,0.12) 0%, transparent 65%);
  z-index: 2;
}

.about-img-box .about-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  z-index: 1;
  filter: brightness(0.6) saturate(0.75);
}

/* Badge */
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  z-index: 10;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  min-width: 90px;
}

.about-badge-stars {
  font-size: 0.75rem;
  color: #f5a623;
  letter-spacing: 0.05em;
}

.about-badge-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}

.about-badge-label {
  font-size: 0.6875rem;
  color: var(--muted);
  white-space: nowrap;
}

/* ── Content column ──────────────────────────────── */
.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  max-width: 50ch;
  margin-bottom: 1.25rem;
}

/* Feature grid */
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.about-feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  transition: background 250ms var(--ease-out), border-color 250ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .about-feature:hover {
    background: var(--surface-hi);
    border-color: #3a2020;
  }
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(229,62,62,0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}

.about-feature h4 {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.about-feature p {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  max-width: none;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { right: 1rem; bottom: 1rem; }
}

@media (max-width: 580px) {
  .about-features { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════
   TRAINING
═══════════════════════════════════════════════════════ */
.training {
  padding: clamp(5rem, 10vw, 9rem) 0;
  border-bottom: 1px solid var(--border);
}

.training-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 50ch;
  margin-bottom: 2.5rem;
}

/* ── Tabs ─────────────────────────────────────────── */
.training-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.training-tab {
  padding: 0.625rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--muted);
  cursor: pointer;
  transition:
    background   200ms var(--ease-out),
    color        200ms var(--ease-out),
    border-color 200ms var(--ease-out);
}

.training-tab.is-active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

@media (hover: hover) and (pointer: fine) {
  .training-tab:not(.is-active):hover {
    background: var(--surface-hi);
    color: var(--text);
  }
}

/* ── Panels ───────────────────────────────────────── */
.training-panels { margin-bottom: 4rem; }

.training-panel {
  display: none;
}

.training-panel.is-active {
  display: block;
  animation: panelFadeIn 300ms var(--ease-out);
}

@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.training-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

/* Image placeholder for training panels */
.training-img-box {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #1a0e0e 0%, #1e1010 50%, #141414 100%);
  border-radius: 8px;
  border: 1px solid #2a1515;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.training-img-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(229,62,62,0.1) 0%, transparent 70%);
  z-index: 2;
}

.training-panel-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  z-index: 1;
  opacity: 0.55;
  filter: brightness(0.8) saturate(0.7);
}

.training-img-label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  background: rgba(0,0,0,0.5);
  width: 100%;
  backdrop-filter: blur(4px);
}

.training-img-initial {
  width: 36px;
  height: 36px;
  background: var(--red);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.training-img-label strong {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  display: block;
}

.training-img-label small {
  font-size: 0.6875rem;
  color: var(--muted);
  display: block;
}

/* Panel content */
.training-panel-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.training-panel-content p {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.training-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 2rem;
}

.training-features li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--text);
}

.training-features li svg { color: var(--red); flex-shrink: 0; }

/* ── Summary cards ────────────────────────────────── */
.training-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.training-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  transition: background 250ms var(--ease-out), border-color 250ms var(--ease-out);
  perspective: 800px;
  transform-style: preserve-3d;
  position: relative;
}

.training-card[data-tab] { cursor: pointer; }

.training-card.is-tab-active {
  border-color: var(--red-dim);
  background: rgba(155,32,32,0.12);
  box-shadow: inset 0 2px 0 var(--red-dim);
}

@media (hover: hover) and (pointer: fine) {
  .training-card:hover {
    background: var(--surface-hi);
    border-color: #3a2020;
    box-shadow: inset 0 2px 0 var(--red-dim);
  }
}

.training-card-initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(229,62,62,0.1);
  border: 1px solid rgba(229,62,62,0.25);
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 1rem;
}

.training-card h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.625rem;
  color: var(--text);
}

.training-card p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .training-panel-grid { grid-template-columns: 1fr; }
  .training-cards { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .training-tabs { flex-direction: column; }
  .training-tab { text-align: left; }
}


/* ═══════════════════════════════════════════════════════
   REVIEWS
═══════════════════════════════════════════════════════ */
.reviews {
  padding: clamp(5rem, 10vw, 9rem) 0;
  border-bottom: 1px solid var(--border);
}

/* Rating row */
.reviews-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.reviews-stars-row {
  font-size: 1.25rem;
  color: #f5a623;
  letter-spacing: 0.08em;
}

.reviews-score-big {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text);
}

.reviews-count-text {
  font-size: 0.875rem;
  color: var(--muted);
}

/* ── Carousel ─────────────────────────────────────── */
.reviews-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.carousel-track {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

.carousel-slide {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
}

.carousel-slide.is-active {
  display: flex;
  animation: slideFadeIn 350ms var(--ease-out);
}

@keyframes slideFadeIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.carousel-quote-icon {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--red);
  opacity: 0.7;
  font-family: Georgia, serif;
}

.carousel-quote {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--text);
  quotes: none;
  flex: 1;
}

.carousel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.carousel-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.carousel-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  flex-shrink: 0;
}

.carousel-author-info strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
}

.carousel-author-info small {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
}

.carousel-stars {
  font-size: 0.875rem;
  color: #f5a623;
  letter-spacing: 0.1em;
}

/* Arrow buttons */
.carousel-arrow {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background   200ms var(--ease-out),
    border-color 200ms var(--ease-out),
    color        200ms var(--ease-out);
  line-height: 1;
}

@media (hover: hover) and (pointer: fine) {
  .carousel-arrow:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
  }
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 4rem;
}

.carousel-dot {
  width: 28px;
  height: 6px;
  border-radius: 3px;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: background 200ms var(--ease-out), width 200ms var(--ease-out);
}

.carousel-dot.is-active {
  background: var(--red);
  width: 36px;
}

/* ── Review cards grid ────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 250ms var(--ease-out), border-color 250ms var(--ease-out), box-shadow 300ms var(--ease-spring);
  perspective: 800px;
  transform-style: preserve-3d;
  position: relative;
}

.review-card[data-index] { cursor: pointer; }

.review-card--active {
  border-color: var(--red-dim);
  background: rgba(155,32,32,0.12);
}

@media (hover: hover) and (pointer: fine) {
  .review-card:hover {
    background: var(--surface-hi);
    border-color: #3a2020;
    box-shadow: 0 16px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(229,62,62,0.12);
  }
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  flex-shrink: 0;
}

.review-name {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.125rem;
}

.review-stars-sm {
  font-size: 0.6875rem;
  color: #f5a623;
  letter-spacing: 0.1em;
}

.review-text {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}

/* Specular on cards */
.review-card .tilt-specular,
.training-card .tilt-specular {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 300ms var(--ease-out);
  background: radial-gradient(circle at 50% 50%, rgba(229,62,62,0.08) 0%, transparent 65%);
}

@media (hover: hover) and (pointer: fine) {
  .review-card:hover .tilt-specular,
  .training-card:hover .tilt-specular { opacity: 1; }
}

@media (max-width: 900px) {
  .reviews-carousel { flex-direction: column; align-items: stretch; }
  .carousel-arrow { align-self: center; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .reviews-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════
   COMPETITIONS / FIGHTS
═══════════════════════════════════════════════════════ */
.fights {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: linear-gradient(160deg, #090404 0%, #0d0d0d 60%, #080808 100%);
}

.fights-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 900;
  line-height: 0.93;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.fights-heading em {
  font-style: normal;
  color: var(--red);
}

.fights-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 48ch;
  margin-bottom: 3rem;
}

/* ── Belt + trophy decorations above ring ───────────── */
.fights-awards {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: -2px;
  pointer-events: none;
  position: relative;
  z-index: 0;
}

.award-belt {
  flex: 1;
  max-width: 680px;
  min-width: 0;
  opacity: 0.55;
  filter: drop-shadow(0 0 12px rgba(229,62,62,0.15));
}

.award-trophy {
  width: 70px;
  flex-shrink: 0;
  opacity: 0.5;
  filter: drop-shadow(0 0 8px rgba(229,62,62,0.12));
}

/* ── Ring wrapper + stage platform ─────────────────── */
.ring-wrap {
  position: relative;
}

/* Platform face — the front edge of the raised stage */
.ring-platform {
  position: relative;
  z-index: 0;
}
.ring-platform-face {
  height: 22px;
  background: linear-gradient(180deg, #1e0a0a 0%, #130505 100%);
  margin: 0 10px;
  border-radius: 0 0 3px 3px;
  box-shadow:
    inset 0 1px 0 rgba(229,62,62,0.12),
    0 8px 24px rgba(0,0,0,0.7);
}
.ring-platform-floor {
  height: 14px;
  background: linear-gradient(180deg, #0e0404 0%, transparent 100%);
  margin: 0 24px;
  border-radius: 0 0 4px 4px;
  opacity: 0.7;
}

/* Ambient light spill on floor beneath the whole ring */
.ring-wrap::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 10%;
  right: 10%;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(229,62,62,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Side-view boxing ring ──────────────────────────── */
.ring-side {
  display: flex;
  align-items: stretch;
  border-radius: 6px;
  overflow: visible; /* let popped cards breathe */
  box-shadow:
    0 0 0 1px rgba(229,62,62,0.2),
    0 50px 120px rgba(0,0,0,0.85),
    0 0 80px rgba(229,62,62,0.05);
}

/* Vertical corner posts */
.ring-post-col {
  width: 52px;
  flex-shrink: 0;
  background: linear-gradient(to right, #141414, #282828 40%, #282828 60%, #141414);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 4;
}
.ring-post-col:first-child { border-radius: 6px 0 0 6px; }
.ring-post-col:last-child  { border-radius: 0 6px 6px 0; }

/* Padded corner pad (red) */
.ring-post-body {
  width: 32px;
  height: 100px;
  border-radius: 7px;
  background: linear-gradient(160deg, rgba(255,80,80,0.9) 0%, rgba(229,62,62,0.95) 40%, rgba(160,15,15,0.92) 100%);
  box-shadow:
    0 4px 20px rgba(229,62,62,0.45),
    inset 0 2px 3px rgba(255,200,200,0.25),
    inset 0 -3px 5px rgba(0,0,0,0.45);
}

/* Ring floor / canvas */
.ring-stage {
  flex: 1;
  position: relative;
  background:
    repeating-linear-gradient(
      0deg, transparent, transparent 44px,
      rgba(229,62,62,0.02) 44px, rgba(229,62,62,0.02) 45px
    ),
    repeating-linear-gradient(
      90deg, transparent, transparent 44px,
      rgba(229,62,62,0.015) 44px, rgba(229,62,62,0.015) 45px
    ),
    #0a0303;
  padding: 2.5rem 1.75rem;
  overflow: visible;
}

/* 3 horizontal ropes — in FRONT of videos */
.ring-rope {
  position: absolute;
  left: -8px; right: -8px; /* slightly overlap into posts */
  height: 8px;
  border-radius: 4px;
  z-index: 3;
  pointer-events: none;
}
.ring-rope--1 {
  top: 27%;
  background: linear-gradient(to right,
    rgba(229,62,62,0.3),
    rgba(229,62,62,1) 12%,
    rgba(229,62,62,1) 88%,
    rgba(229,62,62,0.3));
  box-shadow:
    0 4px 14px rgba(229,62,62,0.5),
    inset 0 2px 2px rgba(255,160,160,0.3),
    inset 0 -2px 3px rgba(100,0,0,0.4);
}
.ring-rope--2 {
  top: 51%;
  background: linear-gradient(to right,
    rgba(200,200,200,0.2),
    rgba(210,210,210,0.8) 12%,
    rgba(210,210,210,0.8) 88%,
    rgba(200,200,200,0.2));
  box-shadow:
    0 3px 10px rgba(0,0,0,0.6),
    inset 0 2px 2px rgba(255,255,255,0.3),
    inset 0 -2px 3px rgba(0,0,0,0.4);
}
.ring-rope--3 {
  top: 75%;
  background: linear-gradient(to right,
    rgba(229,62,62,0.3),
    rgba(229,62,62,0.95) 12%,
    rgba(229,62,62,0.95) 88%,
    rgba(229,62,62,0.3));
  box-shadow:
    0 4px 12px rgba(229,62,62,0.4),
    inset 0 2px 2px rgba(255,160,160,0.25),
    inset 0 -2px 3px rgba(100,0,0,0.35);
}

/* ── Fight cards — in front of the ropes ────────────── */
.fight-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 5; /* above ropes (z-index 3) and posts (z-index 4) */
}

.fight-card {
  background: rgba(8,2,2,0.85);
  border: 1px solid rgba(229,62,62,0.12);
  border-radius: 5px;
  overflow: visible;
  transition:
    transform 420ms cubic-bezier(.16,1,.3,1),
    box-shadow 420ms cubic-bezier(.16,1,.3,1),
    border-color 300ms;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transform: translateY(-22px);
  box-shadow:
    0 28px 55px rgba(0,0,0,0.9),
    0 8px 18px rgba(0,0,0,0.6),
    0 2px 0 rgba(229,62,62,0.08);
}
/* Clip inner media only, not the whole card */
.fight-card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
}

/* Pop through the ropes when playing */
.fight-card.is-playing {
  transform: scale(1.12) translateY(-34px);
  z-index: 20 !important;
  border-color: rgba(229,62,62,0.65);
  box-shadow:
    0 40px 100px rgba(0,0,0,0.95),
    0 0 60px rgba(229,62,62,0.22),
    0 0 0 2px rgba(229,62,62,0.4);
}

.fight-vid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fight-card-tag {
  position: absolute;
  top: 8px; left: 8px;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(229,62,62,0.9);
  padding: 0.17rem 0.48rem;
  border-radius: 2px;
  z-index: 4;
}

.fight-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.28);
  border: none;
  cursor: pointer;
  z-index: 5;
  transition: background 250ms;
  border-radius: 4px 4px 0 0;
}
.fight-play::before {
  content: '';
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.9;
  transition: transform 280ms var(--ease-spring), opacity 250ms;
  animation: fightPulse 2.4s ease-in-out infinite;
}
.fight-play svg {
  position: relative;
  z-index: 1;
  color: #fff;
  margin-left: 3px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.6));
}
.fight-play:hover { background: rgba(0,0,0,0.05); }
.fight-play:hover::before { transform: scale(1.12); opacity: 1; animation: none; }
.fight-play.is-hidden { opacity: 0; pointer-events: none; }

@keyframes fightPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(229,62,62,0.55); }
  50%       { box-shadow: 0 0 0 16px rgba(229,62,62,0); }
}

.fight-card-info {
  padding: 0.7rem 0.875rem;
  border-top: 1px solid rgba(229,62,62,0.08);
  background: rgba(8,2,2,0.85);
  border-radius: 0 0 4px 4px;
}
.fight-card-round {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 900px) {
  .ring-post-col { width: 36px; }
  .ring-post-body { width: 22px; height: 70px; }
  .fight-cards { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .ring-stage { padding: 1.75rem 1.25rem; }
  .ring-rope { left: -4px; right: -4px; height: 6px; }
}

@media (max-width: 480px) {
  .ring-post-col { width: 28px; }
  .ring-post-body { width: 18px; height: 56px; border-radius: 5px; }
  .fight-cards { max-width: 100%; }
  .ring-stage { padding: 1.25rem 0.875rem; }
  .fight-card.is-playing { transform: scale(1.06) translateY(-6px); }
}

/* ═══════════════════════════════════════════════════════
   SCHEDULE
═══════════════════════════════════════════════════════ */
.schedule {
  padding: clamp(5rem, 10vw, 9rem) 0;
  border-bottom: 1px solid var(--border);
  overflow-x: hidden;
}

.schedule-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 50ch;
  margin-bottom: 3rem;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

/* Center SUB when it's the lone card in the last row */
.schedule-day:last-child:nth-child(3n + 1) {
  grid-column: 2;
}

.schedule-day {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  perspective: 800px;
  transform-style: preserve-3d;
  position: relative;
}

.schedule-day-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.schedule-day-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--red);
  margin: 0;
}

.schedule-day-count {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  border: 1px solid var(--border);
}

.schedule-classes {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.schedule-class {
  padding: 0.75rem;
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--border);
}

.schedule-class.sched-beginner   { border-left-color: #60a5fa; background: rgba(96,165,250,0.08); }
.schedule-class.sched-advanced   { border-left-color: var(--red); background: rgba(229,62,62,0.08); }
.schedule-class.sched-all        { border-left-color: #facc15; background: rgba(234,179,8,0.08); }
.schedule-class.sched-individual { border-left-color: #fb923c; background: rgba(249,115,22,0.08); }

.schedule-class-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
}

.schedule-class-top strong {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
}

.schedule-tag {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.1875rem 0.5rem;
  border-radius: 3px;
  flex-shrink: 0;
  white-space: nowrap;
}

.tag-beginner    { background: rgba(59,130,246,0.15);  color: #60a5fa; }
.tag-advanced    { background: rgba(229,62,62,0.15);   color: var(--red); }
.tag-all         { background: rgba(234,179,8,0.15);   color: #facc15; }
.tag-individual  { background: rgba(249,115,22,0.15);  color: #fb923c; }
.tag-competitor  { background: rgba(168,85,247,0.15);  color: #c084fc; }

.schedule-time {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.6875rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.schedule-time svg { color: var(--faint); }

/* Note below schedule */
.schedule-note {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
  padding-top: 1rem;
}

.schedule-note-text {
  font-size: 0.875rem;
  color: var(--muted);
}

.schedule-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, rgba(229,62,62,0.18) 0%, rgba(229,62,62,0.08) 100%);
  color: var(--red);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  position: relative;
  isolation: isolate;
  transition: color 240ms var(--ease-out), background 240ms var(--ease-out);
}

.schedule-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(229,62,62,0.85) 0%, rgba(180,30,30,0.9) 100%);
  opacity: 0;
  transition: opacity 260ms var(--ease-out);
  z-index: -1;
}

.schedule-cta-arrow {
  transition: transform 260ms var(--ease-spring);
  flex-shrink: 0;
}

@media (hover: hover) and (pointer: fine) {
  .schedule-cta:hover {
    color: #fff;
  }
  .schedule-cta:hover::before { opacity: 1; }
  .schedule-cta:hover .schedule-cta-arrow { transform: translateX(4px); }
}

.schedule-cta:active { transform: scale(0.97); }

@media (max-width: 900px) {
  .schedule-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .schedule-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    overflow: hidden;
  }

  /* reset the desktop centering rule that forces a 2nd column */
  .schedule-day:last-child:nth-child(3n + 1) {
    grid-column: auto;
  }

  .schedule-day {
    padding: 1.25rem;
    min-width: 0;
  }

  .schedule-class-top {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .schedule-tag {
    white-space: normal;
  }
}


/* ═══════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════ */
.contact {
  padding: clamp(5rem, 10vw, 9rem) 0;
  border-bottom: 1px solid var(--border);
}

.contact-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 50ch;
  margin-bottom: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

/* ── Map ──────────────────────────────────────────── */
.contact-map {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
  margin-bottom: 1.25rem;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(92%) hue-rotate(180deg) brightness(0.88) contrast(1.05) saturate(0.85);
  display: block;
}

/* Info boxes below map */
.contact-info-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.contact-info-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.contact-info-icon {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-box > div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.contact-info-label {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
}

.contact-info-box strong {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text);
  display: block;
}

.contact-info-box small {
  font-size: 0.6875rem;
  color: var(--muted);
  display: block;
}

.contact-info-box--ig {
  text-decoration: none;
  transition: border-color 200ms var(--ease-out), background 200ms var(--ease-out);
}

.contact-info-box--ig:hover {
  border-color: rgba(229,62,62,0.35);
  background: var(--surface-hi);
}

.contact-info-icon--ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-ig-link {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity 200ms var(--ease-out);
}

.footer-ig-link:hover { opacity: 0.8; }

.footer-ig-link svg {
  color: #e6683c;
  flex-shrink: 0;
}

/* ── Form ─────────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  padding: 0.875rem 1rem;
  transition: border-color 200ms var(--ease-out);
  outline: none;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--faint);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
}

.form-direct {
  font-size: 0.8125rem;
  color: var(--muted);
  text-align: center;
}

.contact-link {
  color: var(--red);
  transition: opacity 160ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .contact-link:hover { opacity: 0.8; }
}

/* Form success state */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 3rem 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.form-success.is-visible {
  display: flex;
  animation: heroReveal 400ms var(--ease-out);
}

.form-success svg {
  color: #4ade80;
  background: rgba(74,222,128,0.1);
  padding: 0.75rem;
  border-radius: 50%;
  width: 56px;
  height: 56px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

.form-success p {
  font-size: 0.9375rem;
  color: var(--muted);
  font-weight: 300;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .contact-info-boxes { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer {
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

/* Brand col */
.footer-brand { display: flex; flex-direction: column; gap: 1.25rem; }

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.88;
  transition: opacity 200ms var(--ease-out);
}

.footer-logo:hover .footer-logo-img { opacity: 1; }

.footer-logo small {
  font-size: 0.6875rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.footer-logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--red);
  border-radius: 6px;
  color: #fff;
  flex-shrink: 0;
}

.footer-logo-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.2;
}

.footer-logo-name em {
  font-style: normal;
  color: var(--red);
}

.footer-logo > div > small {
  font-size: 0.6875rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.footer-tagline {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 30ch;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--muted);
}

.footer-contact-line svg { color: var(--red); flex-shrink: 0; }

.footer-contact-link {
  transition: color 160ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .footer-contact-link:hover { color: var(--text); }
}

/* Nav / Programs cols */
.footer-col { display: flex; flex-direction: column; gap: 1.25rem; }

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-nav a {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted);
  transition: color 160ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .footer-nav a:hover { color: var(--text); }
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--faint);
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.footer-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 580px) {
  .footer-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════
   SHOWCASE (highlight video section)
═══════════════════════════════════════════════════════ */
.showcase {
  padding: 130px 0 140px;
  background: var(--bg);
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 18px,
    rgba(229,62,62,0.016) 18px,
    rgba(229,62,62,0.016) 19px
  );
  position: relative;
  overflow: hidden;
}

/* Radial glow top-right */
.showcase::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(229,62,62,0.07) 0%, transparent 68%);
  pointer-events: none;
}

/* Faint glove on left edge */
.sc-deco-glove {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.sc-deco-glove--l {
  left: -70px;
  top: 50%;
  transform: translateY(-55%) rotate(18deg);
  width: 300px;
  opacity: 0.9;
}

/* Grid */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 90px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.showcase-content { max-width: 490px; }

/* Heading — same rhythm as other section h2s */
.showcase-heading {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.showcase-heading em {
  font-style: normal;
  color: var(--red);
  display: inline-block;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 900ms var(--ease-spring) 280ms;
}

.showcase-body {
  color: var(--muted);
  line-height: 1.75;
  margin: 1.5rem 0 2rem;
  font-size: 0.9375rem;
}

.showcase-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.showcase-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
}

.showcase-check {
  width: 22px;
  height: 22px;
  background: rgba(229,62,62,0.12);
  border: 1px solid rgba(229,62,62,0.3);
  color: var(--red);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Video column — bag + phone layered */
.showcase-video-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 90px;
  padding-bottom: 20px;
}

/* Punching bag anchored to top-left of column */
.sc-bag-scene {
  position: absolute;
  top: 0;
  left: 8px;
  z-index: 0;
}

.sc-bag-svg {
  width: 125px;
  height: auto;
  display: block;
}

/* Phone frame */
.showcase-phone {
  position: relative;
  width: 280px;
  border-radius: 36px;
  background: #000;
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  z-index: 2;
  box-shadow:
    0 60px 130px rgba(0,0,0,0.75),
    0 0 0 1px rgba(255,255,255,0.04),
    0 0 90px rgba(229,62,62,0.1);
}

/* Glass-shimmer on phone top */
.showcase-phone::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(160deg, rgba(255,255,255,0.045) 0%, transparent 55%);
  z-index: 10;
  pointer-events: none;
  border-radius: 36px 36px 0 0;
}

.showcase-phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 68px;
  height: 6px;
  background: #181818;
  border-radius: 3px;
  z-index: 11;
}

.showcase-vid {
  width: 100%;
  display: block;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

/* Play overlay */
.showcase-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.32);
  border: none;
  cursor: pointer;
  color: #fff;
  transition: background 220ms var(--ease-out), opacity 250ms var(--ease-out);
  z-index: 5;
}

.showcase-play-ring {
  position: absolute;
  width: 72px;
  height: 72px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(229,62,62,0.45);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.showcase-play:hover { background: rgba(0,0,0,0.14); }
.showcase-play:hover .showcase-play-ring {
  transform: scale(1.1);
  box-shadow: 0 0 60px rgba(229,62,62,0.6);
}

.showcase-play.is-hidden { opacity: 0; pointer-events: none; }

.showcase-duration {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--faint);
  letter-spacing: 0.05em;
  margin-top: 1rem;
  text-transform: uppercase;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 980px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .showcase-content { max-width: 100%; }
  .showcase-list { align-items: center; }
  .showcase-list-item { justify-content: center; }
  .showcase-video-col {
    order: -1;
    align-items: center;
    padding-top: 90px;
  }
  .sc-bag-scene {
    left: 50%;
    transform: translateX(calc(-50% - 90px));
  }
  .sc-deco-glove { display: none; }
}

@media (max-width: 480px) {
  .showcase { padding: 90px 0 100px; }
  .showcase-phone { width: min(260px, 78vw); }
  .sc-bag-svg { width: 105px; }
}


/* ═══════════════════════════════════════════════════════
   VIDEO LOADER
═══════════════════════════════════════════════════════ */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: #ffffff;
  overflow: hidden;
}

#loader-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  will-change: transform; /* promotes to GPU layer ahead of GSAP zoom */
}

#loader-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  opacity: 0;
  pointer-events: none;
}


/* ═══════════════════════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════════════════════ */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 300ms var(--ease-out);
  will-change: transform;
}

.cursor-dot {
  width: 6px; height: 6px;
  background: var(--red);
  margin: -3px 0 0 -3px;
  transition: opacity 300ms var(--ease-out), transform 150ms var(--ease-out), width 200ms var(--ease-out), height 200ms var(--ease-out), margin 200ms var(--ease-out);
}

.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--red);
  margin: -18px 0 0 -18px;
  transition: opacity 300ms var(--ease-out), width 200ms var(--ease-out), height 200ms var(--ease-out), margin 200ms var(--ease-out), border-color 200ms var(--ease-out);
}

.cursor-dot.is-hovering  { width: 0; height: 0; margin: 0; opacity: 0; }
.cursor-ring.is-hovering { width: 52px; height: 52px; margin: -26px 0 0 -26px; }

.cursor-ripple {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  border-radius: 50%;
  border: 1.5px solid var(--red);
  transform: scale(0);
  opacity: 0.6;
  animation: rippleExpand 500ms var(--ease-out) forwards;
}

@keyframes rippleExpand { to { transform: scale(3.5); opacity: 0; } }

html.has-cursor .cursor-dot,
html.has-cursor .cursor-ring { opacity: 1; }

html.has-cursor, html.has-cursor * { cursor: none !important; }


/* ═══════════════════════════════════════════════════════
   PHONE DIGIT SHAKE
═══════════════════════════════════════════════════════ */
.phone-number .digit { display: inline-block; }

.phone-number .digit.is-shaking {
  animation: digitShake 120ms var(--ease-out);
}

@keyframes digitShake {
  0%  { transform: translateX(0);    }
  25% { transform: translateX(-2px); }
  75% { transform: translateX(2px);  }
  100%{ transform: translateX(0);    }
}


/* ═══════════════════════════════════════════════════════
   ANIMATION UTILITIES
═══════════════════════════════════════════════════════ */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 14px rgba(229,62,62,0.35); }
  50%       { box-shadow: 0 0 32px rgba(229,62,62,0.78), 0 0 64px rgba(229,62,62,0.25); }
}

.glow-red { animation: glowPulse 3s ease-in-out infinite; }

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.float-anim { animation: floatBadge 4s ease-in-out infinite; }

.stripe-bg {
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(229,62,62,0.025) 10px,
    rgba(229,62,62,0.025) 20px
  );
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

/* ── Stats counter glow ──────────────────────────── */
@keyframes statCountGlow {
  0%   { text-shadow: none; color: var(--red); }
  35%  { text-shadow: 0 0 28px rgba(229,62,62,0.55), 0 0 60px rgba(229,62,62,0.2); color: var(--red-bright); }
  100% { text-shadow: none; color: var(--red); }
}

.count-num.is-counting {
  animation: statCountGlow 2s var(--ease-out) forwards;
}

/* ── Button hover lift ───────────────────────────── */
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover { transform: translateY(-2px); }
  .btn-ghost:hover   { transform: translateY(-2px); }
}

/* ── Nav logo hover ──────────────────────────────── */
@media (hover: hover) and (pointer: fine) {
  .nav-logo:hover .nav-logo-badge {
    transform: rotate(-8deg) scale(1.08);
    transition: transform 250ms var(--ease-spring);
  }
  .nav-logo-badge { transition: transform 250ms var(--ease-spring); }
}

/* ── Star pop-in ─────────────────────────────────── */
.star {
  display: inline-block;
  opacity: 0;
  transform: scale(0.65) translateY(4px);
}

.star.is-filled {
  animation: starPop 480ms var(--ease-spring) forwards;
}

@keyframes starPop {
  from { opacity: 0; transform: scale(0.65) translateY(6px) rotate(-8deg); }
  60%  { transform: scale(1.2) translateY(-2px) rotate(3deg); opacity: 1; }
  to   { opacity: 1; transform: scale(1) translateY(0) rotate(0deg); }
}


/* ═══════════════════════════════════════════════════════
   SECTION CHILD ENTRANCE ANIMATIONS
   Transition-based (no animation shorthand + CSS vars)
   so it works in every browser without parsing issues.
   Pattern: child starts hidden inside .reveal parent,
   transitions to visible when parent gets .is-visible.
═══════════════════════════════════════════════════════ */

/* ── Keyframes used by is-active triggers (panels/carousel) ── */
@keyframes flyUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes flyLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes flyRight {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.72) translateY(14px); }
  65%  { opacity: 1; transform: scale(1.06) translateY(-3px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes blurFadeIn {
  from { opacity: 0; filter: blur(8px); }
  to   { opacity: 1; filter: blur(0); }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STATS — label slides from right, sub from left
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.stats-item.reveal .stats-label {
  opacity: 0; transform: translateX(28px);
  transition: opacity 500ms cubic-bezier(.16,1,.3,1) 320ms,
              transform 500ms cubic-bezier(.16,1,.3,1) 320ms;
}
.stats-item.reveal .stats-sub {
  opacity: 0; transform: translateX(-28px);
  transition: opacity 460ms cubic-bezier(.16,1,.3,1) 500ms,
              transform 460ms cubic-bezier(.16,1,.3,1) 500ms;
}

.stats-item.is-visible .stats-label { opacity: 1; transform: translateX(0); }
.stats-item.is-visible .stats-sub   { opacity: 1; transform: translateX(0); }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ABOUT — badge pop + float, feature icon/text slide
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ABOUT — standalone directional entrance animations
   .abt-in is added directly to each element by JS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Image column: from LEFT — initial state set by JS via inline styles */
.about-image-col.abt-in { opacity: 1; transform: none; }

/* Badge pops in after image column arrives */
.about-badge { opacity: 0; }
.about-image-col.abt-in .about-badge {
  animation-name: popIn, floatBadge;
  animation-duration: 650ms, 4s;
  animation-timing-function: cubic-bezier(.16,1,.3,1), ease-in-out;
  animation-delay: 400ms, 1050ms;
  animation-fill-mode: both, none;
  animation-iteration-count: 1, infinite;
}

/* Right-column text and feature cards — initial state set by JS via inline styles */
.abt-right.abt-in { opacity: 1; transform: none; }
.abt-from-left.abt-in,
.abt-from-right.abt-in { opacity: 1; transform: none; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TRAINING — panel entrance (is-active, not is-visible)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.training-panel.is-active .training-panel-img {
  animation-name: flyLeft;
  animation-duration: 520ms;
  animation-timing-function: cubic-bezier(.16,1,.3,1);
  animation-delay: 60ms;
  animation-fill-mode: both;
}
.training-panel.is-active .training-panel-content h3 {
  animation-name: flyUp;
  animation-duration: 460ms;
  animation-timing-function: cubic-bezier(.16,1,.3,1);
  animation-delay: 100ms;
  animation-fill-mode: both;
}
.training-panel.is-active .training-panel-content > p {
  animation-name: blurFadeIn;
  animation-duration: 480ms;
  animation-timing-function: ease-out;
  animation-delay: 190ms;
  animation-fill-mode: both;
}
.training-panel.is-active .training-features li:nth-child(1) {
  animation-name: flyRight; animation-duration: 360ms;
  animation-timing-function: cubic-bezier(.16,1,.3,1); animation-delay: 270ms; animation-fill-mode: both;
}
.training-panel.is-active .training-features li:nth-child(2) {
  animation-name: flyRight; animation-duration: 360ms;
  animation-timing-function: cubic-bezier(.16,1,.3,1); animation-delay: 350ms; animation-fill-mode: both;
}
.training-panel.is-active .training-features li:nth-child(3) {
  animation-name: flyRight; animation-duration: 360ms;
  animation-timing-function: cubic-bezier(.16,1,.3,1); animation-delay: 430ms; animation-fill-mode: both;
}
.training-panel.is-active .training-features li:nth-child(4) {
  animation-name: flyRight; animation-duration: 360ms;
  animation-timing-function: cubic-bezier(.16,1,.3,1); animation-delay: 510ms; animation-fill-mode: both;
}
.training-panel.is-active .training-panel-content .btn {
  animation-name: flyUp;
  animation-duration: 400ms;
  animation-timing-function: cubic-bezier(.16,1,.3,1);
  animation-delay: 590ms;
  animation-fill-mode: both;
}

/* Training summary cards */
.training-card.reveal .training-card-initial {
  opacity: 0; transform: scale(0.65) translateY(10px);
  transition: opacity 420ms cubic-bezier(.16,1,.3,1) 200ms,
              transform 420ms cubic-bezier(.16,1,.3,1) 200ms;
}
.training-card.reveal h4 {
  opacity: 0; transform: translateY(14px);
  transition: opacity 370ms cubic-bezier(.16,1,.3,1) 310ms,
              transform 370ms cubic-bezier(.16,1,.3,1) 310ms;
}
.training-card.reveal p {
  opacity: 0; transform: translateY(12px);
  transition: opacity 340ms cubic-bezier(.16,1,.3,1) 420ms,
              transform 340ms cubic-bezier(.16,1,.3,1) 420ms;
}

.training-card.is-visible .training-card-initial { opacity: 1; transform: scale(1) translateY(0); }
.training-card.is-visible h4                     { opacity: 1; transform: translateY(0); }
.training-card.is-visible p                      { opacity: 1; transform: translateY(0); }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   REVIEWS — card header + text, carousel slide content
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.review-card.reveal .review-card-header {
  opacity: 0; transform: translateY(14px);
  transition: opacity 370ms cubic-bezier(.16,1,.3,1) 150ms,
              transform 370ms cubic-bezier(.16,1,.3,1) 150ms;
}
.review-card.reveal .review-text {
  opacity: 0;
  transition: opacity 400ms cubic-bezier(.16,1,.3,1) 290ms;
}

.review-card.is-visible .review-card-header { opacity: 1; transform: translateY(0); }
.review-card.is-visible .review-text        { opacity: 1; }

/* Carousel slide content animates on slide switch */
.carousel-slide.is-active .carousel-quote-icon {
  animation-name: flyLeft; animation-duration: 350ms;
  animation-timing-function: cubic-bezier(.16,1,.3,1); animation-delay: 0ms; animation-fill-mode: both;
}
.carousel-slide.is-active .carousel-quote {
  animation-name: flyUp; animation-duration: 400ms;
  animation-timing-function: cubic-bezier(.16,1,.3,1); animation-delay: 80ms; animation-fill-mode: both;
}
.carousel-slide.is-active .carousel-footer {
  animation-name: flyUp; animation-duration: 360ms;
  animation-timing-function: cubic-bezier(.16,1,.3,1); animation-delay: 220ms; animation-fill-mode: both;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SCHEDULE — day header + class rows stagger up
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.schedule-day.reveal .schedule-day-header {
  opacity: 0; transform: translateY(12px);
  transition: opacity 380ms cubic-bezier(.16,1,.3,1), transform 380ms cubic-bezier(.16,1,.3,1);
  transition-delay: 430ms;
}
/* opacity/transform on general selector (0-3-0); delay only on nth-child (0-4-0).
   The is-visible general selector (also 0-3-0) beats reveal via source order. */
.schedule-day.reveal .schedule-class {
  opacity: 0; transform: translateY(16px);
  transition: opacity 360ms cubic-bezier(.16,1,.3,1), transform 360ms cubic-bezier(.16,1,.3,1);
}
.schedule-day.reveal .schedule-class:nth-child(1) { transition-delay: 570ms; }
.schedule-day.reveal .schedule-class:nth-child(2) { transition-delay: 710ms; }
.schedule-day.reveal .schedule-class:nth-child(3) { transition-delay: 850ms; }

.schedule-day.is-visible .schedule-day-header { opacity: 1; transform: translateY(0); }
.schedule-day.is-visible .schedule-class      { opacity: 1; transform: translateY(0); }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT — form fields stagger up one by one
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* opacity/transform on general selector; delay only on nth-child to avoid spec conflict */
.contact-form-col.reveal .form-group {
  opacity: 0; transform: translateY(18px);
  transition: opacity 400ms cubic-bezier(.16,1,.3,1), transform 400ms cubic-bezier(.16,1,.3,1);
}
.contact-form-col.reveal .form-group:nth-child(1) { transition-delay: 200ms; }
.contact-form-col.reveal .form-group:nth-child(2) { transition-delay: 350ms; }
.contact-form-col.reveal .form-group:nth-child(3) { transition-delay: 500ms; }
.contact-form-col.reveal button[type="submit"] {
  opacity: 0; transform: translateY(18px);
  transition: opacity 400ms cubic-bezier(.16,1,.3,1) 630ms,
              transform 400ms cubic-bezier(.16,1,.3,1) 630ms;
}
.contact-form-col.reveal .form-direct {
  opacity: 0;
  transition: opacity 370ms cubic-bezier(.16,1,.3,1) 750ms;
}

.contact-form-col.is-visible .form-group          { opacity: 1; transform: translateY(0); }
.contact-form-col.is-visible button[type="submit"] { opacity: 1; transform: translateY(0); }
.contact-form-col.is-visible .form-direct          { opacity: 1; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER — brand text stagger, nav links slide left
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.footer-brand.reveal .footer-tagline {
  opacity: 0; transform: translateY(14px);
  transition: opacity 390ms cubic-bezier(.16,1,.3,1) 200ms,
              transform 390ms cubic-bezier(.16,1,.3,1) 200ms;
}
.footer-brand.reveal .footer-contact-info {
  opacity: 0; transform: translateY(14px);
  transition: opacity 390ms cubic-bezier(.16,1,.3,1) 380ms,
              transform 390ms cubic-bezier(.16,1,.3,1) 380ms;
}

.footer-brand.is-visible .footer-tagline      { opacity: 1; transform: translateY(0); }
.footer-brand.is-visible .footer-contact-info { opacity: 1; transform: translateY(0); }

/* General selector hides all links and sets transition; nth-child only overrides the delay */
.footer-col.reveal .footer-nav a {
  opacity: 0; transform: translateX(-22px);
  transition: opacity 330ms cubic-bezier(.16,1,.3,1), transform 330ms cubic-bezier(.16,1,.3,1);
}
.footer-col.reveal .footer-nav a:nth-child(1) { transition-delay: 140ms; }
.footer-col.reveal .footer-nav a:nth-child(2) { transition-delay: 230ms; }
.footer-col.reveal .footer-nav a:nth-child(3) { transition-delay: 320ms; }
.footer-col.reveal .footer-nav a:nth-child(4) { transition-delay: 410ms; }
.footer-col.reveal .footer-nav a:nth-child(5) { transition-delay: 500ms; }

.footer-col.is-visible .footer-nav a { opacity: 1; transform: translateX(0); }


/* ═══════════════════════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow, .hero-tagline, .hero-ctas, .hero-info { opacity: 1 !important; transition: none !important; }
  .hero-media { clip-path: none !important; transition: none; }
  .stats-item { opacity: 1 !important; transform: none !important; transition: none; }
  .about-image-col, .abt-right, .abt-from-left, .abt-from-right { opacity: 1 !important; transform: none !important; transition: none; }
  .about-badge { opacity: 1 !important; }
  .hero-scroll-bar { animation: none; opacity: 0.35; transform: translateY(50%); }
  .loader-word { transition-duration: 0.01ms; }
  .char { transition-duration: 0.01ms; transition-delay: 0ms; }
  .btn::before { transition-duration: 0.01ms; }
  .hero-content { transform: scale(1); transition-duration: 0.01ms; }
  .footer-status-dot { animation: none; }
  .glow-red, .float-anim { animation: none; }
  .star { opacity: 1; transform: none; }
  .star.is-filled { animation: none; }
  .about h2 em,
  .training-heading em,
  .reviews h2 em,
  .schedule h2 em,
  .contact h2 em,
  .showcase-heading em { clip-path: none !important; transition: none; }
  .count-num.is-counting { animation: none; }
  .section-label.reveal { letter-spacing: 0.22em; transition-duration: 0.01ms; }

  /* Show all child elements immediately */
  .stats-item.reveal .stats-label,
  .stats-item.reveal .stats-sub,
  .about-feature.reveal .about-feature-icon,
  .about-feature.reveal h4,
  .about-feature.reveal p,
  .training-card.reveal .training-card-initial,
  .training-card.reveal h4,
  .training-card.reveal p,
  .review-card.reveal .review-card-header,
  .review-card.reveal .review-text,
  .schedule-day.reveal .schedule-day-header,
  .schedule-day.reveal .schedule-class,
  .contact-form-col.reveal .form-group,
  .contact-form-col.reveal button[type="submit"],
  .contact-form-col.reveal .form-direct,
  .footer-brand.reveal .footer-tagline,
  .footer-brand.reveal .footer-contact-info,
  .footer-col.reveal .footer-nav a {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .about-badge { opacity: 1; }
  .about-image-col.is-visible .about-badge { animation: none !important; }
  .training-panel.is-active .training-panel-img,
  .training-panel.is-active .training-panel-content h3,
  .training-panel.is-active .training-panel-content > p,
  .training-panel.is-active .training-features li,
  .training-panel.is-active .training-panel-content .btn,
  .carousel-slide.is-active .carousel-quote-icon,
  .carousel-slide.is-active .carousel-quote,
  .carousel-slide.is-active .carousel-footer { animation: none !important; opacity: 1; }
}
