:root {
  --ink: #080b09;
  --ink-soft: #121713;
  --panel: #171c18;
  --panel-light: #202720;
  --paper: #f3f5ef;
  --muted: #aeb8ad;
  --green: #8bd23f;
  --green-deep: #4f9b24;
  --red: #e63c35;
  --gold: #e8c94a;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 18px clamp(18px, 8vw, 132px);
  background: rgba(5, 7, 5, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.brand-logo-wrap {
  display: inline-grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 50%;
  background: #050705;
  box-shadow: 0 0 26px rgba(139, 210, 63, 0.28);
  overflow: hidden;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.6vw, 44px);
  flex: 1;
  color: rgba(243, 245, 239, 0.88);
  font-family: Anton, Impact, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--green);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 6px;
  border: 1px solid transparent;
  padding: 0 24px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-cta,
.button.primary {
  background: var(--green);
  color: #071006;
  box-shadow: 0 12px 34px rgba(139, 210, 63, 0.22);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 128px clamp(18px, 8vw, 132px) 0;
  background: #020302;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

  .hero::after {
    bottom: 142px;
  }

.hero-media {
  position: absolute;
  inset: 54px 0 94px auto;
  z-index: 0;
  width: min(58vw, 920px);
  min-height: auto;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  clip-path: none;
  pointer-events: none;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 0;
  background:
    linear-gradient(90deg, #020302 0%, rgba(2, 3, 2, 0.82) 10%, rgba(2, 3, 2, 0) 34%, rgba(2, 3, 2, 0) 74%, rgba(2, 3, 2, 0.72) 100%),
    linear-gradient(180deg, rgba(2, 3, 2, 0.56) 0%, rgba(2, 3, 2, 0) 22%, rgba(2, 3, 2, 0) 66%, rgba(2, 3, 2, 0.9) 100%);
  pointer-events: none;
}

.hero-video,
.video-fallback,
.media-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  object-position: center right;
  filter: none;
}

.video-fallback {
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 220ms ease;
}

.video-fallback span {
  color: rgba(243, 245, 239, 0.32);
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(2rem, 5vw, 5rem);
  text-align: center;
  text-transform: uppercase;
}

.hero.video-missing .hero-media .video-fallback {
  opacity: 1;
}

.hero.video-ready .hero-media .video-fallback {
  display: none;
}

.media-shade {
  background:
    radial-gradient(ellipse at center, rgba(2, 3, 2, 0) 0%, rgba(2, 3, 2, 0) 46%, rgba(2, 3, 2, 0.72) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(420px, 0.68fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
  width: 100%;
  padding-bottom: 150px;
}

.hero-content {
  position: relative;
  z-index: 6;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.84rem;
}

.eyebrow::before,
.section-kicker::after {
  color: var(--green-deep);
}

.eyebrow::before {
  content: "///";
  margin-right: 4px;
}

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

h1,
h2 {
  font-family: Anton, Impact, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: #f8faf4;
  font-size: clamp(4.2rem, 6.9vw, 8.2rem);
  line-height: 0.98;
  text-shadow: 0 5px 0 rgba(255, 255, 255, 0.04), 0 22px 46px rgba(0, 0, 0, 0.58);
}

h1 span {
  display: block;
  margin-bottom: 0.08em;
}

h1 span:last-child {
  margin-bottom: 0;
}

.green-text {
  color: var(--green);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 4.7vw, 5.2rem);
  line-height: 0.96;
}

h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
}

.hero-copy {
  max-width: 520px;
  color: rgba(243, 245, 239, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
}

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

.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 1260px);
  margin: 0 auto -68px;
  padding: 26px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    rgba(12, 15, 12, 0.95);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.58);
  transform: skewX(-6deg);
}

.hero-stats > div {
  display: grid;
  place-items: center;
  gap: 3px;
  min-height: 96px;
  padding: 0 18px;
  text-align: center;
  transform: skewX(6deg);
}

.hero-stats > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-stats span {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
}

.hero-stats strong {
  display: block;
  color: var(--green);
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1;
}

.hero-stats b {
  color: var(--paper);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.hero-stats small {
  color: rgba(243, 245, 239, 0.72);
}

section:not(.hero) {
  padding: clamp(66px, 9vw, 112px) clamp(20px, 5vw, 72px);
}

.membership {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  background: var(--paper);
  color: var(--ink);
}

.membership p {
  color: #4f594e;
  font-size: 1.08rem;
}

.programs,
.coaches {
  background:
    linear-gradient(180deg, #060806, var(--ink-soft));
}

.programs {
  position: relative;
  padding-top: clamp(118px, 13vw, 172px) !important;
  /* Barely visible cage/grid texture and radial vignette */
  background: 
    radial-gradient(circle at 50% 30%, rgba(13, 20, 14, 0.4) 0%, var(--ink) 80%),
    linear-gradient(rgba(255, 255, 255, 0.003) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.003) 1px, transparent 1px);
  background-size: 100% 100%, 28px 28px, 28px 28px;
  overflow: hidden;
}

/* Heading scroll reveal */
.section-heading.animate-on-scroll .animated-title {
  display: block;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  transform: translateY(30px);
  opacity: 0;
  transition: clip-path 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease;
}
.section-heading.in-view .animated-title {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transform: translateY(0);
  opacity: 1;
}

.section-heading.animate-on-scroll .animated-desc {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
}
.section-heading.in-view .animated-desc {
  opacity: 1;
  transform: translateY(0);
}

.section-heading.animate-on-scroll .section-kicker {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.section-heading.in-view .section-kicker {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered entry for program cards */
.program-grid-wrapper.animate-on-scroll .program-card-wrapper {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.program-grid-wrapper.in-view .program-card-wrapper:nth-child(1) {
  opacity: 1;
  transform: translateY(-24px) scale(1);
  transition-delay: 0.1s;
}
.program-grid-wrapper.in-view .program-card-wrapper:nth-child(2) {
  opacity: 1;
  transform: translateY(24px) scale(1);
  transition-delay: 0.2s;
}
.program-grid-wrapper.in-view .program-card-wrapper:nth-child(3) {
  opacity: 1;
  transform: translateY(-24px) scale(1);
  transition-delay: 0.3s;
}
.program-grid-wrapper.in-view .program-card-wrapper:nth-child(4) {
  opacity: 1;
  transform: translateY(24px) scale(1);
  transition-delay: 0.4s;
}

/* Sibling card dimming on hover */
.program-grid:hover .program-card-wrapper:not(:hover) {
  opacity: 0.35;
  filter: blur(2px) grayscale(0.25);
}

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

.section-heading > p {
  max-width: 440px;
  color: var(--muted);
}

.section-kicker::after {
  content: " ///";
  color: var(--green-deep);
}

/* Particles Container & Particle Dust styles */
.particles-container {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: rgba(139, 210, 63, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(139, 210, 63, 0.5);
  opacity: 0;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% {
    transform: translateY(30px) translateX(0) scale(0.8);
    opacity: 0;
  }
  15% {
    opacity: 0.65;
  }
  85% {
    opacity: 0.65;
  }
  100% {
    transform: translateY(-120px) translateX(20px) scale(1.1);
    opacity: 0;
  }
}

/* Arena Grid and Connecting SVG line */
.program-grid-wrapper {
  position: relative;
  width: 100%;
}

.connector-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

@keyframes path-dash {
  to {
    stroke-dashoffset: -80;
  }
}
.glowing-path {
  stroke-dasharray: 12 36;
  animation: path-dash 9s linear infinite;
  filter: drop-shadow(0 0 4px rgba(139, 210, 63, 0.8));
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding: 48px 0; /* Padding accommodates staggered card layout heights */
  position: relative;
  z-index: 1;
}

.coach-grid article,
.price-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

/* Card Wrapper (Handles Tilt physics & Vertical Stagger) */
.program-card-wrapper {
  position: relative;
  z-index: 1;
  transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease, filter 0.3s ease;
}

.program-card-wrapper:hover {
  z-index: 5;
}

/* Spotlight Background Glow */
.card-backdrop-glow {
  position: absolute;
  inset: -50px;
  background: radial-gradient(circle, rgba(139, 210, 63, 0.16) 0%, transparent 70%);
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.program-card-wrapper:hover .card-backdrop-glow {
  opacity: 1;
  transform: scale(1.12);
  animation: spotlight-pulse 2.2s ease-in-out infinite alternate;
}

@keyframes spotlight-pulse {
  0% {
    transform: scale(1.06);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.16);
    opacity: 1;
  }
}

/* Premium Program Card Styles */
.program-card {
  position: relative;
  display: block;
  background: var(--line);
  clip-path: polygon(18px 0%, 100% 0%, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0% 100%, 0% 18px);
  padding: 1px;
  box-shadow: var(--shadow);
  cursor: pointer;
  z-index: 1;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.program-card-wrapper:hover .program-card {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  box-shadow: 0 0 34px rgba(139, 210, 63, 0.3);
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 230px;
  background: rgba(12, 16, 13, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  clip-path: inherit;
  padding: 32px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  box-sizing: border-box;
}

.card-bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 14px 14px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(139, 210, 63, 0.04), transparent 75%);
  z-index: 2;
  pointer-events: none;
  transition: background 0.4s ease;
}
.program-card-wrapper:hover .card-glow {
  background: radial-gradient(circle at 50% 100%, rgba(139, 210, 63, 0.18), transparent 60%);
}

.card-ghost-text {
  position: absolute;
  bottom: -15px;
  right: -10px;
  font-family: Anton, Impact, sans-serif;
  font-size: 7.2rem;
  line-height: 0.75;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.012);
  text-transform: uppercase;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  transform: rotate(-4deg) translateY(0);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), color 0.4s ease;
}
.program-card-wrapper:hover .card-ghost-text {
  transform: rotate(-6deg) translateY(-12px) scale(1.04);
  color: rgba(139, 210, 63, 0.035);
}

.card-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 3px;
  text-transform: uppercase;
  z-index: 4;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.program-card-wrapper:hover .card-tag {
  background: rgba(139, 210, 63, 0.12);
  border-color: rgba(139, 210, 63, 0.4);
  color: var(--green);
}

.card-sweep {
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(139, 210, 63, 0.12),
    transparent
  );
  transform: skewX(-20deg);
  z-index: 3;
  pointer-events: none;
}
.program-card-wrapper:hover .card-sweep {
  left: 150%;
  transition: left 0.85s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Combat scan overlay animation */
.card-scan {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -10px;
  width: 2px;
  background: var(--green);
  box-shadow: 0 0 10px var(--green), 0 0 18px rgba(139, 210, 63, 0.6);
  opacity: 0;
  z-index: 4;
  pointer-events: none;
}
.program-card-wrapper:hover .card-scan {
  animation: scan-sweep 1.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes scan-sweep {
  0% {
    left: -10px;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    left: calc(100% + 10px);
    opacity: 0;
  }
}

.card-content {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.card-content h3 {
  font-family: Anton, Impact, sans-serif;
  font-size: 1.8rem;
  line-height: 1.05;
  margin-bottom: 6px;
  color: var(--paper);
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.program-card-wrapper:hover .card-content h3 {
  color: var(--green);
}

.card-content p {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.program-card-wrapper:hover .card-content p {
  color: rgba(243, 245, 239, 0.85);
}

.card-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
.card-action .arrow {
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.program-card-wrapper:hover .card-action {
  color: var(--green);
}
.program-card-wrapper:hover .card-action .arrow {
  transform: translateX(5px);
}

.feature-list p,
.coach-grid p {
  color: var(--muted);
}

.training-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.2fr);
  gap: 40px;
  background:
    linear-gradient(90deg, rgba(230, 60, 53, 0.16), transparent 48%),
    #0d100e;
}

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

.feature-list div {
}

.schedule {
  background: var(--paper);
  color: var(--ink);
}

.schedule-table {
  overflow: hidden;
  border: 1px solid rgba(8, 11, 9, 0.14);
  border-radius: 8px;
  background: white;
}

.schedule-row {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr 0.8fr;
  border-top: 1px solid rgba(8, 11, 9, 0.1);
}

.schedule-row:first-child {
  border-top: 0;
}

.schedule-row span {
  padding: 18px;
  font-weight: 700;
}

.header-row {
  background: var(--ink);
  color: var(--paper);
  text-transform: uppercase;
}
/* --- The Fight Room: Coaches Redesign --- */
.coaches {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 140px) 0;
}

/* Background grid & outline text decorations */
.coaches-bg-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.coaches-bg-decorations .decor-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.003) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.003) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.25;
}

.coaches-bg-decorations .decor-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 20%, #030503 90%);
}

.coaches-bg-decorations .decor-giant-text {
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-family: Anton, sans-serif;
  font-size: clamp(12rem, 24vw, 32rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.02);
  user-select: none;
}

/* Layout Container */
.fight-room-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
  margin-top: 48px;
}

