/* ==================================================
   SALES RACER — Landing Page
   Premium dark / monochrome identity —
   charcoal & graphite base, brushed-metal accents,
   mint used only as a contained signature detail.
   ================================================== */

:root{
  --bg: #040404;
  --bg-alt: #0a0a0a;
  --bg-elevated: #101010;
  --card: #0e0e0e;
  --card-alt: #141413;
  --border: rgba(255,255,255,0.07);
  --border-strong: rgba(255,255,255,0.15);
  --border-soft: rgba(255,255,255,0.04);

  --text: #eeeeea;
  --text-dim: #8d8d88;
  --text-dimmer: #55554f;

  --silver: #e9e9e5;
  --silver-dim: #b9b9b3;

  --accent: #08f6b8;
  --accent-dim: #0c6b52;
  --accent-glow: rgba(8,246,184,0.22);

  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1160px;
  --radius: 16px;
  --radius-sm: 10px;
}

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

html{ scroll-behavior: smooth; }

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

img, svg{ display:block; max-width:100%; }

#bg-particles{
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

a{ color: inherit; text-decoration: none; }

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow{ max-width: 760px; }

.section{ padding: 130px 0; position: relative; }

.center{ text-align: center; margin-inline: auto; }

.accent{ color: var(--accent); }
.accent-italic{ color: var(--silver); font-style: italic; font-weight: 300; }

/* ---------- Typography ---------- */

.eyebrow{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin: 0 0 20px;
}
.eyebrow::before{
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  flex-shrink: 0;
}

/* ---------- Section kicker labels ("El problema real", "La solución"...) ---------- */

/* Títulos nivel 1 */
.launch-badge__title{
  display: inline-block;
  font-size: clamp(32px, 9vw, 52px);
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.05;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: none;
  margin: 0 0 18px;
}

/* "El problema real" / "La solución" — verde sutil, menor jerarquía que el número y el feature title */
.chrome-label{
  display: inline-block;
  font-size: clamp(25.6px, 7.2vw, 41.6px);
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.05;
  text-transform: uppercase;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: unset;
  color: rgba(8,246,184,0.65);
  text-shadow: none;
  margin: 0 0 18px;
}

/* ---------- Número + título de feature: número protagonista, título encimado ---------- */

.feature-number{
  position: relative;
  margin: 0 0 22px;
}
.feature-number__digit{
  position: relative;
  z-index: 0;
  display: block;
  font-size: 100px;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.9);
}
.feature-number__label{
  position: relative;
  z-index: 1;
  margin-top: -20px;
  display: inline-block;
  font-size: clamp(24px, 6vw, 34px);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #08f6b8;
}

/* Título de JARVIS: hace salto de línea, se ve muy espaciado por defecto */
.feature-block--reverse .feature-number__label{
  line-height: 1.05;
  margin-bottom: 12px;
  word-break: break-word;
}

.h2{
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  max-width: 820px;
  color: var(--silver);
}

/* Homologado al font-size del headline del hero (.hero__headline) */
#pain .h2,
#solution .h2{
  font-size: clamp(26px, 3.8vw, 44px);
}
.h2--center{ margin-inline: auto; text-align: center; }

.h3{
  font-size: clamp(21px, 3vw, 27px);
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 16px;
  color: var(--silver);
}

.body{
  font-size: 15.5px;
  color: var(--text-dim);
  margin: 0 0 14px;
  font-weight: 300;
}

.body-lg{
  font-size: clamp(16.5px, 2vw, 18.5px);
  color: var(--text-dim);
  margin: 0 0 16px;
  max-width: 620px;
  font-weight: 300;
  line-height: 1.65;
}
.body-lg--center{ margin-inline: auto; text-align: center; }

.pain-emphasis{ font-size: clamp(18.5px, 2.2vw, 20.5px); }

.emphasis{ color: var(--silver); font-weight: 500; }

.mock-dim{ color: var(--text-dimmer); font-size: 12px; font-weight: 300; }

/* ---------- Reveal animation ---------- */

.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

/* ---------- Buttons ---------- */

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, filter .18s ease;
  white-space: nowrap;
}
.btn:active{ transform: scale(0.97); }

