/* ══════════════════════════════════════════════════
   ablalo — diseño v3 (hero centrado + H animada)
   ══════════════════════════════════════════════════ */

:root {
  --primary: #F97316;
  --primary-dark: #ea6a0a;
  --accent: #FFFFFF;
  --accent-deep: #f97316;
  --bg: #FEF3C7;
  --bg-soft: #FFFBF0;
  --text: #1C1917;
  --text-light: #78716c;
  --text-dim: #a8a29e;
  --light: #FED7AA;
  --border: rgba(249, 115, 22, 0.10);
  --border-strong: rgba(249, 115, 22, 0.22);

  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);

  --maxw: 1200px;
  --maxw-narrow: 900px;
  --pad: clamp(1.5rem, 5vw, 3.5rem);
}

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

html {
  scroll-behavior: auto;
}

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

h1,
h2,
h3,
h4 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
}

h3 {
  font-size: 1.4rem;
}

em {
  font-style: italic;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}



/* ═══════════ NAV ═══════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--pad);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
  will-change: transform;
}

body.scrolling .nav {
  transform: translateY(-100%);
}

.nav__logo {
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.nav__links {
  display: flex;
  gap: 2rem;
  font-size: 14px;
  font-weight: 500;
}

.nav__links a {
  color: var(--text-light);
  transition: color 0.3s var(--ease);
}

.nav__links a:hover {
  color: var(--text);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.nav__cta:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: 0 10px 20px rgba(99, 102, 241, 0.16);
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }
}

/* ═══════════ HERO (CENTRADO) ═══════════ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: clamp(7rem, 16vh, 10rem) var(--pad) clamp(3rem, 8vh, 5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Fondo animado */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  will-change: transform;
}

.orb--1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.35), transparent 70%);
  top: -10%;
  left: -8%;
  animation: orbFloat1 18s ease-in-out infinite;
}

.orb--2 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(165, 243, 252, 0.5), transparent 70%);
  bottom: -12%;
  right: -6%;
  animation: orbFloat2 22s ease-in-out infinite;
}

.orb--3 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(103, 232, 249, 0.3), transparent 70%);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat3 26s ease-in-out infinite;
}

@keyframes orbFloat1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(40px, 60px) scale(1.08);
  }
}

@keyframes orbFloat2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-50px, -40px) scale(1.1);
  }
}

@keyframes orbFloat3 {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-55%, -48%) scale(0.92);
  }
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99, 102, 241, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.9rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.meta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.6);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.6);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
  }
}

/* ═══════════ HERO TITLE (animación JS-driven) ═══════════ */
.hero__title {
  font-size: clamp(4rem, 14vw, 11rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: baseline;
  font-weight: 800;
  white-space: nowrap;
  position: relative;
  transition: justify-content 0s;
}

/* La H — controlada por JS/GSAP, empieza oculta para evitar flash */
.htitle__h {
  display: inline-block;
  color: var(--primary);
  position: relative;
  z-index: 2;
  overflow: hidden;
  white-space: nowrap;
  vertical-align: bottom;
  opacity: 0;
  width: auto;
}

/* Letra A y su acento — stacked via grid */
.htitle__a-wrap {
  display: inline-grid;
  grid-template-areas: "letter";
}

.htitle__a-accent,
.htitle__a-plain {
  grid-area: letter;
  transition: opacity 0.6s ease;
}

.htitle__a-accent {
  opacity: 0;
}

.htitle__a-plain {
  opacity: 1;
}

/* El resto de la palabra */
.htitle__rest {
  display: inline-block;
}

/* Subtítulos a la derecha ("sin H", "sin teclas", "sin esfuerzo") */
.htitle__sub {
  font-size: 0.32em;
  font-weight: 600;
  color: var(--primary);
  font-style: italic;
  display: inline-grid;
  grid-template-areas: "stack";
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: 0em;
  vertical-align: middle;
  /* Start hidden — JS will reveal */
  width: 0;
  opacity: 0;
  margin-left: 0;
}

.htitle__sub-item {
  grid-area: stack;
  opacity: 0;
  transform: translateY(-100%);
}

/* Tagline: háblalo sin h → ablalo */
.hero__tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__tagline em {
  color: var(--text);
  font-weight: 700;
  font-style: italic;
  position: relative;
  padding: 0 0.1em;
}

.hero__tagline em::after {
  content: '';
  position: absolute;
  left: -2px;
  right: -2px;
  top: 52%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  animation: taglineStrike 4s ease-in-out infinite;
}

@keyframes taglineStrike {

  0%,
  30% {
    transform: scaleX(0);
  }

  50%,
  80% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(1);
    opacity: 0;
  }
}

.hero__tagline .sep {
  color: var(--primary);
  font-weight: 700;
}

