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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

:root {
  --bg: #0A0A08;
  --bg2: #111110;
  --bg3: #1A1A18;
  --text: #F0EDE6;
  --text2: #cfcfcf;
  --text3: #5A5855;
  --accent: #C8F55A;
  --accent2: #A8D43A;
  --border: rgba(240,237,230,0.08);
  --border2: rgba(240,237,230,0.15);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Raleway', system-ui, sans-serif;
  --hero-title-shift: 12px;
  --hero-title-duration: 420ms;
  --hero-title-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --hero-title-line-shift: 16px;
  --hero-title-blur: 6px;
  --hero-title-stagger: 60ms;
  --hero-scroll-span: 100dvh;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.privacy-modal-open {
  overflow: hidden;
}

/* GRAIN OVERLAY */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,8,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}

.nav-logo span { /* color manejado por .accent-gradient */ }

/* BOTONES STRIPE */
.btn-primary, .stripe-button {
  background: var(--accent);
  color: #0A0A08 !important;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 2rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none !important;
  display: inline-block;
}

.btn-primary:hover, .stripe-button:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200,245,90,0.25);
}

.nav-cta {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

.btn-ghost {
  font-size: 0.85rem;
  color: var(--text2);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

.btn-ghost:hover { color: var(--text); }

/* ===================== HERO ===================== */
.hero-wrapper {
  position: relative;
  min-height: var(--hero-scroll-span);
  overflow: visible;
}

.hero-pin {
  position: sticky;
  top: 0;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Fondo radial glow */
.hero-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 80%, rgba(200,245,90,0.08) 0%, transparent 65%),
    radial-gradient(ellipse 40% 35% at 80% 15%, rgba(200,245,90,0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Grid de fondo sutil */
.hero-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240,237,230,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,237,230,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.hero {
  position: relative;
  z-index: 1;
  padding: 0 4rem;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Líneas del h1 — clip reveal para GSAP */
.hero-line {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.hero-line > span {
  display: inline-block;
  opacity: 0;
  filter: blur(var(--hero-title-blur));
  transform: translateY(var(--hero-title-line-shift));
  transition:
    opacity var(--hero-title-duration) var(--hero-title-ease),
    transform var(--hero-title-duration) var(--hero-title-ease),
    filter var(--hero-title-duration) var(--hero-title-ease);
  will-change: opacity, transform, filter;
}

/* Imágenes flotantes en el hero */
.hero-float {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  height: auto;
}

.hero-float-left {
  left: -2%;
  bottom: 5%;
  width: clamp(180px, 22vw, 320px);
  transform: rotate(-12deg);
  animation: floatL 6s ease-in-out infinite;
}

.hero-float-right {
  right: -2%;
  top: 12%;
  width: clamp(160px, 18vw, 280px);
  transform: rotate(10deg);
  animation: floatR 7s ease-in-out infinite;
}

@keyframes floatL {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50% { transform: rotate(-12deg) translateY(-16px); }
}

@keyframes floatR {
  0%, 100% { transform: rotate(10deg) translateY(0); }
  50% { transform: rotate(10deg) translateY(-12px); }
}

.hero-eyebrow {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.25rem;
}
.hero-eyebrow-row {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.hero-eyebrow-date {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--accent);
}
.hero-eyebrow-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(200,245,90,0.8);
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

@keyframes accentFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── Degradado animado para textos --accent ── */
.accent-gradient {
  background: linear-gradient(
    90deg,
    #0A93AE,
    #0AAE57 27%,
    #CCFF34,
    #0AAE57,
    #0A93AE
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: accentFlow 9s ease-in-out infinite;
}

.hero-eyebrow-sep {
  width: 24px; height: 1px;
  background: rgba(200,245,90,0.4);
}

.hero h1 {
  font-family: var(--sans);
  font-size: clamp(2.8rem, 8vw, 5.6rem);
  line-height: 1.0;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title {
  position: relative;
}

.hero-title-stage {
  display: grid;
  width: 100%;
}

.hero-title-state {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--hero-title-duration) var(--hero-title-ease),
    visibility 0s linear var(--hero-title-duration);
  will-change: opacity;
}

.hero-line-set-mobile {
  display: none;
}

.hero-title-state.is-active {
  opacity: 1;
  visibility: visible;
  transition:
    opacity var(--hero-title-duration) var(--hero-title-ease),
    visibility 0s linear 0s;
}

.hero-title-state .hero-line[data-line-index="1"] > span { transition-delay: 0ms; }
.hero-title-state .hero-line[data-line-index="2"] > span { transition-delay: var(--hero-title-stagger); }
.hero-title-state .hero-line[data-line-index="3"] > span { transition-delay: calc(var(--hero-title-stagger) * 2); }

.hero-title-state.is-active .hero-line > span {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.01em;
  position: relative;
}

.hero h1 em::after {
  display: none;
}

.hero-sub {
  font-family: var(--sans);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--text2);
  font-weight: 400;
  font-style: normal;
  margin-bottom: 3rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.75rem;
  justify-content: center;
}

.hero-tag {
  font-size: 0.75rem;
  color: var(--text2);
  border: 1px solid var(--border2);
  padding: 0.35rem 0.85rem;
  border-radius: 2rem;
  background: rgba(240,237,230,0.03);
  backdrop-filter: blur(4px);
  transition: border-color 0.2s, color 0.2s;
}

.hero-tag:hover {
  border-color: rgba(200,245,90,0.3);
  color: var(--text);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-price {
  font-size: 0.82rem;
  color: var(--text3);
  margin-top: 1.25rem;
  text-align: center;
}

.hero-price strong { color: var(--text2); }

/* Línea decorativa inferior del hero */
.hero-rule {
  position: absolute;
  bottom: 0; left: 2rem; right: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
  z-index: 1;
}

/* Número grande decorativo de fondo */
.hero-bg-number {
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: clamp(14rem, 28vw, 22rem);
  font-style: italic;
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,245,90,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -0.05em;
}

/* Imágenes flotantes en secciones */
.section-float {
  position: relative;
  overflow: visible;
}

.section-float-img {
  position: absolute;
  pointer-events: none;
  z-index: -1;
  animation: floatL 7s ease-in-out infinite;
  opacity: 0; /* reveal controlado por JS al hacer scroll */
  height: auto;
}

.section-float-img-right {
  right: 0%;
  top: 30%;
  transform: translateY(-50%) rotate(15deg);
  width: clamp(120px, 14vw, 200px);
  animation: floatR 8s ease-in-out infinite;
}

.section-float-img-left {
  left: -14%;
  left: -10%;
  top: 50%;
  transform: translateY(-50%) rotate(-10deg);
  width: clamp(120px, 14vw, 200px);
}

.section-float-img-bottom-left {
  left: -10%;
  bottom: 4%;
  top: auto;
  transform: rotate(-8deg);
  width: clamp(140px, 16vw, 220px);
  mix-blend-mode: screen;
  animation: floatL 9s ease-in-out infinite;
}

.section.section-float-stack {
  padding-left: clamp(5.5rem, 10vw, 8.5rem);
}

.section-float-stack .section-float-img-right {
  right: clamp(0.5rem, 2vw, 1.75rem);
  top: 25%;
  width: clamp(110px, 12vw, 168px);
}

.section-float-stack .section-float-img-bottom-left {
  left: clamp(0.5rem, 2vw, 1.5rem);
  bottom: 1.5rem;
  width: clamp(112px, 12vw, 170px);
}

.section.section-float-pricing {
  isolation: isolate;
  padding-left: clamp(5.5rem, 10vw, 8.5rem);
  padding-right: clamp(5.5rem, 10vw, 8.5rem);
}

.section-float-pricing .section-float-img-right {
  right: clamp(0.5rem, 2vw, 1.75rem);
  top: 28%;
  width: clamp(118px, 13vw, 180px);
  z-index: 0;
  mix-blend-mode: screen;
}

.section-float-pricing .section-float-img-left {
  left: clamp(0.25rem, 1.5vw, 1.25rem);
  top: 56%;
  width: clamp(118px, 13vw, 180px);
  z-index: 0;
  mix-blend-mode: screen;
}

@media (max-width: 900px) {

  /* Imágenes de sección: mantener composición flotante en mobile */
  .section-float-img {
    position: absolute;
    display: block;
    margin: 0;
    opacity: 1 !important;
    mix-blend-mode: screen;
    height: auto;
  }

  .section-float-img-right {
    right: -10px;
    top: 34%;
    width: 112px;
    transform: translateY(-50%) rotate(15deg);
    animation: floatR 8s ease-in-out infinite;
  }

  .section-float-img-left {
    left: -12px;
    top: 56%;
    width: 112px;
    transform: translateY(-50%) rotate(-10deg);
    animation: floatL 7s ease-in-out infinite;
  }

  .section-float-img-bottom-left {
    left: -8px;
    bottom: 10%;
    top: auto;
    width: 116px;
    transform: rotate(-8deg);
    animation: floatL 9s ease-in-out infinite;
  }

  /* Hero: esquinas pequeñas, sin tapar el texto central */
  .hero-float {
    display: block;
    mix-blend-mode: screen;
  }
  .hero-float-left {
    width: 90px;
    left: -12px;
    bottom: 114px;
    transform: rotate(-12deg);
  }
  .hero-float-right {
    width: 80px;
    right: -12px;
    top: 90px;
    transform: rotate(10deg);
  }

  .section.section-float-stack,
  .section.section-float-pricing {
    padding-left: 4.5rem;
    padding-right: 4.5rem;
  }

  .section-float-stack .section-float-img-right {
    right: 0.5rem;
    top: 26%;
    width: 92px;
  }

  .section-float-stack .section-float-img-bottom-left {
    left: 0.35rem;
    bottom: 1.5rem;
    width: 96px;
  }

  .section-float-pricing .section-float-img-right {
    right: 0.35rem;
    top: 24%;
    width: 98px;
  }

  .section-float-pricing .section-float-img-left {
    left: -1.6rem;
    top: 74%;
    width: 98px;
  }
}

/* DIVIDER */
.divider { border: none; border-top: 1px solid var(--border); margin: 0 4rem; }

/* SECCIONES */
.section { padding: 5rem 4rem; max-width: 1100px; margin: 0 auto; }

@supports (content-visibility: auto) {
  .section,
  .cta-final,
  .contact-strip,
  footer {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
  }
}

.label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.section-title {
  font-family: var(--sans);
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 2.5rem;
}

.section-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.section-float .label,
.section-float .section-title {
  text-align: center;
}

/* FOR WHOM */
.whom-list {
  list-style: none;
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
}

.whom-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.whom-item:last-child { border-bottom: none; }
.whom-item:hover { background: var(--bg2); }

.whom-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(200,245,90,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}

.whom-check::after {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.whom-item p { font-size: 1.05rem; color: var(--text2); line-height: 1.5; }
.whom-item p strong { color: var(--accent); font-weight: 500; }

/* PROGRAM */
.days { display: flex; flex-direction: column; gap: 1rem; }

.day-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.2s;
}

.day-card:hover { border-color: var(--border2); }

.day-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
}

.day-number {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  min-width: 48px;
}

.day-title { font-size: 1.1rem; font-weight: 500; }
.day-sub { font-size: 0.9rem; color: var(--text3); margin-top: 0.15rem; font-weight: 400; }
.day-date {
  margin-left: auto;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  text-align: right;
  line-height: 1.3;
}

.day-body {
  padding: 0 1.5rem 1.25rem;
  border-top: 1px solid var(--border);
}

.day-topics { list-style: none; margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }

.day-topics li {
  font-size: 0.95rem;
  color: var(--text2);
  padding-left: 1rem;
  position: relative;
}

.day-topics li::before { content: '—'; position: absolute; left: 0; color: var(--text3); }

.day-practice {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(200,245,90,0.06);
  border: 1px solid rgba(200,245,90,0.15);
  border-radius: 0.5rem;
  font-size: 0.92rem;
  color: var(--accent);
}

.day-practice span { color: var(--text2); }

/* STACK */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
}

.stack-item:nth-child(-n+3) { grid-column: span 2; }
.stack-item:nth-child(n+4)  { grid-column: span 3; }

@media (max-width: 768px) {
  .stack-grid { grid-template-columns: 1fr; }
  .stack-item:nth-child(-n+3) { grid-column: span 1; }
  .stack-item:nth-child(n+4)  { grid-column: span 1; }
}

.stack-item {
  background: var(--bg);
  padding: 2rem 1.75rem;
  position: relative;
  transition: background 0.2s;
  overflow: hidden;
}

.stack-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}

.stack-item:hover { background: var(--bg2); }
.stack-item:hover::before { opacity: 1; }
.stack-item:hover .stack-name { color: var(--accent); }

.stack-index {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 1.25rem;
  display: block;
}

.stack-name {
  font-family: 'Raleway', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
  transition: color 0.2s;
}

.stack-desc {
  font-size: 0.9rem;
  color: var(--text3);
  line-height: 1.55;
  font-weight: 400;
}

.stack-intro {
  color: var(--text2);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 550px;
}

/* OUTCOMES */
.outcomes-grid {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
}

.outcome-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0 2rem;
  padding: 1.625rem 2rem;
  background: var(--bg);
  align-items: center;
  transition: background 0.2s;
}

.outcome-item:hover { background: var(--bg2); }

.outcome-num {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 400;
  font-style: normal;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
  letter-spacing: 0.04em;
}

.outcome-text { font-size: 1.05rem; color: var(--text2); line-height: 1.5; }
.outcome-text strong { color: var(--text); font-weight: 600; }

@media (max-width: 520px) {
  .outcome-item { grid-template-columns: 2.25rem 1fr; gap: 0 1rem; padding: 1.25rem 1.25rem; }
  .outcome-text { font-size: 0.95rem; }
}

/* PRICING */
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 860px;
  margin: 0 auto;
  gap: 1rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

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

@media (max-width: 640px) {
  .section.section-float-stack,
  .section.section-float-pricing {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .section-float-stack .section-float-img-right,
  .section-float-pricing .section-float-img-right {
    width: 84px;
  }

  .section-float-stack .section-float-img-bottom-left,
  .section-float-pricing .section-float-img-left {
    width: 86px;
  }

  .section-float-pricing .section-float-img-left {
    left: -1.9rem;
    top: 76%;
  }
}

.price-original {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text3);
  text-decoration: line-through;
  margin-bottom: 1rem;
}

.price-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.75rem;
  position: relative;
  z-index: 1;
}

.price-card.featured {
  border-color: rgba(200,245,90,0.3);
  background:
    linear-gradient(180deg, rgba(28,30,22,0.96) 0%, rgba(18,18,16,0.96) 100%);
  box-shadow: 0 0 40px rgba(200,245,90,0.06), inset 0 1px 0 rgba(200,245,90,0.1);
}

.price-badge {
  position: absolute;
  top: -0.6rem; left: 1.5rem;
  background: var(--accent);
  color: #0A0A08;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.75rem;
  border-radius: 2rem;
}

.price-label { font-size: 0.85rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text3); margin-bottom: 1rem; }

.price-amount {
  font-family: var(--sans);
  font-size: 4.5rem;
  font-weight: 600;
  font-style: normal;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.price-amount sup { font-family: var(--sans); font-size: 1.25rem; vertical-align: top; margin-top: 0.5rem; display: inline-block; color: var(--text2); margin-right: 0.15rem; font-weight: 600; }

.price-amount span { font-family: var(--sans); font-size: 1rem; color: var(--text2); margin-left: 0; font-weight: 600; }

.price-note { font-size: 0.9rem; color: var(--text3); margin-bottom: 1.5rem; }

.price-conversion {
  font-size: 0.85rem;
  color: var(--text3);
  margin-bottom: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(240,237,230,0.04);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  display: inline-block;
}
.price-conversion strong { color: var(--text2); font-weight: 500; }

.price-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.75rem; }

.price-features li {
  font-size: 0.95rem;
  color: var(--text2);
  display: flex; align-items: center; gap: 0.5rem;
}

.price-features li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  opacity: 0.6;
}