/* Active Dossier Panel */
.active-coach-panel {
  background: rgba(10, 13, 11, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  box-shadow: 
    inset 0 0 20px rgba(255, 255, 255, 0.02),
    0 24px 64px rgba(0, 0, 0, 0.9),
    0 0 40px rgba(0, 0, 0, 0.8);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  overflow: hidden;
  position: relative;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Portrait Showcase style */
.coach-portrait-wrap {
  position: relative;
  height: 100%;
  min-height: 480px;
  background: #090b09;
  overflow: hidden;
}

.coach-portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  filter: grayscale(20%) contrast(110%);
}

.active-coach-panel:hover .coach-portrait-wrap img {
  transform: scale(1.05);
}

.coach-portrait-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 5, 3, 0.9) 0%, rgba(3, 5, 3, 0.1) 60%);
  pointer-events: none;
}

/* Scanning scanline animation */
.coach-scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--active-accent, var(--green)), transparent);
  box-shadow: 0 0 10px var(--active-accent, var(--green));
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}

.active-coach-panel.scanning .coach-scan-line {
  animation: scan-vertical 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes scan-vertical {
  0% {
    top: 0%;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

/* Details and Copy formatting */
.coach-details-wrap {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.dossier-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
}

.dossier-id {
  color: var(--active-accent, var(--green));
  font-weight: 700;
}

.coach-meta-info {
  margin-top: -6px;
}

.coach-meta-info h3 {
  font-family: Anton, sans-serif;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.03em;
  margin: 0 0 6px 0;
  text-transform: uppercase;
}

.coach-meta-info .coach-title-label {
  font-family: Anton, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--active-accent, var(--green));
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 8px;
}

.coach-meta-info .coach-specialty {
  font-size: 0.82rem;
  color: var(--muted);
}

.coach-description {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--paper-soft);
  margin: 0;
}

.coach-quote {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--paper);
  border-left: 2px solid var(--active-accent, var(--green));
  padding-left: 14px;
  margin: 4px 0;
}

/* Tactical stats indicators */
.coach-stats-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--paper-soft);
}

.stat-info .stat-num {
  font-family: Anton, sans-serif;
  color: var(--active-accent, var(--green));
}

.stat-bar-bg {
  height: 4px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 2px;
  overflow: hidden;
}

.stat-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--active-accent, var(--green));
  box-shadow: 0 0 8px var(--active-accent, var(--green));
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Tactical pill tags */
.coach-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.coach-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4px 10px;
  border-radius: 3px;
  color: var(--muted);
  transition: all 0.3s ease;
}

.coach-tag:hover {
  border-color: var(--active-accent, var(--green));
  color: var(--paper);
  box-shadow: 0 0 8px var(--active-accent, var(--green));
  background: rgba(255, 255, 255, 0.05);
}

/* CTA buttons inside active profiles */
.coach-cta-btn {
  font-family: Anton, sans-serif;
  width: 100%;
  margin-top: 10px;
  border-color: var(--active-accent, var(--green)) !important;
  color: var(--paper) !important;
}

.coach-cta-btn:hover {
  background: var(--active-accent, var(--green)) !important;
  box-shadow: 0 0 15px var(--active-accent, var(--green)) !important;
  color: var(--ink) !important;
}

/* Dossier selector sidebar styles */
.coach-selector-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.selector-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.selector-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--coach-theme, var(--green));
  transition: width 0.3s ease;
}

.selector-card:hover {
  background: rgba(255, 255, 255, 0.035);
  transform: translateX(6px);
}

.selector-card.active {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--coach-theme, var(--green));
}

.selector-card.active::after {
  width: 100%;
}

.selector-thumb {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  overflow: hidden;
  background: #090b09;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  transition: border-color 0.3s ease;
}

.selector-card:hover .selector-thumb,
.selector-card.active .selector-thumb {
  border-color: var(--coach-theme, var(--green));
}

.selector-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.selector-info {
  flex-grow: 1;
}

.selector-info h4 {
  font-family: Anton, sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  margin: 0 0 3px 0;
  text-transform: uppercase;
  color: var(--paper-soft);
}

.selector-card.active .selector-info h4 {
  color: var(--paper);
}

.selector-info .selector-role {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.selector-card.active .selector-info .selector-role {
  color: var(--coach-theme, var(--green));
}

/* Philosophy Strip Styles */
.philosophy-strip {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  background: rgba(10, 13, 11, 0.6);
  border: 1px solid var(--line);
  border-radius: 6px;
  margin-top: 64px;
  padding: 30px clamp(20px, 4vw, 50px);
  position: relative;
  z-index: 1;
}

.philosophy-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
}

.philosophy-num {
  font-family: Anton, sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--green);
  opacity: 0.85;
}

.philosophy-item h4 {
  font-family: Anton, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 6px 0;
  color: var(--paper);
}

.philosophy-item p {
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--muted);
  margin: 0;
}

.philosophy-divider {
  width: 1px;
  background: var(--line);
  align-self: stretch;
}

/* --- Coaches Section Responsive Media Queries --- */
@media (max-width: 980px) {
  .fight-room-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .coach-selector-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  
  .selector-card {
    flex: 1 1 calc(50% - 16px);
    max-width: calc(50% - 8px);
    box-sizing: border-box;
  }
  
  .selector-card:hover {
    transform: translateY(-2px);
  }
  
  .philosophy-strip {
    flex-direction: column;
    gap: 30px;
    padding: 35px 30px;
  }
  
  .philosophy-divider {
    width: 100%;
    height: 1px;
  }
}

@media (max-width: 768px) {
  .active-coach-panel {
    grid-template-columns: 1fr;
  }
  
  .coach-portrait-wrap {
    min-height: 360px;
    max-height: 440px;
  }
  
  .coach-details-wrap {
    padding: 30px;
  }
}

@media (max-width: 640px) {
  .coach-selector-list {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 12px;
    gap: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
  }
  
  .coach-selector-list::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
  }
  
  .selector-card {
    flex: 0 0 240px;
    max-width: 240px;
    padding: 12px 14px;
    gap: 12px;
  }
  
  .selector-thumb {
    width: 44px;
    height: 44px;
  }
  
  .selector-info h4 {
    font-size: 1rem;
  }
  
  .selector-info .selector-role {
    font-size: 0.68rem;
  }
}

.membership {
  background:
    linear-gradient(110deg, #f3f5ef, #dfe9d8);
}

.price-panel {
  padding: 28px;
  background: var(--ink);
  color: var(--paper);
}

.price-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin-bottom: 14px;
  font-family: Anton, Impact, sans-serif;
  font-size: 4.2rem;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
}

.price-panel ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.price-panel li::before {
  content: "+";
  margin-right: 10px;
  color: var(--green);
  font-weight: 900;
}

.trial {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  background: var(--ink-soft);
}

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

.trial-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.trial-form input,
.trial-form select {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
  font: inherit;
  padding: 0 14px;
}

.trial-form select {
  color-scheme: dark;
}

.trial-form button {
  align-self: end;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: #050705;
  color: var(--muted);
}

