/* ============================================================
   LP — CURSO DE ETs: PREPARE-SE PARA A REVELAÇÃO
   Synapses Academy · lp-ets.css
   ============================================================ */

/* ============================================================
   GRAIN OVERLAY — REMOVED (preserves visual clarity)
   ============================================================ */

/* ============================================================
   STARFIELD CANVAS
   ============================================================ */
#starfield {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--sp-4) 0;
  transition: background var(--dur-base), backdrop-filter var(--dur-base),
              border-color var(--dur-base), padding var(--dur-base);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(4, 4, 14, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border-subtle);
  padding: var(--sp-3) 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.nav-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.6));
}

.nav-name {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.nav-name span {
  color: var(--cyan);
}

.nav-cta {
  font-size: var(--text-sm);
  padding: var(--sp-2) var(--sp-5);
}

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

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px var(--sp-6) var(--sp-20);
  z-index: 1;
  overflow: hidden;
  text-align: center;
}

/* Radial ambient light */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0, 229, 255, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(124, 58, 237, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 60%, rgba(41, 121, 255, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* Scan line */
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.4), transparent);
  animation: scanLine 8s linear infinite;
  pointer-events: none;
}

.hero-tag {
  margin-bottom: var(--sp-6);
  animation: fadeIn 0.8s var(--ease-out) forwards;
}

/* ============================================================
   HERO COURSE IDENTITY — Title block (prominent, first)
   ============================================================ */
.hero-course-identity {
  margin-bottom: var(--sp-6);
  animation: fadeInUp 0.9s var(--ease-out) 0.1s both;
}

.hero-course-title {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 13vw, 9rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, #fff 0%, var(--cyan) 40%, #7C9FFF 75%, var(--violet-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--sp-5);
  filter: drop-shadow(0 0 40px rgba(0, 229, 255, 0.35));
}

.hero-course-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 3.5vw, 2rem);
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
  text-shadow: 0 0 24px rgba(0, 229, 255, 0.5);
}

/* Supporting impact phrase below the title */
.hero-headline-support {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.9rem);
  font-weight: 500;
  color: var(--text-secondary);
  line-height: var(--leading-snug);
  letter-spacing: -0.01em;
  margin-bottom: var(--sp-6);
  max-width: 680px;
  animation: fadeInUp 0.9s var(--ease-out) 0.2s both;
}

.hero-sub {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  max-width: 620px;
  margin: 0 auto var(--sp-10);
  animation: fadeInUp 0.9s var(--ease-out) 0.25s both;
}

/* VSL Container */
.vsl-container {
  width: 100%;
  max-width: 760px;
  margin: 0 auto var(--sp-10);
  animation: fadeInUp 0.9s var(--ease-out) 0.35s both;
}

.vsl-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--cyan-border);
  box-shadow:
    0 0 0 1px rgba(0, 229, 255, 0.08),
    0 0 60px rgba(0, 229, 255, 0.12),
    0 30px 80px rgba(0, 0, 0, 0.6);
  background: var(--bg-surface);
  aspect-ratio: 16 / 9;
  cursor: pointer;
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}

.vsl-wrapper:hover {
  transform: scale(1.008);
  box-shadow:
    0 0 0 1px rgba(0, 229, 255, 0.15),
    0 0 80px rgba(0, 229, 255, 0.2),
    0 40px 100px rgba(0, 0, 0, 0.7);
}

/* When YouTube iframe is loaded */
.vsl-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Placeholder state */
.vsl-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-5);
  background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-deep) 100%);
}

.vsl-placeholder-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0, 229, 255, 0.06) 0%, transparent 70%);
}

.vsl-play-btn {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.12);
  border: 2px solid rgba(0, 229, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-base) var(--ease-out);
  animation: pulseGlowCyan 3s ease-in-out infinite;
  flex-shrink: 0;
}

.vsl-play-btn svg {
  width: 28px;
  height: 28px;
  fill: var(--cyan);
  margin-left: 4px;
}

.vsl-wrapper:hover .vsl-play-btn {
  background: rgba(0, 229, 255, 0.2);
  transform: scale(1.1);
}