.hero__tagline .brand {
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.hero__tagline .brand b {
  color: var(--primary);
  font-weight: 800;
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--text-light);
  max-width: 52ch;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.hero__sub strong {
  color: var(--text);
  font-weight: 700;
  display: block;
  margin-top: 0.6rem;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn__icon {
  display: inline-flex;
  align-items: center;
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* Voz wave */
.hero__wave {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  height: 42px;
  margin-bottom: 2.5rem;
  opacity: 0.7;
}

.hero__wave span {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: var(--primary);
  animation: wave 1.4s ease-in-out infinite;
}

.hero__wave span:nth-child(1) {
  animation-delay: 0.00s;
  height: 10px;
}

.hero__wave span:nth-child(2) {
  animation-delay: 0.05s;
  height: 14px;
}

.hero__wave span:nth-child(3) {
  animation-delay: 0.10s;
  height: 22px;
}

.hero__wave span:nth-child(4) {
  animation-delay: 0.15s;
  height: 32px;
}

.hero__wave span:nth-child(5) {
  animation-delay: 0.20s;
  height: 18px;
}

.hero__wave span:nth-child(6) {
  animation-delay: 0.25s;
  height: 28px;
}

.hero__wave span:nth-child(7) {
  animation-delay: 0.30s;
  height: 36px;
}

.hero__wave span:nth-child(8) {
  animation-delay: 0.35s;
  height: 24px;
}

.hero__wave span:nth-child(9) {
  animation-delay: 0.40s;
  height: 14px;
}

.hero__wave span:nth-child(10) {
  animation-delay: 0.45s;
  height: 30px;
}

.hero__wave span:nth-child(11) {
  animation-delay: 0.50s;
  height: 40px;
}

.hero__wave span:nth-child(12) {
  animation-delay: 0.55s;
  height: 26px;
}

.hero__wave span:nth-child(13) {
  animation-delay: 0.60s;
  height: 18px;
}

.hero__wave span:nth-child(14) {
  animation-delay: 0.65s;
  height: 12px;
}

.hero__wave span:nth-child(15) {
  animation-delay: 0.70s;
  height: 22px;
}

.hero__wave span:nth-child(16) {
  animation-delay: 0.75s;
  height: 34px;
}

.hero__wave span:nth-child(17) {
  animation-delay: 0.80s;
  height: 20px;
}

.hero__wave span:nth-child(18) {
  animation-delay: 0.85s;
  height: 28px;
}

.hero__wave span:nth-child(19) {
  animation-delay: 0.90s;
  height: 16px;
}

.hero__wave span:nth-child(20) {
  animation-delay: 0.95s;
  height: 10px;
}

.hero__wave span:nth-child(21) {
  animation-delay: 1.00s;
  height: 22px;
}

.hero__wave span:nth-child(22) {
  animation-delay: 1.05s;
  height: 14px;
}

.hero__wave span:nth-child(23) {
  animation-delay: 1.10s;
  height: 18px;
}

.hero__wave span:nth-child(24) {
  animation-delay: 1.15s;
  height: 10px;
}

.hero__wave span:nth-child(25) {
  animation-delay: 1.20s;
  height: 8px;
}

@keyframes wave {

  0%,
  100% {
    transform: scaleY(0.4);
    opacity: 0.5;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.hero__apps {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
  font-size: 12px;
  color: var(--text-light);
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  width: 100%;
  max-width: 720px;
}

.hero__apps>span:first-child {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-size: 11px;
  color: var(--text-dim);
}

.apps-carousel {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.apps-carousel__track {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: max-content;
  animation: appsMarquee 30s linear infinite;
}

.apps-carousel:hover .apps-carousel__track {
  animation-play-state: paused;
}

.app-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.85rem;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.app-logo svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.app-logo--gmail {
  color: #ea4335;
}

.app-logo--word {
  color: #185abd;
}

.app-logo--docs {
  color: #1a73e8;
}

.app-logo--whatsapp {
  color: #25d366;
}

.app-logo--teams {
  color: #6264a7;
}

.app-logo--outlook {
  color: #0078d4;
}

.app-logo--notion {
  color: #111111;
}

.app-logo--slack {
  color: #611f69;
}

.app-logo--chrome {
  color: #ea4335;
}

.app-logo--firefox {
  color: #ff7139;
}

.app-logo--windows {
  color: #0078d4;
}

.app-logo--telegram {
  color: #229ed9;
}

.app-logo--zoom {
  color: #2d8cff;
}

.app-logo--linkedin {
  color: #0a66c2;
}

.app-logo--more {
  color: var(--primary);
  border-color: rgba(99, 102, 241, 0.24);
  background: rgba(99, 102, 241, 0.08);
}

@keyframes appsMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.35rem));
  }
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  z-index: 2;
}

.scroll-hint__line {
  width: 1px;
  height: 36px;
  background: rgba(99, 102, 241, 0.2);
  position: relative;
  overflow: hidden;
}

.scroll-hint__line::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--primary);
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0% {
    top: -50%;
  }

  100% {
    top: 110%;
  }
}

@media (max-height: 700px) {
  .scroll-hint {
    display: none;
  }
}

/* ═══════════ BUTTONS ═══════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.4s var(--ease);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 28px rgba(99, 102, 241, 0.3);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(99, 102, 241, 0.42);
  background: var(--primary-dark);
}

.btn--ghost {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: var(--light);
  transform: translateY(-3px);
}

/* Botón Windows — estilo referencia */
.btn--win {
  background: var(--primary);
  color: #fff;
  gap: 0.7rem;
  padding: 0.9rem 2rem;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(99, 102, 241, 0.28);
  letter-spacing: 0.01em;
}

.btn--win:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(99, 102, 241, 0.42);
  background: var(--primary-dark);
}

.btn__win-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  flex-shrink: 0;
  line-height: 0;
  vertical-align: middle;
}



/* ═══════════ PROBLEM ═══════════ */
.problem {
  padding: clamp(6rem, 14vh, 10rem) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}

.section-tag {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--primary);
}

.problem h2 {
  margin-bottom: 3rem;
}

.eras {
  color: var(--primary);
  font-style: italic;
}

.speed-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.speed-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.speed-col--accent {
  align-items: flex-end;
  text-align: right;
}

.label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

.big-number {
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.04em;
}

.speed-col--accent .big-number {
  color: var(--primary);
}

.unit {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.speed-vs {
  font-size: 1.2rem;
  color: var(--text-light);
  font-weight: 600;
  font-style: italic;
}

.bar-meter {
  margin-top: 0.8rem;
  height: 6px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}

.bar-meter__fill {
  height: 100%;
  width: 0;
  background: var(--text-light);
  border-radius: 999px;
  animation: fillBar 1.5s var(--ease) forwards;
  animation-delay: 0.3s;
}

.bar-meter__fill--accent {
  background: var(--primary);
  animation-delay: 0.6s;
}

@keyframes fillBar {
  to {
    width: var(--fill);
  }
}

@media (max-width: 700px) {
  .speed-compare {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 2rem;
  }

  .speed-col--accent {
    align-items: flex-start;
    text-align: left;
  }

  .speed-vs {
    justify-self: center;
  }
}

.problem__quote {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--text);
  line-height: 1.7;
  max-width: 60ch;
  font-weight: 500;
  margin-bottom: 4rem;
}

/* Stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(99, 102, 241, 0.06);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stat__num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
}

.stat__label {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}

/* ═══════════ HOW ═══════════ */
.how {
  padding: clamp(5rem, 12vh, 8rem) var(--pad);
}

.how__inner {
  max-width: var(--maxw);
  margin: 0 auto;
}

.how h2 {
  margin-bottom: 3rem;
}

.accent-text {
  color: var(--primary);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.step {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.step:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.08);
}

.step__num {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.step h3 {
  margin-bottom: 0.6rem;
  font-size: 1.3rem;
}

.step h3 kbd {
  display: inline-block;
  padding: 0.15em 0.45em;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 5px;
  font-family: 'Courier New', monospace;
  font-size: 0.7em;
  color: var(--primary);
  font-weight: 600;
  box-shadow: 0 2px 0 var(--border);
}

.step p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.simulator {
  margin-top: 3rem;
}

.sim__frame {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.sim__bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  background: var(--light);
}

.sim__bar i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-light);
  opacity: 0.4;
}