/* Botón secundario (sin relación con Stripe) */
.price-btn-ghost {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.85rem;
  border-radius: 2rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: 1px solid var(--border2);
  color: var(--text);
  background: transparent;
}

.price-btn-ghost:hover { background: var(--bg3); }

/* Botón LS con ancho completo en precio card */
.price-card .stripe-button {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.85rem 2rem;
  font-size: 0.9rem;
}

.price-spots { text-align: center; font-size: 0.9rem; color: var(--text3); margin-top: 1rem; }
.price-spots strong { color: var(--accent); }

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
}

.faq-item { border-bottom: 1px solid var(--border); padding: 1.25rem 1.5rem; }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-size: 1.05rem; font-weight: 500; margin-bottom: 0.6rem; color: var(--accent); }
.faq-a { font-size: 0.95rem; color: var(--text2); line-height: 1.65; }
.faq-title { margin-bottom: 2rem; }

/* CTA FINAL */
.cta-final {
  position: relative;
  padding: 7rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  bottom: 10%; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 200px;
  background: radial-gradient(ellipse, rgba(200,245,90,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-final h2 {
  font-family: var(--sans);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  position: relative;
}

.cta-final h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.cta-final p {
  font-size: 1.05rem;
  color: var(--text2);
  margin-bottom: 2.75rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-final .stripe-button {
  font-size: 1rem;
  padding: 1rem 2.75rem;
  position: relative;
}

/* CONTACTO (pre-footer) */
.contact-strip {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0rem 4rem 4.5rem;
  text-align: center;
}

.contact-strip .label {
  margin-bottom: 1rem;
}

.contact-strip-title {
  font-family: var(--sans);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
}

.contact-strip-text {
  font-size: 0.95rem;
  color: var(--text2);
  max-width: 440px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.contact-strip-email {
  display: inline-block;
  font-family: var(--sans);
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  font-weight: 400;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 245, 90, 0.35);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.contact-strip-email:hover {
  color: var(--accent2);
  border-bottom-color: var(--accent2);
}

.contact-strip-email:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 2px;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text3);
  position: relative;
  z-index: 1;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.footer-links button,
.footer-links a {
  background: none;
  border: none;
  color: var(--text3);
  font-family: var(--sans);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.footer-links button:hover,
.footer-links a:hover {
  color: var(--text2);
}

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 3rem);
  max-width: 720px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: opacity 0.3s, transform 0.3s;
}

#cookie-banner.hidden {
  display: none;
}

#cookie-banner.cookie-banner-exit {
  opacity: 0;
  transform: translateX(-50%) translateY(1rem);
}

.cookie-text {
  flex: 1;
  font-size: 0.85rem;
  color: var(--text2);
  line-height: 1.5;
}

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

.cookie-text button {
  background: none;
  border: none;
  color: var(--accent);
  font-family: var(--sans);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  gap: 0.65rem;
  flex-shrink: 0;
}

.cookie-btn-accept {
  background: var(--accent);
  color: #0A0A08;
  border: none;
  padding: 0.55rem 1.25rem;
  border-radius: 2rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.cookie-btn-accept:hover { background: var(--accent2); }

.cookie-btn-reject {
  background: transparent;
  color: var(--text2);
  border: 1px solid var(--border2);
  padding: 0.55rem 1.1rem;
  border-radius: 2rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.cookie-btn-reject:hover {
  border-color: var(--text3);
  color: var(--text);
}

@media (max-width: 560px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .cookie-actions { width: 100%; }
  .cookie-btn-accept, .cookie-btn-reject { flex: 1; text-align: center; }
}

/* ── MODAL DE PRIVACIDAD ── */
#privacy-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10,10,8,0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

#privacy-overlay.open {
  opacity: 1;
  pointer-events: all;
}

#privacy-modal {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 1.25rem;
  width: 100%;
  max-width: 680px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  transform: translateY(12px);
  transition: transform 0.25s;
  scrollbar-width: thin;
  scrollbar-color: var(--border2) transparent;
}

#privacy-overlay.open #privacy-modal {
  transform: translateY(0);
}