footer strong {
  color: var(--paper);
  text-transform: uppercase;
}

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

  .hero {
    min-height: 100vh;
    padding-top: 112px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-items: start;
    padding-bottom: 118px;
  }

  .hero-media {
    inset: 54px -8vw 38vh auto;
    width: min(62vw, 640px);
    opacity: 1;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    transform: none;
  }

  .hero-stats > div {
    transform: none;
  }

  .hero-stats > div:nth-child(3) {
    border-left: 0;
  }

  .hero-stats > div:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .membership,
  .training-band,
  .trial {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand small {
    display: none;
  }

  .brand-logo-wrap {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: auto;
    padding: 104px 18px 0;
  }

  .hero::after {
    bottom: 142px;
  }

  .hero-inner {
    padding-bottom: 34px;
  }

  .hero-media {
    inset: 58px -22vw 50vh auto;
    width: 78vw;
    opacity: 1;
  }

  h1 {
    font-size: clamp(3.6rem, 17vw, 5.9rem);
  }

  .hero-actions {
    gap: 12px;
  }

  .button {
    width: 100%;
    min-height: 50px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    margin-bottom: -56px;
    padding: 10px 18px;
  }

  .hero-stats > div {
    min-height: 82px;
    border-left: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-stats > div:first-child {
    border-top: 0;
  }

  .programs {
    padding-top: 112px !important;
  }

  .section-heading {
    display: block;
  }

  .program-grid,
  .coach-grid,
  .trial-form {
    grid-template-columns: 1fr;
  }

  .program-card-wrapper {
    transform: none !important;
  }

  .program-grid {
    padding: 20px 0;
  }

  .connector-svg {
    display: none;
  }

  .program-card {
    min-height: auto;
  }

  .schedule-table {
    border-radius: 0;
    margin-inline: -18px;
  }

  .schedule-row {
    grid-template-columns: 1fr;
    padding: 16px 18px;
  }

  .schedule-row span {
    padding: 4px 0;
  }

  .header-row {
    display: none;
  }
}

/* Final reference schedule placement: must stay after legacy schedule rules. */
.schedule {
  padding: clamp(74px, 8vw, 122px) clamp(18px, 5vw, 72px);
  background: radial-gradient(circle at 50% 40%, rgba(139, 210, 63, 0.08), transparent 34%), linear-gradient(180deg, #fbfcf8 0%, #f3f5ef 100%);
  color: var(--ink);
}

.schedule-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.32fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
  max-width: 1540px;
  margin: 0 auto clamp(24px, 3vw, 36px);
}

.schedule-kicker {
  margin: 0 0 8px;
  color: var(--ink);
}

.schedule-kicker::after {
  content: " ///";
  color: #70d400;
}

.schedule-heading h2 {
  max-width: 740px;
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(4.5rem, 9vw, 8.4rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.schedule-heading h2::after {
  content: "";
  display: inline-block;
  width: 0.16em;
  height: 0.16em;
  margin-left: 0.06em;
  background: #70d400;
}

.schedule-proof {
  display: grid;
  gap: 11px;
  padding-left: 30px;
  border-left: 3px solid #70d400;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(1.15rem, 1.5vw, 1.6rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.schedule-proof span:last-child,
.feature-day em,
.row-focus em,
.schedule-habit strong,
.schedule-cta span:last-child {
  color: #70d400;
}

.schedule-board {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(24px, 3vw, 38px);
  max-width: 1540px;
  margin: 0 auto;
}

.schedule-days {
  display: flex;
  flex-direction: column;
  min-height: 680px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 70px rgba(8, 11, 9, 0.09);
  overflow: hidden;
}

.schedule-day {
  position: relative;
  display: flex;
  min-height: 106px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-bottom: 1px solid rgba(8, 11, 9, 0.09);
  padding: 0 28px 0 38px;
  background: transparent;
  color: rgba(8, 11, 9, 0.58);
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(2.3rem, 3.7vw, 3.35rem);
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
}

.schedule-day.is-active {
  min-height: 96px;
  background: linear-gradient(135deg, #bdf568 0%, #a7ed49 100%);
  color: #020402;
}

.schedule-day.is-active::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 50%;
  width: 28px;
  height: 58px;
  border-radius: 0 8px 8px 0;
  background: #a7ed49;
  transform: translateY(-50%);
}

.schedule-day span {
  position: relative;
  z-index: 1;
  padding: 0;
}

.schedule-day span:last-child {
  font-family: Inter, system-ui, sans-serif;
  font-size: 3rem;
  font-weight: 900;
}

.schedule-habit {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: auto;
  padding: 34px 28px 42px;
}

.schedule-habit span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 2px solid #70d400;
  border-radius: 50%;
  color: var(--ink);
  font-size: 1.7rem;
}

.schedule-habit p {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: uppercase;
}

.schedule-list {
  display: grid;
  gap: 18px;
}

.schedule-feature,
.schedule-row,
.schedule-cta {
  border: 1px solid rgba(8, 11, 9, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(8, 11, 9, 0.08);
}

.schedule-feature {
  display: grid;
  grid-template-columns: 270px minmax(220px, 1fr) minmax(220px, 1fr) 54px;
  align-items: center;
  min-height: 180px;
  padding: 28px 26px 28px 44px;
  border-left: 5px solid #70d400;
}

.feature-day,
.feature-class {
  min-height: 94px;
  padding-right: clamp(22px, 3vw, 48px);
  border-right: 1px solid rgba(8, 11, 9, 0.14);
}

.feature-class {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding-left: clamp(24px, 3vw, 48px);
}

.feature-class:nth-of-type(3) {
  border-right: 0;
}

.today-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  border-radius: 50%;
  background: #70d400;
}

.today-label,
.feature-day small,
.row-focus {
  color: rgba(8, 11, 9, 0.58);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.today-label {
  letter-spacing: 0.16em;
}

.feature-day strong,
.schedule-row > strong,
.feature-class h3 {
  display: block;
  margin: 6px 0 0;
  padding: 0;
  font-family: Anton, Impact, sans-serif;
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.feature-day strong {
  font-size: clamp(3.1rem, 4.8vw, 4.35rem);
}

.time-badge {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background: radial-gradient(circle, #f4fbdf 0 58%, rgba(112, 212, 0, 0.2) 59% 100%);
  box-shadow: inset 0 0 0 1px rgba(112, 212, 0, 0.28);
}

.time-badge strong,
.mini-session b {
  padding: 0;
  font-size: 1.1rem;
  line-height: 1;
}

.time-badge small,
.mini-session small {
  color: rgba(8, 11, 9, 0.52);
  font-weight: 700;
  line-height: 1;
}

.feature-class h3 {
  margin: 0;
  font-size: clamp(2rem, 2.8vw, 3.05rem);
}

.feature-class p {
  max-width: 250px;
  margin: 10px 0 0;
  color: rgba(8, 11, 9, 0.58);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.schedule-row {
  display: grid;
  grid-template-columns: 140px minmax(190px, 1fr) minmax(230px, 1fr) 220px 42px;
  gap: 22px;
  align-items: center;
  min-height: 92px;
  padding: 0 30px 0 50px;
  border-top: 1px solid rgba(8, 11, 9, 0.08);
}

.schedule-row:first-child {
  border-top: 1px solid rgba(8, 11, 9, 0.08);
}

.schedule-row > strong {
  margin: 0;
  padding: 0 38px 0 0;
  border-right: 1px solid rgba(8, 11, 9, 0.12);
  font-size: clamp(2.3rem, 3vw, 3.35rem);
}

.mini-session {
  display: grid;
  grid-template-columns: 34px auto minmax(34px, auto) minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 0;
}

.mini-session i {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 34px;
  border: 1px solid #70d400;
  border-radius: 50%;
}

.mini-session i::before,
.mini-session i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 10px;
  background: #70d400;
  transform: translate(-50%, -84%);
}

.mini-session i::after {
  width: 8px;
  height: 1px;
  transform: translate(-10%, -50%);
}

.mini-session em {
  margin-left: 14px;
  color: var(--ink);
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(1.25rem, 1.6vw, 1.65rem);
  font-style: normal;
  line-height: 1;
  text-transform: uppercase;
}

.schedule-toggle {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #020402;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.schedule-cta {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 36px;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.schedule-cta span:first-child::before {
  content: "+";
  display: inline-grid;
  width: 40px;
  height: 40px;
  margin-right: 20px;
  place-items: center;
  border-radius: 50%;
  background: #70d400;
  color: white;
}

.schedule-cta span:last-child {
  font-size: 2rem;
}

@media (max-width: 1180px) {
  .schedule-board {
    grid-template-columns: 1fr;
  }

  .schedule-days {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    min-height: 0;
  }

  .schedule-day,
  .schedule-day.is-active {
    min-height: 82px;
    justify-content: center;
    padding: 0;
    font-size: 2.2rem;
  }

  .schedule-day span:last-child,
  .schedule-day.is-active::after,
  .schedule-habit,
  .schedule-toggle {
    display: none;
  }

  .schedule-feature,
  .schedule-row {
    grid-template-columns: 1fr 1fr;
  }

  .feature-day {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid rgba(8, 11, 9, 0.12);
    padding: 0 0 22px;
  }

  .feature-class {
    padding: 24px 24px 0 0;
  }

  .schedule-row {
    padding: 24px;
  }

  .schedule-row > strong {
    border-right: 0;
  }

  .row-focus {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .schedule {
    padding-inline: 16px;
  }

  .schedule-heading {
    grid-template-columns: 1fr;
  }

  .schedule-heading h2 {
    font-size: clamp(3.4rem, 18vw, 5.1rem);
  }

  .schedule-proof {
    max-width: 260px;
    font-size: 1.1rem;
  }

  .schedule-days {
    grid-template-columns: repeat(5, minmax(56px, 1fr));
  }

  .schedule-day,
  .schedule-day.is-active {
    min-height: 62px;
    font-size: 1.6rem;
  }

  .schedule-feature,
  .schedule-row {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .feature-day,
  .feature-class {
    min-height: 0;
    border-right: 0;
  }

  .feature-class {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
    padding: 22px 0 0;
  }

  .time-badge {
    width: 72px;
    height: 72px;
  }

  .feature-day strong {
    font-size: 3rem;
  }

  .feature-class h3 {
    font-size: 2rem;
  }

  .schedule-row > strong {
    padding: 0;
  }

  .mini-session {
    grid-template-columns: 34px auto 34px minmax(0, 1fr);
  }

  .mini-session em {
    margin-left: 6px;
  }

  .schedule-cta {
    min-height: 86px;
    padding: 18px 22px;
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .schedule-cta span:first-child::before {
    margin-right: 12px;
  }
}

/* Final schedule overrides: keep the reference layout after legacy rules. */
.schedule {
  padding: clamp(74px, 8vw, 122px) clamp(18px, 5vw, 72px);
  background: radial-gradient(circle at 50% 40%, rgba(139, 210, 63, 0.08), transparent 34%), linear-gradient(180deg, #fbfcf8 0%, #f3f5ef 100%);
  color: var(--ink);
}

.schedule-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.32fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
  max-width: 1540px;
  margin: 0 auto clamp(24px, 3vw, 36px);
}

.schedule-kicker {
  margin: 0 0 8px;
  color: var(--ink);
}

.schedule-kicker::after {
  content: " ///";
  color: #70d400;
}

.schedule-heading h2 {
  max-width: 740px;
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(4.5rem, 9vw, 8.4rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.schedule-heading h2::after {
  content: "";
  display: inline-block;
  width: 0.16em;
  height: 0.16em;
  margin-left: 0.06em;
  background: #70d400;
}

.schedule-proof {
  display: grid;
  gap: 11px;
  padding-left: 30px;
  border-left: 3px solid #70d400;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(1.15rem, 1.5vw, 1.6rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.schedule-proof span:last-child,
.feature-day em,
.row-focus em,
.schedule-habit strong,
.schedule-cta span:last-child {
  color: #70d400;
}

.schedule-board {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(24px, 3vw, 38px);
  max-width: 1540px;
  margin: 0 auto;
}

.schedule-days {
  display: flex;
  flex-direction: column;
  min-height: 680px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 70px rgba(8, 11, 9, 0.09);
  overflow: hidden;
}

.schedule-day {
  position: relative;
  display: flex;
  min-height: 106px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-bottom: 1px solid rgba(8, 11, 9, 0.09);
  padding: 0 28px 0 38px;
  background: transparent;
  color: rgba(8, 11, 9, 0.58);
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(2.3rem, 3.7vw, 3.35rem);
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

.schedule-day.is-active {
  min-height: 96px;
  background: linear-gradient(135deg, #bdf568 0%, #a7ed49 100%);
  color: #020402;
}

.schedule-day.is-active::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 50%;
  width: 28px;
  height: 58px;
  border-radius: 0 8px 8px 0;
  background: #a7ed49;
  transform: translateY(-50%);
}

.schedule-day span {
  position: relative;
  z-index: 1;
  padding: 0;
}

.schedule-day span:last-child {
  font-family: Inter, system-ui, sans-serif;
  font-size: 3rem;
  font-weight: 900;
}

.schedule-habit {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: auto;
  padding: 34px 28px 42px;
}

.schedule-habit span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 2px solid #70d400;
  border-radius: 50%;
  color: var(--ink);
  font-size: 1.7rem;
}

.schedule-habit p {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: uppercase;
}

.schedule-list {
  display: grid;
  gap: 18px;
}

.schedule-feature,
.schedule-row,
.schedule-cta {
  border: 1px solid rgba(8, 11, 9, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(8, 11, 9, 0.08);
}

.schedule-feature {
  display: grid;
  grid-template-columns: 270px minmax(220px, 1fr) minmax(220px, 1fr) 54px;
  align-items: center;
  min-height: 180px;
  padding: 28px 26px 28px 44px;
  border-left: 5px solid #70d400;
}

.feature-day,
.feature-class {
  min-height: 94px;
  padding-right: clamp(22px, 3vw, 48px);
  border-right: 1px solid rgba(8, 11, 9, 0.14);
}

.feature-class {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding-left: clamp(24px, 3vw, 48px);
}

.feature-class:nth-of-type(3) {
  border-right: 0;
}

.today-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  border-radius: 50%;
  background: #70d400;
}

.today-label,
.feature-day small,
.row-focus {
  color: rgba(8, 11, 9, 0.58);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.today-label {
  letter-spacing: 0.16em;
}

.feature-day strong,
.schedule-row > strong,
.feature-class h3 {
  display: block;
  margin: 6px 0 0;
  padding: 0;
  font-family: Anton, Impact, sans-serif;
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.feature-day strong {
  font-size: clamp(3.1rem, 4.8vw, 4.35rem);
}

.time-badge {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background: radial-gradient(circle, #f4fbdf 0 58%, rgba(112, 212, 0, 0.2) 59% 100%);
  box-shadow: inset 0 0 0 1px rgba(112, 212, 0, 0.28);
}

.time-badge strong,
.mini-session b {
  padding: 0;
  font-size: 1.1rem;
  line-height: 1;
}

.time-badge small,
.mini-session small {
  color: rgba(8, 11, 9, 0.52);
  font-weight: 700;
  line-height: 1;
}

.feature-class h3 {
  margin: 0;
  font-size: clamp(2rem, 2.8vw, 3.05rem);
}

.feature-class p {
  max-width: 250px;
  margin: 10px 0 0;
  color: rgba(8, 11, 9, 0.58);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.schedule-row {
  display: grid;
  grid-template-columns: 140px minmax(190px, 1fr) minmax(230px, 1fr) 220px 42px;
  gap: 22px;
  align-items: center;
  min-height: 92px;
  padding: 0 30px 0 50px;
  border-top: 1px solid rgba(8, 11, 9, 0.08);
}

.schedule-row:first-child {
  border-top: 1px solid rgba(8, 11, 9, 0.08);
}

.schedule-row > strong {
  margin: 0;
  padding: 0 38px 0 0;
  border-right: 1px solid rgba(8, 11, 9, 0.12);
  font-size: clamp(2.3rem, 3vw, 3.35rem);
}

.mini-session {
  display: grid;
  grid-template-columns: 34px auto minmax(34px, auto) minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 0;
}

.mini-session i {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 34px;
  border: 1px solid #70d400;
  border-radius: 50%;
}

.mini-session i::before,
.mini-session i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 10px;
  background: #70d400;
  transform: translate(-50%, -84%);
}

.mini-session i::after {
  width: 8px;
  height: 1px;
  transform: translate(-10%, -50%);
}

.mini-session em {
  margin-left: 14px;
  color: var(--ink);
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(1.25rem, 1.6vw, 1.65rem);
  font-style: normal;
  line-height: 1;
  text-transform: uppercase;
}

.schedule-toggle {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #020402;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.schedule-cta {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 36px;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.schedule-cta span:first-child::before {
  content: "+";
  display: inline-grid;
  width: 40px;
  height: 40px;
  margin-right: 20px;
  place-items: center;
  border-radius: 50%;
  background: #70d400;
  color: white;
}

.schedule-cta span:last-child {
  font-size: 2rem;
}

@media (max-width: 1180px) {
  .schedule-board {
    grid-template-columns: 1fr;
  }

  .schedule-days {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    min-height: 0;
  }

  .schedule-day,
  .schedule-day.is-active {
    min-height: 82px;
    justify-content: center;
    padding: 0;
    font-size: 2.2rem;
  }

  .schedule-day span:last-child,
  .schedule-day.is-active::after,
  .schedule-habit,
  .schedule-toggle {
    display: none;
  }

  .schedule-feature,
  .schedule-row {
    grid-template-columns: 1fr 1fr;
  }

  .feature-day {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid rgba(8, 11, 9, 0.12);
    padding: 0 0 22px;
  }

  .feature-class {
    padding: 24px 24px 0 0;
  }

  .schedule-row {
    padding: 24px;
  }

  .schedule-row > strong {
    border-right: 0;
  }

  .row-focus {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .schedule {
    padding-inline: 16px;
  }

  .schedule-heading {
    grid-template-columns: 1fr;
  }

  .schedule-heading h2 {
    font-size: clamp(3.4rem, 18vw, 5.1rem);
  }

  .schedule-proof {
    max-width: 260px;
    font-size: 1.1rem;
  }

  .schedule-days {
    grid-template-columns: repeat(5, minmax(56px, 1fr));
  }

  .schedule-day,
  .schedule-day.is-active {
    min-height: 62px;
    font-size: 1.6rem;
  }

  .schedule-feature,
  .schedule-row {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .feature-day,
  .feature-class {
    min-height: 0;
    border-right: 0;
  }

  .feature-class {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
    padding: 22px 0 0;
  }

  .time-badge {
    width: 72px;
    height: 72px;
  }

  .feature-day strong {
    font-size: 3rem;
  }

  .feature-class h3 {
    font-size: 2rem;
  }

  .schedule-row > strong {
    padding: 0;
  }

  .mini-session {
    grid-template-columns: 34px auto 34px minmax(0, 1fr);
  }

  .mini-session em {
    margin-left: 6px;
  }

  .schedule-cta {
    min-height: 86px;
    padding: 18px 22px;
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .schedule-cta span:first-child::before {
    margin-right: 12px;
  }
}

/* Reference-style weekly schedule */
.schedule {
  position: relative;
  padding: clamp(74px, 8vw, 122px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 50% 40%, rgba(139, 210, 63, 0.08), transparent 34%),
    linear-gradient(180deg, #fbfcf8 0%, #f3f5ef 100%);
  color: var(--ink);
  overflow: hidden;
}

.schedule-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.32fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
  max-width: 1540px;
  margin: 0 auto clamp(24px, 3vw, 36px);
}

.schedule-kicker {
  margin: 0 0 8px;
  color: var(--ink);
}

.schedule-kicker::after {
  content: " ///";
  color: #70d400;
}

.schedule-heading h2 {
  max-width: 740px;
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(4.5rem, 9vw, 8.4rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.schedule-heading h2::after {
  content: "";
  display: inline-block;
  width: 0.16em;
  height: 0.16em;
  margin-left: 0.06em;
  background: #70d400;
  vertical-align: baseline;
}

.schedule-proof {
  display: grid;
  gap: 11px;
  padding-left: 30px;
  border-left: 3px solid #70d400;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(1.15rem, 1.5vw, 1.6rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.schedule-proof span:last-child {
  color: #70d400;
}

.schedule-board {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(24px, 3vw, 38px);
  max-width: 1540px;
  margin: 0 auto;
}

.schedule-days {
  display: flex;
  flex-direction: column;
  min-height: 680px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 70px rgba(8, 11, 9, 0.09);
  overflow: hidden;
}

.schedule-day {
  position: relative;
  display: flex;
  min-height: 106px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-bottom: 1px solid rgba(8, 11, 9, 0.09);
  padding: 0 28px 0 38px;
  background: transparent;
  color: rgba(8, 11, 9, 0.58);
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(2.3rem, 3.7vw, 3.35rem);
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

.schedule-day.is-active {
  min-height: 96px;
  background: linear-gradient(135deg, #bdf568 0%, #a7ed49 100%);
  color: #020402;
}

.schedule-day.is-active::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 50%;
  width: 28px;
  height: 58px;
  border-radius: 0 8px 8px 0;
  background: #a7ed49;
  transform: translateY(-50%);
}

.schedule-day span {
  position: relative;
  z-index: 1;
}

.schedule-day span:last-child {
  font-family: Inter, system-ui, sans-serif;
  font-size: 3rem;
  font-weight: 900;
}

.schedule-habit {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: auto;
  padding: 34px 28px 42px;
}

.schedule-habit span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 2px solid #70d400;
  border-radius: 50%;
  color: var(--ink);
  font-size: 1.7rem;
}

.schedule-habit p {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-transform: uppercase;
}

.schedule-habit strong {
  display: block;
  color: #70d400;
}

.schedule-list {
  display: grid;
  gap: 18px;
}

.schedule-feature,
.schedule-row,
.schedule-cta {
  border: 1px solid rgba(8, 11, 9, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(8, 11, 9, 0.08);
}

.schedule-feature {
  position: relative;
  display: grid;
  grid-template-columns: 270px minmax(220px, 1fr) minmax(220px, 1fr) 54px;
  gap: 0;
  align-items: center;
  min-height: 180px;
  padding: 28px 26px 28px 44px;
  border-left: 5px solid #70d400;
}

.feature-day,
.feature-class {
  min-height: 94px;
  padding-right: clamp(22px, 3vw, 48px);
  border-right: 1px solid rgba(8, 11, 9, 0.14);
}

.feature-class {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding-left: clamp(24px, 3vw, 48px);
}

.feature-class:nth-of-type(3) {
  border-right: 0;
}

.today-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  border-radius: 50%;
  background: #70d400;
}

.today-label {
  color: rgba(8, 11, 9, 0.56);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feature-day strong,
.schedule-row > strong,
.feature-class h3 {
  display: block;
  margin: 6px 0 0;
  font-family: Anton, Impact, sans-serif;
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.feature-day strong {
  font-size: clamp(3.1rem, 4.8vw, 4.35rem);
}

.feature-day small,
.row-focus {
  color: rgba(8, 11, 9, 0.58);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-day em,
.row-focus em {
  color: #70d400;
  font-style: normal;
}

.time-badge {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  align-content: center;
  border-radius: 50%;
  background: radial-gradient(circle, #f4fbdf 0 58%, rgba(112, 212, 0, 0.2) 59% 100%);
  box-shadow: inset 0 0 0 1px rgba(112, 212, 0, 0.28);
}

.time-badge strong,
.mini-session b {
  font-size: 1.1rem;
  line-height: 1;
}

.time-badge small,
.mini-session small {
  color: rgba(8, 11, 9, 0.52);
  font-weight: 700;
  line-height: 1;
}

.feature-class h3 {
  margin: 0;
  font-size: clamp(2rem, 2.8vw, 3.05rem);
}

.feature-class p {
  max-width: 250px;
  margin: 10px 0 0;
  color: rgba(8, 11, 9, 0.58);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.schedule-row {
  display: grid;
  grid-template-columns: 140px minmax(190px, 1fr) minmax(230px, 1fr) 220px 42px;
  gap: 22px;
  align-items: center;
  min-height: 92px;
  padding: 0 30px 0 50px;
  border-top: 1px solid rgba(8, 11, 9, 0.08);
}

.schedule-row:first-child {
  border-top: 1px solid rgba(8, 11, 9, 0.08);
}

.schedule-row > strong {
  margin: 0;
  padding: 0 38px 0 0;
  border-right: 1px solid rgba(8, 11, 9, 0.12);
  font-size: clamp(2.3rem, 3vw, 3.35rem);
}

.mini-session {
  display: grid;
  grid-template-columns: 34px auto minmax(34px, auto) minmax(0, 1fr);
  gap: 8px;
  align-items: center;
}

.mini-session i {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 34px;
  border: 1px solid #70d400;
  border-radius: 50%;
}

.mini-session i::before,
.mini-session i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 10px;
  background: #70d400;
  transform: translate(-50%, -84%);
}

.mini-session i::after {
  width: 8px;
  height: 1px;
  transform: translate(-10%, -50%);
}

.mini-session em {
  margin-left: 14px;
  color: var(--ink);
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(1.25rem, 1.6vw, 1.65rem);
  font-style: normal;
  line-height: 1;
  text-transform: uppercase;
}

.schedule-toggle {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #020402;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.schedule-feature .schedule-toggle {
  align-self: center;
}

.schedule-cta {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 36px;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.schedule-cta span:first-child::before {
  content: "+";
  display: inline-grid;
  width: 40px;
  height: 40px;
  margin-right: 20px;
  place-items: center;
  border-radius: 50%;
  background: #70d400;
  color: white;
}

.schedule-cta span:last-child {
  color: #70d400;
  font-size: 2rem;
}

@media (max-width: 1180px) {
  .schedule-board {
    grid-template-columns: 1fr;
  }

  .schedule-days {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    min-height: 0;
  }

  .schedule-day,
  .schedule-day.is-active {
    min-height: 82px;
    justify-content: center;
    padding: 0;
    font-size: 2.2rem;
  }

  .schedule-day span:last-child,
  .schedule-day.is-active::after,
  .schedule-habit {
    display: none;
  }

  .schedule-feature,
  .schedule-row {
    grid-template-columns: 1fr 1fr;
  }

  .schedule-toggle {
    display: none;
  }

  .feature-day {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid rgba(8, 11, 9, 0.12);
    padding: 0 0 22px;
  }

  .feature-class {
    padding: 24px 24px 0 0;
  }

  .schedule-row {
    padding: 24px;
  }

  .schedule-row > strong {
    border-right: 0;
  }

  .row-focus {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .schedule {
    padding-inline: 16px;
  }

  .schedule-heading {
    grid-template-columns: 1fr;
  }

  .schedule-heading h2 {
    font-size: clamp(3.4rem, 18vw, 5.1rem);
  }

  .schedule-proof {
    max-width: 260px;
    font-size: 1.1rem;
  }

  .schedule-days {
    grid-template-columns: repeat(5, minmax(56px, 1fr));
  }

  .schedule-day,
  .schedule-day.is-active {
    min-height: 62px;
    font-size: 1.6rem;
  }

  .schedule-feature,
  .schedule-row {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .feature-day,
  .feature-class {
    min-height: 0;
    border-right: 0;
  }

  .feature-class {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
    padding: 22px 0 0;
  }

  .time-badge {
    width: 72px;
    height: 72px;
  }

  .feature-day strong {
    font-size: 3rem;
  }

  .feature-class h3 {
    font-size: 2rem;
  }

  .schedule-row > strong {
    padding: 0;
  }

  .mini-session {
    grid-template-columns: 34px auto 34px minmax(0, 1fr);
  }

  .mini-session em {
    margin-left: 6px;
  }

  .schedule-cta {
    min-height: 86px;
    padding: 18px 22px;
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .schedule-cta span:first-child::before {
    margin-right: 12px;
  }
}

/* ==========================================================================
   PROGRAMS DESTINATION PAGES & TRANSITIONS
   ========================================================================== */

/* Display states to toggle views */
body.in-program-view #home-view {
  display: none !important;
}

body:not(.in-program-view) #program-view {
  display: none !important;
}

body.in-program-view #program-view {
  display: block !important;
}

/* --- Transition Screen --- */
#transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#transition-overlay.transition-idle {
  display: none;
}

#transition-overlay.transition-active,
#transition-overlay.transition-out {
  pointer-events: all;
}

.overlay-panel {
  position: absolute;
  top: 0;
  width: 65%;
  height: 100%;
  background: #080b09; /* matches ink */
  transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
}

.panel-left {
  left: 0;
  transform: skewX(-12deg) translateX(-115%);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.panel-right {
  right: 0;
  transform: skewX(-12deg) translateX(115%);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

/* Active transition: panels slide in to cover screen */
.transition-active .panel-left {
  transform: skewX(-12deg) translateX(-15%);
}

.transition-active .panel-right {
  transform: skewX(-12deg) translateX(15%);
}

/* Slide out: panels slide away further in opposite direction */
.transition-out .panel-left {
  transform: skewX(-12deg) translateX(-115%);
}

.transition-out .panel-right {
  transform: skewX(-12deg) translateX(115%);
}

/* Sweeping laser light overlay */
.overlay-scanline {
  position: absolute;
  top: -20%;
  bottom: -20%;
  width: 5px;
  background: var(--accent, var(--green));
  box-shadow: 
    0 0 15px var(--accent, var(--green)),
    0 0 35px var(--accent, var(--green)),
    0 0 65px var(--accent, var(--green));
  z-index: 102;
  transform: skewX(-12deg) translateX(-150vw);
  opacity: 0;
}

.transition-active .overlay-scanline {
  animation: scanline-sweep-in 0.8s cubic-bezier(0.85, 0, 0.15, 1) forwards;
}

@keyframes scanline-sweep-in {
  0% {
    transform: skewX(-12deg) translateX(-100vw);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: skewX(-12deg) translateX(100vw);
    opacity: 0;
  }
}

/* Dynamic Typography scaling reveal */
.overlay-title-wrapper {
  position: relative;
  z-index: 101;
  overflow: hidden;
  text-align: center;
}

.overlay-title {
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(3.2rem, 9.5vw, 8.8rem);
  text-transform: uppercase;
  color: var(--accent, var(--green));
  margin: 0;
  letter-spacing: 0.05em;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.9);
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: opacity 0.3s ease, transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.transition-active .overlay-title {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.3s;
}

.transition-out .overlay-title {
  opacity: 0;
  transform: translateY(-40px) scale(1.05);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* --- Theme Color Systems --- */
.theme-boxing {
  --accent: var(--green);
  --accent-soft: rgba(139, 210, 63, 0.09);
  --accent-glow: rgba(139, 210, 63, 0.28);
}

.theme-kickboxing {
  --accent: #ff453a;
  --accent-soft: rgba(255, 69, 58, 0.09);
  --accent-glow: rgba(255, 69, 58, 0.32);
}

.theme-grappling {
  --accent: #ffd60a;
  --accent-soft: rgba(255, 214, 10, 0.08);
  --accent-glow: rgba(255, 214, 10, 0.28);
}

.theme-strength {
  --accent: #0a84ff;
  --accent-soft: rgba(10, 132, 255, 0.09);
  --accent-glow: rgba(10, 132, 255, 0.28);
}

/* --- Program Page Layout & Elements --- */
.program-page-container {
  background: var(--ink);
  color: var(--paper);
  min-height: 100vh;
  box-sizing: border-box;
  animation: page-fade-in 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes page-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.program-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 132px clamp(20px, 8vw, 132px) 64px;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 50% 50%, var(--accent-soft) 0%, #050705 100%);
  overflow: hidden;
  box-sizing: border-box;
}

.hero-bg-effect {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.theme-boxing .hero-bg-effect {
  background-image: 
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 36px 36px;
}

.theme-kickboxing .hero-bg-effect {
  background-image: linear-gradient(135deg, rgba(255,255,255,0.03) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.03) 50%, rgba(255,255,255,0.03) 75%, transparent 75%, transparent);
  background-size: 54px 54px;
}

.theme-grappling .hero-bg-effect {
  background: 
    radial-gradient(circle at 35% 35%, transparent 45%, rgba(255,255,255,0.015) 45%, rgba(255,255,255,0.015) 47%, transparent 47%),
    radial-gradient(circle at 65% 65%, transparent 35%, rgba(255,255,255,0.015) 35%, rgba(255,255,255,0.015) 37%, transparent 37%);
  background-size: 180px 180px;
}

.theme-strength .hero-bg-effect {
  background-image: 
    linear-gradient(rgba(255,255,255,0.06) 2px, transparent 2px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 2px, transparent 2px);
  background-size: 80px 80px;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.program-meta-tag {
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 14px;
  animation: reveal-up 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.program-hero-title {
  display: inline-block;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(3.8rem, 10vw, 9.2rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--paper);
  margin: 0 0 24px;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  transform: translateY(30px);
  animation: title-reveal-anim 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.15s;
}

.program-hero-statement {
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(1.6rem, 4.2vw, 3.6rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--paper);
  margin: 0 0 18px;
  animation: reveal-up 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.3s;
  opacity: 0;
}

.program-hero-subtext {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 38px;
  max-width: 680px;
  animation: reveal-up 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.45s;
  opacity: 0;
}

.program-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 52px;
  animation: reveal-up 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.6s;
  opacity: 0;
}

@keyframes reveal-up {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes title-reveal-anim {
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: translateY(0);
  }
}

/* Stats Strip */
.program-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 6px;
  padding: 24px;
  margin-top: auto;
  width: 100%;
  max-width: 1260px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  animation: reveal-up 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards 0.7s;
  opacity: 0;
}

.stat-box {
  text-align: center;
  border-right: 1px solid var(--line);
  padding: 4px 12px;
}

.stat-box:last-child {
  border-right: 0;
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0.12em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.stat-value {
  display: block;
  font-family: Anton, Impact, sans-serif;
  font-size: 1.3rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Section Kickers & Title Styles */
.program-why,
.program-train,
.program-split,
.program-schedule {
  position: relative;
  padding: 96px clamp(20px, 8vw, 132px);
  border-bottom: 1px solid var(--line);
  box-sizing: border-box;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 38px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.why-card-icon {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 22px;
  line-height: 1;
}

.why-card h3 {
  font-family: Anton, Impact, sans-serif;
  font-size: 1.4rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--paper);
}

.why-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* What You'll Train */
.train-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.train-item {
  position: relative;
  padding: 28px 30px;
  background: linear-gradient(135deg, rgba(255,255,255,0.018) 0%, transparent 100%);
  border-left: 3px solid var(--accent);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-radius: 0 6px 6px 0;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.train-item:hover {
  border-right-color: rgba(255, 255, 255, 0.18);
  border-top-color: rgba(255, 255, 255, 0.18);
  border-bottom-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, rgba(255,255,255,0.035) 0%, transparent 100%);
}

.train-item h3 {
  font-family: Anton, Impact, sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--paper);
}

.train-item p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
  margin: 0;
}

/* Split Section (Ideal For / Culture) */
.program-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 82px;
  align-items: start;
}

.ideal-list {
  display: grid;
  gap: 22px;
}

.ideal-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ideal-item-bullet {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--accent);
}

.ideal-item h4 {
  font-family: Anton, Impact, sans-serif;
  font-size: 1.15rem;
  text-transform: uppercase;
  margin: 0 0 4px;
  color: var(--paper);
}

.ideal-item p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
  margin: 0;
}

.experience-card {
  background: linear-gradient(180deg, var(--accent-soft) 0%, rgba(255,255,255,0.005) 100%);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-left: 2px solid var(--accent);
  padding: 38px;
  border-radius: 6px;
  box-sizing: border-box;
}

.experience-card h3 {
  font-family: Anton, Impact, sans-serif;
  font-size: 1.5rem;
  margin: 0 0 16px;
  text-transform: uppercase;
  color: var(--accent);
}

.experience-card p {
  line-height: 1.55;
  color: var(--muted);
  font-size: 0.98rem;
  margin: 0;
}

/* Schedule Section */
.schedule-preview-box {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.015);
  box-shadow: var(--shadow);
}

.schedule-preview-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  border-bottom: 1px solid var(--line);
  padding: 18px 24px;
  align-items: center;
}

.schedule-preview-row:last-child {
  border-bottom: 0;
}

.schedule-preview-row.header {
  background: rgba(255, 255, 255, 0.035);
  border-bottom: 2px solid var(--accent);
  color: var(--paper);
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  padding: 16px 24px;
}

.schedule-preview-row span {
  font-weight: 700;
}

.schedule-preview-row.header span {
  color: var(--accent);
}

/* CTA Footer & Switcher */
.program-cta-footer {
  padding: 120px clamp(20px, 8vw, 132px) 80px;
  background: radial-gradient(circle at 50% 100%, var(--accent-soft) 0%, #050705 90%);
  text-align: center;
  box-sizing: border-box;
  border-top: 1px solid var(--line);
}

.footer-cta-content {
  max-width: 620px;
  margin: 0 auto 80px;
}

.footer-cta-content h2 {
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.95;
  margin: 0 0 18px;
  text-transform: uppercase;
  color: var(--paper);
}

.footer-cta-content p {
  color: var(--muted);
  font-size: 1.15rem;
  margin: 0 0 32px;
  line-height: 1.45;
}

.program-switcher-wrap {
  border-top: 1px solid var(--line);
  padding-top: 56px;
  margin-bottom: 56px;
}

.switcher-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--muted);
  letter-spacing: 0.16em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.switcher-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.switch-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  color: var(--paper);
  padding: 12px 26px;
  font-family: Anton, Impact, sans-serif;
  font-size: 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.switch-btn:hover {
  background: var(--accent);
  color: #071006;
  border-color: var(--accent);
  box-shadow: 0 0 18px var(--accent-glow);
  transform: translateY(-2px);
}

.back-home-wrap {
  margin-top: 40px;
}

.back-home-btn {
  background: transparent;
  border: 0;
  color: var(--muted);
  font-weight: 900;
  font-size: 0.82rem;
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.back-home-btn:hover {
  color: var(--accent);
  transform: translateX(-4px);
}

/* Scroll Animation classes for dynamic page elements */
.program-page-container .reveal-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.program-page-container .reveal-element.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delays for grids */
.reveal-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.35s; }

/* Responsive adjustments for Program templates */
@media (max-width: 920px) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
  
  .program-split {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  
  .program-stats-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 20px;
  }
  
  .stat-box {
    border-right: 0;
  }
  
  .stat-box:nth-child(odd) {
    border-right: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .why-grid,
  .train-list,
  .program-stats-strip {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .stat-box {
    border-right: 0 !important;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
  }
  
  .stat-box:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  
  .program-hero {
    padding-top: 110px;
  }
  
  .program-why,
  .program-train,
  .program-split,
  .program-schedule {
    padding: 64px 18px;
  }
  
  .schedule-preview-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .schedule-preview-row span {
    padding: 0;
  }
  
  .schedule-preview-row.header {
    display: none;
  }
  
  .experience-card {
    padding: 26px;
  }
}

/* --- Custom Scrollbar Styling --- */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--ink);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.14);
  border: 2px solid var(--ink);
  border-radius: 5px;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent, var(--green));
}

/* For Firefox compatibility */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.14) var(--ink);
}

/* --- Language Switcher Styling --- */
.lang-switcher,
.program-lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 4px;
  font-family: Anton, Impact, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  margin-right: 12px;
}

.program-lang-switcher {
  position: absolute;
  top: 30px;
  right: clamp(20px, 8vw, 132px);
  z-index: 10;
  margin-right: 0;
  background: rgba(12, 16, 13, 0.85);
  backdrop-filter: blur(8px);
}

.lang-btn {
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  padding: 2px 6px;
  transition: color 0.3s ease;
  font-weight: 700;
  text-transform: uppercase;
}

.lang-btn.active,
.lang-btn:hover {
  color: var(--accent, var(--green));
}

.lang-divider {
  color: rgba(255, 255, 255, 0.15);
  user-select: none;
}

@media (max-width: 920px) {
  .lang-switcher {
    margin-right: 0;
    padding: 3px 8px;
    font-size: 0.78rem;
  }
}

@media (max-width: 640px) {
  
}

/* --- LEAVE EGO AT THE DOOR: Culture Section --- */
.intro {
  position: relative;
  overflow: hidden;
  background: #030503;
  color: var(--paper);
  padding: clamp(80px, 10vw, 150px) clamp(20px, 5vw, 72px) !important;
}

/* Background decorations */
.intro-bg-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.intro-bg-decorations .decor-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.003) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.003) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.15;
}

.intro-bg-decorations .decor-spotlight {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(circle, rgba(139, 210, 63, 0.06) 0%, transparent 70%);
}

.intro-bg-decorations .decor-giant-texts {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 40px;
}

.intro-bg-decorations .decor-ghost {
  font-family: Anton, sans-serif;
  font-size: clamp(6rem, 12vw, 15rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.015);
  user-select: none;
  display: block;
}

.ghost-1 { align-self: flex-start; transform: rotate(-3deg); }
.ghost-2 { align-self: center; transform: rotate(2deg); opacity: 0.7; }
.ghost-3 { align-self: flex-end; transform: rotate(-1deg); }

/* Inner Layout split */
.intro-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.25fr 1.35fr;
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left side: Headline & Copy */
.intro-headline-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.intro-title {
  font-family: Anton, sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.ego-word-wrap {
  display: inline-block;
  position: relative;
}

.ego-word {
  color: var(--green);
  text-shadow: 0 0 10px rgba(139, 210, 63, 0.2);
  display: inline-block;
  animation: ego-unstable 4s ease-in-out infinite alternate;
}

.ego-slash {
  position: absolute;
  top: 50%;
  left: -5%;
  width: 110%;
  height: 2px;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  transform: rotate(-12deg);
  pointer-events: none;
}

@keyframes ego-unstable {
  0% {
    opacity: 0.95;
    filter: blur(0px);
  }
  48% {
    opacity: 0.95;
    filter: blur(0px);
  }
  50% {
    opacity: 0.5;
    filter: blur(1.5px) skewX(5deg);
  }
  52% {
    opacity: 0.85;
    filter: blur(0.5px);
  }
  54% {
    opacity: 0.3;
    filter: blur(2px) skewX(-10deg);
  }
  56% {
    opacity: 0.95;
    filter: blur(0px);
  }
  100% {
    opacity: 0.95;
    filter: blur(0px);
  }
}

.intro-copy {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--paper-soft);
  max-width: 480px;
  margin: 0;
}

/* Center Gate Visual */
.ego-gate-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 400px;
  position: relative;
}

.gate-line {
  width: 1px;
  height: 0;
  background: linear-gradient(to bottom, transparent, var(--green), transparent);
  box-shadow: 0 0 8px var(--green);
  position: relative;
  transition: height 1.5s cubic-bezier(0.25, 1, 0.5, 1) 0.3s;
}

.intro.in-view .gate-line {
  height: 100%;
}

.gate-scanner {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: gate-scan 3s ease-in-out infinite alternate;
  opacity: 0;
  transition: opacity 0.5s ease 1.8s;
}

.intro.in-view .gate-scanner {
  opacity: 1;
}

@keyframes gate-scan {
  0% { top: 10%; }
  100% { top: 90%; }
}

.gate-labels {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  white-space: nowrap;
  display: flex;
  gap: 120px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--muted);
  font-family: monospace;
  opacity: 0;
  transition: opacity 1s ease 1.5s;
}

.intro.in-view .gate-labels {
  opacity: 1;
}

.gate-label-top,
.gate-label-bottom {
  text-shadow: 0 0 3px rgba(255, 255, 255, 0.1);
}

/* Right Side: The Room Standard Panel */
.room-standard-panel {
  background: 
    radial-gradient(circle 240px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(139, 210, 63, 0.05), transparent),
    rgba(10, 13, 11, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  box-shadow: 
    inset 0 0 20px rgba(255, 255, 255, 0.02),
    0 24px 64px rgba(0, 0, 0, 0.8);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1) 0.5s, transform 1s cubic-bezier(0.25, 1, 0.5, 1) 0.5s;
}

.intro.in-view .room-standard-panel {
  opacity: 1;
  transform: translateX(0);
}

.room-standard-panel .panel-header {
  padding: 24px 30px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}

.room-standard-panel .panel-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 6px;
}

.room-standard-panel .panel-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.room-standard-panel .panel-title-row h3 {
  font-family: Anton, sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--paper);
  margin: 0;
}

.room-standard-panel .panel-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green);
  border: 1px solid var(--green);
  padding: 2px 8px;
  border-radius: 3px;
  box-shadow: 0 0 8px rgba(139, 210, 63, 0.25);
  background: rgba(139, 210, 63, 0.02);
}

/* Principles Rows */
.principles-list {
  display: flex;
  flex-direction: column;
}

.principle-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  cursor: default;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
  opacity: 0;
  transform: translateY(15px);
}

.intro.in-view .principle-row[data-index="1"] { transition-delay: 0.8s; opacity: 1; transform: translateY(0); }
.intro.in-view .principle-row[data-index="2"] { transition-delay: 1.0s; opacity: 1; transform: translateY(0); }
.intro.in-view .principle-row[data-index="3"] { transition-delay: 1.2s; opacity: 1; transform: translateY(0); }
.intro.in-view .principle-row[data-index="4"] { transition-delay: 1.4s; opacity: 1; transform: translateY(0); }

.principle-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background: var(--green);
  transform: scaleY(0);
  transition: transform 0.3s ease;
  box-shadow: 0 0 8px var(--green);
}

.principle-num {
  font-family: Anton, sans-serif;
  font-size: 1.45rem;
  color: var(--muted);
  line-height: 1;
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.principle-body {
  flex-grow: 1;
}

.principle-body h4 {
  font-family: Anton, sans-serif;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  color: var(--paper-soft);
  margin: 0 0 4px 0;
  transition: color 0.3s ease;
}

.principle-body p {
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--muted);
  margin: 0;
}

.principle-active-indicator {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--green);
  font-family: monospace;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-shadow: 0 0 8px var(--green);
}

/* Hover effects */
.principle-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.principle-row:hover::before {
  transform: scaleY(1);
}

.principle-row:hover .principle-num {
  color: var(--green);
  text-shadow: 0 0 8px rgba(139, 210, 63, 0.4);
}

.principle-row:hover .principle-body h4 {
  color: var(--paper);
}

.principle-row:hover .principle-active-indicator {
  opacity: 1;
}

/* Panel Footer */
.room-standard-panel .panel-footer {
  padding: 18px 30px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
}

.room-standard-panel .sys-code {
  font-family: monospace;
  opacity: 0.7;
}

/* Responsive Overrides */
@media (max-width: 920px) {
  .intro-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .intro-headline-wrap {
    text-align: center;
    align-items: center;
  }
  
  .intro-copy {
    max-width: 100%;
  }
  
  .ego-gate-wrap {
    height: auto;
    padding: 20px 0;
  }
  
  .gate-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--green), transparent);
  }
  
  .gate-scanner {
    width: 2px;
    height: 20px;
    animation: gate-scan-horizontal 3s ease-in-out infinite alternate;
  }
  
  @keyframes gate-scan-horizontal {
    0% { left: 10%; }
    100% { left: 90%; }
  }
  
  .gate-labels {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    flex-direction: row;
    justify-content: center;
    gap: 40px;
    margin-top: 12px;
  }
}