.sim__bar i:nth-child(1) {
  background: #ff5f57;
}

.sim__bar i:nth-child(2) {
  background: #febc2e;
}

.sim__bar i:nth-child(3) {
  background: #28c840;
}

.sim__bar span {
  margin-left: 0.8rem;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
  font-family: 'Courier New', monospace;
}

.sim__content {
  padding: 1.5rem;
}

.sim__raw {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.sim__sep {
  text-align: center;
  color: var(--primary);
  margin: 0.8rem 0;
}

.sim__clean {
  font-size: 14px;
  color: var(--text);
  padding: 0.8rem 1rem;
  border-left: 3px solid var(--primary);
  background: var(--light);
  border-radius: 8px;
  line-height: 1.7;
}

/* ═══════════ FEATURES · catálogo editorial ═══════════ */
.features {
  padding: clamp(6rem, 14vh, 10rem) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}

.features__inner {
  width: 100%;
}

/* Head asimétrico */
.features__head {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  padding-bottom: 3rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-strong);
}

.features__index {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: block;
  margin-bottom: 1.5rem;
}

.features__title {
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--text);
}

.features__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--primary);
}

.features__title-strike {
  position: relative;
  color: var(--text-dim);
  font-weight: 500;
}

.features__title-strike::after {
  content: '';
  position: absolute;
  left: -6px;
  right: -6px;
  top: 54%;
  height: 6px;
  background: var(--primary);
  transform: skewY(-2deg);
}

.features__intro {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  line-height: 1.7;
  color: var(--text-light);
  max-width: 44ch;
  padding-bottom: 0.8rem;
}

@media (max-width: 860px) {
  .features__head {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Lista numerada sin tarjetas */
.feat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: feat;
}

.feat {
  display: grid;
  grid-template-columns: 90px 1.1fr 1fr;
  gap: clamp(1.2rem, 3vw, 3rem);
  align-items: start;
  padding: clamp(2.5rem, 5vh, 4rem) 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background 0.4s var(--ease);
}

.feat:last-child {
  border-bottom: none;
}

.feat:hover {
  background: linear-gradient(90deg, transparent 0%, rgba(99, 102, 241, 0.02) 50%, transparent 100%);
}

/* Franja lateral al hover */
.feat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 3px;
  height: 60%;
  background: var(--primary);
  transition: transform 0.5s var(--ease);
  transform-origin: center;
}

.feat:hover::before {
  transform: translateY(-50%) scaleY(1);
}

.feat__meta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-left: 0.6rem;
}

.feat__n {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  transition: color 0.4s var(--ease), transform 0.4s var(--ease);
}

.feat:hover .feat__n {
  color: var(--primary);
  transform: translateX(4px);
}

.feat__tag {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.feat__title h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: var(--text);
}

.feat__title h3 kbd {
  display: inline-block;
  padding: 0.1em 0.5em;
  background: var(--text);
  color: #fff;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8em;
  font-weight: 700;
  margin: 0 0.1em;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.15), inset 0 -1px 2px rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  vertical-align: middle;
  letter-spacing: 0;
}

.feat__title p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.65;
  max-width: 46ch;
}

/* Demo column */
.feat__demo {
  padding: 1.3rem;
  background: var(--bg-soft);
  border-radius: 10px;
  border: 1px solid var(--border);
  min-height: 150px;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}

.feat:hover .feat__demo {
  border-color: var(--border-strong);
  background: #fff;
}

/* Accent feature (privacidad) */
.feat--accent .feat__n {
  color: var(--primary);
}

@media (max-width: 960px) {
  .feat {
    grid-template-columns: 70px 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
  }

  .feat__demo {
    grid-column: 1 / -1;
  }
}

/* ─── DEMO 01 · atajos de teclado ─── */
.feat-demo-keys {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.keys-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.kcap {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.1rem;
  background: #fff;
  border: 1.5px solid var(--border-strong);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  box-shadow: 0 3px 0 var(--border);
}

.kcap span {
  font-family: 'Courier New', monospace;
  color: var(--text-light);
  font-weight: 600;
}

.kcap em {
  font-style: normal;
  font-weight: 500;
  color: var(--text-light);
  font-size: 13px;
}

.kcap:hover,
.kcap.is-active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 0 var(--primary-dark);
}

.kcap:hover span,
.kcap.is-active span,
.kcap:hover em,
.kcap.is-active em {
  color: rgba(255, 255, 255, 0.85);
}

.keys-preview {
  background: #fff;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 13px;
  line-height: 1.55;
  position: relative;
  min-height: 90px;
}

.keys-before {
  color: var(--text-dim);
  text-decoration: line-through;
  text-decoration-color: rgba(156, 163, 175, 0.4);
  margin-bottom: 0.5rem;
  font-size: 12px;
}

.keys-after {
  color: var(--text);
  font-weight: 500;
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: auto;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.keys-after.is-active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  left: 0;
  right: 0;
}

/* ─── DEMO 02 · servidores madrid ─── */
.feat-demo-map {}

.map-card {
  padding: 0.2rem 0.3rem;
}

.map-card__top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px dashed var(--border-strong);
  margin-bottom: 0.9rem;
  font-family: 'Courier New', monospace;
  font-size: 12px;
}

.map-flag {
  font-size: 1.2rem;
}

.map-loc {
  color: var(--text);
  font-weight: 600;
  flex: 1;
}

.map-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: mapPulse 2s infinite;
}

@keyframes mapPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.map-card__route {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: var(--text-light);
  justify-content: space-between;
  margin-bottom: 0.9rem;
}

.map-line {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--border-strong) 0 4px, transparent 4px 8px);
  position: relative;
}

.map-line::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  animation: mapDot 2.5s infinite linear;
}

@keyframes mapDot {
  0% {
    left: 0;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

.map-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 12px;
  color: var(--text);
}

.map-card__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.4;
}

.map-card__list i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* ─── DEMO 03 · acentos ─── */
.feat-demo-accents {}

.acc-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.acc-row {
  display: grid;
  grid-template-columns: 70px 1fr auto 1fr;
  gap: 0.5rem;
  align-items: center;
  padding: 0.5rem 0.6rem;
  background: #fff;
  border-radius: 6px;
  font-size: 12px;
  border: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}

