/*
Theme Name:  FitCraft Child
Description: FitCraft 3.0 — India's Biggest Fitness Mastery Event. Child theme of Hello Elementor.
Author:      AF Aspire Academy / Anytime Fitness India
Template:    hello-elementor
Version:     3.0.0
Text Domain: fitcraft-child
Tags:        fitness, event, elementor, child-theme
*/

/* ============================================================
   CSS CUSTOM PROPERTIES — FITCRAFT 3.0 BRAND SYSTEM
   ============================================================ */
:root {
  /* ── Primary Brand Colors ── */
  --fc-blurple:     #6E38D5;
  --fc-violet:      #440099;
  --fc-white:       #FFFFFF;

  /* ── Accent Colors ── */
  --fc-med-purple:  #A42AF9;
  --fc-aqua:        #2ED7DE;
  --fc-red:         #EF3340;
  --fc-orange:      #FF7500;

  /* ── Background Scale (dark to lighter) ── */
  --fc-bg-deepest:  #060010;
  --fc-bg-dark:     #0A0118;
  --fc-bg-rich:     #0D0120;
  --fc-bg-section:  #120030;
  --fc-bg-violet:   #1A0044;
  --fc-bg-card:     rgba(110, 56, 213, 0.08);
  --fc-bg-card-hover: rgba(110, 56, 213, 0.18);

  /* ── Text ── */
  --fc-text-primary:   #FFFFFF;
  --fc-text-secondary: rgba(255, 255, 255, 0.78);
  --fc-text-muted:     rgba(255, 255, 255, 0.5);
  --fc-text-aqua:      #2ED7DE;
  --fc-text-blurple:   #9B6EFF;

  /* ── Gradients ── */
  --fc-grad-hero:          linear-gradient(135deg, #440099 0%, #6E38D5 50%, #2ED7DE 100%);
  --fc-grad-purple-aqua:   linear-gradient(135deg, #6E38D5 0%, #2ED7DE 100%);
  --fc-grad-purple-orange: linear-gradient(135deg, #440099 0%, #6E38D5 40%, #FF7500 100%);
  --fc-grad-blurple:       linear-gradient(135deg, #6E38D5 0%, #A42AF9 100%);
  --fc-grad-aqua-violet:   linear-gradient(135deg, #2ED7DE 0%, #440099 100%);
  --fc-grad-text:          linear-gradient(135deg, #A42AF9, #2ED7DE);

  /* ── Line Blend Pattern Backgrounds ── */
  --fc-pattern-purple-aqua:
    linear-gradient(135deg, rgba(68,0,153,0.97) 0%, rgba(110,56,213,0.92) 50%, rgba(46,215,222,0.85) 100%),
    repeating-linear-gradient(-55deg,
      transparent 0px, transparent 18px,
      rgba(255,255,255,0.04) 18px, rgba(255,255,255,0.04) 20px
    );

  --fc-pattern-purple-orange:
    linear-gradient(135deg, rgba(68,0,153,0.97) 0%, rgba(110,56,213,0.85) 50%, rgba(255,117,0,0.75) 100%),
    repeating-linear-gradient(55deg,
      transparent 0px, transparent 18px,
      rgba(255,255,255,0.04) 18px, rgba(255,255,255,0.04) 20px
    );

  /* ── Typography ── */
  --fc-font-headline: 'Montserrat', 'F37 Moon', 'Century Gothic', sans-serif;
  --fc-font-subhead:  'Montserrat', sans-serif;
  --fc-font-body:     'Century Gothic', 'AppleGothic', 'Trebuchet MS', sans-serif;
  --fc-font-mono:     'Courier New', monospace;

  /* ── Spacing ── */
  --fc-section-py:    clamp(60px, 8vw, 110px);
  --fc-container:     1200px;
  --fc-container-xl:  1400px;
  --fc-gutter:        clamp(20px, 4vw, 40px);

  /* ── Borders & Radius ── */
  --fc-radius-xs:  6px;
  --fc-radius-sm:  12px;
  --fc-radius-md:  18px;
  --fc-radius-lg:  28px;
  --fc-radius-xl:  50px;
  --fc-radius-full: 9999px;

  --fc-border-subtle:  1px solid rgba(110, 56, 213, 0.25);
  --fc-border-glow:    1px solid rgba(110, 56, 213, 0.55);
  --fc-border-aqua:    1px solid rgba(46, 215, 222, 0.4);

  /* ── Shadows & Glows ── */
  --fc-shadow-card:       0 20px 60px rgba(0, 0, 0, 0.5);
  --fc-shadow-card-hover: 0 30px 80px rgba(0, 0, 0, 0.6);
  --fc-glow-blurple:      0 0 40px rgba(110, 56, 213, 0.45);
  --fc-glow-aqua:         0 0 40px rgba(46, 215, 222, 0.45);
  --fc-glow-orange:       0 0 40px rgba(255, 117, 0, 0.4);
  --fc-glow-btn:          0 8px 30px rgba(110, 56, 213, 0.55);
  --fc-glow-btn-aqua:     0 8px 30px rgba(46, 215, 222, 0.4);

  /* ── Transitions ── */
  --fc-ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --fc-transition:  all 0.3s var(--fc-ease);
  --fc-transition-slow: all 0.6s var(--fc-ease);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--fc-bg-dark);
  color: var(--fc-text-primary);
  font-family: var(--fc-font-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--fc-transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--fc-font-headline);
  font-weight: 800;
  line-height: 1.1;
  color: var(--fc-white);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
h4 { font-size: clamp(1.2rem, 1.8vw, 1.6rem); }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }

p {
  font-family: var(--fc-font-body);
  color: var(--fc-text-secondary);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.75;
}

.fc-display-title {
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.fc-section-label {
  font-family: var(--fc-font-subhead);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fc-aqua);
}

.fc-section-heading {
  font-family: var(--fc-font-headline);
  font-weight: 900;
  margin-top: 12px;
}

.fc-gradient-text {
  background: var(--fc-grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.fc-container {
  max-width: var(--fc-container);
  margin: 0 auto;
  padding: 0 var(--fc-gutter);
}

.fc-container--xl {
  max-width: var(--fc-container-xl);
  margin: 0 auto;
  padding: 0 var(--fc-gutter);
}

.fc-section {
  padding: var(--fc-section-py) 0;
  position: relative;
  overflow: hidden;
}

.fc-section--dark       { background-color: var(--fc-bg-dark); }
.fc-section--rich       { background-color: var(--fc-bg-rich); }
.fc-section--section    { background-color: var(--fc-bg-section); }
.fc-section--violet     { background-color: var(--fc-bg-violet); }

.fc-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--fc-gutter); align-items: center; }
.fc-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--fc-gutter); }
.fc-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--fc-gutter); }
.fc-flex   { display: flex; align-items: center; }
.fc-flex-center { display: flex; align-items: center; justify-content: center; }
.fc-text-center { text-align: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.fc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--fc-font-headline);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 16px 38px;
  border-radius: var(--fc-radius-full);
  transition: var(--fc-transition);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.fc-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transition: opacity 0.25s;
  border-radius: inherit;
}
.fc-btn:hover::before { opacity: 1; }