@media (max-width: 640px) {
  .intro-title {
    font-size: 2.5rem;
  }
  
  .principle-row {
    padding: 16px 20px;
  }
  
  .principle-active-indicator {
    display: none;
  }
}

/* ==========================================================================
   Tactical AI Chatbot UI (Premium Dark Arena Aesthetic)
   ========================================================================== */

#chatbot-container {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1000;
  pointer-events: none; /* Let clicks pass through except on active items */
}

#chatbot-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ink-soft);
  border: 1.5px solid rgba(139, 210, 63, 0.4);
  color: var(--paper);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 15px rgba(139, 210, 63, 0.15);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: auto;
  z-index: 1001;
  outline: none;
}

#chatbot-toggle:hover {
  border-color: var(--green);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 25px rgba(139, 210, 63, 0.35);
  transform: translateY(-2px) scale(1.05);
  color: var(--green);
}

#chatbot-toggle:active {
  transform: translateY(1px) scale(0.95);
}

#chatbot-toggle svg {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Floating Window Container */
#chatbot-window {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 380px;
  height: 580px;
  background: rgba(12, 17, 13, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(139, 210, 63, 0.2);
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6), 0 0 40px rgba(139, 210, 63, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  pointer-events: auto;
  z-index: 1000;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Diagonal slice tech corner detail */
#chatbot-window::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  background: var(--green);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 5;
  opacity: 0.85;
}