.acc-row:hover {
  border-color: var(--border-strong);
}

.acc-row b {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  font-weight: 700;
}

.acc-said {
  font-style: italic;
  color: var(--text-light);
  font-family: Georgia, serif;
}

.acc-arrow {
  color: var(--primary);
  font-weight: 700;
}

.acc-text {
  color: var(--text);
  font-weight: 500;
}

/* ─── DEMO 04 · offline ─── */
.feat-demo-offline {}

.off-device {
  font-family: 'Courier New', monospace;
}

.off-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 11px;
  color: var(--text-dim);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.off-wifi {
  width: 12px;
  height: 12px;
  position: relative;
  display: inline-block;
}

.off-wifi--off::before,
.off-wifi--off::after {
  content: '';
  position: absolute;
  background: var(--text-dim);
}

.off-wifi--off::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  transform: translateY(-50%) rotate(45deg);
}

.off-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.off-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef4444;
  animation: offDot 1s infinite;
  flex-shrink: 0;
}

@keyframes offDot {
  50% {
    opacity: 0.3;
  }
}

.off-waveform {
  display: flex;
  gap: 2px;
  align-items: center;
  height: 24px;
  flex: 1;
}

.off-waveform i {
  display: block;
  width: 2.5px;
  background: var(--primary);
  border-radius: 1px;
  animation: offWave 1s infinite ease-in-out;
}

.off-waveform i:nth-child(1) {
  height: 40%;
  animation-delay: 0.0s;
}

.off-waveform i:nth-child(2) {
  height: 70%;
  animation-delay: 0.1s;
}

.off-waveform i:nth-child(3) {
  height: 50%;
  animation-delay: 0.2s;
}

.off-waveform i:nth-child(4) {
  height: 90%;
  animation-delay: 0.3s;
}

.off-waveform i:nth-child(5) {
  height: 60%;
  animation-delay: 0.4s;
}

.off-waveform i:nth-child(6) {
  height: 80%;
  animation-delay: 0.5s;
}

.off-waveform i:nth-child(7) {
  height: 45%;
  animation-delay: 0.6s;
}

.off-waveform i:nth-child(8) {
  height: 75%;
  animation-delay: 0.7s;
}

.off-waveform i:nth-child(9) {
  height: 55%;
  animation-delay: 0.8s;
}

.off-waveform i:nth-child(10) {
  height: 85%;
  animation-delay: 0.9s;
}

.off-waveform i:nth-child(11) {
  height: 50%;
  animation-delay: 1.0s;
}

.off-waveform i:nth-child(12) {
  height: 70%;
  animation-delay: 1.1s;
}

@keyframes offWave {

  0%,
  100% {
    transform: scaleY(0.4);
  }

  50% {
    transform: scaleY(1);
  }
}

.off-text {
  font-size: 13px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  padding: 0.6rem 0.7rem;
  background: #fff;
  border-left: 2px solid var(--primary);
  border-radius: 4px;
  margin-bottom: 0.7rem;
  line-height: 1.4;
}

.off-footer {
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── DEMO 05 · voice edit ─── */
.feat-demo-voice {}

.ve-chat {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.ve-msg {
  padding: 0.6rem 1rem;
  border-radius: 16px;
  font-size: 13px;
  max-width: 70%;
}

.ve-msg--user {
  align-self: flex-end;
  background: var(--primary);
  color: #fff;
  font-weight: 500;
  border-bottom-right-radius: 4px;
}

.ve-arrow {
  align-self: center;
  color: var(--primary);
  font-size: 1.2rem;
  line-height: 1;
}

.ve-doc {
  padding: 0.8rem 0.9rem;
  background: #fff;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1.55;
}

.ve-doc s {
  color: var(--text-dim);
  display: block;
  margin-bottom: 0.6rem;
  text-decoration-color: rgba(156, 163, 175, 0.5);
}

.ve-doc b {
  color: var(--text);
  font-weight: 600;
  display: block;
  padding-top: 0.5rem;
  border-top: 1px dashed var(--border-strong);
}

/* ─── DEMO 06 · glosario ─── */
.feat-demo-gloss {}

.gl-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.7rem;
}

.gl-pill {
  display: inline-block;
  padding: 0.3rem 0.6rem;
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  font-size: 11px;
  color: var(--text);
  font-weight: 500;
  font-family: 'Courier New', monospace;
  transition: all 0.25s var(--ease);
}

.gl-pill:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.gl-pill--add {
  background: transparent;
  border-style: dashed;
  color: var(--text-dim);
}

.gl-pill--add:hover {
  background: var(--light);
  color: var(--primary);
  border-color: var(--primary);
  border-style: solid;
}

.gl-note {
  font-size: 11px;
  color: var(--text-dim);
  font-style: italic;
  padding-top: 0.4rem;
  border-top: 1px dashed var(--border-strong);
}

/* ─── DEMO 07 · speed ─── */
.feat-demo-speed {}

.sp-compare {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.sp-row {
  display: grid;
  grid-template-columns: 85px 1fr 50px;
  gap: 0.7rem;
  align-items: center;
  font-size: 12px;
}

.sp-name {
  color: var(--text-light);
  font-weight: 500;
}

.sp-bar {
  height: 6px;
  background: var(--light);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.sp-bar span {
  display: block;
  height: 100%;
  background: var(--text-dim);
  border-radius: 3px;
  transform-origin: left;
  animation: spGrow 1s var(--ease) both;
}

.sp-bar--us span {
  background: var(--primary);
  box-shadow: 0 0 8px rgba(99, 102, 241, 0.4);
}

@keyframes spGrow {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.sp-val {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: var(--text);
  font-weight: 700;
  text-align: right;
}

.sp-row:first-child .sp-name {
  color: var(--primary);
  font-weight: 700;
}

/* ─── DEMO 08 · contexto ─── */
.feat-demo-context {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.ctx-said {
  font-size: 12px;
  color: var(--text-light);
  font-style: italic;
  padding: 0.5rem 0.7rem;
  background: #fff;
  border-radius: 6px;
  border-left: 2px solid var(--primary);
}

.ctx-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
}

.ctx-box {
  padding: 0.6rem 0.7rem;
  background: #fff;
  border-radius: 6px;
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--text);
  border: 1px solid var(--border);
}

.ctx-app {
  display: block;
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.35rem;
  font-weight: 700;
}

/* ═══════════ ANYWHERE ═══════════ */
.anywhere {
  padding: clamp(5rem, 12vh, 8rem) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}

.anywhere h2 {
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.app-chip {
  display: inline-block;
  padding: 0 0.3em;
  border-radius: 0.2em;
  font-weight: 700;
  font-size: 1.1em;
}

.app-gmail {
  background: rgba(234, 67, 53, 0.12);
  color: #ea4335;
}

.app-word {
  background: rgba(33, 78, 165, 0.12);
  color: #214ea5;
}

.app-docs {
  background: rgba(74, 144, 226, 0.12);
  color: #4a90e2;
}

.anywhere__desc {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 60ch;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.integration-card {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-strong);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.integration-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(99, 102, 241, 0.08);
}

.integration-card__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.2rem;
  background: var(--light);
  border-bottom: 1px solid var(--border);
}

.mac-dots {
  display: flex;
  gap: 6px;
}

.mac-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}

.mac-dots i:nth-child(1) {
  background: #ff5f57;
}

.mac-dots i:nth-child(2) {
  background: #febc2e;
}

.mac-dots i:nth-child(3) {
  background: #28c840;
}

.app-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  font-family: 'Courier New', Courier, monospace;
}

.integration-card__body {
  padding: 1.5rem;
  min-height: 140px;
  display: flex;
  align-items: center;
}

.integration-card__text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.65;
  position: relative;
}