/* Primary — Blurple */
.fc-btn--primary {
  background: var(--fc-blurple);
  color: var(--fc-white);
  box-shadow: var(--fc-glow-btn);
}
.fc-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 45px rgba(110, 56, 213, 0.7);
}

/* Aqua */
.fc-btn--aqua {
  background: transparent;
  color: var(--fc-aqua);
  border: 2px solid var(--fc-aqua);
  box-shadow: var(--fc-glow-btn-aqua);
}
.fc-btn--aqua:hover {
  background: var(--fc-aqua);
  color: var(--fc-bg-dark);
  transform: translateY(-3px);
}

/* Ghost */
.fc-btn--ghost {
  background: transparent;
  color: var(--fc-white);
  border: 2px solid rgba(255,255,255,0.35);
}
.fc-btn--ghost:hover {
  border-color: var(--fc-blurple);
  background: rgba(110,56,213,0.15);
  transform: translateY(-3px);
}

/* Orange accent */
.fc-btn--orange {
  background: var(--fc-orange);
  color: var(--fc-white);
  box-shadow: 0 8px 30px rgba(255, 117, 0, 0.45);
}
.fc-btn--orange:hover { transform: translateY(-3px); }

/* Large */
.fc-btn--lg {
  font-size: 1.1rem;
  padding: 20px 50px;
}

/* Small */
.fc-btn--sm {
  font-size: 0.85rem;
  padding: 11px 26px;
}

/* ============================================================
   SECTION DIVIDER
   ============================================================ */
.fc-divider {
  height: 2px;
  background: var(--fc-grad-purple-aqua);
  border: none;
  opacity: 0.4;
  margin: 0;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
#fc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--fc-transition);
  padding: 24px 0;
}

#fc-header.scrolled {
  background: rgba(10, 1, 24, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: var(--fc-border-subtle);
  padding: 16px 0;
}

.fc-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.fc-header__logo img {
  height: 44px;
  width: auto;
}

.fc-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.fc-nav a {
  font-family: var(--fc-font-headline);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: var(--fc-transition);
  position: relative;
}

.fc-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--fc-aqua);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--fc-ease);
}

.fc-nav a:hover { color: var(--fc-white); }
.fc-nav a:hover::after { transform: scaleX(1); }

.fc-header__cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Mobile Menu Toggle */
.fc-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.fc-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--fc-white);
  border-radius: 2px;
  transition: var(--fc-transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#fc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 100px;
}

.fc-hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--fc-bg-deepest);
  z-index: 0;
}

/* Line Blend Gradient Pattern Background */
.fc-hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(68,0,153,0.98) 0%,
      rgba(110,56,213,0.90) 45%,
      rgba(46,215,222,0.70) 100%
    );
  z-index: 1;
}

.fc-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -50deg,
      transparent 0px,
      transparent 22px,
      rgba(255,255,255,0.035) 22px,
      rgba(255,255,255,0.035) 24px
    ),
    repeating-linear-gradient(
      40deg,
      transparent 0px,
      transparent 30px,
      rgba(255,255,255,0.02) 30px,
      rgba(255,255,255,0.02) 32px
    );
  z-index: 2;
}

