:root {
  --navy: #020818;
  --navy2: #050f2e;
  --navy3: #071035;
  --purple: #160d3d;
  --pink: #f400ba;
  --pink2: #ff4da6;
  --cyan: #00f5ff;
  --cyan2: #00c8d4;
  --violet: #7b2fff;
  --gold: #ffd700;
  --white: #f0f4ff;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(0, 245, 255, 0.15);
  --glow-pink: 0 0 20px rgba(255, 0, 128, 0.5), 0 0 40px rgba(255, 0, 128, 0.2);
  --glow-cyan: 0 0 20px rgba(0, 245, 255, 0.5), 0 0 40px rgba(0, 245, 255, 0.2);
  --glow-violet: 0 0 20px rgba(123, 47, 255, 0.5);
}

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

html {
  scroll-behavior: smooth;
}

body {
  /* background: var(--navy); */
  background: #0d0534;
  color: var(--white);
  font-family: "Exo 2", sans-serif;
  overflow-x: hidden;
  cursor: default;
  background-image:
    radial-linear-gradient(rgba(0, 0, 0, 0), rgba(152, 29, 235, 0.06)),
    repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 39px,
      color(xyz-d65 0.369 0.594 0.858 / 0.039) 39px,
      color(xyz-d65 0.369 0.594 0.858 / 0.039) 40px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 39px,
      color(xyz-d65 0.587 0.287 0.477 / 0.039) 39px,
      color(xyz-d65 0.587 0.287 0.477 / 0.039) 40px
    );
}

/* ─── ANIMATED BACKGROUND ─── */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.bg-grid {
  background-image:
    linear-gradient(rgba(0, 245, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  width: 100%;
  height: 100%;
  animation: gridDrift 20s linear infinite;
}
@keyframes gridDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 50px 50px;
  }
}
.circuit-lines {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 15% 30%,
      rgba(123, 47, 255, 0.12) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 80% at 85% 70%,
      rgba(255, 0, 128, 0.1) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 50% at 50% 10%,
      rgba(0, 245, 255, 0.08) 0%,
      transparent 60%
    );
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: orbFloat 8s ease-in-out infinite alternate;
}
.orb-1 {
  width: 300px;
  height: 300px;
  background: rgba(123, 47, 255, 0.3);
  top: 10%;
  left: -5%;
  animation-duration: 9s;
}
.orb-2 {
  width: 200px;
  height: 200px;
  background: rgba(255, 0, 128, 0.25);
  bottom: 20%;
  right: -3%;
  animation-duration: 7s;
  animation-delay: -3s;
}
.orb-3 {
  width: 150px;
  height: 150px;
  background: rgba(0, 245, 255, 0.2);
  top: 60%;
  left: 20%;
  animation-duration: 11s;
  animation-delay: -5s;
}
@keyframes orbFloat {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-40px) scale(1.1);
  }
}