.privacy-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text2);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  transition: background 0.15s, color 0.15s;
}

.privacy-close:hover {
  background: var(--border2);
  color: var(--text);
}

#privacy-modal h2 {
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
}

#privacy-modal .privacy-date {
  font-size: 0.8rem;
  color: var(--text3);
  margin-bottom: 1.75rem;
}

#privacy-modal h3 {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

#privacy-modal p,
#privacy-modal li {
  font-size: 0.9rem;
  color: var(--text2);
  line-height: 1.65;
}

#privacy-modal ul {
  padding-left: 1.25rem;
  margin-top: 0.4rem;
}

#privacy-modal li { margin-bottom: 0.3rem; }

#privacy-modal a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

#privacy-modal .arco-box {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  margin-top: 0.5rem;
}

#privacy-modal .arco-box p {
  font-size: 0.875rem;
}

/* AVISO LS */
.ls-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text3);
  margin-top: 1.5rem;
}

.ls-note::before {
  content: '🔒';
  font-size: 12px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  nav { padding: 1.25rem 1.5rem; }
  .hero { padding: 8rem 1.5rem 4rem; }
  .hero h1 {
    font-size: clamp(2.18rem, 8.7vw, 3rem);
    line-height: clamp(0.86, 0.84 + 0.18vw, 0.92);
    letter-spacing: clamp(-0.04em, -0.03em, -0.024em);
  }
  .hero-title {
    width: min(100%, 26rem);
    margin-left: auto;
    margin-right: auto;
  }
  .hero-line-set-desktop {
    display: none;
  }
  .hero-line-set-mobile {
    display: block;
  }
  .hero-title-state {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-line-set-mobile .hero-line {
    display: block;
    margin: 0;
  }
  .hero-line-set-mobile .hero-line > span {
    display: block;
    text-wrap: balance;
  }
  .hero-eyebrow {
    gap: 0.35rem;
    margin-bottom: 1.75rem;
  }
  .hero-eyebrow,
  .hero-eyebrow-date {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
  }
  .hero-sub {
    max-width: clamp(18rem, 84vw, 25rem);
    margin-bottom: 2.5rem;
    font-size: clamp(1rem, 3.6vw, 1.08rem);
    line-height: 1.58;
  }
  .hero-meta {
    width: min(100%, 21rem);
    margin-left: auto;
    margin-right: auto;
    gap: 0.55rem;
    margin-bottom: 2.2rem;
  }
  .section { padding: 4rem 1.5rem; }
  .cta-final { padding: 5rem 1.5rem; }
  .contact-strip { padding: 3.5rem 1.5rem 4rem; }
  .divider { margin: 0 1.5rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .label, .section-title { text-align: center; }

  .day-header {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 0.5rem;
  }
  .day-number {
    font-size: 0.9rem;
    min-width: unset;
  }
  .day-date {
    order: 0;
    margin-left: auto;
    font-size: 0.9rem;
  }
  .day-header > div:nth-child(2) {
    width: 100%;
    order: 1;
  }

  :root {
    --hero-title-shift: 10px;
    --hero-title-line-shift: 14px;
    --hero-title-blur: 5px;
    --hero-title-stagger: 50ms;
  }
}

@media (max-width: 400px) {
  nav { padding: 1rem; gap: 0.5rem; }
  .nav-logo { font-size: 0.6rem; letter-spacing: 0.12em; }
  .nav-cta { padding: 0.45rem 0.85rem; font-size: 0.75rem; white-space: nowrap; }
  .hero h1 {
    font-size: clamp(1.98rem, 8.2vw, 2.52rem);
    line-height: clamp(0.84, 0.82 + 0.14vw, 0.9);
  }
  .hero-title {
    width: min(100%, 26rem);
  }
  .hero-eyebrow,
  .hero-eyebrow-date {
    font-size: 0.74rem;
    letter-spacing: 0.1em;
  }
  .hero-sub { max-width: clamp(16.5rem, 86vw, 19rem); }
}

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

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(1.2rem);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-0 { transition-delay: 0s; }
.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; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }
.reveal-delay-8 { transition-delay: 0.8s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; }

  .hero-title-state,
  .hero-title-state.is-active {
    transition: none;
  }

  .hero-line > span,
  .hero-title-state.is-active .hero-line > span {
    transition: none;
    opacity: 1;
    filter: none;
    transform: none;
  }
}