/* Ambient glow blobs */
.fc-hero__glow-1 {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(110,56,213,0.35) 0%, transparent 70%);
  top: -15%;
  right: -10%;
  z-index: 1;
  animation: fc-float 8s ease-in-out infinite;
}
.fc-hero__glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(46,215,222,0.25) 0%, transparent 70%);
  bottom: -10%;
  left: -5%;
  z-index: 1;
  animation: fc-float 10s ease-in-out infinite reverse;
}

.fc-hero__content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--fc-gutter);
}

.fc-hero__powered-by {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fc-font-headline);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fc-aqua);
  background: rgba(46,215,222,0.08);
  border: var(--fc-border-aqua);
  padding: 8px 20px;
  border-radius: var(--fc-radius-full);
  margin-bottom: 32px;
}

.fc-hero__title {
  font-size: clamp(4rem, 11vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin-bottom: 10px;
  text-shadow: 0 0 80px rgba(110,56,213,0.6);
}

.fc-hero__edition {
  display: block;
  font-size: 0.28em;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--fc-aqua);
  text-shadow: none;
  margin-top: 8px;
}

.fc-hero__tagline {
  font-family: var(--fc-font-headline);
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.9);
  margin: 28px 0 36px;
  text-transform: uppercase;
}

.fc-hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  font-family: var(--fc-font-body);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}

.fc-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fc-hero__meta-item svg,
.fc-hero__meta-item .fc-icon {
  color: var(--fc-aqua);
  font-size: 1rem;
}

.fc-hero__meta-sep {
  color: rgba(255,255,255,0.25);
}

/* ── Countdown Timer ── */
.fc-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 24px);
  margin: 0 auto 48px;
}

.fc-countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: var(--fc-border-glow);
  border-radius: var(--fc-radius-md);
  padding: clamp(14px, 2.5vw, 24px) clamp(18px, 3vw, 34px);
  min-width: clamp(75px, 12vw, 110px);
  position: relative;
  overflow: hidden;
}

.fc-countdown__unit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(110,56,213,0.12) 0%, transparent 100%);
}

.fc-countdown__number {
  font-family: var(--fc-font-headline);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--fc-white);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.fc-countdown__label {
  font-family: var(--fc-font-headline);
  font-size: clamp(0.6rem, 1.2vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fc-aqua);
  margin-top: 6px;
  position: relative;
  z-index: 1;
}

.fc-countdown__sep {
  font-family: var(--fc-font-headline);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--fc-blurple);
  animation: fc-blink 1s step-end infinite;
  margin-bottom: 20px;
}

.fc-hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Scroll indicator */
.fc-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  animation: fc-scroll-bounce 2s ease-in-out infinite;
}

.fc-scroll-indicator span {
  font-family: var(--fc-font-headline);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.fc-scroll-indicator__arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--fc-white);
  border-bottom: 2px solid var(--fc-white);
  transform: rotate(45deg);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#fc-about {
  background-color: var(--fc-bg-rich);
  position: relative;
}

#fc-about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--fc-blurple), transparent);
}

.fc-about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.fc-stat-card {
  background: var(--fc-bg-card);
  border: var(--fc-border-subtle);
  border-radius: var(--fc-radius-md);
  padding: 32px 28px;
  transition: var(--fc-transition);
  position: relative;
  overflow: hidden;
}

.fc-stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(110,56,213,0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.fc-stat-card:hover {
  border-color: var(--fc-blurple);
  transform: translateY(-4px);
  box-shadow: var(--fc-shadow-card);
}
.fc-stat-card:hover::before { opacity: 1; }

.fc-stat-card__number {
  font-family: var(--fc-font-headline);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--fc-white);
  display: block;
}

.fc-stat-card__number .fc-counter-suffix {
  color: var(--fc-aqua);
}

.fc-stat-card__label {
  font-family: var(--fc-font-body);
  font-size: 0.875rem;
  color: var(--fc-text-secondary);
  margin-top: 8px;
  display: block;
}

.fc-about__copy {
  padding-left: clamp(0px, 4vw, 60px);
}

.fc-about__copy p {
  margin-top: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.fc-about__edition-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,117,0,0.1);
  border: 1px solid rgba(255,117,0,0.35);
  color: var(--fc-orange);
  font-family: var(--fc-font-headline);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--fc-radius-full);
  margin-top: 28px;
}

/* ============================================================
   PAST EDITIONS (FOMO) SECTION
   ============================================================ */
#fc-past-editions {
  background-color: var(--fc-bg-section);
  position: relative;
  overflow: hidden;
}

#fc-past-editions::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent 0px, transparent 24px,
      rgba(110,56,213,0.04) 24px, rgba(110,56,213,0.04) 26px
    );
  z-index: 0;
}

.fc-past-editions__header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 56px;
}

/* Tabs */
.fc-edition-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: rgba(255,255,255,0.05);
  border: var(--fc-border-subtle);
  border-radius: var(--fc-radius-full);
  padding: 6px;
  margin: 32px auto 0;
  max-width: 360px;
  position: relative;
  z-index: 1;
}

.fc-edition-tab {
  flex: 1;
  font-family: var(--fc-font-headline);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.55);
  padding: 12px 24px;
  border-radius: var(--fc-radius-full);
  cursor: pointer;
  transition: var(--fc-transition);
  text-align: center;
  border: none;
  background: transparent;
}

