:root {
  --brand-gold: #d4af37;
  --brand-soft: #f6d97a;
  --brand-ink: #06111f;
  --brand-card: rgba(11, 22, 41, 0.72);
  --brand-border: rgba(255, 255, 255, 0.11);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100svh;
  overflow: hidden;
  font-family: 'Manrope', sans-serif;
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.09), transparent 24%),
    linear-gradient(180deg, #0d1b2a 0%, #06111f 52%, #040a14 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black 20%, transparent 90%);
}

.slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(22px) scale(0.985);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  scrollbar-width: none;
  padding: calc(5.7rem + env(safe-area-inset-top)) 0 calc(6.6rem + env(safe-area-inset-bottom));
}

.slide::-webkit-scrollbar {
  display: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 10;
  transform: translateY(0) scale(1);
}

.slide-shell {
  width: min(1180px, calc(100% - 1.5rem));
  min-height: calc(100svh - 12.3rem);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active .stagger > *:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.08s;
}

.slide.active .stagger > *:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.14s;
}

.slide.active .stagger > *:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.slide.active .stagger > *:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.26s;
}

.slide.active .stagger > *:nth-child(5) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.32s;
}

.slide.active .stagger > *:nth-child(6) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.38s;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(212, 175, 55, 0.09);
  color: var(--brand-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.gold-line {
  width: 74px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-gold), var(--brand-soft));
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.3);
}

.hero-title,
.section-title {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 0.97;
  letter-spacing: -0.03em;
}

.hero-title {
  font-size: clamp(3.35rem, 7vw, 6rem);
}

.section-title {
  font-size: clamp(2.55rem, 5vw, 4.7rem);
}

.accent-gradient {
  background: linear-gradient(120deg, #fff8de 0%, var(--brand-soft) 34%, var(--brand-gold) 62%, #fff5c3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glass-panel,
.audience-card,
.curriculum-card,
.project-card,
.timeline-card,
.pricing-card,
.batch-card {
  position: relative;
  border: 1px solid var(--brand-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
}

.glass-panel::before,
.premium-card::before,
.timeline-card::before,
.pricing-card::before {
  content: '';
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 38%);
}

.hero-logo-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.hero-logo-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem;
  border-radius: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.08), 0 0 40px rgba(212, 175, 55, 0.14);
}

.hero-logo {
  width: min(19rem, 56vw);
  max-width: 100%;
  height: auto;
  display: block;
}

.metric-card {
  border-radius: 1.25rem;
  padding: 1rem 1rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(16px);
}

.metric-value {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}

.metric-label {
  margin: 0.3rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(226, 232, 240, 0.72);
}

.btn-primary,
.btn-secondary,
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 999px;
  padding: 0.92rem 1.4rem;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
  color: var(--brand-ink);
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-soft));
  box-shadow: 0 18px 32px rgba(212, 175, 55, 0.26);
}

.btn-secondary {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.btn-whatsapp {
  color: #fff;
  background: linear-gradient(135deg, #29d366, #129946);
  box-shadow: 0 18px 32px rgba(41, 211, 102, 0.22);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-whatsapp:hover {
  transform: translateY(-2px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-primary.compact,
.btn-secondary.compact,
.btn-whatsapp.compact {
  padding: 0.78rem 1.1rem;
  font-size: 0.84rem;
}

.premium-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.75rem;
  border: 1px solid rgba(212, 175, 55, 0.18);
  padding: 1.45rem;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(20px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.roadmap-pill {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.roadmap-step {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-soft));
  color: var(--brand-ink);
  font-size: 0.8rem;
  font-weight: 800;
}

.icon-chip,
.project-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  flex: none;
}

.audience-card,
.curriculum-card,
.project-card {
  border-radius: 1.4rem;
  padding: 1.3rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.audience-card:hover,
.curriculum-card:hover,
.project-card:hover,
.batch-card:hover,
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.24);
  box-shadow: 0 26px 50px rgba(212, 175, 55, 0.08);
}

.pill-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.48rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(226, 232, 240, 0.88);
  font-size: 0.72rem;
  font-weight: 700;
}

.pill-soft.gold {
  border-color: rgba(212, 175, 55, 0.24);
  background: rgba(212, 175, 55, 0.09);
  color: var(--brand-soft);
}

.timeline-card {
  border-radius: 1.65rem;
  padding: 1.45rem;
}

.journey-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
}

.journey-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 1rem;
  top: 3.1rem;
  bottom: -0.35rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.55), transparent);
}