.vsl-label {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.vsl-sublabel {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: -var(--sp-2);
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  animation: fadeInUp 0.9s var(--ease-out) 0.45s both;
}

.hero-cta-meta {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  margin-top: var(--sp-8);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border-subtle);
  animation: fadeInUp 0.9s var(--ease-out) 0.55s both;
  flex-wrap: wrap;
  justify-content: center;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
}

.proof-number {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
}

.proof-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
}

/* ============================================================
   SECTION: THE QUESTION
   ============================================================ */
.section-question {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, var(--bg-void) 0%, var(--bg-deep) 40%, var(--bg-void) 100%);
  padding: var(--sp-24) 0;
}

.section-question::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
}

.classified-header {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-10);
}

.classified-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 50, 50, 0.3));
}

.classified-line.right {
  background: linear-gradient(90deg, rgba(255, 50, 50, 0.3), transparent);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin: var(--sp-12) 0;
}

.stat-card {
  padding: var(--sp-6);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  transition: border-color var(--dur-base), background var(--dur-base);
}

.stat-card:hover {
  border-color: var(--cyan-border);
  background: var(--bg-card-hover);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.stat-number span {
  margin-left: 0.2em;
}

.stat-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-normal);
}

.question-callout {
  position: relative;
  padding: var(--sp-8) var(--sp-10);
  border-radius: var(--radius-xl);
  border-left: 3px solid var(--cyan);
  background: rgba(0, 229, 255, 0.04);
  margin: var(--sp-10) 0;
}

.question-callout p {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 600;
  line-height: var(--leading-snug);
  color: var(--text-primary);
}

.question-callout cite {
  display: block;
  margin-top: var(--sp-4);
  font-size: var(--text-sm);
  color: var(--cyan);
  font-family: var(--font-mono);
  font-style: normal;
  letter-spacing: 0.05em;
}

.answer-text {
  font-size: var(--text-xl);
  line-height: var(--leading-relaxed);
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.answer-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

@media (max-width: 640px) {
  .stat-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }
  .question-callout {
    padding: var(--sp-6);
  }
  .question-callout p {
    font-size: var(--text-xl);
  }
}

/* ============================================================
   SECTION: ABOUT THE COURSE
   ============================================================ */
.section-course {
  position: relative;
  z-index: 1;
  padding: var(--sp-24) 0;
  overflow: hidden;
}

.section-course::before {
  content: '';
  position: absolute;
  left: -20%;
  top: 0;
  width: 70%;
  height: 100%;
  background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(0, 229, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.course-lead {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: var(--leading-snug);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-8);
}

.course-body {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  max-width: 600px;
}

.course-body p + p {
  margin-top: var(--sp-4);
}

.course-body strong {
  color: var(--text-primary);
  font-weight: 500;
}

.course-feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.course-feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: border-color var(--dur-base), background var(--dur-base);
}

.course-feature-item:hover {
  border-color: var(--cyan-border);
  background: var(--cyan-subtle);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--cyan-subtle);
  border: 1px solid var(--cyan-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.feature-text h4 {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--sp-1);
}

.feature-text p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-normal);
}

.course-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

@media (max-width: 768px) {
  .course-layout {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }
}

/* ============================================================
   SECTION: INSTRUCTOR
   ============================================================ */
.section-instructor {
  position: relative;
  z-index: 1;
  padding: var(--sp-24) 0;
}

.instructor-card {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--sp-10) var(--sp-12);
  border-radius: var(--radius-2xl);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--sp-10);
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.instructor-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 100% 50%, rgba(0, 229, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

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

.instructor-photo {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-xl);
  border: 1px solid var(--cyan-border);
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.12), 0 20px 60px rgba(0, 0, 0, 0.5);
  display: block;
}

.instructor-photo-placeholder {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-xl);
  border: 1px solid var(--cyan-border);
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.12), 0 20px 60px rgba(0, 0, 0, 0.5);
}

.instructor-photo-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 40px;
  background: rgba(0, 229, 255, 0.15);
  filter: blur(20px);
  border-radius: 50%;
}

.instructor-role {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}

.instructor-name {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-2);
}

.instructor-title {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--cyan);
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-6);
}

.instructor-bio {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--sp-6);
}

.instructor-bio p + p {
  margin-top: var(--sp-4);
}

.instructor-stats {
  display: flex;
  gap: var(--sp-6);
  flex-wrap: wrap;
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border-subtle);
}

