/* Base */
html,
body {
  width: 100%;
  height: 100%;
}
body {
  font-family: Rajdhani, sans-serif;
  background: #0a0e27;
  color: #e0e0e0;
  overflow-x: hidden;
}
.logo-wrap {
  display: flex;
  align-items: center;
}

.gradient-gold {
  background: linear-gradient(135deg, #daa520 0%, #b8860b 50%, #cd853f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav_brand {
  position: absolute;
  top: 50%;
  left: 1.5rem;
  transform: translateY(-50%);
}

/* Webflow-ish layout helpers */
.section {
  padding: 80px 20px;
  position: relative;
}
.section.is-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 20px 80px;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.container.is-wide {
  max-width: 1200px;
}
.center {
  text-align: center;
}

/* Background */
.bg-animated {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
  z-index: -2;
}
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  z-index: -1;
}
@keyframes gridMove {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(50px);
  }
}

/* Progress */
.quest-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 215, 0, 0.1);
  z-index: 1000;
}
.quest-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ffd700, #00d9ff);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
  transition: width 0.2s ease;
}

/* Navbar */
.nav-glass {
  background: rgba(10, 5, 3, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(218, 165, 32, 0.1);
}

/* Countdown */
.countdown-banner {
  background: linear-gradient(
    90deg,
    rgba(255, 0, 0, 0.2),
    rgba(255, 100, 0, 0.2)
  );
  border-bottom: 2px solid #ff6600;
  padding: 15px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
}
.countdown-text {
  font-family: Orbitron, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffcc00;
  letter-spacing: 2px;
}
.countdown-timer {
  display: inline-flex;
  gap: 15px;
  margin-left: 20px;
}
.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.countdown-number {
  font-family: Orbitron, sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #ffd700;
}
.countdown-label {
  font-size: 12px;
  color: #b0b0b0;
  text-transform: uppercase;
}

/* Hero */
.hero-content {
  text-align: center;
}
.logo-badge {
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid #ffd700;
  border-radius: 30px;
  font-family: Orbitron, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #ffd700;
  margin-bottom: 40px;
  background: rgba(255, 215, 0, 0.05);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
  }
}
.hero-title {
  font-family: Orbitron, sans-serif;
  font-size: 72px;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 20px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
  animation: titleGlow 3s ease-in-out infinite;
}
@keyframes titleGlow {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2);
  }
}
.hero-subtitle {
  font-family: Orbitron, sans-serif;
  font-size: 28px;
  font-weight: 500;
  color: #00d9ff;
  margin: 0 0 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hero-description {
  font-size: 20px;
  color: #b0b0b0;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Buttons */
.cta-button {
  display: inline-block;
  padding: 20px 50px;
  font-family: Orbitron, sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #0a0e27;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.cta-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}
.cta-button:hover:before {
  left: 100%;
}
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(255, 215, 0, 0.6);
}

/* Stats */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-family: Orbitron, sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #ffd700;
  display: block;
}
.stat-label {
  font-size: 14px;
  color: #b0b0b0;
  text-transform: uppercase;
  margin-top: 5px;
}

/* Titles */
.section-title {
  font-family: Orbitron, sans-serif;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 20px;
  color: #ffd700;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.section-subtitle {
  text-align: center;
  color: #b0b0b0;
  font-size: 18px;
  margin: 0 auto 60px;
  max-width: 700px;
}

/* Grids + cards */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.benefit-card {
  background: linear-gradient(
    135deg,
    rgba(0, 217, 255, 0.1) 0%,
    rgba(10, 14, 39, 0.8) 100%
  );
  border: 2px solid rgba(0, 217, 255, 0.3);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-10px);
  border-color: #00d9ff;
  box-shadow: 0 20px 60px rgba(0, 217, 255, 0.3);
}
.benefit-icon {
  font-size: 56px;
  margin-bottom: 20px;
  display: block;
}
.benefit-title {
  font-family: Orbitron, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #00d9ff;
  margin: 0 0 15px;
}
.benefit-description {
  font-size: 16px;
  color: #b0b0b0;
  line-height: 1.6;
  margin: 0;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0;
}
.timeline:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #ffd700, #00d9ff);
}
.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}
.timeline-item.is-reverse {
  flex-direction: row-reverse;
}
.timeline-content {
  width: 45%;
  background: linear-gradient(
    135deg,
    rgba(26, 31, 58, 0.9) 0%,
    rgba(10, 14, 39, 0.95) 100%
  );
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 15px;
  padding: 30px;
}
.timeline-week {
  font-family: Orbitron, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffd700;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.timeline-title {
  font-family: Orbitron, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #00d9ff;
  margin: 0 0 10px;
}
.timeline-description {
  font-size: 16px;
  color: #b0b0b0;
  line-height: 1.5;
  margin: 0;
}
.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: #ffd700;
  border: 4px solid #0a0e27;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

/* Program */
.program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}
.program-card {
  background: linear-gradient(
    135deg,
    rgba(26, 31, 58, 0.8) 0%,
    rgba(10, 14, 39, 0.9) 100%
  );
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
}
.program-card.is-last {
  grid-column: span 2;
}
.card-number {
  font-family: Orbitron, sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: rgba(255, 215, 0, 0.2);
  position: absolute;
  top: 4px;
  right: 13px;
}
.card-title {
  font-family: Orbitron, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #00d9ff;
  margin: 0 0 15px;
}
.card-description {
  font-size: 16px;
  line-height: 1.6;
  color: #b0b0b0;
  margin: 0;
}