/* ─── LAYOUT ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgb(255 255 255 / 5%);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 245, 255, 0.1);
  transition: background 0.3s;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  width: 100%;
  max-width: 240px;
}

.logo-badge {
  background: linear-gradient(135deg, var(--violet), var(--pink));
  border-radius: 8px;
  padding: 6px 10px;
  font-family: "Orbitron", monospace;
  font-size: 10px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  box-shadow: var(--glow-violet);
}
.logo-text {
  font-family: "Orbitron", monospace;
  font-size: 18px;
  font-weight: 900;
  color: var(--cyan);
  letter-spacing: 2px;
  text-shadow: var(--glow-cyan);
}
.logo-sub {
  font-size: 9px;
  color: var(--pink);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(240, 244, 255, 0.7);
  text-decoration: none;
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width 0.3s;
}
.nav-links a:hover {
  color: var(--cyan);
}
.nav-links a:hover::after {
  width: 100%;
}
.btn-nav {
  background: transparent;
  border: 2px solid var(--pink);
  color: var(--pink);
  padding: 10px 22px;
  font-family: "Orbitron", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-nav:hover {
  background: var(--pink);
  color: #fff;
  box-shadow: var(--glow-pink);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  padding-top: 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-bottom: -12rem;
}
.hero-3d-floor {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 245, 255, 0.02) 100%
  );
  transform: perspective(600px) rotateX(25deg);
  transform-origin: bottom center;
  background-image:
    linear-gradient(rgba(0, 245, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 255, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;

  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 245, 255, 0.02) 100%
  );
  transform: perspective(600px) rotateX(25deg);
  transform-origin: bottom center;
  background-image:
    linear-gradient(rgba(0, 245, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 255, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 0px 0 80px;
  width: 100%;
}
.hero-left {
  position: relative;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 245, 255, 0.08);
  border: 1px solid rgba(0, 245, 255, 0.2);
  border-radius: 2px;
  padding: 6px 14px;
  font-family: "Rajdhani", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}
.hero-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--cyan);
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.hero-eyebrow {
  font-family: "Rajdhani", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: rgba(240, 244, 255, 0.6);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hero-title-open {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}
.hero-title-main {
  font-family: "Orbitron", monospace;
  font-size: clamp(64px, 9vw, 110px);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 16px;
  background: linear-gradient(
    135deg,
    var(--pink) 0%,
    #ff6ec7 40%,
    var(--pink2) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 30px rgba(255, 0, 128, 0.6));
  letter-spacing: 4px;
  animation: titleGlow 3s ease-in-out infinite alternate;
}
@keyframes titleGlow {
  from {
    filter: drop-shadow(0 0 20px rgba(255, 0, 128, 0.5));
  }
  to {
    filter: drop-shadow(0 0 50px rgba(255, 0, 128, 0.9));
  }
}
.hero-subtitle {
  font-family: "Exo 2", sans-serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.hero-location-tag {
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 28px;
  text-shadow: var(--glow-cyan);
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.meta-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(0, 245, 255, 0.08);
  border: 1px solid rgba(0, 245, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.meta-text {
  line-height: 1.3;
}
.meta-label {
  font-family: "Rajdhani", sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--cyan);
  text-transform: uppercase;
}
.meta-value {
  font-family: "Exo 2", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--pink), #cc0066);
  color: #fff;
  padding: 18px 40px;
  font-family: "Orbitron", monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  box-shadow:
    var(--glow-pink),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 40px rgba(255, 0, 128, 0.7),
    0 8px 30px rgba(0, 0, 0, 0.4);
}
.btn-cta:hover::before {
  opacity: 1;
}
.btn-cta .arrow {
  font-size: 18px;
  transition: transform 0.3s;
}
.btn-cta:hover .arrow {
  transform: translateX(4px);
}
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo-wrap {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.hero-photo-wrap img {
  width: 188%;
  /* max-width: 480px; */
  filter: drop-shadow(0 0 40px rgba(123, 47, 255, 0.5));
  animation: float 6s ease-in-out infinite;
  margin-left: -3rem;
}
.hero-photo-bg {
  position: absolute;
  inset: -20px;
  background: radial-gradient(
    ellipse,
    rgba(123, 47, 255, 0.4) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: pulseBg 4s ease-in-out infinite;
}
@keyframes pulseBg {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}
.hero-vr-image {
  width: 90%;
  max-width: 460px;
  position: relative;
  z-index: 2;
  border-radius: 20px;
  filter: drop-shadow(0 0 40px rgba(123, 47, 255, 0.5));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
.hero-badge {
  position: absolute;
  right: 0;
  top: 20%;
  background: rgba(5, 15, 46, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 245, 255, 0.2);
  border-radius: 12px;
  padding: 20px 24px;
  z-index: 3;
}
.hero-badge-tagline {
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(240, 244, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.hero-badge-words {
  font-family: "Orbitron", monospace;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
}
.badge-cyan {
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
}
.badge-white {
  color: var(--white);
}

/* ─── STATS ─── */
#stats {
  padding: 0 0 60px;
  position: relative;
  z-index: 1;
}
.stats-band {
  background: #ffffff10;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 245, 255, 0.15);
  border-radius: 12px;
  padding: 32px 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 245, 255, 0.03),
    transparent
  );
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  border-right: 1px solid rgba(0, 245, 255, 0.1);
}
.stat-item:first-child {
  padding-left: 0;
}
.stat-item:last-child {
  border-right: none;
}
.stat-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: rgba(0, 245, 255, 0.08);
  border: 1px solid rgba(0, 245, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.stat-value {
  font-family: "Orbitron", monospace;
  font-size: 28px;
  font-weight: 900;
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
  line-height: 1;
}
.stat-label {
  font-family: "Rajdhani", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(240, 244, 255, 0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}
.stat-free {
  color: var(--pink);
  text-shadow: var(--glow-pink);
}
.stat-free-label {
  color: rgba(240, 244, 255, 0.6);
  font-size: 11px;
  margin-top: 2px;
}

/* ─── MAIN SECTION ─── */
#main-content {
  padding: 40px 0 40px;
  position: relative;
  z-index: 1;
}
.main-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}

/* ─── WHAT YOU'LL FIND ─── */
.section-label {
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(240, 244, 255, 0.5);
  margin-bottom: 6px;
}
.section-title {
  font-family: "Orbitron", monospace;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 32px;
}
.title-accent {
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
}
.topics {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.topic-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 16px 18px;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.topic-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--cyan), var(--violet));
  opacity: 0;
  transition: opacity 0.3s;
}
.topic-card:hover {
  border-color: rgba(0, 245, 255, 0.35);
  transform: translateX(4px);
  background: rgba(0, 245, 255, 0.05);
}
.topic-card:hover::before {
  opacity: 1;
}
.topic-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: rgba(0, 245, 255, 0.08);
  border: 1px solid rgba(0, 245, 255, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.topic-name {
  font-family: "Rajdhani", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.topic-desc {
  font-size: 12px;
  color: rgba(240, 244, 255, 0.5);
  margin-top: 2px;
}

/* ─── FORM ─── */
.form-panel {
  background: rgba(5, 15, 46, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 245, 255, 0.15);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.form-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--violet), var(--pink), var(--cyan));
}
.form-title {
  font-family: "Orbitron", monospace;
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  color: var(--white);
  margin-bottom: 6px;
}
.form-subtitle {
  text-align: center;
  color: rgba(240, 244, 255, 0.5);
  font-size: 13px;
  margin-bottom: 32px;
}
/* Steps */
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
}
.step {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 6px;
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Orbitron", monospace;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s;
}
.step.active .step-num {
  background: var(--pink);
  color: #fff;
  box-shadow: var(--glow-pink);
}
.step.done .step-num {
  background: var(--cyan);
  color: var(--navy);
}
.step.pending .step-num {
  background: rgba(240, 244, 255, 0.06);
  border: 1px solid rgba(240, 244, 255, 0.15);
  color: rgba(240, 244, 255, 0.4);
}
.step-label {
  font-family: "Rajdhani", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.step.active .step-label {
  color: var(--pink);
}
.step.done .step-label {
  color: var(--cyan);
}
.step.pending .step-label {
  color: rgba(240, 244, 255, 0.3);
}
.step-line {
  width: 80px;
  height: 1px;
  background: rgba(240, 244, 255, 0.1);
  margin: 0 8px;
  margin-bottom: 22px;
  position: relative;
}
.step-line.active {
  background: linear-gradient(90deg, var(--pink), var(--violet));
}
/* Form fields */
.form-section-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(0, 245, 255, 0.15);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 0;
}
.form-group.full {
  grid-column: span 2;
}
.form-label {
  font-family: "Rajdhani", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(240, 244, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 4px;
}
.req {
  color: var(--pink);
}
.form-input,
.form-select {
  background: rgba(2, 8, 24, 0.8);
  border: 1px solid rgba(0, 245, 255, 0.15);
  border-radius: 6px;
  padding: 12px 16px;
  color: var(--white);
  font-family: "Exo 2", sans-serif;
  font-size: 14px;
  outline: none;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  width: 100%;
}
.form-input::placeholder {
  color: rgba(240, 244, 255, 0.25);
}
.form-input:focus,
.form-select:focus {
  border-color: rgba(0, 245, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 245, 255, 0.08);
}
.form-select {
  appearance: none;
  cursor: pointer;
  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='%2300f5ff' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.form-select option {
  background: var(--navy2);
}
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 20px 0;
  display: none !important;
}
.custom-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(0, 245, 255, 0.3);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  margin-top: 2px;
  transition: all 0.2s;
}
.custom-check.checked {
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 8px rgba(0, 245, 255, 0.4);
}
.custom-check.checked::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
}
.checkbox-label {
  font-size: 13px;
  color: rgba(240, 244, 255, 0.6);
  line-height: 1.4;
  cursor: pointer;
}
.btn-submit {
  width: 100%;
  padding: 18px;
  margin-top: 24px;
  background: linear-gradient(135deg, var(--pink), #cc0066);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: "Orbitron", monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  box-shadow: var(--glow-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 50px rgba(255, 0, 128, 0.8),
    0 8px 30px rgba(0, 0, 0, 0.4);
}
.btn-submit:hover::before {
  opacity: 1;
}
.form-security {
  text-align: center;
  font-size: 12px;
  color: rgba(240, 244, 255, 0.35);
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ─── BENEFITS ─── */
#benefits {
  padding: 0 0 80px 0;
  position: relative;
  z-index: 1;
}
.benefits-title {
  text-align: center;
  margin-bottom: 80px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(0, 245, 255, 0.05),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.benefit-card:hover {
  border-color: rgba(0, 245, 255, 0.3);
  transform: translateY(-4px);
}
.benefit-card:hover::before {
  opacity: 1;
}
.benefit-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}
.benefit-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.3;
}