.inst-stat {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.inst-stat-num {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
}

.inst-stat-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Social links inside instructor card */
.social-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: var(--text-sm);
  font-family: var(--font-heading);
  font-weight: 500;
  text-decoration: none;
  transition: border-color var(--dur-base), background var(--dur-base),
              color var(--dur-base), box-shadow var(--dur-base);
}

.social-link:hover {
  border-color: var(--cyan-border);
  background: var(--cyan-subtle);
  color: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.15);
}

.social-link svg {
  flex-shrink: 0;
  opacity: 0.8;
  transition: opacity var(--dur-base);
}

.social-link:hover svg {
  opacity: 1;
}

/* Footer social icons (icon-only) */
.footer-links a svg {
  display: block;
  opacity: 0.6;
  transition: opacity var(--dur-base), color var(--dur-base);
}

.footer-links a:hover svg {
  opacity: 1;
  color: var(--cyan);
}

@media (max-width: 768px) {
  .instructor-card {
    grid-template-columns: 1fr;
    padding: var(--sp-6);
    gap: var(--sp-6);
  }
  .instructor-photo, .instructor-photo-placeholder {
    max-width: 200px;
    aspect-ratio: 1;
    margin: 0 auto;
    object-position: center 15%;
  }
  .instructor-name {
    font-size: var(--text-3xl);
  }
}

/* ============================================================
   SECTION: MODULES
   ============================================================ */
.section-modules {
  position: relative;
  z-index: 1;
  padding: var(--sp-24) 0;
  background: linear-gradient(180deg, var(--bg-void) 0%, var(--bg-base) 50%, var(--bg-void) 100%);
}

.section-modules::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      rgba(0, 229, 255, 0.02) 39px,
      rgba(0, 229, 255, 0.02) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 39px,
      rgba(0, 229, 255, 0.02) 39px,
      rgba(0, 229, 255, 0.02) 40px
    );
  pointer-events: none;
}

.modules-header {
  text-align: center;
  margin-bottom: var(--sp-16);
}

.modules-intro {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin: var(--sp-4) auto 0;
  line-height: var(--leading-relaxed);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--sp-5);
}

.module-card {
  position: relative;
  padding: var(--sp-6);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out),
              background var(--dur-base);
  cursor: default;
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--module-accent, var(--cyan)), transparent);
  opacity: 0;
  transition: opacity var(--dur-base);
}

.module-card:hover {
  border-color: var(--module-accent, var(--cyan-border));
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

.module-card:hover::before {
  opacity: 0.6;
}

.module-card-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--module-glow, rgba(0,229,255,0.08)) 0%, transparent 70%);
  pointer-events: none;
}

.module-num {
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}

.module-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--module-icon-bg, rgba(0, 229, 255, 0.08));
  border: 1px solid var(--module-accent, var(--cyan-border));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--sp-4);
  box-shadow: 0 0 20px var(--module-shadow, rgba(0, 229, 255, 0.1));
}

.module-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-primary);
  line-height: var(--leading-snug);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.01em;
}

.module-subtitle {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--module-accent, var(--cyan));
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}

.module-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-normal);
}

/* Module color variants */
.module-card.mod-0 {
  --module-accent: rgba(0, 229, 255, 0.4);
  --module-glow: rgba(0, 229, 255, 0.08);
  --module-shadow: rgba(0, 229, 255, 0.1);
  --module-icon-bg: rgba(0, 229, 255, 0.06);
}
.module-card.mod-1 {
  --module-accent: rgba(41, 121, 255, 0.4);
  --module-glow: rgba(41, 121, 255, 0.08);
  --module-shadow: rgba(41, 121, 255, 0.1);
  --module-icon-bg: rgba(41, 121, 255, 0.06);
}
.module-card.mod-2 {
  --module-accent: rgba(255, 50, 50, 0.35);
  --module-glow: rgba(255, 50, 50, 0.06);
  --module-shadow: rgba(255, 50, 50, 0.1);
  --module-icon-bg: rgba(255, 50, 50, 0.05);
}
.module-card.mod-3 {
  --module-accent: rgba(124, 58, 237, 0.45);
  --module-glow: rgba(124, 58, 237, 0.08);
  --module-shadow: rgba(124, 58, 237, 0.1);
  --module-icon-bg: rgba(124, 58, 237, 0.06);
}
.module-card.mod-4 {
  --module-accent: rgba(245, 158, 11, 0.45);
  --module-glow: rgba(245, 158, 11, 0.08);
  --module-shadow: rgba(245, 158, 11, 0.1);
  --module-icon-bg: rgba(245, 158, 11, 0.06);
}
.module-card.mod-5 {
  --module-accent: rgba(255, 107, 0, 0.4);
  --module-glow: rgba(255, 107, 0, 0.08);
  --module-shadow: rgba(255, 107, 0, 0.1);
  --module-icon-bg: rgba(255, 107, 0, 0.06);
}
.module-card.mod-6 {
  --module-accent: rgba(57, 255, 20, 0.4);
  --module-glow: rgba(57, 255, 20, 0.08);
  --module-shadow: rgba(57, 255, 20, 0.1);
  --module-icon-bg: rgba(57, 255, 20, 0.06);
}

