/* ═══════════════════════════════════════════════
   F.C PRO — Stylesheet
   ═══════════════════════════════════════════════ */

/* ─── CSS VARIABLES ─── */
:root {
  --purple:       #7640a4;
  --purple-light: #9b5fd4;
  --purple-dark:  #4a2468;
  --purple-glow:  rgba(118, 64, 164, 0.4);
  --black:        #060808;
  --black-2:      #0d0d0f;
  --black-3:      #161618;
  --white:        #ffffff;
  --white-dim:    rgba(255, 255, 255, 0.7);
  --white-faint:  rgba(255, 255, 255, 0.1);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Manrope', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background:    var(--black);
  color:         var(--white);
  font-family:   var(--font-body);
  overflow-x:    hidden;
  line-height:   1.6;
}

/* ─── NOISE TEXTURE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar            { width: 4px; }
::-webkit-scrollbar-track      { background: var(--black); }
::-webkit-scrollbar-thumb      { background: var(--purple); border-radius: 2px; }

/* ═══════════════════════════════════════════════
   UTILITY
   ═══════════════════════════════════════════════ */
.container {
  max-width: 1200px;
  margin:    0 auto;
  padding:   0 24px;
}

.section-label {
  font-family:    var(--font-body);
  font-size:      11px;
  font-weight:    700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color:          var(--purple-light);
  margin-bottom:  16px;
}

.section-title {
  font-family:    var(--font-display);
  font-size:      clamp(36px, 6vw, 72px);
  line-height:    0.95;
  letter-spacing: 0.02em;
  color:          var(--white);
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity:    0;
  transform:  translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity:   1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   KEYFRAMES
   ═══════════════════════════════════════════════ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}