.journey-step__count {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-soft));
  color: var(--brand-ink);
  font-weight: 800;
  flex: none;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.pricing-card {
  border-radius: 1.6rem;
  padding: 1.5rem;
}

.pricing-card.featured {
  border-color: rgba(212, 175, 55, 0.28);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.12), 0 30px 70px rgba(0, 0, 0, 0.28);
}

.featured-badge {
  position: absolute;
  left: 50%;
  top: -0.7rem;
  transform: translateX(-50%);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-soft));
  color: var(--brand-ink);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.plan-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.12);
  color: #93c5fd;
  font-size: 0.68rem;
  font-weight: 700;
}

.plan-chip.green {
  background: rgba(16, 185, 129, 0.12);
  color: #6ee7b7;
}

.installment-banner {
  border-radius: 1.6rem;
  padding: 1.45rem;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(212, 175, 55, 0.1), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(212, 175, 55, 0.08);
}

.batch-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border-radius: 1.35rem;
  padding: 1.2rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.offer-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: rgba(226, 232, 240, 0.8);
  font-size: 0.95rem;
  line-height: 1.65;
}

.cta-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.52rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.nav-shell {
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}

.nav-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  background: rgba(212, 175, 55, 0.14);
}

.nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.progress-dot {
  width: 0.6rem;
  height: 0.6rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  transition: width 0.3s ease, background 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  padding: 0;
}

.progress-dot.active {
  width: 1.9rem;
  background: linear-gradient(90deg, var(--brand-gold), var(--brand-soft));
  transform: scale(1.02);
}

.slide-number {
  font-variant-numeric: tabular-nums;
}

.safe-kbd {
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.16rem 0.45rem;
  background: rgba(255, 255, 255, 0.04);
}

.whatsapp-float {
  position: fixed;
  right: 0.9rem;
  bottom: 5.9rem;
  z-index: 55;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border-radius: 999px;
  padding: 0.7rem 0.95rem 0.7rem 0.75rem;
  background: linear-gradient(135deg, #29d366, #129946);
  color: #fff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 20px 40px rgba(41, 211, 102, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 26px 50px rgba(41, 211, 102, 0.34);
}

.whatsapp-float__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 1024px) {
  .slide-shell {
    width: min(100%, calc(100% - 1.2rem));
  }

  .hero-logo {
    width: min(16rem, 68vw);
  }
}

@media (max-width: 767px) {
  .slide {
    padding-top: calc(5.4rem + env(safe-area-inset-top));
    padding-bottom: calc(6.2rem + env(safe-area-inset-bottom));
  }

  .slide-shell {
    min-height: auto;
    align-items: flex-start;
  }

  .hero-title {
    font-size: clamp(2.85rem, 12vw, 4.2rem);
    line-height: 0.99;
  }

  .section-title {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .premium-card,
  .timeline-card,
  .pricing-card,
  .installment-banner,
  .glass-panel,
  .audience-card,
  .curriculum-card,
  .project-card,
  .batch-card {
    border-radius: 1.3rem;
  }

  .whatsapp-float {
    right: 0.75rem;
    bottom: 5.15rem;
    padding-right: 0.8rem;
  }

  .nav-btn {
    width: 2.55rem;
    height: 2.55rem;
  }

  .progress-dot.active {
    width: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-logo-wrap {
    align-items: flex-start;
  }

  .hero-logo {
    width: min(14rem, 72vw);
  }

  .btn-primary,
  .btn-secondary,
  .btn-whatsapp {
    width: 100%;
  }

  .btn-primary.compact,
  .btn-secondary.compact,
  .btn-whatsapp.compact {
    width: 100%;
  }

  .metric-card {
    padding: 0.9rem;
  }

  .whatsapp-float {
    padding: 0.6rem;
  }

  .whatsapp-float .label {
    display: none;
  }
}

/* cleanup pass: lighter, less boxed, clearer logo, tighter typography */
body {
  background: linear-gradient(180deg, #0b1625 0%, #091321 55%, #07101b 100%);
}

body::before {
  opacity: 0.06;
  background-size: 64px 64px;
}

.slide {
  padding: calc(5.15rem + env(safe-area-inset-top)) 0 calc(5rem + env(safe-area-inset-bottom));
}

.slide-shell {
  width: min(1240px, calc(100% - 2.25rem));
  min-height: calc(100svh - 10.8rem);
}

.topbar-shell {
  border-radius: 1.1rem !important;
  padding: 0.75rem 1rem !important;
  background: rgba(7, 16, 27, 0.72) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16) !important;
}

.logo-tile,
.hero-logo-ring {
  background: #fff !important;
  border: 1px solid rgba(212, 175, 55, 0.18) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16) !important;
}

.logo-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem;
}