/* ─── FOOTER ─── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(0, 245, 255, 0.1);
  padding: 40px 0 24px;
  background: rgb(255 255 255 / 5%);
  backdrop-filter: blur(3px);
}
.footer-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 32px;
}
.footer-logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.footer-logo-section img {
  width: 100%;
  max-width: 200px;
}
.footer-logo {
  font-family: "Orbitron", monospace;
  font-size: 20px;
  font-weight: 900;
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
  margin-bottom: 4px;
}
.footer-logo-sub {
  font-size: 10px;
  color: var(--pink);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.footer-col-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(240, 244, 255, 0.4);
  margin-bottom: 16px;
}
.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.partner-logos img {
  width: 100%;
}
.partner-badge {
  background: rgba(240, 244, 255, 0.06);
  border: 1px solid rgba(240, 244, 255, 0.1);
  border-radius: 6px;
  padding: 8px 14px;
  font-family: "Rajdhani", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(240, 244, 255, 0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.2s;
}
.partner-badge:hover {
  border-color: rgba(0, 245, 255, 0.3);
  color: var(--cyan);
}
.footer-bottom {
  border-top: 1px solid rgba(240, 244, 255, 0.06);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(240, 244, 255, 0.3);
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(240, 244, 255, 0.05);
  border: 1px solid rgba(240, 244, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s;
}
.social-link:hover {
  border-color: rgba(0, 245, 255, 0.4);
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
}

/* ─── TOAST ─── */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  background: var(--navy2);
  border: 1px solid var(--cyan);
  border-radius: 10px;
  padding: 16px 24px;
  box-shadow: var(--glow-cyan);
  font-family: "Rajdhani", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: rgba(2, 8, 24, 0.98);
    backdrop-filter: blur(16px);
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 245, 255, 0.1);
    z-index: 99;
  }
  .nav-links.open li a {
    display: block;
    padding: 14px 28px;
    font-size: 15px;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .hero-right {
    order: -1;
  }
  .hero-meta {
    justify-content: center;
  }
  .hero-badge {
    right: 10px;
    top: 5%;
    padding: 14px 16px;
  }
  .hero-badge-words {
    font-size: 16px;
  }
  .main-grid {
    grid-template-columns: 1fr;
  }
  .stats-band {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(0, 245, 255, 0.1);
    padding: 0 0 20px;
  }
  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-group.full {
    grid-column: span 1;
  }
  .step-line {
    width: 50px;
  }
}
@media (max-width: 480px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .form-panel {
    padding: 24px 20px;
  }
  .hero-title-main {
    font-size: 56px;
  }
  .hero-badge {
    display: none;
  }
  .toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
}