/* Format */
.format-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.format-item {
  background: linear-gradient(
    135deg,
    rgba(0, 217, 255, 0.1) 0%,
    rgba(10, 14, 39, 0.8) 100%
  );
  border: 2px solid rgba(0, 217, 255, 0.3);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.format-item:hover {
  transform: scale(1.05);
  border-color: #00d9ff;
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}
.format-icon {
  font-size: 48px;
  margin-bottom: 15px;
}
.format-text {
  font-family: Orbitron, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #00d9ff;
}

/* Testimonials */
.testimonials-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.testimonial-card {
  background: linear-gradient(
    135deg,
    rgba(26, 31, 58, 0.9) 0%,
    rgba(10, 14, 39, 0.95) 100%
  );
  border: 2px solid rgba(0, 217, 255, 0.3);
  border-radius: 20px;
  padding: 40px;
  position: relative;
}
.quote-icon {
  font-size: 48px;
  color: rgba(255, 215, 0, 0.2);
  position: absolute;
  top: 20px;
  left: 20px;
}
.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: #e0e0e0;
  margin: 0 0 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd700, #00d9ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Orbitron, sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #0a0e27;
}
.author-name {
  font-family: Orbitron, sans-serif;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 3px;
}
.author-role {
  font-size: 14px;
  color: #b0b0b0;
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 40px auto 0;
}
.faq-item {
  background: linear-gradient(
    135deg,
    rgba(26, 31, 58, 0.8) 0%,
    rgba(10, 14, 39, 0.9) 100%
  );
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 25px 30px;
  font-family: Orbitron, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffd700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: 0;
}
.faq-question:hover {
  color: #ffed4e;
}
.faq-toggle {
  font-size: 24px;
  color: #00d9ff;
  transition: transform 0.3s ease;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 30px;
  color: #b0b0b0;
  line-height: 1.7;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}
.faq-item.is-active .faq-toggle {
  transform: rotate(45deg);
}
.faq-item.is-active .faq-answer {
  max-height: 500px;
  padding: 0 30px 25px;
}

/* Pricing */
.pricing-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 60px;
}
.pricing-card {
  background: linear-gradient(
    135deg,
    rgba(26, 31, 58, 0.9) 0%,
    rgba(10, 14, 39, 0.95) 100%
  );
  border: 3px solid #ffd700;
  border-radius: 25px;
  padding: 50px 40px;
  text-align: center;
  min-width: 300px;
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.pricing-card.featured {
  border-color: #00d9ff;
  box-shadow: 0 20px 60px rgba(0, 217, 255, 0.4);
  transform: scale(1.05);
}
.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #0a0e27;
  padding: 8px 20px;
  border-radius: 20px;
  font-family: Orbitron, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}