.integration-card__text b {
  color: var(--primary);
  font-size: 1.1em;
  display: block;
  margin-bottom: 0.3rem;
}

.caret {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--primary);
  margin-left: 2px;
  animation: blink 1s steps(1) infinite;
  vertical-align: text-bottom;
}

@keyframes blink {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

/* ═══════════ WORDPLAY BIG ═══════════ */
.wordplay-big {
  padding: clamp(6rem, 14vh, 10rem) var(--pad);
  text-align: center;
}

.wordplay-big__inner {
  max-width: var(--maxw-narrow);
  margin: 0 auto;
}

.wordplay-big__title {
  font-size: clamp(2.5rem, 8vw, 6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wordplay-big__title .line {
  display: block;
}

.wordplay-big__title .strike {
  position: relative;
  color: var(--text-light);
  font-weight: 600;
}

.wordplay-big__title .strike::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  top: 52%;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s var(--ease);
}

.wordplay-big__title.is-visible .line:nth-child(1) .strike::after {
  transition-delay: 0.2s;
  transform: scaleX(1);
}

.wordplay-big__title.is-visible .line:nth-child(2) .strike::after {
  transition-delay: 0.5s;
  transform: scaleX(1);
}

.wordplay-big__title.is-visible .line:nth-child(3) .strike::after {
  transition-delay: 0.8s;
  transform: scaleX(1);
}

.wordplay-big__title .line:nth-child(4) {
  margin-top: 1rem;
}

.wordplay-big__title .accent-text {
  color: var(--primary);
  font-weight: 900;
  font-size: 1.1em;
}

.wordplay-big__sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-light);
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.7;
}

.wordplay-big__sub b {
  color: var(--primary);
  font-weight: 700;
}

/* ═══════════ WHO · mosaico tipográfico ═══════════ */
.who {
  padding: clamp(6rem, 14vh, 10rem) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
}

.who__inner {
  position: relative;
}

.who__head {
  margin-bottom: clamp(3rem, 7vh, 5rem);
}

.who__meta {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  display: block;
  margin-bottom: 1.5rem;
}

.who__title {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text);
}

.who__title em {
  font-style: italic;
  font-weight: 600;
  color: var(--primary);
}

.who__strike {
  position: relative;
  color: var(--text-light);
  font-weight: 500;
}

.who__strike::after {
  content: '';
  position: absolute;
  left: -6px;
  right: -6px;
  top: 54%;
  height: 5px;
  background: var(--primary);
  transform: skewY(-2deg);
}

/* Mosaico asimétrico 4×3 */
.who__mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(120px, auto);
  gap: 1rem;
}

.voice {
  position: relative;
  padding: 1.6rem 1.4rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  background: var(--bg-soft);
  border-radius: 4px;
  border-left: 2px solid var(--border-strong);
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease), transform 0.35s var(--ease);
}

.voice:hover {
  border-left-color: var(--primary);
  background: #fff;
  transform: translateY(-2px);
}

.voice__role {
  font-family: 'Courier New', monospace;
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 700;
}

.voice blockquote {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--text);
  font-weight: 500;
  margin: 0;
  padding: 0;
  border: none;
}

.voice blockquote::before {
  content: none;
}

.voice blockquote mark {
  background: transparent;
  color: var(--primary);
  font-weight: 700;
  padding: 0;
  box-shadow: inset 0 -0.4em 0 rgba(99, 102, 241, 0.12);
}

.voice__gain {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: var(--text);
  font-weight: 700;
  padding-top: 0.8rem;
  border-top: 1px dashed var(--border-strong);
  margin-top: auto;
}

/* Layout asimétrico: tamaños desiguales */
.voice--1 {
  grid-column: span 5;
  grid-row: span 2;
}

.voice--1 blockquote {
  font-size: clamp(1.15rem, 2vw, 1.6rem);
}

.voice--2 {
  grid-column: span 4;
}

.voice--3 {
  grid-column: span 3;
}

.voice--4 {
  grid-column: span 4;
}

.voice--4 blockquote {
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
}

.voice--5 {
  grid-column: span 3;
}

.voice--6 {
  grid-column: span 6;
  grid-row: span 2;
}

.voice--6 blockquote {
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  letter-spacing: -0.02em;
}

.voice--7 {
  grid-column: span 3;
}

.voice--8 {
  grid-column: span 3;
}

/* Acentos visuales rotativos */
.voice:nth-child(odd) {
  border-left-color: var(--border-strong);
}

.voice:nth-child(3n) {
  border-left-color: var(--primary);
  background: #fff;
}

.voice:nth-child(3n) blockquote mark {
  box-shadow: inset 0 -0.4em 0 rgba(99, 102, 241, 0.2);
}

/* Responsive: colapsa a 6→3→1 columnas */
@media (max-width: 960px) {
  .who__mosaic {
    grid-template-columns: repeat(6, 1fr);
  }

  .voice--1,
  .voice--6 {
    grid-column: span 6;
    grid-row: auto;
  }

  .voice--2,
  .voice--3,
  .voice--4,
  .voice--5,
  .voice--7,
  .voice--8 {
    grid-column: span 3;
  }
}

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

  .voice,
  .voice--1,
  .voice--6 {
    grid-column: span 1;
  }
}