/* ─── PROGRAMAÇÃO ─── */
#programacao {
  padding: 40px 0 60px;
  position: relative;
  z-index: 1;
}
.schedule-header {
  text-align: center;
  margin-bottom: 56px;
}
.schedule-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
}
.schedule-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0;
  position: relative;
}
.schedule-item::before {
  content: "";
  position: absolute;
  left: 119px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(0, 245, 255, 0.3),
    rgba(123, 47, 255, 0.2)
  );
}
.schedule-item:last-child::before {
  bottom: 50%;
}
.schedule-time {
  padding: 28px 24px 28px 0;
  text-align: right;
  font-family: "Orbitron", monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1.3;
  position: relative;
}
.schedule-dot {
  position: absolute;
  right: -6px;
  top: 34px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  background: var(--navy);
  box-shadow: 0 0 8px var(--cyan);
  z-index: 1;
}
.schedule-dot.pink {
  border-color: var(--pink);
  box-shadow: 0 0 8px var(--pink);
}
.schedule-dot.violet {
  border-color: var(--violet);
  box-shadow: 0 0 8px var(--violet);
}
.schedule-dot.gold {
  border-color: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  background: rgba(255, 215, 0, 0.15);
}
.schedule-body {
  padding: 18px 0 18px 36px;
}
.schedule-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 18px 22px;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.schedule-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--cyan), var(--violet));
}
.schedule-card.pink-accent::before {
  background: linear-gradient(180deg, var(--pink), var(--violet));
}
.schedule-card.violet-accent::before {
  background: linear-gradient(180deg, var(--violet), var(--cyan));
}
.schedule-card.gold-accent {
  background: rgba(255, 215, 0, 0.03);
  border-color: rgba(255, 215, 0, 0.15);
}
.schedule-card.gold-accent::before {
  background: var(--gold);
}
.schedule-card:hover {
  border-color: rgba(0, 245, 255, 0.3);
  transform: translateX(4px);
}
.schedule-card-label {
  font-family: "Rajdhani", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 5px;
}
.schedule-card-label.pink {
  color: var(--pink);
}
.schedule-card-label.gold {
  color: var(--gold);
}
.schedule-card-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}
.schedule-card-desc {
  font-size: 12px;
  color: rgba(240, 244, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 8px;
}
.schedule-speakers {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.speaker-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 245, 255, 0.06);
  border: 1px solid rgba(0, 245, 255, 0.15);
  border-radius: 20px;
  padding: 4px 10px;
  font-family: "Rajdhani", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(240, 244, 255, 0.8);
}
.speaker-chip.pink {
  background: rgba(255, 0, 128, 0.06);
  border-color: rgba(255, 0, 128, 0.2);
}
.speaker-chip.violet {
  background: rgba(123, 47, 255, 0.08);
  border-color: rgba(123, 47, 255, 0.25);
}
.schedule-break-row {
  padding: 8px 0 8px 36px;
}
.schedule-break {
  background: rgba(255, 215, 0, 0.04);
  border: 1px dashed rgba(255, 215, 0, 0.2);
  border-radius: 8px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 215, 0, 0.65);
}