.chatbot-hidden {
  opacity: 0;
  pointer-events: none !important;
  transform: translateY(24px) scale(0.95);
}

/* Header styling */
.chatbot-header {
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.chatbot-status-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: status-glow 1.5s infinite alternate;
}

@keyframes status-glow {
  0% { opacity: 0.4; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1.1); }
}

.status-text {
  font-family: monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
}

.chatbot-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-title-row h3 {
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  color: var(--paper);
  text-transform: uppercase;
}

#chatbot-close-btn {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}

#chatbot-close-btn:hover {
  color: var(--red);
}

/* History Log Area */
#chatbot-history {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scroll-behavior: smooth;
}

/* Scrollbar customizations */
#chatbot-history::-webkit-scrollbar {
  width: 5px;
}
#chatbot-history::-webkit-scrollbar-track {
  background: transparent;
}
#chatbot-history::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}
#chatbot-history::-webkit-scrollbar-thumb:hover {
  background: var(--green);
}

/* Message bubbles */
.chat-msg {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.88rem;
  line-height: 1.45;
  word-break: break-word;
  animation: msg-appear 0.25s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  position: relative;
}

@keyframes msg-appear {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.msg-user {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--paper);
  border-bottom-right-radius: 2px;
}

.msg-assistant {
  align-self: flex-start;
  background: rgba(139, 210, 63, 0.04);
  border: 1px solid rgba(139, 210, 63, 0.15);
  border-left: 3px solid var(--green);
  color: var(--paper);
  border-bottom-left-radius: 2px;
}