.who__foot {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-strong);
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.who__foot span {
  display: inline-block;
  transition: transform 0.3s var(--ease), color 0.3s var(--ease);
  cursor: pointer;
}

.who__foot span:hover {
  transform: translateX(6px);
  color: var(--primary);
}

/* ═══════════ COMPARE ═══════════ */
.compare {
  padding: clamp(5rem, 12vh, 8rem) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}

.compare h2 {
  margin-bottom: 3rem;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 800px) {
  .compare-grid {
    grid-template-columns: 1fr;
  }
}

.compare-col {
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
}

.compare-col h3 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.compare-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.compare-col li {
  font-size: 0.95rem;
  padding-left: 1.8rem;
  position: relative;
  color: var(--text);
  line-height: 1.5;
}

.compare-col--old {
  background: #FAFAFB;
  border-color: #E5E7EB;
}

.compare-col--old h3 {
  color: #9CA3AF;
}

.compare-col--old li {
  color: var(--text-light);
  text-decoration: line-through;
  text-decoration-color: rgba(156, 163, 175, 0.5);
}

.compare-col--old li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: #D1D5DB;
  font-weight: 700;
  font-size: 1.2em;
  line-height: 1;
}

.compare-col--new {
  background: rgba(99, 102, 241, 0.04);
  border-color: var(--border-strong);
}

.compare-col--new h3 {
  color: var(--primary);
}

.compare-col--new li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 800;
}

/* ═══════════ PRICING ═══════════ */
.pricing {
  padding: clamp(5rem, 12vh, 8rem) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}

.pricing h2 {
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.plan {
  position: relative;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.plan:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.08);
}

.plan h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
}

.plan__price span:first-child {
  font-size: 1.2rem;
  color: var(--text-light);
  font-weight: 600;
}

.period {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
  margin-left: 0.3rem;
}

.plan__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.5rem 0 2rem;
  font-size: 0.95rem;
  color: var(--text-light);
}

.plan__list li {
  padding-left: 1.2rem;
  position: relative;
}

.plan__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

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

.plan__btn {
  display: block;
  width: 100%;
  padding: 0.95rem;
  border-radius: 999px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: transparent;
  transition: all 0.4s var(--ease);
}

.plan__btn:hover {
  background: var(--light);
}

.plan--featured {
  border: 1.5px solid var(--primary);
  background: rgba(99, 102, 241, 0.04);
  transform: translateY(-8px);
}

.plan--featured:hover {
  transform: translateY(-12px);
}

.plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 0.35em 0.8em;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.plan__btn--primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.plan__btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 12px 24px rgba(99, 102, 241, 0.3);
}

/* ═══════════ TESTIMONIOS ═══════════ */
.testim {
  padding: clamp(5rem, 12vh, 8rem) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}

.testim h2 {
  margin-bottom: 3rem;
}

.quotes-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 1rem 0 1.5rem;
  margin: -1rem 0 -1.5rem;
}

.quotes-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 1.5rem;
  width: max-content;
  animation: scrollMarquee 40s linear infinite;
  padding-bottom: 2rem;
}

.quotes-track:hover {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 0.75rem));
  }
}

.quote {
  flex: 0 0 350px;
  max-width: 400px;
  padding: 2rem;
  border-radius: 20px;
  border: 1.5px solid transparent;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.quote:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.11);
}

.quote blockquote {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1rem;
}

.quote blockquote::before {
  content: '"';
  position: absolute;
  left: -0.3rem;
  top: -0.8rem;
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.3;
  line-height: 1;
  font-family: Georgia, serif;
}

.quote figcaption {
  display: flex;
  gap: 0.3rem;
  font-size: 12px;
  color: var(--text-light);
  align-items: baseline;
}

.quote figcaption b {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

/* ═══════════ FAQ ═══════════ */
.faq {
  padding: clamp(5rem, 12vh, 8rem) var(--pad);
  max-width: var(--maxw-narrow);
  margin: 0 auto;
}

.faq h2 {
  margin-bottom: 3rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.2rem);
  transition: color 0.3s var(--ease);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--primary);
}

.faq-item__plus {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--light);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease);
}

.faq-item[open] .faq-item__plus {
  transform: rotate(45deg);
  background: var(--primary);
  color: #fff;
}

.faq-item p {
  padding: 0 0 1.5rem;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 60ch;
}