/* ─── PALESTRANTES ─── */
#palestrantes {
  padding: 60px 0 60px;
  position: relative;
  z-index: 1;
}
.speakers-header {
  text-align: center;
  margin-bottom: 80px;
}
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.speaker-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.4s;
  position: relative;
}
.speaker-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--pink), var(--cyan));
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}
.speaker-card:hover {
  border-color: rgba(0, 245, 255, 0.3);
  transform: translateY(-6px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(0, 245, 255, 0.05);
}
.speaker-card:hover::before {
  opacity: 1;
}
.speaker-photo-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(123, 47, 255, 0.15),
    rgba(0, 245, 255, 0.06),
    rgba(255, 0, 128, 0.08)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.speaker-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}
.speaker-photo-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 245, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 255, 0.04) 1px, transparent 1px);
  background-size: 20px 20px;
}
.speaker-photo-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: rgba(0, 245, 255, 0.35);
  border-style: solid;
}
.speaker-photo-corner.tl {
  top: 10px;
  left: 10px;
  border-width: 2px 0 0 2px;
}
.speaker-photo-corner.tr {
  top: 10px;
  right: 10px;
  border-width: 2px 2px 0 0;
}
.speaker-photo-corner.bl {
  bottom: 10px;
  left: 10px;
  border-width: 0 0 2px 2px;
}
.speaker-photo-corner.br {
  bottom: 10px;
  right: 10px;
  border-width: 0 2px 2px 0;
}
.placeholder-icon {
  font-size: 48px;
  opacity: 0.18;
  position: relative;
  z-index: 1;
}
.placeholder-label {
  font-family: "Rajdhani", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0, 245, 255, 0.4);
  position: absolute;
  bottom: 14px;
  z-index: 1;
}
.speaker-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.speaker-info {
  padding: 18px 20px 20px;
}
.speaker-panel-badge {
  display: inline-block;
  margin-bottom: 10px;
  background: rgba(0, 245, 255, 0.08);
  border: 1px solid rgba(0, 245, 255, 0.2);
  border-radius: 3px;
  padding: 3px 10px;
  font-family: "Rajdhani", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
}
.speaker-panel-badge.pink {
  background: rgba(255, 0, 128, 0.08);
  border-color: rgba(255, 0, 128, 0.25);
  color: var(--pink);
}
.speaker-panel-badge.violet {
  background: rgba(123, 47, 255, 0.08);
  border-color: rgba(123, 47, 255, 0.25);
  color: #a060ff;
}
.speaker-name {
  font-family: "Rajdhani", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 5px;
}
.speaker-role {
  font-size: 12px;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}