.logo-tile--mini {
  padding: 0.45rem !important;
}

.hero-logo-ring {
  padding: 0.7rem 0.9rem !important;
  border-radius: 1.15rem !important;
}

.hero-logo {
  width: min(16.5rem, 52vw);
}

.hero-title,
.section-title {
  font-family: 'Manrope', sans-serif !important;
  font-weight: 800 !important;
  line-height: 1.02 !important;
  letter-spacing: -0.045em !important;
}

.hero-title {
  font-size: clamp(2.5rem, 4.8vw, 4.1rem) !important;
}

.section-title {
  font-size: clamp(1.95rem, 4.2vw, 3rem) !important;
}

.accent-gradient {
  background: linear-gradient(120deg, #fff2bf 0%, var(--brand-soft) 45%, var(--brand-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glass-panel,
.audience-card,
.curriculum-card,
.project-card,
.timeline-card,
.pricing-card,
.batch-card,
.premium-card,
.installment-banner,
.metric-card,
.roadmap-pill,
.benefit-item {
  backdrop-filter: blur(10px) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14) !important;
}

.glass-panel,
.audience-card,
.curriculum-card,
.project-card,
.timeline-card,
.pricing-card,
.batch-card,
.metric-card,
.roadmap-pill,
.benefit-item {
  border-color: rgba(255, 255, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.03) !important;
}

.glass-panel::before,
.premium-card::before,
.timeline-card::before,
.pricing-card::before {
  display: none;
}

.metric-card {
  border-radius: 1rem;
  padding: 0.9rem;
}

.btn-primary,
.btn-secondary,
.btn-whatsapp {
  padding: 0.82rem 1.15rem;
  font-size: 0.88rem;
}

.btn-primary {
  box-shadow: 0 10px 22px rgba(212, 175, 55, 0.18);
}

.btn-whatsapp {
  box-shadow: 0 10px 22px rgba(41, 211, 102, 0.18);
}

.premium-card,
.timeline-card,
.pricing-card,
.installment-banner {
  border-radius: 1.25rem !important;
  padding: 1.2rem !important;
}

.audience-card,
.curriculum-card,
.project-card,
.batch-card {
  border-radius: 1.1rem !important;
  padding: 1.05rem !important;
}

.roadmap-pill,
.benefit-item {
  padding: 0.85rem 0.9rem !important;
  border-radius: 1rem !important;
}

.premium-card h2 {
  font-family: 'Manrope', sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em;
}

.nav-shell {
  background: rgba(7, 16, 27, 0.8) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16) !important;
}

.nav-btn {
  width: 2.55rem;
  height: 2.55rem;
  background: rgba(255, 255, 255, 0.04);
}

.whatsapp-float {
  right: 1rem;
  bottom: 1rem;
  padding: 0.66rem 0.88rem 0.66rem 0.72rem;
  font-size: 0.84rem;
  box-shadow: 0 12px 28px rgba(41, 211, 102, 0.22);
}

.whatsapp-float__icon {
  width: 2.1rem;
  height: 2.1rem;
}

@media (max-width: 767px) {
  body::before {
    opacity: 0.04;
  }

  .slide {
    padding-top: calc(4.85rem + env(safe-area-inset-top));
    padding-bottom: calc(5rem + env(safe-area-inset-bottom));
  }

  .slide-shell {
    width: min(100%, calc(100% - 1rem));
  }

  .topbar-shell {
    padding: 0.65rem 0.8rem !important;
  }

  .hero-title {
    font-size: clamp(2.2rem, 9vw, 3rem) !important;
    max-width: none;
  }

  .section-title {
    font-size: clamp(1.7rem, 7vw, 2.3rem) !important;
  }

  .hero-logo {
    width: min(13rem, 62vw);
  }

  .whatsapp-float {
    right: 0.75rem;
    bottom: 5.4rem;
  }

  .whatsapp-float .label {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-logo-ring {
    padding: 0.6rem 0.75rem !important;
  }

  .hero-logo {
    width: min(11.5rem, 65vw);
  }

  .whatsapp-float {
    bottom: 5.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