.fc-edition-tab.active,
.fc-edition-tab:hover {
  background: var(--fc-blurple);
  color: var(--fc-white);
  box-shadow: var(--fc-glow-blurple);
}

.fc-edition-panel {
  display: none;
  position: relative;
  z-index: 1;
}
.fc-edition-panel.active { display: block; }

.fc-edition-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.fc-edition-intro__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.fc-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--fc-font-headline);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--fc-radius-full);
}

.fc-tag--blurple  { background: rgba(110,56,213,0.2); color: #B89EFF; border: 1px solid rgba(110,56,213,0.35); }
.fc-tag--aqua     { background: rgba(46,215,222,0.12); color: var(--fc-aqua); border: var(--fc-border-aqua); }
.fc-tag--orange   { background: rgba(255,117,0,0.12); color: var(--fc-orange); border: 1px solid rgba(255,117,0,0.35); }
.fc-tag--violet   { background: rgba(68,0,153,0.3); color: #BFA0FF; border: 1px solid rgba(164,42,249,0.35); }

.fc-edition-intro__sessions {
  margin-top: 24px;
}

.fc-session-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.fc-session-item:last-child { border-bottom: none; }

.fc-session-item__dot {
  width: 8px;
  height: 8px;
  background: var(--fc-aqua);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
  box-shadow: 0 0 8px rgba(46,215,222,0.8);
}

.fc-session-item__text {
  font-family: var(--fc-font-body);
  font-size: 0.95rem;
  color: var(--fc-text-secondary);
}

/* Gallery Grid */
.fc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

.fc-gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  background: rgba(110,56,213,0.12);
  border-radius: var(--fc-radius-sm);
  overflow: hidden;
  border: var(--fc-border-subtle);
  transition: var(--fc-transition);
}

.fc-gallery-item:hover { transform: scale(1.02); border-color: var(--fc-blurple); }

.fc-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fc-gallery-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(68,0,153,0.3), rgba(110,56,213,0.2));
  color: rgba(255,255,255,0.35);
  font-family: var(--fc-font-headline);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 12px;
}

.fc-gallery-placeholder__icon {
  font-size: 2rem;
  opacity: 0.4;
}

/* Larger featured items in gallery */
.fc-gallery-item--large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

/* Testimonial Carousel */
.fc-testimonials {
  position: relative;
  overflow: hidden;
  background: rgba(110,56,213,0.08);
  border: var(--fc-border-subtle);
  border-radius: var(--fc-radius-lg);
  padding: 40px 48px;
  margin-bottom: 48px;
}

.fc-testimonial-slide {
  display: none;
  animation: fc-fade-in 0.5s ease;
}
.fc-testimonial-slide.active { display: block; }

.fc-testimonial__quote {
  font-family: var(--fc-font-headline);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--fc-white);
  margin-bottom: 20px;
  position: relative;
}

.fc-testimonial__quote::before {
  content: '\201C';
  font-size: 4em;
  color: var(--fc-blurple);
  opacity: 0.4;
  position: absolute;
  top: -20px;
  left: -10px;
  line-height: 1;
  font-family: Georgia, serif;
}

.fc-testimonial__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.fc-testimonial__author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--fc-grad-blurple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fc-font-headline);
  font-weight: 700;
  font-size: 1rem;
  color: var(--fc-white);
  flex-shrink: 0;
}

.fc-testimonial__name {
  font-family: var(--fc-font-headline);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fc-white);
}
.fc-testimonial__role {
  font-size: 0.8rem;
  color: var(--fc-text-muted);
}

.fc-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.fc-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--fc-transition);
  border: none;
}
.fc-carousel-dot.active {
  background: var(--fc-aqua);
  box-shadow: 0 0 8px rgba(46,215,222,0.8);
  width: 24px;
  border-radius: 4px;
}

/* Stat Bar */
.fc-stat-bar {
  background: var(--fc-blurple);
  background: linear-gradient(90deg, var(--fc-violet), var(--fc-blurple), var(--fc-med-purple));
  padding: 28px 0;
  overflow: hidden;
  position: relative;
}

.fc-stat-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.04) 0px,
    rgba(255,255,255,0.04) 1px,
    transparent 1px,
    transparent 60px
  );
}

.fc-stat-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 60px);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.fc-stat-bar__item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.fc-stat-bar__sep {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.25);
}

.fc-stat-bar__number {
  font-family: var(--fc-font-headline);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--fc-white);
  line-height: 1;
}

.fc-stat-bar__label {
  font-family: var(--fc-font-headline);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}

/* FOMO Pull Quote */
.fc-fomo-quote {
  text-align: center;
  padding: 60px 0 20px;
  position: relative;
  z-index: 1;
}

.fc-fomo-quote__text {
  font-family: var(--fc-font-headline);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--fc-aqua) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fc-fomo-quote__sub {
  font-family: var(--fc-font-body);
  font-size: 1rem;
  color: var(--fc-text-muted);
  margin-top: 16px;
}

/* ============================================================
   WHAT TO EXPECT SECTION
   ============================================================ */
#fc-what-to-expect {
  background-color: var(--fc-bg-dark);
}

.fc-expect-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.fc-expect-card {
  border-radius: var(--fc-radius-lg);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: var(--fc-transition);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fc-expect-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  filter: brightness(1.1);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: inherit;
}