.msg-assistant p {
  margin: 0 0 10px 0;
}
.msg-assistant p:last-child {
  margin-bottom: 0;
}

.msg-assistant ul, .msg-assistant ol {
  margin: 6px 0;
  padding-left: 20px;
}

.msg-assistant li {
  margin-bottom: 4px;
}

.msg-assistant li:last-child {
  margin-bottom: 0;
}

.msg-assistant strong {
  color: var(--green);
}

/* Suggestions Area */
.chatbot-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 20px 14px 20px;
  background: transparent;
}

.suggestion-chip {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.76rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  text-align: left;
  outline: none;
}

.suggestion-chip:hover {
  background: rgba(139, 210, 63, 0.08);
  border-color: rgba(139, 210, 63, 0.4);
  color: var(--green);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 210, 63, 0.1);
}

.suggestion-chip:active {
  transform: translateY(0);
}

/* Footer & Input form */
.chatbot-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

#chatbot-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--paper);
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.88rem;
  outline: none;
  transition: all 0.25s ease;
  font-family: inherit;
}

#chatbot-input:focus {
  border-color: rgba(139, 210, 63, 0.5);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 10px rgba(139, 210, 63, 0.1);
}

#chatbot-send {
  background: var(--green);
  color: #071006;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  outline: none;
}

#chatbot-send:hover {
  background: var(--green-deep);
  color: var(--paper);
  transform: scale(1.04);
  box-shadow: 0 0 12px rgba(139, 210, 63, 0.3);
}

#chatbot-send:active {
  transform: scale(0.96);
}

#chatbot-send svg {
  display: block;
}

#chatbot-send:disabled {
  background: rgba(255, 255, 255, 0.05) !important;
  color: rgba(255, 255, 255, 0.2) !important;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Typing Indicator animation */
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 6px;
}

.typing-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  animation: typing-bounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) {
  animation-delay: -0.32s;
}
.typing-dot:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes typing-bounce {
  0%, 80%, 100% { transform: scale(0); opacity: 0.3; }
  40% { transform: scale(1); opacity: 1; background-color: var(--green); }
}

/* Mobile responsive styles for chatbot window */
@media (max-width: 480px) {
  #chatbot-window {
    width: calc(100% - 32px);
    right: 16px;
    left: 16px;
    bottom: 96px;
    height: calc(100vh - 120px);
    max-height: 520px;
  }
  
  #chatbot-toggle {
    bottom: 20px;
    right: 20px;
  }
}


:root {
  --ink: #080b09;
  --ink-soft: #121713;
  --panel: #171c18;
  --panel-light: #202720;
  --paper: #f3f5ef;
  --muted: #aeb8ad;
  --green: #8bd23f;
  --green-deep: #4f9b24;
  --red: #e63c35;
  --gold: #e8c94a;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 8px clamp(18px, 8vw, 132px);
  background: rgba(5, 7, 5, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: max-content;
}

.brand-logo-wrap {
  display: inline-grid;
  width: 86px;
  height: 86px;
  flex: 0 0 86px;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin-top: 4px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.6vw, 44px);
  flex: 1;
  color: rgba(243, 245, 239, 0.88);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--green);
  transform: translateY(-2px);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 6px;
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 6px;
  border: 1px solid transparent;
  padding: 0 24px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button span {
  display: inline-block;
  transition: transform 180ms ease;
}

.header-cta,
.button.primary {
  background: var(--green);
  color: #071006;
  box-shadow: 0 12px 34px rgba(139, 210, 63, 0.22);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 128px clamp(18px, 8vw, 132px) 0;
  background: #020302;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-media {
  position: absolute;
  inset: 54px 0 94px auto;
  z-index: 0;
  width: min(58vw, 920px);
  min-height: auto;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  clip-path: none;
  pointer-events: none;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 0;
  background:
    linear-gradient(90deg, #020302 0%, rgba(2, 3, 2, 0.82) 10%, rgba(2, 3, 2, 0) 34%, rgba(2, 3, 2, 0) 74%, rgba(2, 3, 2, 0.72) 100%),
    linear-gradient(180deg, rgba(2, 3, 2, 0.56) 0%, rgba(2, 3, 2, 0) 22%, rgba(2, 3, 2, 0) 66%, rgba(2, 3, 2, 0.9) 100%);
  pointer-events: none;
}

.hero-video,
.video-fallback,
.media-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  object-position: center right;
  filter: none;
}

.video-fallback {
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 220ms ease;
}

.video-fallback span {
  color: rgba(243, 245, 239, 0.32);
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(2rem, 5vw, 5rem);
  text-align: center;
  text-transform: uppercase;
}

.hero.video-missing .hero-media .video-fallback {
  opacity: 1;
}

.hero.video-ready .hero-media .video-fallback {
  display: none;
}

.media-shade {
  background:
    radial-gradient(ellipse at center, rgba(2, 3, 2, 0) 0%, rgba(2, 3, 2, 0) 46%, rgba(2, 3, 2, 0.72) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(420px, 0.68fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
  width: 100%;
  padding-bottom: 150px;
}

.hero-content {
  position: relative;
  z-index: 6;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.84rem;
}

.eyebrow::before,
.section-kicker::after {
  color: var(--green-deep);
}

.eyebrow::before {
  content: "///";
  margin-right: 4px;
}

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

h1,
h2 {
  font-family: Anton, Impact, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: #f8faf4;
  font-size: clamp(4.2rem, 6.9vw, 8.2rem);
  line-height: 0.98;
  text-shadow: 0 5px 0 rgba(255, 255, 255, 0.04), 0 22px 46px rgba(0, 0, 0, 0.58);
}

h1 span {
  display: block;
  margin-bottom: 0.08em;
}

h1 span:last-child {
  margin-bottom: 0;
}

.green-text {
  color: var(--green);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 4.7vw, 5.2rem);
  line-height: 0.96;
}

h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
}