@keyframes scrollLine {
  0%      { transform: scaleY(0); transform-origin: top; }
  50%     { transform: scaleY(1); transform-origin: top; }
  50.01%  { transform: scaleY(1); transform-origin: bottom; }
  100%    { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════ */
nav {
  position:   fixed;
  top: 0; left: 0; right: 0;
  z-index:    100;
  padding:    20px 0;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
nav.scrolled {
  background:      rgba(6, 8, 8, 0.92);
  backdrop-filter: blur(20px);
  padding:         14px 0;
  border-bottom:   1px solid rgba(118, 64, 164, 0.2);
}

.nav-inner {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
}

.nav-logo {
  display:         flex;
  align-items:     center;
  gap:             12px;
  text-decoration: none;
}
.nav-logo img        { width: 44px; height: 44px; }
.nav-logo-text {
  font-family:    var(--font-display);
  font-size:      24px;
  letter-spacing: 0.1em;
  color:          var(--white);
}

.nav-links {
  display:    flex;
  gap:        36px;
  list-style: none;
}
.nav-links a {
  color:          var(--white-dim);
  text-decoration: none;
  font-size:      13px;
  font-weight:    600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:     color 0.3s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background:  var(--purple) !important;
  color:       var(--white) !important;
  padding:     10px 24px;
  border-radius: 2px;
  font-weight: 700 !important;
  transition:  background 0.3s, transform 0.2s !important;
}
.nav-cta:hover {
  background: var(--purple-light) !important;
  transform:  translateY(-1px);
}

.nav-burger {
  display:         none;
  background:      none;
  border:          none;
  cursor:          pointer;
  flex-direction:  column;
  gap:             5px;
  padding:         4px;
}
.nav-burger span {
  display:    block;
  width:      24px;
  height:     2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display:         none;
  position:        fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background:      var(--black);
  z-index:         200;
  flex-direction:  column;
  align-items:     center;
  justify-content: center;
  gap:             40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family:    var(--font-display);
  font-size:      40px;
  letter-spacing: 0.08em;
  color:          var(--white);
  text-decoration: none;
  text-transform: uppercase;
  transition:     color 0.3s;
}
.mobile-menu a:hover { color: var(--purple-light); }

.mobile-close {
  position:   absolute;
  top: 24px; right: 24px;
  background: none;
  border:     none;
  color:      var(--white);
  font-size:  32px;
  cursor:     pointer;
}

/* ═══════════════════════════════════════════════
   FREE TRIAL BANNER
   ═══════════════════════════════════════════════ */
.free-trial-banner {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 50%, var(--purple-light) 100%);
  padding:    20px 0;
  position:   relative;
  overflow:   hidden;
}
.free-trial-banner::before {
  content:  '';
  position: absolute;
  inset:    0;
  background: repeating-linear-gradient(
    45deg,
    transparent,          transparent 20px,
    rgba(255,255,255,0.03) 20px, rgba(255,255,255,0.03) 40px
  );
}

.banner-inner {
  display:         flex;
  align-items:     center;
  justify-content: center;
  gap:             20px;
  position:        relative;
  z-index:         1;
  flex-wrap:       wrap;
  text-align:      center;
}
.banner-icon { font-size: 24px; }
.banner-text {
  font-family:    var(--font-display);
  font-size:      clamp(20px, 4vw, 30px);
  letter-spacing: 0.08em;
  color:          var(--white);
}
.banner-text span {
  color:       rgba(255, 255, 255, 0.6);
  font-size:   0.75em;
  margin-left: 8px;
}
.banner-cta {
  background:      rgba(255,255,255,0.15);
  border:          1px solid rgba(255,255,255,0.3);
  color:           var(--white);
  padding:         10px 24px;
  border-radius:   2px;
  font-size:       13px;
  font-weight:     800;
  letter-spacing:  0.1em;
  text-transform:  uppercase;
  text-decoration: none;
  cursor:          pointer;
  transition:      background 0.3s;
}
.banner-cta:hover { background: rgba(255,255,255,0.25); }

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  position:   relative;
  display:    flex;
  align-items: center;
  overflow:   hidden;
}

.hero-bg {
  position: absolute;
  inset:    0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(118,64,164,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(118,64,164,0.15) 0%, transparent 60%),
    var(--black);
}

.hero-grid {
  position:         absolute;
  inset:            0;
  opacity:          0.06;
  background-image:
    linear-gradient(rgba(118,64,164,0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(118,64,164,0.8) 1px, transparent 1px);
  background-size:  60px 60px;
  mask-image:       radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.hero-content {
  position:   relative;
  z-index:    2;
  padding:    140px 0 80px;
  max-width:  760px;
}

.hero-badge {
  display:       inline-flex;
  align-items:   center;
  gap:           10px;
  background:    rgba(118,64,164,0.2);
  border:        1px solid rgba(118,64,164,0.5);
  padding:       8px 20px;
  border-radius: 2px;
  margin-bottom: 32px;
  animation:     fadeInDown 0.8s ease 0.2s both;
}
.hero-badge-dot {
  width:         8px;
  height:        8px;
  border-radius: 50%;
  background:    var(--purple-light);
  animation:     pulse 2s ease infinite;
}
.hero-badge span {
  font-size:      12px;
  font-weight:    700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color:          var(--purple-light);
}

.hero-title {
  font-family:    var(--font-display);
  font-size:      clamp(64px, 11vw, 130px);
  line-height:    0.88;
  letter-spacing: 0.02em;
  color:          var(--white);
  margin-bottom:  12px;
  animation:      fadeInUp 0.9s ease 0.35s both;
}
.hero-title span { color: var(--purple-light); }

.hero-subtitle {
  font-size:      clamp(18px, 3vw, 26px);
  font-weight:    300;
  color:          var(--white-dim);
  margin-bottom:  20px;
  letter-spacing: 0.04em;
  animation:      fadeInUp 0.9s ease 0.5s both;
}

.hero-desc {
  font-size:     16px;
  color:         rgba(255, 255, 255, 0.55);
  max-width:     520px;
  margin-bottom: 48px;
  font-weight:   400;
  animation:     fadeInUp 0.9s ease 0.65s both;
}

.hero-actions {
  display:   flex;
  gap:       16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.8s both;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display:         inline-flex;
  align-items:     center;
  gap:             10px;
  background:      var(--purple);
  color:           var(--white);
  padding:         18px 40px;
  font-family:     var(--font-body);
  font-size:       14px;
  font-weight:     800;
  letter-spacing:  0.1em;
  text-transform:  uppercase;
  text-decoration: none;
  border:          none;
  cursor:          pointer;
  border-radius:   2px;
  transition:      all 0.3s;
  position:        relative;
  overflow:        hidden;
}
.btn-primary::before {
  content:    '';
  position:   absolute;
  inset:      0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  opacity:    0;
  transition: opacity 0.3s;
}
.btn-primary:hover {
  background:  var(--purple-light);
  transform:   translateY(-2px);
  box-shadow:  0 12px 40px rgba(118, 64, 164, 0.5);
}
.btn-primary:hover::before { opacity: 1; }

.btn-secondary {
  display:         inline-flex;
  align-items:     center;
  gap:             10px;
  background:      transparent;
  color:           var(--white);
  padding:         17px 36px;
  font-family:     var(--font-body);
  font-size:       14px;
  font-weight:     700;
  letter-spacing:  0.08em;
  text-transform:  uppercase;
  text-decoration: none;
  border:          1px solid rgba(255,255,255,0.25);
  border-radius:   2px;
  transition:      all 0.3s;
  cursor:          pointer;
}
.btn-secondary:hover {
  border-color: var(--purple-light);
  color:        var(--purple-light);
}

/* ─── HERO SCROLL INDICATOR ─── */
.hero-scroll {
  position:       absolute;
  bottom:         40px;
  left:           50%;
  transform:      translateX(-50%);
  display:        flex;
  flex-direction: column;
  align-items:    center;
  gap:            8px;
  color:          rgba(255, 255, 255, 0.3);
  font-size:      11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation:      fadeIn 1s ease 1.5s both;
}
.hero-scroll-line {
  width:      1px;
  height:     48px;
  background: linear-gradient(to bottom, rgba(118,64,164,0.8), transparent);
  animation:  scrollLine 2s ease infinite;
}

/* ─── HERO STATS ─── */
.hero-stats {
  position:  absolute;
  right:     0;
  bottom:    80px;
  z-index:   2;
  display:   flex;
  flex-direction: column;
  gap:       2px;
  animation: fadeInRight 1s ease 1s both;
}
.stat-item {
  display:         flex;
  align-items:     center;
  gap:             16px;
  padding:         16px 24px;
  background:      rgba(255, 255, 255, 0.04);
  border-left:     2px solid var(--purple);
  backdrop-filter: blur(8px);
}
.stat-num {
  font-family: var(--font-display);
  font-size:   36px;
  color:       var(--purple-light);
  line-height: 1;
}
.stat-label {
  font-size:      11px;
  color:          var(--white-dim);
  font-weight:    600;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════ */
#about {
  padding:  120px 0;
  position: relative;
}

.about-grid {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   80px;
  align-items:           center;
}

.about-visual { position: relative; }

.about-visual-inner {
  width:           100%;
  aspect-ratio:    1;
  background:      var(--black-3);
  border:          1px solid rgba(118,64,164,0.2);
  display:         flex;
  align-items:     center;
  justify-content: center;
  position:        relative;
  overflow:        hidden;
}
.about-visual-inner svg { width: 70%; height: 70%; opacity: 0.9; }
.about-visual-inner::before {
  content:    '';
  position:   absolute;
  inset:      -50%;
  background: radial-gradient(circle at 50% 50%, rgba(118,64,164,0.3) 0%, transparent 60%);
  animation:  rotate 8s linear infinite;
}

.about-corner {
  position:     absolute;
  width:        24px;
  height:       24px;
  border-color: var(--purple);
}
.about-corner.tl { top: -2px; left: -2px;  border-top: 2px solid;    border-left: 2px solid; }
.about-corner.tr { top: -2px; right: -2px; border-top: 2px solid;    border-right: 2px solid; }
.about-corner.bl { bottom: -2px; left: -2px;  border-bottom: 2px solid; border-left: 2px solid; }
.about-corner.br { bottom: -2px; right: -2px; border-bottom: 2px solid; border-right: 2px solid; }

.about-tag {
  position:       absolute;
  bottom:         -20px;
  right:          -20px;
  background:     var(--purple);
  padding:        16px 20px;
  font-family:    var(--font-display);
  font-size:      16px;
  letter-spacing: 0.1em;
}

.about-text {
  font-size:     16px;
  color:         rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
  line-height:   1.8;
}
.about-text strong { color: var(--white); }

.age-pills {
  display:    flex;
  gap:        12px;
  flex-wrap:  wrap;
  margin-top: 32px;
}
.age-pill {
  display:       flex;
  align-items:   center;
  gap:           10px;
  padding:       12px 20px;
  background:    var(--black-3);
  border:        1px solid rgba(118,64,164,0.3);
  border-radius: 2px;
}
.age-pill-icon { font-size: 20px; }
.age-pill-text { font-size: 13px; font-weight: 700; color: var(--white-dim); }
.age-pill-text strong { display: block; color: var(--white); font-size: 15px; }

/* ═══════════════════════════════════════════════
   SYSTEM (Training Programme)
   ═══════════════════════════════════════════════ */
#system {
  padding:   120px 0;
  background: var(--black-2);
  position:  relative;
  overflow:  hidden;
}
#system::before {
  content:    '';
  position:   absolute;
  top: -200px; right: -200px;
  width:      600px;
  height:     600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(118,64,164,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.system-header { text-align: center; margin-bottom: 80px; }
.system-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   2px;
}

.system-card {
  background: var(--black-3);
  padding:    48px 36px;
  position:   relative;
  overflow:   hidden;
  transition: background 0.3s;
}
.system-card:hover { background: #1a1a1d; }
.system-card::before {
  content:    '';
  position:   absolute;
  top: 0; left: 0; right: 0;
  height:     2px;
  background: var(--purple);
  transform:  scaleX(0);
  transition: transform 0.4s ease;
}
.system-card:hover::before { transform: scaleX(1); }

.system-num {
  font-family:   var(--font-display);
  font-size:     80px;
  color:         rgba(118,64,164,0.12);
  line-height:   1;
  margin-bottom: 16px;
  display:       block;
}
.system-icon {
  font-size:     32px;
  margin-bottom: 20px;
  display:       block;
}
.system-card h3 {
  font-family:    var(--font-display);
  font-size:      26px;
  letter-spacing: 0.05em;
  color:          var(--white);
  margin-bottom:  16px;
}
.system-card p {
  font-size:   14px;
  color:       rgba(255,255,255,0.55);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════
   PHILOSOPHY
   ═══════════════════════════════════════════════ */
#philosophy { padding: 120px 0; }

.philosophy-grid {
  display:               grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap:                   80px;
  align-items:           center;
}

.philosophy-quote {
  font-family:    var(--font-display);
  font-size:      clamp(28px, 4vw, 48px);
  line-height:    1.15;
  color:          var(--white);
  margin-bottom:  32px;
  position:       relative;
  padding-left:   32px;
}
.philosophy-quote::before {
  content:    '';
  position:   absolute;
  left: 0; top: 0; bottom: 0;
  width:      3px;
  background: linear-gradient(to bottom, var(--purple), var(--purple-light));
}

.philosophy-values { display: flex; flex-direction: column; gap: 16px; }
.value-row {
  display:       flex;
  align-items:   center;
  gap:           16px;
  padding:       16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.value-row:last-child { border-bottom: none; }
.value-num {
  font-family:    var(--font-display);
  font-size:      14px;
  color:          var(--purple-light);
  min-width:      28px;
}
.value-label { font-size: 15px; font-weight: 600; color: var(--white-dim); }

.philosophy-visual {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--black-3) 100%);
  padding:    60px 40px;
  border:     1px solid rgba(118,64,164,0.2);
  position:   relative;
  overflow:   hidden;
}

.philosophy-visual-items { display: flex; flex-direction: column; gap: 24px; }
.pv-item { display: flex; align-items: flex-start; gap: 16px; }
.pv-icon { font-size: 24px; min-width: 32px; }
.pv-text { font-size: 14px; color: var(--white-dim); line-height: 1.7; }
.pv-text strong { color: var(--white); display: block; margin-bottom: 4px; font-size: 15px; }

/* ═══════════════════════════════════════════════
   TRAINER
   ═══════════════════════════════════════════════ */
#trainer {
  padding:    120px 0;
  background: var(--black-2);
}

.trainer-grid {
  display:               grid;
  grid-template-columns: 0.7fr 1fr;
  gap:                   80px;
  align-items:           center;
}

.trainer-photo-wrap { position: relative; }

.trainer-photo {
  width:          100%;
  aspect-ratio:   1;
  object-fit:     cover;
  object-position: top center;
  filter:         grayscale(15%) contrast(1.05);
  display:        block;
}

.trainer-photo-frame {
  position: relative;
  border:   1px solid rgba(118,64,164,0.3);
}
.trainer-photo-frame::after {
  content:        '';
  position:       absolute;
  inset:          12px;
  border:         1px solid rgba(118,64,164,0.15);
  pointer-events: none;
}

.trainer-accent {
  position:       absolute;
  bottom:         -16px;
  left:           -16px;
  background:     var(--purple);
  padding:        12px 20px;
  font-family:    var(--font-display);
  font-size:      14px;
  letter-spacing: 0.15em;
  z-index:        2;
}

.trainer-name {
  font-family:    var(--font-display);
  font-size:      clamp(36px, 5vw, 60px);
  line-height:    0.9;
  letter-spacing: 0.02em;
  color:          var(--white);
  margin-bottom:  8px;
}
.trainer-role {
  font-size:      13px;
  font-weight:    700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color:          var(--purple-light);
  margin-bottom:  32px;
}
.trainer-bio {
  font-size:     16px;
  color:         rgba(255, 255, 255, 0.6);
  line-height:   1.8;
  margin-bottom: 40px;
}

.trainer-creds {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   2px;
  margin-top:            8px;
}
.cred-item {
  padding:    20px 16px;
  background: var(--black-3);
  text-align: center;
}
.cred-val {
  font-family: var(--font-display);
  font-size:   32px;
  color:       var(--purple-light);
  display:     block;
  line-height: 1;
}
.cred-label {
  font-size:      11px;
  color:          var(--white-dim);
  font-weight:    600;
  letter-spacing: 0.05em;
  margin-top:     6px;
}

/* ═══════════════════════════════════════════════
   VIDEOS
   ═══════════════════════════════════════════════ */
#videos {
  padding:  120px 0;
  overflow: hidden;
}

.video-header { text-align: center; margin-bottom: 60px; }

.video-carousel { position: relative; }
.video-track-wrap { overflow: hidden; }
.video-track {
  display:    flex;
  gap:        20px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-card {
  min-width:  calc(33.333% - 14px);
  background: var(--black-3);
  border:     1px solid rgba(118,64,164,0.15);
  overflow:   hidden;
  cursor:     pointer;
  position:   relative;
  transition: border-color 0.3s, transform 0.3s;
}
.video-card:hover {
  border-color: rgba(118,64,164,0.5);
  transform:    translateY(-4px);
}

.video-thumb {
  aspect-ratio:    16 / 9;
  background:      linear-gradient(135deg, #1a0d2e, var(--purple-dark));
  display:         flex;
  align-items:     center;
  justify-content: center;
  position:        relative;
  overflow:        hidden;
}
.video-thumb-img {
  width:    100%;
  height:   100%;
  object-fit: cover;
  position:   absolute;
  inset:      0;
  opacity:    0.6;
}
.video-play {
  width:         60px;
  height:        60px;
  background:    rgba(118,64,164,0.8);
  border-radius: 50%;
  display:       flex;
  align-items:   center;
  justify-content: center;
  position:      relative;
  z-index:       2;
  transition:    all 0.3s;
  border:        2px solid rgba(255,255,255,0.2);
}
.video-card:hover .video-play {
  background: var(--purple);
  transform:  scale(1.1);
}
.video-play svg { width: 22px; height: 22px; margin-left: 4px; }

.video-info { padding: 20px; }
.video-info h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.video-info p  { font-size: 12px; color: var(--white-dim); }

.video-controls {
  display:         flex;
  align-items:     center;
  justify-content: center;
  gap:             16px;
  margin-top:      40px;
}

.vid-btn {
  width:           48px;
  height:          48px;
  background:      var(--black-3);
  border:          1px solid rgba(118,64,164,0.3);
  border-radius:   50%;
  display:         flex;
  align-items:     center;
  justify-content: center;
  cursor:          pointer;
  transition:      all 0.3s;
  color:           var(--white);
}
.vid-btn:hover { background: var(--purple); border-color: var(--purple); }

.vid-dots { display: flex; gap: 8px; }
.vid-dot {
  width:         6px;
  height:        6px;
  border-radius: 50%;
  background:    rgba(255, 255, 255, 0.2);
  transition:    all 0.3s;
  cursor:        pointer;
}
.vid-dot.active {
  background:    var(--purple-light);
  width:         24px;
  border-radius: 3px;
}

/* ─── VIDEO MODAL ─── */
.modal-overlay {
  display:         none;
  position:        fixed;
  inset:           0;
  z-index:         500;
  background:      rgba(0, 0, 0, 0.92);
  align-items:     center;
  justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal-inner {
  width:     90%;
  max-width: 900px;
  position:  relative;
}
.modal-close {
  position:   absolute;
  top:        -48px;
  right:      0;
  background: none;
  border:     none;
  color:      var(--white);
  font-size:  28px;
  cursor:     pointer;
}
.modal-redirect-box {
  background: var(--black-3);
  padding:    60px;
  text-align: center;
  border:     1px solid rgba(118,64,164,0.3);
}
.modal-redirect-box .modal-emoji { font-size: 64px; margin-bottom: 20px; }
.modal-redirect-box p {
  font-size:     18px;
  color:         var(--white-dim);
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════════════
   INSTAGRAM
   ═══════════════════════════════════════════════ */
#instagram {
  padding:    120px 0;
  background: var(--black-2);
}

.insta-header { text-align: center; margin-bottom: 60px; }
.insta-link {
  display:         inline-flex;
  align-items:     center;
  gap:             8px;
  color:           var(--purple-light);
  font-size:       15px;
  font-weight:     600;
  text-decoration: none;
  margin-top:      12px;
  transition:      color 0.3s;
}
.insta-link:hover { color: var(--white); }

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

.insta-card {
  aspect-ratio:   1;
  background:     var(--black-3);
  position:       relative;
  overflow:       hidden;
  cursor:         pointer;
  border:         1px solid rgba(118,64,164,0.1);
  transition:     border-color 0.3s;
}
.insta-card:hover             { border-color: rgba(118,64,164,0.5); }
.insta-card:hover .insta-overlay { opacity: 1; }

.insta-bg {
  width:           100%;
  height:          100%;
  display:         flex;
  align-items:     center;
  justify-content: center;
  font-size:       40px;
}

.insta-overlay {
  position:        absolute;
  inset:           0;
  background:      rgba(118, 64, 164, 0.7);
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  justify-content: center;
  gap:             8px;
  opacity:         0;
  transition:      opacity 0.3s;
}
.insta-overlay-icon { font-size: 32px; }
.insta-overlay-text { font-size: 12px; font-weight: 700; color: var(--white); }

.insta-caption {
  font-size:   11px;
  color:       rgba(255, 255, 255, 0.5);
  padding:     12px;
  position:    absolute;
  bottom: 0; left: 0; right: 0;
  background:  linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.insta-follow-banner {
  margin-top:      32px;
  padding:         32px;
  background:      var(--black-3);
  border:          1px solid rgba(118,64,164,0.2);
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  gap:             24px;
  flex-wrap:       wrap;
}
.insta-follow-text h3 {
  font-family:    var(--font-display);
  font-size:      28px;
  letter-spacing: 0.05em;
  color:          var(--white);
  margin-bottom:  4px;
}
.insta-follow-text p { font-size: 14px; color: var(--white-dim); }

/* ═══════════════════════════════════════════════
   TOURNAMENTS
   ═══════════════════════════════════════════════ */
#tournaments { padding: 120px 0; }

.tournament-content {
  max-width:  760px;
  margin:     0 auto;
  text-align: center;
}
.tournament-content .section-title { margin-bottom: 24px; }
.tournament-content p {
  font-size:     17px;
  color:         rgba(255, 255, 255, 0.6);
  line-height:   1.8;
  margin-bottom: 48px;
}

.tournament-icons {
  display:         flex;
  gap:             0;
  justify-content: center;
  flex-wrap:       wrap;
}
.t-icon {
  padding:        32px 40px;
  background:     var(--black-3);
  border:         1px solid rgba(118,64,164,0.1);
  text-align:     center;
  min-width:      160px;
  transition:     background 0.3s, border-color 0.3s;
}
.t-icon:hover { background: #1a1a1d; border-color: rgba(118,64,164,0.4); }
.t-icon-emoji { font-size: 36px; display: block; margin-bottom: 12px; }
.t-icon-label {
  font-size:      13px;
  font-weight:    700;
  color:          var(--white-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════ */
#faq {
  padding:    120px 0;
  background: var(--black-2);
}

.faq-header  { text-align: center; margin-bottom: 60px; }
.faq-list    { max-width: 760px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow:      hidden;
}

.faq-q {
  width:           100%;
  background:      none;
  border:          none;
  cursor:          pointer;
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  padding:         28px 0;
  text-align:      left;
  color:           var(--white);
  font-family:     var(--font-body);
  font-size:       16px;
  font-weight:     700;
  transition:      color 0.3s;
}
.faq-q:hover { color: var(--purple-light); }

.faq-q-icon {
  width:           32px;
  height:          32px;
  background:      var(--black-3);
  border:          1px solid rgba(118,64,164,0.3);
  border-radius:   50%;
  display:         flex;
  align-items:     center;
  justify-content: center;
  flex-shrink:     0;
  font-size:       16px;
  color:           var(--purple-light);
  transition:      all 0.3s;
}
.faq-item.open .faq-q-icon {
  background:  var(--purple);
  border-color: var(--purple);
  transform:   rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow:   hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p {
  padding:     0 0 28px;
  font-size:   15px;
  color:       rgba(255,255,255,0.55);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════
   SIGN-UP FORM
   ═══════════════════════════════════════════════ */
#signup {
  padding:  120px 0;
  position: relative;
  overflow: hidden;
}
#signup::before {
  content:        '';
  position:       absolute;
  top: -300px; left: -300px;
  width:          800px;
  height:         800px;
  border-radius:  50%;
  background:     radial-gradient(circle, rgba(118,64,164,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.form-grid {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   80px;
  align-items:           start;
}

.form-info .section-title { margin-bottom: 24px; }
.form-info-text {
  font-size:     16px;
  color:         rgba(255,255,255,0.55);
  line-height:   1.8;
  margin-bottom: 40px;
}

.form-features { display: flex; flex-direction: column; gap: 16px; }
.form-feat {
  display:     flex;
  align-items: center;
  gap:         16px;
  font-size:   14px;
  color:       var(--white-dim);
}
.form-feat-icon {
  width:           36px;
  height:          36px;
  background:      rgba(118,64,164,0.2);
  border:          1px solid rgba(118,64,164,0.4);
  border-radius:   50%;
  display:         flex;
  align-items:     center;
  justify-content: center;
  font-size:       16px;
  flex-shrink:     0;
}

.signup-form {
  background: var(--black-3);
  border:     1px solid rgba(118,64,164,0.2);
  padding:    48px 40px;
}

.form-row {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   16px;
}
.form-group {
  display:        flex;
  flex-direction: column;
  gap:            8px;
  margin-bottom:  20px;
}
.form-group.full { grid-column: 1 / -1; }

label {
  font-size:      12px;
  font-weight:    700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color:          rgba(255,255,255,0.5);
}

input,
select,
textarea {
  background:    rgba(255,255,255,0.05);
  border:        1px solid rgba(118,64,164,0.25);
  color:         var(--white);
  padding:       14px 18px;
  font-family:   var(--font-body);
  font-size:     15px;
  outline:       none;
  border-radius: 2px;
  transition:    border-color 0.3s, background 0.3s;
  width:         100%;
}
input::placeholder,
textarea::placeholder { color: rgba(255,255,255,0.25); }
input:focus,
select:focus,
textarea:focus {
  border-color: var(--purple-light);
  background:   rgba(118,64,164,0.08);
}
input.error,
select.error,
textarea.error { border-color: #e05555; }
select option  { background: var(--black-3); }
textarea       { resize: vertical; min-height: 100px; }

.field-err {
  font-size:     12px;
  color:         #e05555;
  margin-top:    -12px;
  margin-bottom: 8px;
  display:       none;
}
.field-err.show { display: block; }

.submit-btn {
  width:           100%;
  padding:         18px;
  background:      var(--purple);
  border:          none;
  color:           var(--white);
  font-family:     var(--font-body);
  font-size:       15px;
  font-weight:     800;
  letter-spacing:  0.12em;
  text-transform:  uppercase;
  cursor:          pointer;
  border-radius:   2px;
  transition:      all 0.3s;
  display:         flex;
  align-items:     center;
  justify-content: center;
  gap:             10px;
}
.submit-btn:hover {
  background: var(--purple-light);
  transform:  translateY(-2px);
  box-shadow: 0 12px 40px rgba(118,64,164,0.4);
}
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-success { display: none; text-align: center; padding: 40px; }
.form-success.show { display: block; }
.success-icon  { font-size: 60px; margin-bottom: 20px; }
.success-title {
  font-family:    var(--font-display);
  font-size:      36px;
  letter-spacing: 0.05em;
  color:          var(--white);
  margin-bottom:  12px;
}
.success-text { font-size: 15px; color: var(--white-dim); }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
footer {
  background:   var(--black-2);
  border-top:   1px solid rgba(118,64,164,0.15);
  padding:      60px 0 32px;
}

.footer-grid {
  display:               grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap:                   60px;
  margin-bottom:         48px;
}
.footer-brand .nav-logo {
  display:         flex;
  align-items:     center;
  gap:             12px;
  text-decoration: none;
  margin-bottom:   16px;
}
.footer-brand p {
  font-size:   13px;
  color:       rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width:   280px;
}

.footer-col h4 {
  font-size:      12px;
  font-weight:    800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color:          rgba(255,255,255,0.4);
  margin-bottom:  20px;
}
.footer-col ul {
  list-style:     none;
  display:        flex;
  flex-direction: column;
  gap:            10px;
}
.footer-col ul li a {
  font-size:       14px;
  color:           rgba(255,255,255,0.6);
  text-decoration: none;
  transition:      color 0.3s;
}
.footer-col ul li a:hover { color: var(--purple-light); }

.footer-bottom {
  border-top:      1px solid rgba(255,255,255,0.06);
  padding-top:     28px;
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  flex-wrap:       wrap;
  gap:             16px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }

.social-links { display: flex; gap: 12px; }
.social-link {
  width:           36px;
  height:          36px;
  background:      rgba(118,64,164,0.2);
  border:          1px solid rgba(118,64,164,0.3);
  border-radius:   50%;
  display:         flex;
  align-items:     center;
  justify-content: center;
  text-decoration: none;
  transition:      all 0.3s;
  font-size:       14px;
}
.social-link:hover { background: var(--purple); border-color: var(--purple); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid,
  .philosophy-grid,
  .trainer-grid      { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats        { position: static; flex-direction: row; flex-wrap: wrap; margin-top: 48px; }
  .system-grid       { grid-template-columns: 1fr 1fr; }
  .trainer-photo     { max-width: 400px; }
  .form-grid         { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links           { display: none; }
  .nav-burger          { display: flex; }
  .nav-cta-desktop     { display: none; }
  .hero-title          { font-size: 60px; }
  .system-grid         { grid-template-columns: 1fr; }
  .insta-grid          { grid-template-columns: repeat(2, 1fr); }
  .video-card          { min-width: calc(80% - 10px); }
  .form-row            { grid-template-columns: 1fr; }
  .trainer-creds       { grid-template-columns: repeat(2, 1fr); }
  .footer-grid         { grid-template-columns: 1fr; gap: 40px; }
  .tournament-icons    { flex-direction: column; align-items: center; }
  .t-icon              { width: 100%; max-width: 280px; }
  .signup-form         { padding: 32px 24px; }
  .hero-actions        { flex-direction: column; }
  .btn-primary,
  .btn-secondary       { width: 100%; justify-content: center; }
  .stat-item           { flex: 1; min-width: 140px; }
  .philosophy-grid     { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title  { font-size: 48px; }
  .insta-grid  { grid-template-columns: repeat(2, 1fr); }
  .age-pills   { flex-direction: column; }
}