.fc-expect-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--fc-shadow-card-hover);
}
.fc-expect-card:hover::before { opacity: 1; }

.fc-expect-card--training {
  background: linear-gradient(145deg, rgba(110,56,213,0.25) 0%, rgba(68,0,153,0.35) 100%);
  border: 1px solid rgba(110,56,213,0.45);
}
.fc-expect-card--nutrition {
  background: linear-gradient(145deg, rgba(46,215,222,0.15) 0%, rgba(46,215,222,0.08) 100%);
  border: var(--fc-border-aqua);
}
.fc-expect-card--recovery {
  background: linear-gradient(145deg, rgba(164,42,249,0.2) 0%, rgba(110,56,213,0.15) 100%);
  border: 1px solid rgba(164,42,249,0.4);
}

.fc-expect-card__icon {
  font-size: 3rem;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.fc-expect-card__title {
  font-family: var(--fc-font-headline);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--fc-white);
  position: relative;
  z-index: 1;
}

.fc-expect-card__body {
  font-family: var(--fc-font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--fc-text-secondary);
  position: relative;
  z-index: 1;
}

.fc-expect-card__badge {
  display: inline-block;
  font-family: var(--fc-font-headline);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--fc-radius-full);
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.fc-expect-card--training .fc-expect-card__badge {
  background: rgba(110,56,213,0.3);
  color: #B89EFF;
  border: 1px solid rgba(110,56,213,0.4);
}
.fc-expect-card--nutrition .fc-expect-card__badge {
  background: rgba(46,215,222,0.15);
  color: var(--fc-aqua);
  border: var(--fc-border-aqua);
}
.fc-expect-card--recovery .fc-expect-card__badge {
  background: rgba(164,42,249,0.2);
  color: #D599FF;
  border: 1px solid rgba(164,42,249,0.4);
}

/* Highlights */
.fc-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: var(--fc-border-subtle);
}

.fc-highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 24px 16px;
  background: var(--fc-bg-card);
  border: var(--fc-border-subtle);
  border-radius: var(--fc-radius-md);
  transition: var(--fc-transition);
}

.fc-highlight-item:hover {
  border-color: var(--fc-aqua);
  background: rgba(46,215,222,0.06);
  transform: translateY(-4px);
}

.fc-highlight-item__icon { font-size: 2rem; }
.fc-highlight-item__label {
  font-family: var(--fc-font-headline);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--fc-white);
}

/* ============================================================
   SPEAKERS / MYSTERY SECTION
   ============================================================ */
#fc-speakers {
  background-color: var(--fc-bg-section);
  position: relative;
  overflow: hidden;
}

#fc-speakers::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(110,56,213,0.2) 0%, transparent 70%);
  z-index: 0;
}

.fc-speakers__header { position: relative; z-index: 1; text-align: center; margin-bottom: 56px; }

.fc-speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.fc-speaker-card {
  aspect-ratio: 3/4;
  background: rgba(110,56,213,0.12);
  border: var(--fc-border-subtle);
  border-radius: var(--fc-radius-md);
  overflow: hidden;
  position: relative;
  transition: var(--fc-transition);
}

.fc-speaker-card:hover { border-color: var(--fc-blurple); transform: translateY(-4px); }

.fc-speaker-card__silhouette {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
    rgba(68,0,153,0.5) 0%,
    rgba(110,56,213,0.7) 50%,
    rgba(10,1,24,0.9) 100%
  );
  filter: blur(2px);
  position: absolute;
  inset: 0;
}

.fc-speaker-card__avatar {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fc-speaker-card__avatar-inner {
  width: 70px;
  height: 70px;
  background: var(--fc-grad-blurple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  opacity: 0.4;
  filter: blur(3px);
}

.fc-speaker-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,1,24,0.97) 100%);
  z-index: 2;
}

.fc-speaker-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 18px;
  z-index: 3;
  text-align: center;
}

.fc-speaker-card__tba {
  display: inline-block;
  font-family: var(--fc-font-headline);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fc-blurple);
  background: rgba(110,56,213,0.2);
  border: 1px solid rgba(110,56,213,0.4);
  padding: 4px 12px;
  border-radius: var(--fc-radius-full);
  margin-bottom: 8px;
}

.fc-speaker-card__name {
  font-family: var(--fc-font-headline);
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
}

/* Speakers Email Capture */
.fc-speakers__notify {
  position: relative;
  z-index: 1;
  margin-top: 56px;
  background: rgba(110,56,213,0.1);
  border: var(--fc-border-glow);
  border-radius: var(--fc-radius-lg);
  padding: 44px 48px;
  text-align: center;
}

.fc-speakers__notify h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin-bottom: 10px;
}

.fc-speakers__notify p {
  max-width: 480px;
  margin: 0 auto 28px;
}

.fc-email-capture {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.fc-email-capture__input {
  flex: 1;
  min-width: 260px;
  background: rgba(255,255,255,0.06);
  border: var(--fc-border-glow);
  border-radius: var(--fc-radius-full);
  padding: 15px 24px;
  color: var(--fc-white);
  font-family: var(--fc-font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--fc-transition);
}

.fc-email-capture__input::placeholder { color: rgba(255,255,255,0.35); }
.fc-email-capture__input:focus { border-color: var(--fc-blurple); box-shadow: var(--fc-glow-blurple); }

/* ============================================================
   SPONSORS / BRAND PARTNERS
   ============================================================ */
#fc-sponsors {
  background-color: var(--fc-bg-dark);
  padding: 80px 0;
}