/* ═══════════ CTA FINAL ═══════════ */
.final {
  background: var(--primary);
  color: #fff;
  padding: clamp(6rem, 14vh, 10rem) var(--pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final::before {
  content: '';
  position: absolute;
  inset: 0;
  display: none;
  pointer-events: none;
}

.final__inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.final h2 {
  font-size: clamp(4rem, 14vw, 9rem);
  margin-bottom: 0.5rem;
  line-height: 0.95;
}

.final p {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 300;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.final__btn {
  display: inline-block;
  background: #fff;
  color: var(--primary);
  padding: 1.1rem 2.5rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.final__btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.final__note {
  margin-top: 1.5rem;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.8;
}

/* ═══════════ GET STARTED ═══════════ */
.get-started {
  padding: clamp(5rem, 10vh, 8rem) var(--pad);
  background: var(--surface, #f9f9fb);
}
.get-started__inner {
  max-width: 720px;
  margin: 0 auto;
}
.get-started__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.get-started__sub {
  color: var(--text-muted, #666);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}
.gs-steps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.gs-step {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1.25rem;
  align-items: flex-start;
}
.gs-step__num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.gs-step__body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.gs-step__body p {
  color: var(--text-muted, #555);
  margin-bottom: 0.85rem;
  line-height: 1.6;
}
.gs-step__body code {
  background: rgba(99,102,241,0.1);
  color: var(--primary);
  padding: 0.15em 0.4em;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.9em;
}
.gs-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}
.gs-tab {
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  border: 1.5px solid #ddd;
  background: transparent;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-muted, #666);
  transition: all 0.2s;
}
.gs-tab--active {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(99,102,241,0.07);
}
.gs-code {
  display: flex;
  align-items: center;
  background: #1e1e2e;
  border-radius: 10px;
  padding: 0.85rem 1rem;
  gap: 1rem;
  margin-bottom: 0.85rem;
}
.gs-code pre {
  flex: 1;
  margin: 0;
  overflow-x: auto;
}
.gs-code code.gs-code__line {
  color: #e2e8f0;
  font-family: 'Fira Mono', 'Courier New', monospace;
  font-size: 0.9rem;
  background: none;
  padding: 0;
}
.gs-copy {
  flex-shrink: 0;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #aaa;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.2s;
}
.gs-copy:hover {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.gs-note {
  font-size: 0.88rem;
  color: var(--text-muted, #888);
}
.gs-link {
  color: var(--primary);
  text-decoration: underline;
}

/* ═══════════ FOOTER ═══════════ */
.foot {
  padding: 4rem var(--pad) 2rem;
  max-width: var(--maxw);
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.foot__top {
  margin-bottom: 3rem;
}

.foot__logo {
  font-weight: 800;
  font-size: clamp(2.5rem, 8vw, 5rem);
  letter-spacing: -0.03em;
  display: inline-block;
}

.foot__h {
  color: var(--accent-deep);
  opacity: 0.3;
}

.foot__tag {
  margin-top: 0.5rem;
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 500;
}

.foot__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.foot__cols h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}

.foot__cols a {
  display: block;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  transition: color 0.3s var(--ease);
}

.foot__cols a:hover {
  color: var(--text);
}

.foot__bottom {
  font-size: 12px;
  color: var(--text-light);
}

/* ═══════════ RESPONSIVO ═══════════ */
@media (max-width: 700px) {
  :root {
    --pad: 1.5rem;
  }

  .nav {
    padding: 0.8rem var(--pad);
  }

  .nav__logo {
    font-size: 1.2rem;
  }

  h2 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .hero__title {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .final h2 {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .stats-strip {
    padding: 1.5rem;
    gap: 1rem;
  }
}

/* ═══════════ REDUCED MOTION ═══════════ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ═══════════ ADDED BY ANTIGRAVITY ═══════════ */

/* Aspecto Startup - Invertidos (similar a CTA final) */
.inverted {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
  color: #fff !important;
  box-shadow: inset 0 2px 20px rgba(0, 0, 0, 0.1);
}

.inverted h2,
.inverted h3,
.inverted p,
.inverted .wordplay-big__sub,
.inverted .step p {
  color: #fff !important;
}

.inverted .accent-text,
.inverted .wordplay-big__title .accent-text,
.inverted .wordplay-big__sub b {
  color: var(--accent) !important;
}

.inverted .section-tag {
  color: var(--accent) !important;
}

.inverted .section-tag::before {
  background: var(--accent) !important;
}

.inverted .step {
  background: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.inverted .step:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.inverted .step__num {
  color: var(--accent) !important;
}

.inverted .step h3 kbd {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.2);
}

.inverted .sim__frame {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.inverted .sim__bar {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
}

.inverted .sim__bar span {
  color: rgba(255, 255, 255, 0.8);
}

.inverted .sim__raw {
  color: rgba(255, 255, 255, 0.6);
}

.inverted .sim__clean {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  color: #fff;
}

.inverted .sim__sep {
  color: var(--accent);
}

.inverted .wordplay-big__title .strike {
  color: rgba(255, 255, 255, 0.5) !important;
}

.inverted .wordplay-big__title .strike::after {
  background: var(--accent) !important;
  /* using cyan to pop instead of white */
}

/* Update app-whatsapp */
.app-whatsapp {
  background: rgba(37, 211, 102, 0.12) !important;
  color: #25D366 !important;
}

/* Upgrade aesthetics to look more Startup-like */
body {
  background: var(--bg-soft);
}

.nav {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.step,
.plan,
.quote,
.window,
.stats-strip {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.step:hover,
.plan:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 48px rgba(99, 102, 241, 0.12);
}

.btn--primary,
.btn--win {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.35);
}

.btn--primary:hover,
.btn--win:hover {
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.5);
  transform: translateY(-4px) scale(1.02);
}

.final {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
}

/* Fix GSAP ScrollTrigger issue with sections below marquee */
.faq,
.final {
  opacity: 1 !important;
  transform: translateY(0) !important;
  visibility: visible !important;
}

/* Mobile-first refinements */
@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding-top: clamp(6.25rem, 13vh, 8rem);
  }

  .hero__ctas {
    width: 100%;
    max-width: 560px;
  }
}

@media (max-width: 768px) {
  :root {
    --pad: clamp(1rem, 4vw, 1.25rem);
  }

  .nav {
    gap: 0.6rem;
    padding: 0.75rem var(--pad);
  }

  .nav__cta {
    padding: 0.55rem 0.85rem;
    font-size: 12px;
    white-space: nowrap;
  }

  .hero {
    min-height: 100svh;
    padding: 6.5rem var(--pad) 2.75rem;
  }

  .hero__title {
    white-space: normal;
    display: block;
    line-height: 0.92;
    margin-bottom: 1.1rem;
  }

  .htitle__sub {
    display: none !important;
  }

  .hero__sub {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
  }

  .hero__sub strong {
    margin-top: 0.35rem;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 360px;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .hero__ctas .btn {
    width: 100%;
  }

  .btn--ghost,
  .btn--win {
    padding: 0.9rem 1.2rem;
  }

  .hero__wave {
    height: 28px;
    margin-bottom: 1.4rem;
  }

  .hero__wave span:nth-child(n + 16) {
    display: none;
  }

  .hero__apps {
    padding-top: 1rem;
    gap: 0.6rem;
  }

  .apps-carousel__track {
    gap: 0.5rem;
    animation-duration: 24s;
  }

  .app-logo {
    font-size: 11px;
    padding: 0.28rem 0.58rem;
  }

  .app-logo svg {
    width: 12px;
    height: 12px;
  }

  .scroll-hint {
    display: none;
  }

  .speed-compare {
    padding: 2rem 0;
    gap: 1.2rem;
  }

  .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .step,
  .plan,
  .compare-col,
  .quote {
    padding: 1.35rem;
  }

  .sim__content {
    padding: 1rem;
  }

  .window {
    width: min(320px, 90vw);
  }

  .flow-connector {
    display: none;
  }

  .plan--featured,
  .plan--featured:hover {
    transform: none;
  }

  .quotes-track {
    gap: 1rem;
  }

  .quote {
    flex: 0 0 min(300px, 82vw);
  }

  .foot {
    padding: 3rem var(--pad) 1.75rem;
  }

  .foot__cols {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 480px) {
  .nav__cta {
    padding: 0.5rem 0.7rem;
    font-size: 11px;
  }

  .hero__title {
    font-size: clamp(2.5rem, 17vw, 4rem);
  }

  .hero__sub {
    font-size: 0.96rem;
  }

  .stats-strip {
    grid-template-columns: 1fr;
  }

  .plan__price {
    font-size: 2.2rem;
  }

  .faq-item summary {
    padding: 1.1rem 0;
    font-size: 1rem;
  }

  .foot__cols {
    grid-template-columns: 1fr;
  }

  .final__btn {
    width: 100%;
    max-width: 320px;
    padding: 1rem 1.1rem;
  }
}

.sim__note {
  font-size: 11px;
  color: var(--text-dim);
  text-align: right;
  margin-top: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.inverted .sim__note {
  color: rgba(255, 255, 255, 0.5);
}

/* ═══════════ ANYWHERE DEMO (grabadora + laptop con pestañas) ═══════════ */
.anywhere-demo {
  margin-top: clamp(3rem, 6vh, 4.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.rec-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.7rem 1.2rem 0.7rem 0.9rem;
  background: var(--bg-soft);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  font-family: 'Courier New', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text);
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}

.rec-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6);
  animation: rec-pulse 1.4s ease-out infinite;
}

@keyframes rec-pulse {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.rec-wave {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  height: 22px;
}

.rec-wave i {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: var(--primary);
  animation: rec-wave 1.1s ease-in-out infinite;
}

.rec-wave i:nth-child(1)  { animation-delay: 0.00s; }
.rec-wave i:nth-child(2)  { animation-delay: 0.08s; }
.rec-wave i:nth-child(3)  { animation-delay: 0.16s; }
.rec-wave i:nth-child(4)  { animation-delay: 0.24s; }
.rec-wave i:nth-child(5)  { animation-delay: 0.32s; }
.rec-wave i:nth-child(6)  { animation-delay: 0.40s; }
.rec-wave i:nth-child(7)  { animation-delay: 0.48s; }
.rec-wave i:nth-child(8)  { animation-delay: 0.40s; }
.rec-wave i:nth-child(9)  { animation-delay: 0.32s; }
.rec-wave i:nth-child(10) { animation-delay: 0.24s; }
.rec-wave i:nth-child(11) { animation-delay: 0.16s; }
.rec-wave i:nth-child(12) { animation-delay: 0.08s; }

@keyframes rec-wave {
  0%, 100% { height: 4px; opacity: 0.5; }
  50%      { height: 22px; opacity: 1; }
}

.rec-label kbd {
  font-family: 'Courier New', monospace;
  font-size: 10.5px;
  background: var(--text);
  color: var(--bg);
  border-radius: 4px;
  padding: 2px 6px;
  margin-left: 4px;
}

/* Laptop mockup */
.laptop {
  width: min(820px, 100%);
  position: relative;
}

.laptop__screen {
  background: #1a1a1a;
  border-radius: 14px 14px 4px 4px;
  padding: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18), 0 0 0 2px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.laptop__base {
  height: 14px;
  background: linear-gradient(180deg, #cfcfcf 0%, #9a9a9a 100%);
  border-radius: 0 0 16px 16px;
  width: 108%;
  margin-left: -4%;
  position: relative;
}

.laptop__base::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #7a7a7a;
  border-radius: 0 0 6px 6px;
}

.laptop__tabs {
  display: flex;
  gap: 2px;
  padding: 0 4px 8px;
}

.ltab {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.05);
  padding: 7px 14px;
  border-radius: 8px 8px 0 0;
  font-weight: 700;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
  position: relative;
}

.ltab.is-active {
  color: var(--text);
  background: #fff;
}

.ltab.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: #fff;
}

.laptop__body {
  background: #fff;
  border-radius: 4px 10px 10px 10px;
  min-height: 260px;
  padding: clamp(1.2rem, 2.5vw, 1.8rem);
  position: relative;
  overflow: hidden;
}

.lpane {
  position: absolute;
  inset: clamp(1.2rem, 2.5vw, 1.8rem);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.lpane.is-active {
  opacity: 1;
  transform: translateY(0);
}

.lpane__meta {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  padding-bottom: 0.45rem;
  border-bottom: 1px dashed var(--border-strong);
  font-weight: 700;
}

.lpane__text {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  line-height: 1.55;
  color: var(--text);
  margin: 0;
  min-height: 1.55em;
  font-weight: 500;
}

.lpane__text::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--primary);
  margin-left: 2px;
  vertical-align: -2px;
  animation: lp-caret 0.9s steps(2) infinite;
}

.lpane__text--chat {
  background: #DCF8C6;
  padding: 0.7rem 0.9rem;
  border-radius: 10px 10px 10px 2px;
  align-self: flex-start;
  max-width: 85%;
}

@keyframes lp-caret {
  50% { opacity: 0; }
}

.anywhere-demo__caption {
  text-align: center;
  font-size: 13.5px;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.5;
  margin: 0.4rem 0 0;
}

.anywhere-demo__caption kbd {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  background: var(--text);
  color: var(--bg);
  border-radius: 4px;
  padding: 2px 6px;
}

@media (max-width: 640px) {
  .laptop__body { min-height: 220px; }
  .ltab { padding: 6px 10px; font-size: 10px; }
}

/* ═══════════ WHO (para quién) en modo inverted ═══════════ */
.who.inverted {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.who.inverted .who__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.who.inverted .who__title,
.who.inverted .who__title em {
  color: #fff !important;
}

.who.inverted .who__title em {
  color: var(--accent) !important;
}

.who.inverted .who__strike {
  color: rgba(255, 255, 255, 0.55);
}

.who.inverted .who__strike::after {
  background: var(--accent);
}

.who.inverted .voice {
  background: rgba(255, 255, 255, 0.08) !important;
  border-left-color: rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.who.inverted .voice:hover {
  background: rgba(255, 255, 255, 0.14) !important;
  border-left-color: var(--accent) !important;
}

.who.inverted .voice:nth-child(3n) {
  background: rgba(255, 255, 255, 0.14) !important;
  border-left-color: var(--accent) !important;
}

.who.inverted .voice__role {
  color: rgba(255, 255, 255, 0.65);
}

.who.inverted .voice blockquote {
  color: #fff;
}

.who.inverted .voice blockquote mark {
  color: var(--accent);
  box-shadow: inset 0 -0.4em 0 rgba(255, 255, 255, 0.14);
}

.who.inverted .voice__gain {
  color: #fff;
  border-top-color: rgba(255, 255, 255, 0.25);
}