.hero-copy {
  max-width: 520px;
  color: rgba(243, 245, 239, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
}

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

.hero-actions .button:hover,
.hero-actions .button:focus-visible {
  transform: translateY(-3px);
}

.hero-actions .button:hover span,
.hero-actions .button:focus-visible span {
  transform: translateX(5px);
}

.hero-actions .button.primary:hover,
.hero-actions .button.primary:focus-visible {
  box-shadow: 0 18px 44px rgba(139, 210, 63, 0.34);
  background-color: #9ee848;
}

.hero-actions .button.secondary:hover,
.hero-actions .button.secondary:focus-visible {
  border-color: var(--green);
  background-color: rgba(139, 210, 63, 0.12);
  color: var(--green);
  box-shadow: 0 14px 36px rgba(139, 210, 63, 0.14);
}

.hero-actions .button:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 1260px);
  margin: 0 auto -68px;
  padding: 26px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    rgba(12, 15, 12, 0.95);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.58);
  transform: skewX(-6deg);
}

.hero-stats > div {
  display: grid;
  place-items: center;
  gap: 3px;
  min-height: 96px;
  padding: 0 18px;
  text-align: center;
  transform: skewX(6deg);
}

.hero-stats > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-stats span {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
}

.hero-stats strong {
  display: block;
  color: var(--green);
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1;
}

.hero-stats b {
  color: var(--paper);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.hero-stats small {
  color: rgba(243, 245, 239, 0.72);
}

section:not(.hero) {
  padding: clamp(66px, 9vw, 112px) clamp(20px, 5vw, 72px);
}

.membership {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  background: var(--paper);
  color: var(--ink);
}



.programs,
.coaches {
  background:
    linear-gradient(180deg, #060806, var(--ink-soft));
}

.programs {
  padding-top: clamp(118px, 13vw, 172px) !important;
}

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

.section-heading > p {
  max-width: 440px;
  color: var(--muted);
}

.section-kicker::after {
  content: " ///";
  color: var(--green-deep);
}

.program-grid,
.coach-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.program-card,
.coach-grid article,
.price-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.program-card {
  position: relative;
  min-height: 170px;
  display: grid;
  align-content: end;
  overflow: hidden;
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(5, 7, 5, 0.18), rgba(5, 7, 5, 0.9)),
    url("assets/monster-gym-hero.png") center / cover;
}

.program-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 7, 5, 0.92), rgba(5, 7, 5, 0.28));

}

.program-card::after {
  content: "->";
  position: absolute;
  right: 18px;
  bottom: 18px;
  color: var(--green);
  font-size: 1.35rem;
  font-weight: 900;
}

.program-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(5, 7, 5, 0.12), rgba(5, 7, 5, 0.9)),
    url("assets/monster-gym-hero.png") 64% center / cover;
}

.program-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(5, 7, 5, 0.12), rgba(5, 7, 5, 0.9)),
    url("assets/monster-gym-hero.png") 82% center / cover;
}

.program-card:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(5, 7, 5, 0.12), rgba(5, 7, 5, 0.9)),
    url("assets/monster-gym-hero.png") 35% center / cover;
}

.program-card h3,
.program-card p {
  position: relative;
  z-index: 1;
}

.program-card h3 {
  max-width: 180px;
  margin-bottom: 2px;
  font-family: Anton, Impact, sans-serif;
  font-size: 1.55rem;
  line-height: 0.98;
  text-transform: uppercase;
}

.program-card p,
.feature-list p,
.coach-grid p {
  color: var(--muted);
}

.training-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(520px, 1.22fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.78) 46%, #020302 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), #020302),
    url("assets/training-section-bg.webp") left center / cover,
    #020302;
  color: var(--paper);
}

.training-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(139, 210, 63, 0.18), transparent 18%),
    radial-gradient(circle at 34% 48%, rgba(255, 255, 255, 0.06), transparent 18%),
    linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.62) 50%, rgba(0, 0, 0, 0.92));
  pointer-events: none;
}

.training-band > * {
  position: relative;
  z-index: 1;
}

.band-copy h2 {
  max-width: 640px;
  margin-bottom: 0;
  font-size: clamp(3.7rem, 6.8vw, 8rem);
  line-height: 0.94;
}

.band-copy h2 span {
  color: var(--green);
}

.band-copy h2::after {
  content: "";
  display: block;
  width: min(290px, 52vw);
  height: 10px;
  margin-top: 20px;
  border-radius: 999px;
  background: var(--green);
  transform: skewX(-18deg);
}

.band-copy > p:last-child {
  max-width: 460px;
  margin-top: 28px;
  color: rgba(243, 245, 239, 0.86);
  font-size: clamp(1.05rem, 1.8vw, 1.5rem);
}

.feature-list {
  display: grid;
  gap: 28px;
}

.feature-list > div {
  display: grid;
  grid-template-columns: 126px 2px minmax(0, 1fr);
  gap: clamp(24px, 3.2vw, 44px);
  align-items: center;
  min-height: 210px;
  padding: clamp(28px, 3.2vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  border-right: 6px solid var(--green);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.feature-icon {
  display: grid;
  width: 128px;
  height: 128px;
  place-items: center;
  border-radius: 50%;
  box-shadow: none;
  position: relative;
  margin-top: -40px;
}

.feature-icon img {
  width: 200%;
  height: 200%;
  max-width: 200%;
  object-fit: contain;
}

.feature-rule {
  width: 2px;
  height: 124px;
  background: var(--green);
}

.feature-list h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
}

.feature-list h3 span {
  display: inline-flex;
  min-width: 68px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: var(--green);
  color: #071006;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
}

.feature-list p {
  max-width: 650px;
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  line-height: 1.45;
}

.schedule {
  background: var(--paper);
  color: var(--ink);
}

.schedule-table {
  overflow: hidden;
  border: 1px solid rgba(8, 11, 9, 0.14);
  border-radius: 8px;
  background: white;
}

.schedule-row {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr 0.8fr;
  border-top: 1px solid rgba(8, 11, 9, 0.1);
}

.schedule-row:first-child {
  border-top: 0;
}

.schedule-row span {
  padding: 18px;
  font-weight: 700;
}

.header-row {
  background: var(--ink);
  color: var(--paper);
  text-transform: uppercase;
}

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

.coach-grid article {
  padding: 14px;
}

.coach-photo {
  min-height: 310px;
  margin-bottom: 18px;
  border-radius: 6px;
  background:
    linear-gradient(160deg, rgba(139, 210, 63, 0.72), rgba(230, 60, 53, 0.38)),
    linear-gradient(45deg, #202720, #090c09);
}

.coach-one {
  background:
    linear-gradient(160deg, rgba(139, 210, 63, 0.72), rgba(8, 11, 9, 0.1)),
    url("assets/monster-gym-hero.png") center / cover;
}

.coach-two {
  background:
    linear-gradient(160deg, rgba(230, 60, 53, 0.62), rgba(8, 11, 9, 0.22)),
    url("assets/monster-gym-hero.png") right center / cover;
}

.coach-three {
  background:
    linear-gradient(160deg, rgba(232, 201, 74, 0.52), rgba(8, 11, 9, 0.32)),
    url("assets/monster-gym-hero.png") center bottom / cover;
}

.membership {
  position: relative;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.58fr);
  overflow: hidden;
  background: #f4f5f1;
  color: #08100b;
}

.membership::before {
  content: "";
  position: absolute;
  inset: auto -5vw -18vw 48%;
  width: 54vw;
  aspect-ratio: 1;
  background: rgba(8, 11, 9, 0.045);
  transform: rotate(45deg);
}

.membership > * {
  position: relative;
  z-index: 1;
}

.membership h2 {
  max-width: 820px;
  color: #071009;
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: 0.95;
}

.membership h2 span {
  color: var(--green-deep);
}

.membership h2::after {
  content: "";
  display: block;
  width: 130px;
  height: 6px;
  margin-top: 24px;
  background: linear-gradient(90deg, var(--green), var(--green) 42%, rgba(8, 11, 9, 0.12) 42%);
}

.membership p {
  max-width: 650px;
}

.membership-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 38px;
}

.membership-features span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 28px;
  border-left: 1px solid rgba(8, 11, 9, 0.12);
  color: #172019;
  font-weight: 900;
  text-transform: uppercase;
}

.membership-features span:first-child {
  padding-left: 0;
  border-left: 0;
}

.membership-features span::before {
  content: "+";
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--green-deep);
  font-size: 1.5rem;
}

.membership-features b {
  display: block;
}

.price-panel {
  padding: clamp(26px, 4vw, 42px);
  border-radius: 8px;
  background: #071009;
  color: var(--paper);
  box-shadow: 0 28px 80px rgba(8, 11, 9, 0.28);
}

.price-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(139, 210, 63, 0.22);
  color: #dfffc9;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-label::before {
  content: "*";
}

.price-panel h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.price {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--green);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.1;
}

.price span {
  color: var(--muted);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
}

.price-panel ul {
  display: grid;
  gap: 14px;
  margin: 0 0 24px;
  padding: 0;
  color: rgba(243, 245, 239, 0.92);
  list-style: none;
}

.price-panel li::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 7px var(--green);
  vertical-align: -5px;
}

.trial {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  background: #090f0d;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 0 !important;
}

.trial-intro {
  min-height: 360px;
  display: grid;
  align-items: center;
  padding: clamp(42px, 7vw, 88px) clamp(24px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(9, 15, 13, 0.48), #090f0d 96%),
    url("assets/monster-gym-hero.png") center / cover;
}

.trial-intro > div {
  max-width: 460px;
  padding-left: 22px;
  border-left: 4px solid var(--green);
}

.trial h2 {
  max-width: 520px;
  font-size: clamp(2.7rem, 5.2vw, 5.5rem);
}

.trial h2 span {
  color: var(--green);
}

.trial-intro p:last-child {
  max-width: 360px;
  color: rgba(243, 245, 239, 0.78);
}

.trial-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(42px, 7vw, 88px) clamp(20px, 5vw, 72px) clamp(42px, 7vw, 88px) 0;
}

.trial-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.trial-form input,
.trial-form select {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.065);
  color: var(--paper);
  font: inherit;
  padding: 0 14px;
}

.trial-form select {
  color-scheme: dark;
}

.trial-form button {
  grid-column: 1 / -1;
  align-self: end;
}

.trial-form label:nth-child(3),
.privacy-note {
  grid-column: 1 / -1;
}

.privacy-note {
  margin: -4px 0 0;
  color: rgba(243, 245, 239, 0.48);
  font-size: 0.86rem;
  text-align: center;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: #050705;
  color: var(--muted);
}

footer strong {
  color: var(--paper);
  text-transform: uppercase;
}

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

  .hero {
    min-height: 100vh;
    padding-top: 112px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-items: start;
    padding-bottom: 118px;
  }

  .hero-media {
    inset: 54px -8vw 38vh auto;
    width: min(62vw, 640px);
    opacity: 1;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    transform: none;
  }

  .hero-stats > div {
    transform: none;
  }

  .hero-stats > div:nth-child(3) {
    border-left: 0;
  }

  .hero-stats > div:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .membership,
  .training-band,
  .trial {
    grid-template-columns: 1fr;
  }

  .training-band {
    background-position: center;
  }

  .feature-list > div {
    grid-template-columns: 94px 2px minmax(0, 1fr);
  }

  .feature-icon {
    width: 86px;
    height: 86px;
  }

  .trial {
    padding-left: clamp(20px, 5vw, 72px) !important;
  }

  .trial-intro,
  .trial-form {
    padding-left: 0;
    padding-right: 0;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding: 6px 16px;
  }

  .brand small {
    display: none;
  }

  .brand-logo-wrap {
    width: 68px;
    height: 68px;
    flex-basis: 68px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.72rem;
  }

  .hero {
    min-height: auto;
    padding: 104px 18px 0;
  }

  .hero::after {
    bottom: 142px;
  }

  .hero-inner {
    padding-bottom: 34px;
  }

  .hero-media {
    inset: 58px -22vw 50vh auto;
    width: 78vw;
    opacity: 1;
  }

  h1 {
    font-size: clamp(3.6rem, 17vw, 5.9rem);
  }

  .hero-actions {
    gap: 12px;
  }

  .button {
    width: 100%;
    min-height: 50px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    margin-bottom: -56px;
    padding: 10px 18px;
  }

  .hero-stats > div {
    min-height: 82px;
    border-left: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-stats > div:first-child {
    border-top: 0;
  }

  .programs {
    padding-top: 112px !important;
  }

  .section-heading {
    display: block;
  }

  .program-grid,
  .coach-grid,
  .trial-form {
    grid-template-columns: 1fr;
  }

  .training-band {
    gap: 34px;
  }

  .band-copy h2 {
    font-size: clamp(3.3rem, 17vw, 6rem);
  }

  .feature-list > div {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: auto;
  }

  .feature-rule {
    width: 88px;
    height: 2px;
  }

  .membership-features span {
    width: 100%;
    padding: 12px 0;
    border-left: 0;
    border-top: 1px solid rgba(8, 11, 9, 0.12);
  }

  .membership-features span:first-child {
    border-top: 0;
  }

  .trial-intro {
    min-height: 300px;
  }

  .program-card {
    min-height: auto;
  }

  .program-card span {
    margin-bottom: 28px;
  }

  .schedule-table {
    border-radius: 0;
    margin-inline: -18px;
  }

  .schedule-row {
    grid-template-columns: 1fr;
    padding: 16px 18px;
  }

  .schedule-row span {
    padding: 4px 0;
  }

  .header-row {
    display: none;
  }
}