.fc-sponsors__header { text-align: center; margin-bottom: 48px; }

/* Marquee */
.fc-marquee-wrapper {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  margin-bottom: 48px;
}

.fc-marquee {
  display: flex;
  gap: 30px;
  animation: fc-marquee 25s linear infinite;
  width: max-content;
}

.fc-marquee:hover { animation-play-state: paused; }

.fc-marquee__track {
  display: flex;
  gap: 30px;
}

.fc-sponsor-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: var(--fc-border-subtle);
  border-radius: var(--fc-radius-sm);
  padding: 20px 36px;
  height: 80px;
  min-width: 160px;
  transition: var(--fc-transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.fc-sponsor-logo:hover {
  border-color: var(--fc-blurple);
  background: rgba(110,56,213,0.08);
}

.fc-sponsor-logo img {
  max-height: 40px;
  width: auto;
  filter: grayscale(100%) brightness(0.7);
  transition: var(--fc-transition);
}
.fc-sponsor-logo:hover img { filter: none; }

.fc-sponsor-logo__placeholder {
  font-family: var(--fc-font-headline);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

.fc-sponsors__cta { text-align: center; }

/* ============================================================
   REGISTRATION SECTION
   ============================================================ */
#fc-registration {
  background-color: var(--fc-bg-section);
  position: relative;
  overflow: hidden;
}

#fc-registration::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--fc-pattern-purple-aqua);
  opacity: 0.15;
  z-index: 0;
}

.fc-registration__header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 56px;
}

/* Ticket Tiers */
.fc-ticket-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.fc-ticket-card {
  background: rgba(255,255,255,0.04);
  border: var(--fc-border-subtle);
  border-radius: var(--fc-radius-lg);
  padding: 36px 28px;
  transition: var(--fc-transition);
  position: relative;
  overflow: hidden;
}

.fc-ticket-card--featured {
  background: rgba(110,56,213,0.15);
  border-color: var(--fc-blurple);
  transform: scale(1.04);
}

.fc-ticket-card--featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 16px;
  right: -28px;
  background: var(--fc-blurple);
  color: var(--fc-white);
  font-family: var(--fc-font-headline);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 5px 40px;
  transform: rotate(45deg);
}

.fc-ticket-card:hover {
  border-color: var(--fc-blurple);
  box-shadow: var(--fc-shadow-card);
  transform: translateY(-4px);
}
.fc-ticket-card--featured:hover { transform: scale(1.04) translateY(-4px); }

.fc-ticket-card__tier {
  font-family: var(--fc-font-headline);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fc-aqua);
  margin-bottom: 12px;
}

.fc-ticket-card__price {
  font-family: var(--fc-font-headline);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--fc-white);
  margin-bottom: 6px;
}

.fc-ticket-card__price-note {
  font-size: 0.8rem;
  color: var(--fc-text-muted);
  margin-bottom: 24px;
}

.fc-ticket-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.fc-ticket-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fc-font-body);
  font-size: 0.875rem;
  color: var(--fc-text-secondary);
}

.fc-ticket-feature__check {
  width: 18px;
  height: 18px;
  background: rgba(46,215,222,0.15);
  border: var(--fc-border-aqua);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--fc-aqua);
  flex-shrink: 0;
}

/* Urgency + Seat Counter */
.fc-urgency-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  background: rgba(239,51,64,0.1);
  border: 1px solid rgba(239,51,64,0.3);
  border-radius: var(--fc-radius-md);
  padding: 18px 24px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.fc-urgency-bar__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fc-urgency-dot {
  width: 10px;
  height: 10px;
  background: var(--fc-red);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--fc-red);
  animation: fc-pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

.fc-urgency-text {
  font-family: var(--fc-font-headline);
  font-size: 0.9rem;
  font-weight: 700;
  color: #FF7A7A;
}

.fc-seat-counter {
  font-family: var(--fc-font-headline);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--fc-text-muted);
}

.fc-seat-counter__number {
  color: var(--fc-red);
  font-size: 1.3rem;
}

/* Registration Form */
.fc-reg-form-wrap {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.03);
  border: var(--fc-border-subtle);
  border-radius: var(--fc-radius-xl);
  padding: clamp(32px, 4vw, 56px);
}

.fc-reg-form__title {
  font-family: var(--fc-font-headline);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 32px;
  text-align: center;
}

.fc-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fc-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fc-form-field--full { grid-column: 1 / -1; }