.speaker-title {
  font-size: 12px;
  color: rgba(240, 244, 255, 0.45);
  line-height: 1.5;
  margin-bottom: 12px;
}
.speaker-bio {
  font-size: 12px;
  color: rgba(240, 244, 255, 0.45);
  line-height: 1.6;
  border-top: 1px solid rgba(0, 245, 255, 0.08);
  padding-top: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s;
}
.speaker-card:hover .speaker-bio {
  -webkit-line-clamp: 10;
}
.speaker-tbd {
  background: rgba(240, 244, 255, 0.02);
  border: 1px dashed rgba(240, 244, 255, 0.08);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px 24px;
  text-align: center;
  min-height: 280px;
}
.speaker-tbd-icon {
  font-size: 36px;
  opacity: 0.2;
}
.speaker-tbd-label {
  font-family: "Rajdhani", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(240, 244, 255, 0.2);
}
.speaker-tbd-panel {
  font-size: 12px;
  color: rgba(0, 245, 255, 0.3);
  margin-top: 4px;
}
@media (max-width: 900px) {
  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .schedule-item {
    grid-template-columns: 90px 1fr;
  }
  .schedule-item::before {
    left: 89px;
  }
  .schedule-time {
    font-size: 10px;
    padding-right: 20px;
  }
}
@media (max-width: 600px) {
  .speakers-grid {
    grid-template-columns: 1fr;
  }
  .schedule-item {
    grid-template-columns: 70px 1fr;
  }
  .schedule-item::before {
    left: 69px;
  }
  .schedule-body {
    padding-left: 24px;
  }
  .schedule-break-row {
    padding-left: 24px;
  }
}