.pricing-label {
  font-family: Orbitron, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #00d9ff;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.pricing-amount {
  font-family: Orbitron, sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: #ffd700;
  margin-bottom: 10px;
}
.pricing-save {
  font-size: 16px;
  color: #00ff88;
  font-weight: 600;
  margin-bottom: 30px;
}
.pricing-save.is-muted {
  opacity: 0.5;
  color: #b0b0b0;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  text-align: left;
}
.pricing-features li {
  padding: 10px 0;
  color: #b0b0b0;
  font-size: 16px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.pricing-features li:before {
  content: "✓";
  color: #00d9ff;
  font-weight: 900;
  font-size: 18px;
}

/* Spots */
.spots-counter {
  text-align: center;
  margin: 40px auto 0;
  padding: 30px;
  background: linear-gradient(
    135deg,
    rgba(255, 0, 0, 0.1) 0%,
    rgba(255, 100, 0, 0.1) 100%
  );
  border: 2px solid rgba(255, 100, 0, 0.5);
  border-radius: 20px;
  max-width: 500px;
}
.spots-label {
  font-family: Orbitron, sans-serif;
  font-size: 16px;
  color: #ffcc00;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.spots-remaining {
  font-family: Orbitron, sans-serif;
  font-size: 72px;
  font-weight: 900;
  color: #ff6600;
  line-height: 1;
  margin-bottom: 10px;
}
.spots-total {
  font-size: 18px;
  color: #b0b0b0;
}

/* Limited */
.limited-badge {
  display: inline-block;
  background: rgba(255, 0, 0, 0.2);
  border: 2px solid #ff0000;
  color: #ff6666;
  padding: 15px 30px;
  border-radius: 15px;
  font-family: Orbitron, sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-top: 40px;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.05) 0%,
    rgba(0, 217, 255, 0.05) 100%
  );
  border-top: 2px solid rgba(255, 215, 0, 0.2);
  border-bottom: 2px solid rgba(0, 217, 255, 0.2);
}
.final-cta-title {
  font-family: Orbitron, sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #ffd700;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.final-cta-text {
  font-size: 20px;
  color: #b0b0b0;
  margin: 0 auto 40px;
  max-width: 700px;
}

/* Particles */
.particle {
  position: fixed;
  width: 3px;
  height: 3px;
  background: #ffd700;
  border-radius: 50%;
  opacity: 0.5;
  animation: float 6s ease-in-out infinite;
  z-index: 0;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-100px) translateX(50px);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 42px;
  }
  .hero-subtitle {
    font-size: 20px;
  }
  .hero-description {
    font-size: 16px;
  }
  .section-title {
    font-size: 32px;
  }
  .pricing-container {
    flex-direction: column;
    align-items: center;
  }
  .pricing-card.featured {
    transform: scale(1);
  }
  .timeline:before {
    left: 30px;
    transform: none;
  }
  .timeline-item,
  .timeline-item.is-reverse {
    flex-direction: row;
  }
  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 60px;
  }
  .timeline-dot {
    left: 22px;
    transform: none;
  }
  .countdown-timer {
    margin-left: 0;
    margin-top: 10px;
  }
  .stats-bar {
    gap: 30px;
  }
  .final-cta-title {
    font-size: 32px;
  }
  .spots-remaining {
    font-size: 56px;
  }
}

@media (max-width: 1100px) {
  .nav_brand {
    position: static;
    top: 0;
    left: 0;
    transform: translateY(0);
    margin-bottom: 20px;
  }
  .countdown-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 991px) {
  /* Grids + cards */
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
  }

  /* Format */
  .format-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  /* Testimonials */
  .testimonials-container {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 30px;
  }
}
@media (max-width: 767px) {
  /* Grids + cards */
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 30px;
  }

  /* Format */
  .format-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 20px;
  }

  /* Program */
  .program-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 30px;
  }
  .program-card.is-last {
    grid-column: auto;
  }
}