.fc-form-label {
  font-family: var(--fc-font-headline);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.fc-form-input,
.fc-form-select {
  background: rgba(255,255,255,0.05);
  border: var(--fc-border-subtle);
  border-radius: var(--fc-radius-sm);
  padding: 14px 18px;
  color: var(--fc-white);
  font-family: var(--fc-font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--fc-transition);
  appearance: none;
  -webkit-appearance: none;
}

.fc-form-input::placeholder { color: rgba(255,255,255,0.28); }
.fc-form-input:focus,
.fc-form-select:focus {
  border-color: var(--fc-blurple);
  background: rgba(110,56,213,0.08);
  box-shadow: 0 0 0 3px rgba(110,56,213,0.2);
}

.fc-form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23FFFFFF' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.fc-form-select option { background: var(--fc-bg-dark); }

/* Workshop selection toggles */
.fc-workshop-selector {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.fc-workshop-option {
  display: none;
}
.fc-workshop-option + label {
  flex: 1;
  min-width: 140px;
  padding: 14px 20px;
  border-radius: var(--fc-radius-md);
  border: var(--fc-border-subtle);
  background: rgba(255,255,255,0.04);
  font-family: var(--fc-font-headline);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--fc-transition);
  text-align: center;
}
.fc-workshop-option:checked + label {
  background: rgba(110,56,213,0.25);
  border-color: var(--fc-blurple);
  color: var(--fc-white);
  box-shadow: var(--fc-glow-blurple);
}
.fc-workshop-option + label:hover {
  border-color: var(--fc-blurple);
}

/* Trust Badges */
.fc-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.fc-trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fc-font-body);
  font-size: 0.8rem;
  color: var(--fc-text-muted);
}

.fc-trust-badge__icon { font-size: 1.1rem; color: var(--fc-aqua); }

/* ============================================================
   FAQ SECTION
   ============================================================ */
#fc-faq {
  background-color: var(--fc-violet);
  position: relative;
  overflow: hidden;
}

#fc-faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -60deg,
    transparent 0px, transparent 30px,
    rgba(255,255,255,0.02) 30px, rgba(255,255,255,0.02) 31px
  );
}

.fc-faq__header {
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}

.fc-faq-list {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fc-faq-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--fc-radius-md);
  overflow: hidden;
  transition: var(--fc-transition);
}

.fc-faq-item.open {
  background: rgba(110,56,213,0.15);
  border-color: rgba(110,56,213,0.45);
}

.fc-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}

.fc-faq-question__text {
  font-family: var(--fc-font-headline);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fc-white);
  flex: 1;
}

.fc-faq-question__icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--fc-transition);
  font-size: 1.2rem;
  color: var(--fc-blurple);
}

.fc-faq-item.open .fc-faq-question__icon {
  background: var(--fc-blurple);
  color: var(--fc-white);
  transform: rotate(45deg);
}

.fc-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--fc-ease);
}

.fc-faq-item.open .fc-faq-answer { max-height: 400px; }

.fc-faq-answer__inner {
  padding: 0 28px 24px;
  font-family: var(--fc-font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--fc-text-secondary);
}

/* ============================================================
   FOOTER
   ============================================================ */
#fc-footer {
  background-color: var(--fc-violet);
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}

#fc-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(68,0,153,0.4) 0%, rgba(10,1,24,0.8) 100%);
  z-index: 0;
}

.fc-footer__main {
  position: relative;
  z-index: 1;
  padding: 70px 0 50px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.fc-footer__brand {}

.fc-footer__logo {
  height: 50px;
  width: auto;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.fc-footer__tagline {
  font-family: var(--fc-font-headline);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.fc-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fc-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fc-font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: var(--fc-transition);
}
.fc-footer__contact-item:hover { color: var(--fc-aqua); }

.fc-footer__col-title {
  font-family: var(--fc-font-headline);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fc-aqua);
  margin-bottom: 20px;
}

.fc-footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fc-footer__link {
  font-family: var(--fc-font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: var(--fc-transition);
}
.fc-footer__link:hover { color: var(--fc-white); padding-left: 4px; }

.fc-social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.fc-social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--fc-transition);
  color: rgba(255,255,255,0.55);
}

.fc-social-link:hover {
  background: var(--fc-blurple);
  border-color: var(--fc-blurple);
  color: var(--fc-white);
  transform: translateY(-3px);
}

.fc-footer__bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.fc-footer__copyright {
  font-family: var(--fc-font-body);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.fc-footer__legal-links {
  display: flex;
  gap: 20px;
}

.fc-footer__legal-link {
  font-family: var(--fc-font-body);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  transition: var(--fc-transition);
}
.fc-footer__legal-link:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   ANIMATIONS & KEYFRAMES
   ============================================================ */
@keyframes fc-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

@keyframes fc-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

@keyframes fc-pulse {
  0%, 100% { box-shadow: 0 0 8px var(--fc-red); opacity: 1; }
  50%       { box-shadow: 0 0 20px var(--fc-red); opacity: 0.7; }
}

@keyframes fc-fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fc-slide-up {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fc-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes fc-scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

@keyframes fc-shimmer {
  0%   { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

@keyframes fc-glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(110,56,213,0.4); }
  50%       { box-shadow: 0 0 50px rgba(110,56,213,0.8); }
}

/* Scroll-triggered fade up class */
.fc-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--fc-ease), transform 0.7s var(--fc-ease);
}
.fc-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.fc-reveal--delay-1 { transition-delay: 0.1s; }
.fc-reveal--delay-2 { transition-delay: 0.2s; }
.fc-reveal--delay-3 { transition-delay: 0.3s; }
.fc-reveal--delay-4 { transition-delay: 0.4s; }
.fc-reveal--delay-5 { transition-delay: 0.5s; }

/* WhatsApp floating widget */
.fc-whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  transition: var(--fc-transition);
  animation: fc-glow-pulse 3s ease-in-out infinite;
}
.fc-whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(37,211,102,0.7);
}
.fc-whatsapp-float svg { width: 30px; height: 30px; fill: white; }