.btn--primary{
  background: #08f6b8;
  color: #000;
  font-weight: 700;
  border-radius: 100px;
  border: none;
  box-shadow: 0 0 24px rgba(8,246,184,0.3);
  transition: box-shadow 0.3s ease;
}
.btn--primary:hover{
  box-shadow: 0 0 40px rgba(8,246,184,0.5);
}

.btn--ghost{
  background: transparent;
  border: 1px solid rgba(8,246,184,0.3);
  color: #08f6b8;
  border-radius: 100px;
  transition: all 0.3s ease;
}
.btn--ghost:hover{
  background: rgba(8,246,184,0.08);
  border-color: rgba(8,246,184,0.5);
}

.btn--sm{ padding: 11px 20px; font-size: 12px; }
.btn--lg{ padding: 19px 36px; font-size: 14px; }
.btn--block{ width: 100%; }

.btn__arrow{ animation: bob 1.6s ease-in-out infinite; }
@keyframes bob{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(4px); }
}

/* ---------- Nav ---------- */

.nav{
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
}
.nav.scrolled{
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.logo{
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
}
.logo--sm{ font-size: 13px; }

/* ---------- Hero ---------- */

.hero{
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse at top center, rgba(8,246,184,0.08) 0%, #000000 50%);
}

.hero::before{
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(8,246,184,0.18) 0%, rgba(8,246,184,0.06) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}
@media (prefers-reduced-motion: no-preference){
  .hero::before{ animation: haloBreath 4s ease-in-out infinite; }
}
@keyframes haloBreath{
  0%, 100%{ opacity: 0.7; transform: translateX(-50%) scale(1); }
  50%{ opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.hero::after{
  content: '';
  position: absolute;
  top: -60px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(8,246,184,0.05) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero__top-glow{
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at top center,
    rgba(8,246,184,0.22) 0%,
    rgba(8,246,184,0.10) 25%,
    rgba(8,246,184,0.03) 50%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.8;
}
@media (prefers-reduced-motion: no-preference){
  .hero__top-glow{ animation: heroGlow 5s ease-in-out infinite; }
}
@keyframes heroGlow{
  0%, 100%{ opacity: 0.8; transform: translateX(-50%) scaleX(1); }
  50%{ opacity: 1; transform: translateX(-50%) scaleX(1.08); }
}

.hero__dot-grid{
  position: absolute;
  inset: 0;
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(8,246,184,0.15) 1px, transparent 1px);
  background-size: 28px 28px;
}

.hero__bg-word{
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 200;
  font-size: min(13vw, 170px);
  line-height: 1;
  color: rgba(255,255,255,0.045);
  letter-spacing: 0.5em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  padding-left: 0.5em; /* optical center for extreme tracking */
}

.hero__stripe{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 55%);
  opacity: 0.4;
  z-index: 0;
}

.hero__inner{
  position: relative;
  z-index: 1;
  padding-top: 30px;
  padding-bottom: 60px;
  max-width: 780px;
}

.hero__headline{
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin: 0 0 26px;
  color: var(--silver);
}

.hero__headline .accent-italic{
  font-size: 0.62em;
  font-weight: 400;
  display: inline-block;
  margin-top: 6px;
}

.hero__subheadline{
  font-size: clamp(16.5px, 2vw, 19px);
  color: var(--text-dim);
  font-weight: 300;
  max-width: 560px;
  margin: 0 0 36px;
  line-height: 1.65;
}

/* ---------- Hero: social proof ---------- */

.social-proof{
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
}
.stars{ display: inline-flex; gap: 2px; font-size: 15px; line-height: 1; }
.star{ display: inline-block; }
.star--full{ color: var(--accent); text-shadow: 0 0 10px rgba(8,246,184,0.4); }
.star--half{ position: relative; display: inline-block; width: 1em; height: 1em; }
.star--base{ position: absolute; inset: 0; color: rgba(255,255,255,0.18); }
.star--fill{ position: absolute; inset: 0; width: 50%; overflow: hidden; color: var(--accent); text-shadow: 0 0 10px rgba(8,246,184,0.4); }
.social-proof__text{
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.01em;
}

/* ---------- Hero: App Store badge ---------- */

.app-store-badge{
  display: inline-block;
  margin: 0 0 12px;
  transition: transform .2s ease, filter .2s ease;
}
.app-store-badge:hover{ transform: translateY(-2px); filter: brightness(1.15); }
.app-store-badge img{ display: block; height: 54px; width: auto; }

.eyebrow--hero{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0 0 32px;
  background: rgba(8,246,184,0.05);
  border: 1px solid rgba(8,246,184,0.2);
  border-radius: 100px;
  padding: 6px 14px;
}

/* Centra el badge cuando no está dentro de un contenedor con text-align:center */
.eyebrow--center{
  display: flex;
  margin-left: auto;
  margin-right: auto;
}

.text-glow{ color: var(--accent); text-shadow: 0 0 20px rgba(8,246,184,0.35); }

/* ---------- Hero: phone mockup ---------- */

.hero__phone{
  position: relative;
  display: flex;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
  background: transparent;
  border: none;
  box-shadow: none;
}
.hero__phone .phone{ position: relative; z-index: 1; transform: none; }

.hero__phone-image{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  height: auto;
  background: transparent;
  border: none;
  box-shadow: none;
  filter: drop-shadow(0 0 20px rgba(8,246,184,0.20));
}

/* ---------- Hero CTA button with soft glow pulse ---------- */

.hero-cta-btn{
  display: block;
  width: fit-content;
  margin: 32px auto 0;
  background: #08f6b8;
  color: #000000;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1.5px;
  padding: 18px 36px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 24px rgba(8,246,184,0.4);
  transition: all 0.3s ease;
}
@media (prefers-reduced-motion: no-preference){
  .hero-cta-btn{ animation: glowPulse 2.5s ease-in-out infinite; }
}
@keyframes glowPulse{
  0%, 100%{
    box-shadow: 0 0 20px rgba(8,246,184,0.3), 0 0 40px rgba(8,246,184,0.1);
  }
  50%{
    box-shadow: 0 0 35px rgba(8,246,184,0.6), 0 0 70px rgba(8,246,184,0.25);
  }
}
.hero-cta-btn:hover{
  background: rgba(8,246,184,0.85);
  box-shadow: 0 0 50px rgba(8,246,184,0.7);
}
@media (prefers-reduced-motion: reduce){
  .hero-cta-btn{
    animation: none;
    box-shadow: 0 0 24px rgba(8,246,184,0.4);
  }
}

@media (max-width: 560px){
  .hero-cta-btn{ width: 90%; max-width: 320px; }
}

/* ---------- Grid / feature blocks ---------- */

.pain{ background: var(--bg-alt); position: relative; }
.pain::before,
.pain::after{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(8,246,184,0.2) 50%, transparent 100%);
}
.pain::before{ top: 0; }
.pain::after{ bottom: 0; }

.feature-block{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 84px 24px;
}
.feature-block--reverse .feature-block__text{ order: 2; }
.feature-block--reverse .feature-block__visual{ order: 1; }

.feature-block__text{ position: relative; }
.feature-block__text > *{ position: relative; z-index: 1; }

.missions-mockup{
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 28px auto 32px;
  background: transparent;
  border: none;
  box-shadow: none;
  filter: drop-shadow(0 0 20px rgba(8,246,184,0.20));
}

.jarvis-mockup{
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  margin: 0 auto;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  filter: drop-shadow(0 0 15px rgba(8,246,184,0.15));
}

.pista-mockup{
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 0 auto;
  background: transparent;
  border: none;
  box-shadow: none;
  filter: drop-shadow(0 0 20px rgba(8,246,184,0.20));
}

.feature-list{
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-list li{
  padding: 16px;
  background: rgba(8,246,184,0.04);
  border: 1px solid rgba(8,246,184,0.15);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 20px rgba(8,246,184,0.06), inset 0 1px 0 rgba(8,246,184,0.08);
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 300;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.feature-list li:hover{
  border-color: rgba(8,246,184,0.3);
  box-shadow: 0 0 30px rgba(8,246,184,0.10);
}
.feature-list strong{ color: #08f6b8; font-weight: 700; }

/* ---------- XP progression block ---------- */

.xp-block{
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(8,246,184,0.04);
  border: 1px solid rgba(8,246,184,0.15);
  border-radius: 16px;
  padding: 16px;
  margin-top: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.xp-item{
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.xp-item__icon{ font-size: 22px; line-height: 1; flex-shrink: 0; }
.xp-item__text{ min-width: 0; }
.xp-item__value{
  font-size: 18px;
  font-weight: 800;
  color: #08f6b8;
  margin: 0;
  line-height: 1.2;
}
.xp-item__value--legend{ font-size: 14px; letter-spacing: 2px; }
.xp-item__label{
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin: 4px 0 0;
}

.xp-divider{
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

@media (max-width: 400px){
  .xp-block{ flex-direction: column; align-items: stretch; }
  .xp-item{ flex-direction: row; }
  .xp-divider{ width: 100%; height: 1px; align-self: auto; }
}

.jarvis-quote{
  font-style: italic;
  font-size: 17px;
  font-weight: 400;
  color: var(--silver);
  border-left: 1px solid var(--accent-dim);
  padding: 10px 22px;
  margin: 0 0 20px;
  background: var(--card);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ---------- Phone mockups ---------- */

.phone-slot{ display: flex; flex-direction: column; align-items: center; gap: 18px; }

.phone{
  width: 280px;
  border-radius: 40px;
  background: linear-gradient(155deg, #1c1c1a, #030303 40%);
  border: 1px solid var(--border-strong);
  padding: 12px;
  box-shadow: 0 50px 90px -24px rgba(0,0,0,0.85), 0 1px 0 rgba(255,255,255,0.06) inset;
  position: relative;
}
.phone--tilt{ transform: rotate(2deg); }
.phone--tilt-rev{ transform: rotate(-2deg); }

.phone__notch{
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 20px;
  background: #000;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

.phone__screen{
  background: linear-gradient(180deg, #0b0b0b, #020202);
  border-radius: 30px;
  padding: 30px 16px 20px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.mock-caption{ font-size: 11.5px; color: var(--text-dimmer); text-align: center; letter-spacing: 0.03em; }

.mock-topbar{ display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.mock-logo{ font-weight: 500; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--silver); }
.mock-avatar{
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--card-alt); border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; color: var(--silver-dim);
}

.mock-mentor{
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.08em;
  color: var(--silver-dim);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 5px 10px;
  width: fit-content;
}
.mock-dot{ width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 6px var(--accent-glow); }

.mock-greet{ font-size: 18px; font-weight: 600; margin: 4px 0 0; color: var(--silver); }
.mock-sub{ font-size: 11px; color: var(--text-dim); margin: 0 0 6px; line-height: 1.5; font-weight: 300; }

.mock-missions-head{
  display: flex; justify-content: space-between;
  font-size: 10px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-top: 4px;
  text-transform: uppercase;
}
.mock-progress{ height: 3px; background: var(--card-alt); border-radius: 999px; overflow: hidden; }
.mock-progress__bar{ height: 100%; background: var(--silver-dim); }

.mock-mission{
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}
.mock-mission p{ margin: 0 0 6px; font-size: 12px; font-weight: 500; color: var(--silver); }
.mock-mission--done{ opacity: 0.5; }
.mock-strike{ text-decoration: line-through; }
.mock-mission__circle{
  width: 16px; height: 16px; border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  flex-shrink: 0; margin-top: 2px;
}
.mock-mission__circle--done{
  background: var(--accent); border-color: var(--accent);
  color: #04140d; font-size: 10px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.mock-chip{
  display: inline-block;
  background: rgba(255,255,255,0.05);
  color: var(--silver-dim);
  font-size: 10px; font-weight: 600;
  padding: 2px 8px; border-radius: 999px;
  margin-right: 6px;
  border: 1px solid var(--border);
}
.mock-chevron{ margin-left: auto; color: var(--text-dimmer); align-self: center; }

/* missions carousel mock */
.mock-carousel{ display: flex; align-items: center; gap: 10px; margin-top: 20px; }
.mock-card{ border-radius: 16px; padding: 16px; flex-shrink: 0; }
.mock-card--side{
  width: 40px; height: 200px;
  background: var(--card);
  border: 1px solid var(--border);
  opacity: 0.45;
  writing-mode: vertical-rl;
  display: flex; align-items: center; justify-content: center;
}
.mock-card--side p{ font-size: 9px; letter-spacing: 0.14em; color: var(--text-dimmer); }
.mock-card--main{
  flex: 1;
  background: linear-gradient(165deg, #141412, #0a0a0a);
  border: 1px solid var(--border-strong);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.8);
  min-height: 220px;
  display: flex; flex-direction: column; gap: 8px;
}
.mock-card__tag{ font-size: 10px; font-weight: 600; letter-spacing: 0.1em; color: var(--text-dimmer); margin: 0; text-transform: uppercase; }
.mock-card__title{ font-size: 14.5px; font-weight: 600; margin: 2px 0; color: var(--silver); }
.mock-card__body{ font-size: 11px; color: var(--text-dim); font-style: italic; flex: 1; font-weight: 300; }
.mock-card__foot{ display: flex; justify-content: space-between; align-items: center; }
.mock-dots{ display: flex; justify-content: center; gap: 6px; margin-top: 14px; }
.mock-dots span{ width: 6px; height: 6px; border-radius: 50%; background: var(--border-strong); }
.mock-dots span.on{ background: var(--accent); }

/* track mock */
.mock-track-head{ display: flex; justify-content: space-between; font-size: 10.5px; font-weight: 600; letter-spacing: 0.04em; color: var(--text-dim); margin-top: 30px; text-transform: uppercase; }
.mock-track{
  position: relative;
  height: 54px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  margin: 10px 0 14px;
}
.mock-track__car{
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 24px;
  filter: grayscale(1) contrast(1.15) brightness(1.3) drop-shadow(0 0 8px rgba(255,255,255,0.18));
  transition: left .6s ease;
}
.mock-track__flag{ position: absolute; right: 14px; top: 50%; transform: translateY(-50%); font-size: 18px; filter: grayscale(1) brightness(1.3); }
.mock-track__pct{ font-size: 24px; font-weight: 600; margin: 4px 0; color: var(--silver); }
.mock-track__pct .mock-dim{ font-size: 11px; font-weight: 600; margin-left: 4px; }

/* ---------- Solution intro ---------- */

.solution__intro{ max-width: 720px; margin: 0 auto 40px; text-align: center; }
.solution__intro .eyebrow,
.center .eyebrow{ justify-content: center; }

/* ---------- Pricing: launch badge (rocket, liquid glass) ---------- */

.launch-badge{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto 56px;
}
.launch-badge__icon{
  width: 92px;
  height: 92px;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 26px;
  background: linear-gradient(150deg, rgba(8,246,184,0.30), rgba(20,38,33,0.55) 55%, rgba(8,10,9,0.75));
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.35),
    inset 0 -14px 26px rgba(0,0,0,0.45),
    0 24px 54px -20px rgba(8,246,184,0.35);
  backdrop-filter: blur(6px) saturate(140%);
  -webkit-backdrop-filter: blur(6px) saturate(140%);
}
.launch-badge__icon::before{
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 120%;
  height: 60%;
  background: linear-gradient(180deg, rgba(255,255,255,0.35), transparent);
  transform: rotate(-8deg);
  pointer-events: none;
}
.launch-badge__icon svg{
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.45));
}
.launch-badge__subtitle{
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #08f6b8;
  margin: 0;
}

/* ---------- Pricing ---------- */

.pricing-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 44px;
  align-items: stretch;
}

.price-card{
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.price-card:hover{
  border-color: rgba(8,246,184,0.2);
  box-shadow: 0 0 20px rgba(8,246,184,0.05);
}
.price-card--featured{
  position: relative;
  background: linear-gradient(145deg, rgba(8,246,184,0.06) 0%, rgba(0,0,0,0.95) 60%, #000000 100%);
  border: 1.5px solid rgba(8,246,184,0.4);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 0 15px rgba(8,246,184,0.1), inset 0 1px 0 rgba(8,246,184,0.1);
}
@media (prefers-reduced-motion: no-preference){
  .price-card--featured{ animation: neonPulse 3s ease-in-out infinite; }
}
@keyframes neonPulse{
  0%, 100%{ box-shadow: 0 0 15px rgba(8,246,184,0.1), inset 0 1px 0 rgba(8,246,184,0.1); }
  50%{ box-shadow: 0 0 30px rgba(8,246,184,0.2), inset 0 1px 0 rgba(8,246,184,0.15); }
}
.price-card__title-lg{
  text-align: center;
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 900;
  letter-spacing: 2px;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.price-card__mockup{
  width: 140px;
  display: block;
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 12px rgba(8,246,184,0.25));
}
.price-card__title-md{
  text-align: center;
  font-size: clamp(20px, 5vw, 26px);
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.price-card__intro{
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-align: center;
  line-height: 1.5;
  margin: 0 0 20px;
}
.price-card__price{ text-align: center; margin: 0 0 4px; }
.price-card__price-amount{
  display: block;
  font-size: clamp(36px, 9vw, 52px);
  font-weight: 900;
  color: #08f6b8;
  text-shadow: 0 0 20px rgba(8,246,184,0.3);
}
.price-card__strike{
  display: block;
  font-size: 16px;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
  font-weight: 400;
  margin: 0 0 4px;
}
.price-card__strike--inline{
  display: inline;
  font-size: inherit;
  margin: 0;
}
.price-card__access-note{
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  margin: 4px 0 0;
}
.price-card__savings{
  display: block;
  width: fit-content;
  background: rgba(8,246,184,0.1);
  border: 1px solid rgba(8,246,184,0.3);
  color: #08f6b8;
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 10px auto 24px;
}
.price-card__list{ list-style: none; margin: 0 0 26px; padding: 0; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.price-card__list li{
  font-size: 13.5px; color: var(--text-dim);
  padding-left: 24px; position: relative;
  font-weight: 300;
}
.price-card__list li::before{
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: var(--accent);
  font-weight: 700;
  text-shadow: 0 0 8px rgba(8,246,184,0.5);
}

/* Bullets con ✅ del Plan Fundador */
.price-card__list--check li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-left: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}
.price-card__list--check li::before{ content: none; }
.check-icon{ flex-shrink: 0; color: #08f6b8; }

.price-card__cta{
  width: 100%;
  font-size: 15px;
  padding: 18px;
  margin-top: 16px;
}

/* ---------- Countdown de la oferta Fundador ---------- */
#countdown-wrap{
  text-align: center;
  margin-bottom: 16px;
}
#countdown-label{
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin-bottom: 10px;
}
#countdown-timer{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.cd-block{
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(8,246,184,0.06);
  border: 1px solid rgba(8,246,184,0.2);
  border-radius: 10px;
  padding: 10px 14px;
  min-width: 58px;
}
.cd-block span{
  font-size: 26px;
  font-weight: 900;
  color: #08f6b8;
  line-height: 1;
  font-family: monospace;
}
.cd-block label{
  font-size: 9px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  margin-top: 4px;
}
.cd-sep{
  font-size: 22px;
  font-weight: 700;
  color: rgba(8,246,184,0.4);
  margin-bottom: 16px;
}

.inline-form{ display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }

.input{
  width: 100%;
  background: var(--card-alt);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 10px;
}
.input:focus{ outline: none; border-color: var(--silver-dim); }
.input::placeholder{ color: var(--text-dimmer); }

.form-note{ font-size: 12px; color: var(--text-dimmer); text-align: center; margin-top: 14px; font-weight: 300; }

/* ---------- Guarantee ---------- */

/* ---------- Footer ---------- */

.footer{ position: relative; padding: 44px 0; }
.footer::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(8,246,184,0.2) 50%, transparent 100%);
}
.footer__inner{ display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }

/* ---------- Toast ---------- */

.toast{
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--card-alt);
  border: 1px solid var(--border-strong);
  color: var(--silver);
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  box-shadow: 0 20px 50px -16px rgba(0,0,0,0.85);
}
.toast.is-visible{ opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }

/* ==================================================
   Responsive
   ================================================== */

@media (max-width: 860px){
  .feature-block{ grid-template-columns: 1fr; gap: 40px; }
  .feature-block--reverse .feature-block__text{ order: 1; }
  .feature-block--reverse .feature-block__visual{ order: 2; }
  .pricing-grid{ grid-template-columns: 1fr; }
  .section{ padding: 90px 0; }
  .feature-block{ padding: 54px 24px; }
  .hero__bg-word{ letter-spacing: 0.3em; }

  .hero__inner{ text-align: center; }
  .social-proof{ justify-content: center; }
  .hero__headline,
  .hero__subheadline{ margin-left: auto; margin-right: auto; }

  .hero__top-glow{ width: 400px; height: 300px; top: -100px; }
}

@media (max-width: 560px){
  .phone{ width: 240px; }
  .phone__screen{ min-height: 420px; }
  .hero{ min-height: 100vh; }
  .hero__bg-word{ display: none; }
}