/* Last-mile schedule cascade fix. */
.schedule-row {
  grid-template-columns: 140px minmax(190px, 1fr) minmax(230px, 1fr) 220px 42px;
  padding: 0 30px 0 50px;
}

.schedule-row span,
.mini-session,
.schedule-day span {
  padding: 0;
}

@media (max-width: 1180px) {
  .schedule-row {
    grid-template-columns: 1fr 1fr;
    padding: 24px;
  }
}

@media (max-width: 760px) {
  .schedule-row {
    grid-template-columns: 1fr;
    padding: 22px;
  }
}

/* Restore premium program cards after later fallback card rules. */
.program-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding: 48px 0;
}

.program-card {
  position: relative;
  display: block;
  min-height: 0;
  overflow: visible;
  padding: 1px;
  border: 0;
  border-radius: 0;
  background: var(--line) !important;
  clip-path: polygon(18px 0%, 100% 0%, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0% 100%, 0% 18px);
  box-shadow: var(--shadow);
  color: inherit;
  text-decoration: none;
}

.program-card::before,
.program-card::after {
  content: none;
}

.program-card-wrapper:hover .program-card {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  box-shadow: 0 0 34px rgba(139, 210, 63, 0.3);
}

.program-card .card-inner {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 230px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  box-sizing: border-box;
  padding: 32px 24px 24px;
  background: rgba(12, 16, 13, 0.9);
  clip-path: inherit;
}

.program-card .card-content {
  position: relative;
  z-index: 5;
  margin-top: 0;
}

.program-card h3 {
  max-width: 260px;
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(1.55rem, 1.9vw, 2rem);
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.program-card p {
  margin: 4px 0 18px;
  color: var(--muted);
}

.program-card .card-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.program-card .card-action span {
  margin: 0;
  padding: 0;
}

.program-card .card-action .arrow {
  font-size: 0;
}

.program-card .card-action .arrow::before {
  content: "->";
  font-size: 0.8rem;
}

.program-card .card-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
}

.program-card .card-bg-grid,
.program-card .card-glow,
.program-card .card-sweep,
.program-card .card-scan,
.program-card .card-ghost-text {
  display: block;
}

@media (max-width: 1100px) {
  .program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .program-grid {
    grid-template-columns: 1fr;
    padding: 20px 0;
  }

  .program-card-wrapper {
    transform: none !important;
  }

  .connector-svg {
    display: none;
  }
}

/* Interactive schedule states */
.schedule-day {
  transition: min-height 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.schedule-day .schedule-day-arrow {
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.schedule-day.is-active {
  min-height: 124px;
}

.schedule-day.is-active .schedule-day-arrow {
  opacity: 1;
  transform: translateX(0);
}

.schedule-row {
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.schedule-row:hover {
  border-color: rgba(112, 212, 0, 0.35);
  box-shadow: 0 20px 52px rgba(8, 11, 9, 0.11);
  transform: translateY(-2px);
}

@media (max-width: 1180px) {
  .schedule-day.is-active {
    min-height: 92px;
  }
}

@media (max-width: 760px) {
  .schedule-day.is-active {
    min-height: 72px;
  }
}

.site-header .lang-switcher {
  flex: 0 0 auto;
  min-height: 42px;
  margin-right: 0;
  padding: 4px 8px;
  border-color: rgba(139, 210, 63, 0.28);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.site-header .lang-btn {
  min-width: 34px;
  min-height: 30px;
  border-radius: 4px;
}

.site-header .lang-btn.active {
  background: var(--green);
  color: #071006;
}

@media (max-width: 720px) {
  .site-header .lang-switcher {
    order: 3;
  }

  .site-header .header-cta {
    padding-inline: 12px;
  }
}

/* Site footer */
.site-footer {
  display: block;
  padding: clamp(42px, 6vw, 76px) clamp(20px, 5vw, 72px) 28px;
  border-top: 1px solid rgba(139, 210, 63, 0.2);
  background:
    linear-gradient(180deg, rgba(9, 13, 10, 0.94), #050705),
    radial-gradient(circle at 12% 0%, rgba(139, 210, 63, 0.12), transparent 36%);
  color: rgba(243, 245, 239, 0.72);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(230px, 1.1fr) minmax(150px, 0.6fr) minmax(180px, 0.8fr) minmax(230px, 0.8fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  max-width: 1540px;
  margin: 0 auto;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-brand .brand-logo-wrap {
  width: 58px;
  height: 58px;
  flex-basis: 58px;
}

.footer-brand strong {
  display: block;
  color: var(--paper);
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.footer-brand small {
  display: block;
  margin-top: 8px;
  color: var(--green);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links,
.footer-programs,
.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-links a,
.footer-programs span,
.footer-contact span {
  color: rgba(243, 245, 239, 0.72);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-contact a:not(.button):hover {
  color: var(--green);
}

.footer-programs span::before,
.footer-contact span::before {
  content: "+";
  margin-right: 10px;
  color: var(--green);
}

.footer-contact .button {
  width: max-content;
  margin-top: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  max-width: 1540px;
  margin: clamp(36px, 5vw, 62px) auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(243, 245, 239, 0.5);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

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

  .footer-bottom {
    flex-direction: column;
  }
}

/* Scroll pop-up animations for lower sections */
.training-band.animate-on-scroll .band-copy,
.training-band.animate-on-scroll .feature-list > div,
.schedule.animate-on-scroll .schedule-heading > *,
.schedule.animate-on-scroll .schedule-days,
.schedule.animate-on-scroll .schedule-feature,
.schedule.animate-on-scroll .schedule-row,
.schedule.animate-on-scroll .schedule-cta,
.membership.animate-on-scroll > *,
.trial.animate-on-scroll .trial-intro,
.trial.animate-on-scroll .trial-form,
.site-footer.animate-on-scroll .footer-brand,
.site-footer.animate-on-scroll .footer-links,
.site-footer.animate-on-scroll .footer-programs,
.site-footer.animate-on-scroll .footer-contact,
.site-footer.animate-on-scroll .footer-bottom {
  opacity: 0;
  transform: translateY(34px) scale(0.96);
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.2, 0.9, 0.25, 1.18);
}

.training-band.in-view .band-copy,
.training-band.in-view .feature-list > div,
.schedule.in-view .schedule-heading > *,
.schedule.in-view .schedule-days,
.schedule.in-view .schedule-feature,
.schedule.in-view .schedule-row,
.schedule.in-view .schedule-cta,
.membership.in-view > *,
.trial.in-view .trial-intro,
.trial.in-view .trial-form,
.site-footer.in-view .footer-brand,
.site-footer.in-view .footer-links,
.site-footer.in-view .footer-programs,
.site-footer.in-view .footer-contact,
.site-footer.in-view .footer-bottom {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.training-band.in-view .band-copy,
.schedule.in-view .schedule-heading > :first-child,
.membership.in-view > :first-child,
.trial.in-view .trial-intro,
.site-footer.in-view .footer-brand {
  transition-delay: 0.06s;
}

.training-band.in-view .feature-list > div:nth-child(1),
.schedule.in-view .schedule-heading > :nth-child(2),
.membership.in-view > :nth-child(2),
.trial.in-view .trial-form,
.site-footer.in-view .footer-links {
  transition-delay: 0.16s;
}

.training-band.in-view .feature-list > div:nth-child(2),
.schedule.in-view .schedule-days,
.site-footer.in-view .footer-programs {
  transition-delay: 0.26s;
}

.training-band.in-view .feature-list > div:nth-child(3),
.schedule.in-view .schedule-feature,
.site-footer.in-view .footer-contact {
  transition-delay: 0.36s;
}

.schedule.in-view .schedule-row:nth-of-type(2) {
  transition-delay: 0.44s;
}

.schedule.in-view .schedule-row:nth-of-type(3) {
  transition-delay: 0.52s;
}

.schedule.in-view .schedule-row:nth-of-type(4) {
  transition-delay: 0.6s;
}

.schedule.in-view .schedule-row:nth-of-type(5),
.schedule.in-view .schedule-cta,
.site-footer.in-view .footer-bottom {
  transition-delay: 0.68s;
}

@media (prefers-reduced-motion: reduce) {
  .training-band.animate-on-scroll .band-copy,
  .training-band.animate-on-scroll .feature-list > div,
  .schedule.animate-on-scroll .schedule-heading > *,
  .schedule.animate-on-scroll .schedule-days,
  .schedule.animate-on-scroll .schedule-feature,
  .schedule.animate-on-scroll .schedule-row,
  .schedule.animate-on-scroll .schedule-cta,
  .membership.animate-on-scroll > *,
  .trial.animate-on-scroll .trial-intro,
  .trial.animate-on-scroll .trial-form,
  .site-footer.animate-on-scroll .footer-brand,
  .site-footer.animate-on-scroll .footer-links,
  .site-footer.animate-on-scroll .footer-programs,
  .site-footer.animate-on-scroll .footer-contact,
  .site-footer.animate-on-scroll .footer-bottom {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Final mobile hero guardrails */
@media (max-width: 640px) {
  .site-header {
    min-height: 72px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "brand cta";
    column-gap: 10px;
    padding: 6px 12px;
  }

  .brand {
    grid-area: brand;
    min-width: 0;
    gap: 8px;
    overflow: hidden;
  }

  .brand-logo-wrap {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .brand strong {
    max-width: 150px;
    overflow: hidden;
    font-size: 0.95rem;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand small {
    margin-top: 4px;
    font-size: 0.62rem;
    white-space: nowrap;
  }

  .nav-links {
    display: none;
  }

  .lang-switcher {
    display: none;
  }

  .lang-btn {
    padding: 2px 3px;
  }

  .header-cta {
    grid-area: cta;
    min-height: 42px;
    padding: 0 10px;
    font-size: 0.68rem;
    justify-self: end;
  }

  .hero {
    min-height: auto;
    padding: 118px 18px 44px;
  }

  .hero-inner {
    display: block;
    padding-bottom: 0;
  }

  .hero-content {
    max-width: 100%;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.75rem;
    line-height: 1.25;
  }

  .hero h1 {
    max-width: 340px;
    margin-bottom: 22px;
    font-size: clamp(3.2rem, 14vw, 4.45rem);
    line-height: 1.05;
  }

  .hero h1 span {
    margin-bottom: 0.04em;
  }

  .hero-copy {
    max-width: 340px;
    font-size: 1rem;
    line-height: 1.45;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 50px;
  }

  .hero-media {
    inset: 78px 0 0 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    opacity: 1;
  }

  .hero-media::before {
    background:
      linear-gradient(90deg, rgba(2, 3, 2, 0.68) 0%, rgba(2, 3, 2, 0.36) 42%, rgba(2, 3, 2, 0.12) 100%),
      linear-gradient(180deg, rgba(2, 3, 2, 0.28), rgba(2, 3, 2, 0.06) 38%, rgba(2, 3, 2, 0.72));
  }

  .media-shade {
    background: radial-gradient(ellipse at center, rgba(2, 3, 2, 0) 0%, rgba(2, 3, 2, 0.38) 100%);
  }

  .hero-video {
    object-position: center center;
  }

  .hero-stats {
    display: none;
  }

  #chatbot-toggle {
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }
}