/* ============================================================
   ELEMENTOR COMPATIBILITY OVERRIDES
   ============================================================ */
.elementor-page #fc-header { position: fixed; }
.elementor-section { z-index: auto; }
.elementor-widget-heading h1,
.elementor-widget-heading h2,
.elementor-widget-heading h3 {
  font-family: var(--fc-font-headline);
}
.elementor-widget-text-editor p {
  font-family: var(--fc-font-body);
  color: var(--fc-text-secondary);
}

/* Elementor global colors */
:root {
  --e-global-color-primary:   #6E38D5;
  --e-global-color-secondary: #440099;
  --e-global-color-accent:    #2ED7DE;
  --e-global-color-text:      #FFFFFF;
  --e-global-typography-primary-font-family:   'Montserrat';
  --e-global-typography-secondary-font-family: 'Montserrat';
  --e-global-typography-text-font-family:      'Century Gothic', 'Trebuchet MS', sans-serif;
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .fc-grid-2     { grid-template-columns: 1fr; }
  .fc-grid-3     { grid-template-columns: 1fr 1fr; }
  .fc-grid-4     { grid-template-columns: 1fr 1fr; }
  .fc-about__copy { padding-left: 0; }
  .fc-about__stats { grid-template-columns: repeat(2, 1fr); }
  .fc-expect-cards { grid-template-columns: 1fr 1fr; }
  .fc-ticket-tiers { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .fc-ticket-card--featured { transform: none; }
  .fc-ticket-card--featured:hover { transform: translateY(-4px); }
  .fc-speakers-grid { grid-template-columns: repeat(3, 1fr); }
  .fc-highlights { grid-template-columns: repeat(2, 1fr); }
  .fc-footer__main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .fc-edition-intro { grid-template-columns: 1fr; }
  .fc-gallery-grid { grid-template-columns: 1fr 1fr; }
  .fc-gallery-item--large { grid-column: span 1; }
  .fc-form-grid { grid-template-columns: 1fr; }
  .fc-form-field--full { grid-column: 1; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --fc-section-py: clamp(50px, 10vw, 70px);
    --fc-gutter: 20px;
  }

  /* Nav */
  .fc-nav { display: none; flex-direction: column; width: 100%; }
  .fc-nav.open { display: flex; }
  .fc-hamburger { display: flex; }
  .fc-header__inner { flex-wrap: wrap; }
  .fc-header__cta { display: none; }

  #fc-header.scrolled {
    padding: 14px 0;
  }

  /* Hero */
  .fc-hero__title { font-size: clamp(3rem, 14vw, 5rem); }
  .fc-hero__ctas { gap: 12px; }
  .fc-btn--lg { padding: 16px 32px; font-size: 1rem; }
  .fc-countdown { gap: 8px; }
  .fc-countdown__unit { min-width: 68px; padding: 12px 14px; }
  .fc-countdown__sep { font-size: 1.2rem; }

  /* Grids → single column */
  .fc-grid-2, .fc-grid-3, .fc-grid-4 { grid-template-columns: 1fr; }
  .fc-expect-cards { grid-template-columns: 1fr; }
  .fc-speakers-grid { grid-template-columns: repeat(2, 1fr); }
  .fc-highlights { grid-template-columns: repeat(2, 1fr); }
  .fc-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .fc-gallery-item--large { grid-column: span 2; }

  /* Testimonials */
  .fc-testimonials { padding: 28px 24px; }

  /* Stat bar */
  .fc-stat-bar__inner { gap: 16px; }
  .fc-stat-bar__sep { display: none; }

  /* Registration */
  .fc-reg-form-wrap { padding: 28px 20px; }
  .fc-ticket-tiers { grid-template-columns: 1fr; }

  /* Footer */
  .fc-footer__main { grid-template-columns: 1fr; gap: 32px; }
  .fc-footer__bottom { flex-direction: column; text-align: center; }
  .fc-footer__legal-links { flex-wrap: wrap; justify-content: center; gap: 12px; }

  /* Speakers email capture */
  .fc-speakers__notify { padding: 28px 20px; }
  .fc-email-capture { flex-direction: column; }
  .fc-email-capture__input { min-width: unset; width: 100%; }

  /* FOMO quote */
  .fc-fomo-quote__text { font-size: clamp(1.8rem, 7vw, 2.8rem); }

  /* WhatsApp */
  .fc-whatsapp-float { bottom: 16px; right: 16px; width: 50px; height: 50px; }

  /* Trust badges */
  .fc-trust-badges { flex-direction: column; gap: 12px; }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.fc-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.fc-accent-blurple  { color: var(--fc-blurple); }
.fc-accent-aqua     { color: var(--fc-aqua); }
.fc-accent-orange   { color: var(--fc-orange); }
.fc-accent-red      { color: var(--fc-red); }

.fc-mb-sm  { margin-bottom: 16px; }
.fc-mb-md  { margin-bottom: 32px; }
.fc-mb-lg  { margin-bottom: 56px; }

.fc-mt-sm  { margin-top: 16px; }
.fc-mt-md  { margin-top: 32px; }
.fc-mt-lg  { margin-top: 56px; }