/* Final module spans full width */
.module-card.mod-6 {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: var(--sp-6);
}

.module-card.mod-6 .module-num,
.module-card.mod-6 .module-icon {
  grid-column: 1;
}

.module-card.mod-6 .module-content {
  grid-column: 2;
  grid-row: 1 / 3;
}

@media (max-width: 768px) {
  .modules-grid {
    grid-template-columns: 1fr;
  }
  .module-card.mod-6 {
    grid-column: 1;
    display: block;
  }
}

/* ============================================================
   SECTION: FOR WHO
   ============================================================ */
.section-for-who {
  position: relative;
  z-index: 1;
  padding: var(--sp-24) 0;
}

.for-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}

.for-who-card {
  padding: var(--sp-8);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.for-who-card.yes {
  border-color: rgba(57, 255, 20, 0.15);
  background: rgba(57, 255, 20, 0.025);
}

.for-who-card.no {
  border-color: rgba(255, 50, 50, 0.15);
  background: rgba(255, 50, 50, 0.025);
}

.for-who-card-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.for-who-card.yes .for-who-card-title { color: var(--cta-green); }
.for-who-card.no  .for-who-card-title { color: #FF6060; }

.for-who-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.for-who-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-normal);
}

.for-who-item .check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 700;
  margin-top: 2px;
}

.for-who-card.yes .check {
  background: rgba(57, 255, 20, 0.12);
  color: var(--cta-green);
  border: 1px solid rgba(57, 255, 20, 0.3);
}

.for-who-card.no .check {
  background: rgba(255, 50, 50, 0.1);
  color: #FF6060;
  border: 1px solid rgba(255, 50, 50, 0.3);
}

@media (max-width: 640px) {
  .for-who-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SECTION: REVELATIONS / AUTHORITY
   ============================================================ */
.section-revelations {
  position: relative;
  z-index: 1;
  padding: var(--sp-24) 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-void) 0%, #06060F 50%, var(--bg-void) 100%);
}

.section-revelations::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(0, 229, 255, 0.04) 0%, transparent 70%);
}

.revelation-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin: var(--sp-12) 0;
}

.revelation-card {
  padding: var(--sp-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
  transition: border-color var(--dur-base), transform var(--dur-base) var(--ease-out);
}

.revelation-card:hover {
  border-color: var(--cyan-border);
  transform: translateY(-3px);
}

.revelation-tag {
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.revelation-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
  flex-shrink: 0;
}

.revelation-text {
  font-size: var(--text-base);
  color: var(--text-primary);
  line-height: var(--leading-normal);
  font-weight: 500;
}

.revelation-source {
  margin-top: var(--sp-4);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.revelation-cta-text {
  text-align: center;
  font-size: var(--text-xl);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--leading-relaxed);
}

.revelation-cta-text strong {
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .revelation-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   SECTION: OFFER
   ============================================================ */
.section-offer {
  position: relative;
  z-index: 1;
  padding: var(--sp-24) 0;
  overflow: hidden;
}

.section-offer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(57, 255, 20, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 50%, rgba(0, 229, 255, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 90% 50%, rgba(124, 58, 237, 0.04) 0%, transparent 60%);
}

.offer-card {
  max-width: 680px;
  margin: 0 auto;
  padding: var(--sp-12) var(--sp-10);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(57, 255, 20, 0.12);
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(57, 255, 20, 0.04), 0 40px 100px rgba(0, 0, 0, 0.5);
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.4), transparent);
}

