/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: #111111;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-image:
    radial-gradient(circle at 10% 4%, rgba(255,249,95,0.06), transparent 26%),
    radial-gradient(circle at 92% 96%, rgba(255,101,223,0.06), transparent 28%);
  background-attachment: fixed;
}
::selection { background: #fff95f; color: #111; }

@keyframes vrPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,101,223,0.55); }
  70%  { box-shadow: 0 0 0 7px rgba(255,101,223,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,101,223,0); }
}

mark {
  background: #fff95f;
  color: #111;
  padding: 0.04em 0.3em;
  border-radius: 5px;
  font-weight: 500;
}

/* ===== SPACING UTILITIES ===== */
.mb-6  { margin-bottom: 6px; }
.mb-7  { margin-bottom: 7px; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-14 { margin-bottom: 14px; }
.mb-18 { margin-bottom: 18px; }
.mb-20 { margin-bottom: 20px; }
.mb-22 { margin-bottom: 22px; }
.mb-24 { margin-bottom: 24px; }
.mb-26 { margin-bottom: 26px; }
.mb-30 { margin-bottom: 30px; }
.mb-34 { margin-bottom: 34px; }
.mb-36 { margin-bottom: 36px; }
.mb-40 { margin-bottom: 40px; }

.mw-600 { max-width: 600px; }
.mw-640 { max-width: 640px; }
.mw-680 { max-width: 680px; }
.mw-720 { max-width: 720px; }
.mw-760 { max-width: 760px; }

/* ===== LAYOUT ===== */
.page-wrapper {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 32px;
  color: #fff;
}

.section {
  padding: 68px 0;
  border-top: 1px solid #2a2a2a;
}

.section--cover  { padding: 72px 0 64px; }
.section--closing { padding: 68px 0 96px; border-top: 1px solid #2a2a2a; }

/* ===== SHARED TYPOGRAPHY ===== */
.label-mono {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: #ff65df;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.label-mono--sm {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #ff65df;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.section-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: #fff;
}

.section-body {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  line-height: 1.78;
  color: #bcbcbc;
}

.text-yellow { color: #fff95f; }

/* ===== GRIDS ===== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.grid-3--gap14 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* ===== CARDS ===== */
.card {
  background: #1A1A1A;
  border: 1px solid #333;
  border-radius: 24px;
  padding: 30px;
}

.card--yellow-border { border-color: rgba(255,249,95,0.28); }

.card--sm {
  background: #1A1A1A;
  border: 1px solid #333;
  border-radius: 18px;
  padding: 24px;
}

.card--process {
  background: #1A1A1A;
  border: 1px solid #333;
  border-radius: 24px;
  padding: 34px;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 28px;
  align-items: start;
}

/* ===== CARD INNER LABELS ===== */
.card-label {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.card-label--gray   { color: #888; }
.card-label--yellow { color: #fff95f; }

/* ===== CHECK LISTS ===== */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.check-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.li-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

.li-item--negative { color: #bdbdbd; }
.li-item--positive { color: #e6e6e6; }

.li-item--sm {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.45;
  color: #d0d0d0;
}

/* ===== ICON CIRCLES ===== */
.icon-x {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid #3a3a3a;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-top: 1px;
}

.icon-check {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff95f;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}

.icon-check--sm {
  flex: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff95f;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  margin-top: 1px;
}

.icon-check--md {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff95f;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

/* ===== COVER ===== */
.cover-logo {
  width: 120px;
  height: 120px;
  display: block;
  margin: 0 0 28px -6px;
}

.cover-overline {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff95f;
  margin-bottom: 22px;
}

.cover-h1 {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 78px;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 26px;
}

.cover-tagline {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.6;
  color: #9a9a9a;
  max-width: 600px;
}

.slots-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  background: rgba(255,101,223,0.14);
  color: #ff65df;
  border-radius: 100px;
  padding: 11px 22px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff65df;
  animation: vrPulse 2.2s ease-out infinite;
}

.cover-divider {
  position: relative;
  height: 3px;
  width: 220px;
  margin-top: 48px;
  background-image: repeating-linear-gradient(90deg, #ff65df 0 16px, transparent 16px 28px);
}

.cover-arrow {
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid #ff65df;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

/* ===== 01 — ANTES DE SEGUIR ===== */
.closing-line {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  color: #fff;
  margin-top: 34px;
}

/* ===== BODY MUTED ===== */
.body-sm {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #9a9a9a;
}

/* ===== 02 — EL PROGRAMA ===== */
.barrier-arrow {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: #ff65df;
  margin-bottom: 12px;
}

.barrier-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
}

.barrier-body {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #999;
}

.program-closing {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  color: #fff;
  max-width: 720px;
}

/* ===== 03 — CREDIBILIDAD ===== */
.cred-headline {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 40px;
  letter-spacing: -0.01em;
  color: #fff95f;
  margin-bottom: 40px;
}

.cred-stat-value {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 30px;
  color: #fff95f;
  line-height: 1;
  margin-bottom: 8px;
}

.cred-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 19px;
  color: #fff;
  margin-bottom: 6px;
}

.cred-note {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #999;
}

.cred-card--wide { grid-column: span 2; }

.cred-footer {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.78;
  color: #9a9a9a;
  max-width: 720px;
  margin-top: 34px;
}

/* ===== 04 — EL PROCESO ===== */
.process-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.phase-number {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 72px;
  color: #fff95f;
  line-height: 0.8;
}

.phase-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: #fff;
  margin-bottom: 12px;
}

.phase-body {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #a8a8a8;
  margin-bottom: 22px;
  max-width: 600px;
}

/* ===== 05 — LO QUE RECIBES ===== */
.deliverable-card {
  background: #1A1A1A;
  border: 1px solid #333;
  border-radius: 18px;
  padding: 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.deliverable-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 19px;
  color: #fff;
  margin-bottom: 7px;
}

.deliverable-body {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #999;
}

/* ===== 06 — FIT ===== */
.fit-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 20px;
}

.fit-title--no  { color: #fff; }
.fit-title--yes { color: #fff95f; }

/* ===== 07 — INVERSIÓN ===== */
.investment-card {
  background: #1A1A1A;
  border: 1px solid #333;
  border-radius: 24px;
  overflow: hidden;
}

.investment-bar {
  height: 4px;
  background: linear-gradient(90deg, #fff95f, #ff65df);
}

.investment-inner { padding: 44px; }

.investment-label {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 14px;
}

.investment-price {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 84px;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #fff95f;
}

.investment-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #cfcfcf;
  margin-top: 12px;
  margin-bottom: 30px;
}

.investment-body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #bcbcbc;
  max-width: 640px;
  padding-top: 26px;
  border-top: 1px solid #333;
}

.investment-footer {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #9a9a9a;
  max-width: 720px;
  margin-top: 22px;
}

/* ===== 08 — FAQ ===== */
.faq-list { display: flex; flex-direction: column; }

.faq-item {
  padding: 26px 0;
  border-top: 1px solid #2a2a2a;
}

.faq-item--last { border-bottom: 1px solid #2a2a2a; }

.faq-question {
  font-family: 'League Spartan', sans-serif;
  font-weight: 700;
  font-size: 21px;
  color: #fff;
  margin-bottom: 12px;
}

.faq-marker {
  color: #ff65df;
  margin-right: 6px;
}

.faq-answer {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: #a8a8a8;
  max-width: 760px;
}

/* ===== CIERRE ===== */
.cta-card {
  background: #fff95f;
  color: #111;
  border-radius: 24px;
  padding: 56px 48px;
}

.cta-overline {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.55);
  margin-bottom: 18px;
}

.cta-title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 52px;
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: #111;
  margin-bottom: 20px;
  max-width: 640px;
}

.cta-body {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #1c1c1c;
  max-width: 560px;
  margin-bottom: 34px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #ff65df;
  color: #111;
  border-radius: 100px;
  padding: 15px 28px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: transform .18s cubic-bezier(.2,.7,.3,1), filter .18s cubic-bezier(.2,.7,.3,1);
}

.cta-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #111;
  color: #fff;
  border-radius: 100px;
  padding: 14px 24px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
}

.footer-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}

.footer-logo {
  width: 52px;
  height: 52px;
  display: block;
}

.footer-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #777;
  letter-spacing: 0.04em;
}

/* ===== RESPONSIVE — MOBILE (≤639px) ===== */
@media (max-width: 639px) {

  /* Layout */
  .page-wrapper { padding: 0 16px; }
  .section { padding: 48px 0; }
  .section--cover { padding: 48px 0 40px; }
  .section--closing { padding: 48px 0 64px; }

  /* Grids → 1 columna */
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-3--gap14 { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr; }
  .cred-card--wide { grid-column: span 1; }

  /* Cover */
  .cover-logo { width: 80px; height: 80px; margin-bottom: 20px; }
  .cover-h1 { font-size: 38px; line-height: 1.0; }
  .cover-tagline { font-size: 16px; }
  .cover-divider { margin-top: 32px; }

  /* Tipografía de secciones */
  .section-title { font-size: 28px; }
  .section-body { font-size: 15px; }

  /* Cards */
  .card { padding: 20px; border-radius: 18px; }
  .card--sm { padding: 18px; border-radius: 14px; }
  .card--process {
    padding: 22px;
    grid-template-columns: auto 1fr;
    gap: 14px;
  }

  /* Proceso */
  .phase-number { font-size: 40px; line-height: 1; }
  .phase-title { font-size: 20px; }
  .phase-body { font-size: 14px; }

  /* Credibilidad */
  .cred-headline { font-size: 26px; line-height: 1.1; margin-bottom: 24px; }

  /* Deliverables */
  .deliverable-card { padding: 18px; gap: 12px; border-radius: 14px; }
  .deliverable-title { font-size: 17px; }

  /* Inversión */
  .investment-inner { padding: 24px; }
  .investment-price { font-size: 52px; line-height: 1.0; }

  /* CTA / Cierre */
  .cta-card { padding: 32px 22px; }
  .cta-title { font-size: 32px; line-height: 1.05; }
  .cta-body { font-size: 15px; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-primary, .cta-secondary { justify-content: center; }

  /* FAQ */
  .faq-question { font-size: 18px; }

  /* Footer */
  .footer-row { margin-top: 32px; }

  /* Gradiente: solo en la parte superior, sin fixed */
  body {
    background-image: radial-gradient(ellipse 80% 28% at 50% 0%, rgba(255,255,255,0.06) 0%, transparent 100%);
    background-attachment: scroll;
  }
}