/* --- PROGRAMACAO --- */
#programacao {
  padding: 40px 0 0px;
  position: relative;
  z-index: 1;
}
.schedule-header {
  text-align: center;
  margin-bottom: 56px;
}
.schedule-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
}
.schedule-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0;
  position: relative;
}
.schedule-item::before {
  content: "";
  position: absolute;
  left: 109px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(0, 245, 255, 0.25),
    rgba(123, 47, 255, 0.15)
  );
}
.schedule-item:last-child::before {
  bottom: 50%;
}
.schedule-time {
  padding: 24px 20px 24px 0;
  text-align: right;
  font-family: "Orbitron", monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1.3;
  position: relative;
}
.schedule-dot {
  position: absolute;
  right: -6px;
  top: 30px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  background: var(--navy);
  box-shadow: 0 0 8px var(--cyan);
  z-index: 1;
}
.schedule-dot.pink {
  border-color: var(--pink);
  box-shadow: 0 0 8px var(--pink);
}
.schedule-dot.violet {
  border-color: var(--violet);
  box-shadow: 0 0 8px var(--violet);
}
.schedule-dot.gold {
  border-color: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  background: rgba(255, 215, 0, 0.15);
}
.schedule-body {
  padding: 16px 0 16px 32px;
}
.schedule-break-row {
  padding: 8px 0 8px 32px;
}
.schedule-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 16px 20px;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.schedule-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--cyan), var(--violet));
}
.schedule-card.pink-accent::before {
  background: linear-gradient(180deg, var(--pink), var(--violet));
}
.schedule-card.violet-accent::before {
  background: linear-gradient(180deg, var(--violet), var(--cyan));
}
.schedule-card.gold-accent {
  background: rgba(255, 215, 0, 0.03);
  border-color: rgba(255, 215, 0, 0.15);
}
.schedule-card.gold-accent::before {
  background: var(--gold);
}
.schedule-card:hover {
  border-color: rgba(0, 245, 255, 0.3);
  transform: translateX(4px);
}
.schedule-card-label {
  font-family: "Rajdhani", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 5px;
}
.schedule-card-label.pink {
  color: var(--pink);
}
.schedule-card-label.gold {
  color: var(--gold);
}
.schedule-card-title {
  font-family: "Rajdhani", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}
.schedule-card-desc {
  font-size: 12px;
  color: rgba(240, 244, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 8px;
}
.schedule-speakers {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.speaker-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 245, 255, 0.06);
  border: 1px solid rgba(0, 245, 255, 0.15);
  border-radius: 20px;
  padding: 4px 10px;
  font-family: "Rajdhani", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(240, 244, 255, 0.8);
}
.speaker-chip.pink {
  background: rgba(255, 0, 128, 0.06);
  border-color: rgba(255, 0, 128, 0.2);
}
.speaker-chip.violet {
  background: rgba(123, 47, 255, 0.08);
  border-color: rgba(123, 47, 255, 0.25);
}
.schedule-break {
  background: rgba(255, 215, 0, 0.04);
  border: 1px dashed rgba(255, 215, 0, 0.2);
  border-radius: 8px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Rajdhani", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 215, 0, 0.65);
}

/* --- PALESTRANTES --- */
#palestrantes {
  padding: 60px 0 80px;
  position: relative;
  z-index: 1;
}
.speakers-header {
  text-align: center;
  margin-bottom: 80px;
}
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.speaker-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.4s;
  position: relative;
}
.speaker-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--pink), var(--cyan));
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}
.speaker-card:hover {
  border-color: rgba(0, 245, 255, 0.3);
  transform: translateY(-6px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(0, 245, 255, 0.05);
}
.speaker-card:hover::before {
  opacity: 1;
}
.speaker-photo-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(123, 47, 255, 0.15),
    rgba(0, 245, 255, 0.06),
    rgba(255, 0, 128, 0.08)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.speaker-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}