.offer-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--sp-6);
}

.offer-title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-2);
}

.offer-subtitle {
  font-size: var(--text-base);
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-bottom: var(--sp-8);
}

.offer-price-block {
  margin: var(--sp-8) 0;
}

.offer-price {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 10vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--cta-green);
  text-shadow: 0 0 40px rgba(57, 255, 20, 0.4);
}

.offer-price-sub {
  font-size: var(--text-base);
  color: var(--text-muted);
  margin-top: var(--sp-2);
}

.offer-price-alt {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-top: var(--sp-1);
}

.offer-includes {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin: var(--sp-8) 0;
  text-align: left;
}

.offer-include-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-base);
  color: var(--text-secondary);
}

.offer-include-item .icon {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: rgba(57, 255, 20, 0.1);
  border: 1px solid rgba(57, 255, 20, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  color: var(--cta-green);
  flex-shrink: 0;
}

.offer-guarantee {
  margin-top: var(--sp-6);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius-lg);
  background: var(--amber-subtle);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.offer-guarantee p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-normal);
}

.offer-guarantee strong {
  color: var(--amber);
}

.offer-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  margin: var(--sp-8) 0 0;
}

.offer-cta-meta {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .offer-card { padding: var(--sp-8) var(--sp-5); }
  .offer-title { font-size: var(--text-3xl); }
}

/* ============================================================
   SECTION: FAQ
   ============================================================ */
.section-faq {
  position: relative;
  z-index: 1;
  padding: var(--sp-24) 0;
}

.faq-list {
  max-width: 720px;
  margin: var(--sp-12) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color var(--dur-base);
}

.faq-item.open {
  border-color: var(--cyan-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  line-height: var(--leading-snug);
  transition: color var(--dur-base);
}

.faq-item.open .faq-question {
  color: var(--cyan);
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  color: var(--text-muted);
  transition: all var(--dur-base) var(--ease-out);
  font-family: var(--font-mono);
  line-height: 1;
}

.faq-item.open .faq-icon {
  border-color: var(--cyan-border);
  color: var(--cyan);
  transform: rotate(45deg);
  background: var(--cyan-subtle);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-out);
}

.faq-answer-inner {
  padding: 0 var(--sp-6) var(--sp-6);
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* ============================================================
   SECTION: FINAL CTA STRIP
   ============================================================ */
.section-final-cta {
  position: relative;
  z-index: 1;
  padding: var(--sp-20) 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-void) 0%, #060614 50%, var(--bg-void) 100%);
}

.final-cta-text {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: var(--leading-snug);
  letter-spacing: -0.02em;
  max-width: 700px;
  margin: 0 auto var(--sp-8);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  z-index: 1;
  padding: var(--sp-12) 0 var(--sp-8);
  border-top: 1px solid var(--border-subtle);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.footer-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(0, 229, 255, 0.5));
  opacity: 0.7;
}

.footer-name {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: var(--sp-6);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: var(--text-sm);
  color: var(--text-muted);
  transition: color var(--dur-fast);
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ============================================================
   SECTION LABEL STYLE
   ============================================================ */
.section-label {
  text-align: center;
  margin-bottom: var(--sp-4);
}

.section-heading {
  text-align: center;
  margin-bottom: var(--sp-5);
}

.section-subheading {
  text-align: center;
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   FLOATING RADAR DECORATION
   ============================================================ */
.radar-deco {
  position: absolute;
  pointer-events: none;
  opacity: 0.06;
}

.radar-deco svg {
  width: 100%;
  height: 100%;
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.6);
}

/* ============================================================
   TICKER / ANNOUNCEMENT STRIP
   ============================================================ */
.ticker-wrap {
  overflow: hidden;
  background: rgba(0, 229, 255, 0.04);
  border-top: 1px solid var(--cyan-border);
  border-bottom: 1px solid var(--cyan-border);
  padding: var(--sp-3) 0;
}

.ticker-inner {
  display: flex;
  gap: var(--sp-10);
  animation: tickerScroll 25s linear infinite;
  width: max-content;
}

.ticker-inner:hover {
  animation-play-state: paused;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--text-secondary);
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 4px var(--cyan);
}