.speaker-photo-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 245, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 255, 0.04) 1px, transparent 1px);
  background-size: 20px 20px;
}
.speaker-photo-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: rgba(0, 245, 255, 0.35);
  border-style: solid;
}
.speaker-photo-corner.tl {
  top: 10px;
  left: 10px;
  border-width: 2px 0 0 2px;
}
.speaker-photo-corner.tr {
  top: 10px;
  right: 10px;
  border-width: 2px 2px 0 0;
}
.speaker-photo-corner.bl {
  bottom: 10px;
  left: 10px;
  border-width: 0 0 2px 2px;
}
.speaker-photo-corner.br {
  bottom: 10px;
  right: 10px;
  border-width: 0 2px 2px 0;
}
.placeholder-icon {
  font-size: 52px;
  opacity: 0.15;
  position: relative;
  z-index: 1;
}
.placeholder-label {
  font-family: "Rajdhani", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0, 245, 255, 0.4);
  position: absolute;
  bottom: 14px;
  z-index: 1;
}
.speaker-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.speaker-info {
  padding: 18px 20px 20px;
}
.speaker-panel-badge {
  display: inline-block;
  margin-bottom: 10px;
  background: rgba(0, 245, 255, 0.08);
  border: 1px solid rgba(0, 245, 255, 0.2);
  border-radius: 3px;
  padding: 3px 10px;
  font-family: "Rajdhani", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
}
.speaker-panel-badge.pink {
  background: rgba(255, 0, 128, 0.08);
  border-color: rgba(255, 0, 128, 0.25);
  color: var(--pink);
}
.speaker-panel-badge.violet {
  background: rgba(123, 47, 255, 0.08);
  border-color: rgba(123, 47, 255, 0.25);
  color: #a060ff;
}
.speaker-name {
  font-family: "Rajdhani", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 4px;
}
.speaker-role {
  font-size: 12px;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 6px;
}
.speaker-title {
  font-size: 12px;
  color: rgba(240, 244, 255, 0.45);
  line-height: 1.5;
  margin-bottom: 12px;
}
.speaker-bio {
  font-size: 12px;
  color: rgba(240, 244, 255, 0.4);
  line-height: 1.65;
  border-top: 1px solid rgba(0, 245, 255, 0.08);
  padding-top: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: -webkit-line-clamp 0.3s;
}
.speaker-card:hover .speaker-bio {
  -webkit-line-clamp: 10;
}
.speaker-tbd {
  background: rgba(240, 244, 255, 0.02);
  border: 1px dashed rgba(240, 244, 255, 0.08);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px 24px;
  text-align: center;
  min-height: 260px;
}
.speaker-tbd-icon {
  font-size: 36px;
  opacity: 0.18;
}
.speaker-tbd-label {
  font-family: "Rajdhani", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(240, 244, 255, 0.2);
}
.speaker-tbd-panel {
  font-size: 12px;
  color: rgba(0, 245, 255, 0.3);
  margin-top: 4px;
}
@media (max-width: 900px) {
  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .schedule-item {
    grid-template-columns: 80px 1fr;
  }
  .schedule-item::before {
    left: 79px;
  }
  .schedule-body {
    padding-left: 24px;
  }
  .schedule-break-row {
    padding-left: 24px;
  }
}
@media (max-width: 560px) {
  .speakers-grid {
    grid-template-columns: 1fr;
  }
  .schedule-item {
    grid-template-columns: 60px 1fr;
  }
  .schedule-item::before {
    left: 59px;
  }
  .schedule-body {
    padding-left: 18px;
  }
  .schedule-break-row {
    padding-left: 18px;
  }
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}
