/* ══════════════════════════════════════════════════
   ablalo — diseño v3 (hero centrado + H animada)
   ══════════════════════════════════════════════════ */
:root {
  --primary: #F4660F;
  --primary-rgb: 244, 102, 15;
  --primary-dark: #D95D0D;
  --accent: #FFFFFF;
  --accent-deep: #F4660F;
  --bg: #FFFAF5;
  --bg-soft: #FFF2E8;
  --text: #1C1917;
  --text-light: #44403C;
  --text-dim: #78716C;
  --light: #FED7AA;
  --color-deep: #1a120d;
  --badge: #4F46E5;
  --badge-bg: #EEF2FF;
  --border: rgba(28, 25, 23, 0.07);
  --border-strong: rgba(28, 25, 23, 0.14);

  --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);
}

body[data-theme="amber"] {
  --primary: #F4660F;
  --primary-rgb: 244, 102, 15;
  --primary-dark: #D95D0D;
  --accent-deep: #F4660F;
  --bg: #FFFAF5;
  --bg-soft: #FFF2E8;
  --text: #1C1917;
  --text-light: #44403C;
  --text-dim: #78716C;
  --light: #FDE68A;
  --badge: #92400E;
  --badge-bg: #FEF3C7;
  --border: rgba(28, 25, 23, 0.07);
  --border-strong: rgba(28, 25, 23, 0.14);
}

body[data-theme="indigo"] {
  --primary: #4F46E5;
  --primary-rgb: 79, 70, 229;
  --primary-dark: #4338CA;
  --accent-deep: #4F46E5;
  --bg: #F9FAFB;
  --bg-soft: #F3F4F6;
  --text: #111827;
  --text-light: #6B7280;
  --text-dim: #9CA3AF;
  --light: #C7D2FE;
  --badge: #4F46E5;
  --badge-bg: #EEF2FF;
  --border: rgba(79, 70, 229, 0.10);
  --border-strong: rgba(79, 70, 229, 0.22);
}

body[data-theme="violet"] {
  --primary: #7C3AED;
  --primary-rgb: 124, 58, 237;
  --primary-dark: #6D28D9;
  --accent-deep: #7C3AED;
  --bg: #FAFAF9;
  --bg-soft: #F5F4FF;
  --text: #1C1917;
  --text-light: #44403C;
  --text-dim: #78716C;
  --light: #DDD6FE;
  --badge: #7C3AED;
  --badge-bg: #F5F3FF;
  --border: rgba(124, 58, 237, 0.08);
  --border-strong: rgba(124, 58, 237, 0.18);
}

body[data-theme="terracotta"] {
  --primary: #EA580C;
  --primary-rgb: 234, 88, 12;
  --primary-dark: #C2410C;
  --accent-deep: #EA580C;
  --bg: #FFFAF5;
  --bg-soft: #FFF2E8;
  --text: #1C1917;
  --text-light: #44403C;
  --text-dim: #78716C;
  --light: #FFEDD5;
  --badge: #EA580C;
  --badge-bg: #FFF7ED;
  --border: rgba(234, 88, 12, 0.1);
  --border-strong: rgba(234, 88, 12, 0.2);
}

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

html {
  scroll-behavior: auto;
  /* Compensa el nav fijo al saltar a un #ancla: deja 80px arriba para que el
     título de la sección no quede tapado por el header (coincide con el
     offset -80 de Lenis en script.js). Cubre cargas directas por URL
     (ablalo.com/#precios) y el fallback scrollIntoView sin Lenis. */
  scroll-padding-top: 80px;
  /* Importante: NO poner overflow-x:hidden aquí — rompe position:sticky del
     carrusel horizontal .fcar__pin. El overflow-x:hidden del body basta para
     evitar scroll horizontal global. */
}

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;
  width: 100%;
  max-width: 100vw;
}

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: 0.8rem var(--pad);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
  will-change: transform;
}

body.is-scrolled .nav {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.nav__logo-group {
  flex: 1;
  display: flex;
  align-items: center;
}

.nav__logo {
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  color: var(--text);
}

.nav__links {
  flex: 0;
  display: flex;
  justify-content: center;
  gap: 2.2rem;
  font-size: 14px;
  font-weight: 500;
}

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

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

.nav__cta-group {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.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 span {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.nav__cta:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.16);
}

/* Palette Picker */
.nav__palette-btn {
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  padding: 0.6rem;
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  border-radius: 50%;
}

.nav__palette-btn:hover {
  color: var(--primary);
  background: var(--bg-soft);
}

.nav__palette-menu {
  position: absolute;
  top: 100%;
  right: var(--pad);
  margin-top: 0.75rem;
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
  width: 220px;
  padding: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  z-index: 200;
  animation: menuEnter 0.4s var(--ease);
  transform-origin: top right;
}

@keyframes menuEnter {
  from { opacity: 0; transform: scale(0.95) translateY(-10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.palette-option {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 0.8rem;
  border-radius: 12px;
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s var(--ease);
  width: 100%;
  color: var(--text);
}

.palette-option:hover {
  background: var(--bg-soft);
}

.palette-option.is-active {
  background: var(--light);
  border-color: rgba(var(--primary-rgb), 0.3);
}

.palette-option__swatch {
  display: flex;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.palette-option__meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

@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(var(--primary-rgb), 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(var(--primary-rgb), 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--primary-rgb), 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(var(--primary-rgb), 0.6);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.6);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(var(--primary-rgb), 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 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(1.5rem, 2.6vw, 2.1rem);
  color: var(--text);
  max-width: 52ch;
  margin-bottom: 0.6rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: center;
}

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

.hero__sub3 {
  font-size: clamp(0.95rem, 1.35vw, 1.1rem);
  color: var(--text-light);
  max-width: 56ch;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  text-align: center;
}

.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-top: 1.25rem;
  margin-bottom: 1.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(var(--primary-rgb), 0.24);
  background: rgba(var(--primary-rgb), 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(var(--primary-rgb), 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: background 0.3s var(--ease), box-shadow 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  text-align: center;
  position: relative;
  border: 1px solid transparent;
  outline: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

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

.btn--primary:hover {
  box-shadow: 0 20px 44px rgba(var(--primary-rgb), 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);
}

/* Botón Windows — estilo referencia */
.btn--win {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  gap: 0.7rem;
  padding: 0.9rem 2rem;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(var(--primary-rgb), 0.28);
  letter-spacing: 0.01em;
  border: 1px solid var(--primary);
  outline: none;
}

.btn--win:hover {
  box-shadow: 0 20px 44px rgba(var(--primary-rgb), 0.42);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-dark) 100%);
  border-color: 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 ═══════════ */
/* ----------- POST-ITS ----------- */
.qnotes {
  position: relative;
  padding: clamp(1rem, 2.5vh, 2rem) var(--pad) 0;
  max-width: var(--maxw);
  margin: 0 auto;
}

.qnotes__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(340px, 46vh, 440px);
}

.qnotes__board {
  position: relative;
  width: 100%;
  max-width: 1080px;
  min-height: clamp(320px, 42vh, 420px);
}

.qnote {
  position: absolute;
  display: inline-block;
  max-width: 290px;
  padding: 1rem 1.2rem 1.1rem;
  font-family: var(--font);
  font-weight: 500;
  font-size: clamp(0.9rem, 1.15vw, 1rem);
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow:
    0 1px 2px rgba(28, 25, 23, 0.04),
    0 6px 14px rgba(28, 25, 23, 0.05),
    0 14px 28px rgba(244, 102, 15, 0.06);
  opacity: 0;
  animation: qnote-in 0.55s cubic-bezier(0.2, 0.9, 0.3, 1.2) forwards;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}

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

.qnote:hover {
  transform: translateY(-4px) rotate(0deg) scale(1.03) !important;
  box-shadow:
    0 2px 2px rgba(0, 0, 0, 0.1),
    0 16px 32px rgba(0, 0, 0, 0.18),
    0 28px 56px rgba(0, 0, 0, 0.12);
  z-index: 5;
}

/* Pieza de cinta adhesiva arriba — discreta */
.qnote::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  width: 42px;
  height: 12px;
  background: rgba(244, 102, 15, 0.14);
  border-radius: 2px;
  transform: translateX(-50%) rotate(-2deg);
}

/* Fila ordenada — 4 post-its alineados en horizontal, rotaciones suaves
   uno con la cinta "despegada" para romper la rigidez */

/* Post-it 1 - extremo izquierdo */
.qnote--1 {
  top: 4%;
  left: 0;
  width: 22%;
  max-width: 240px;
  background: #FFFFFF;
  transform: rotate(-2deg);
  animation-delay: 0.05s;
}

/* Post-it 2 - el "despegado": un poco más bajo, más inclinado */
.qnote--2 {
  top: 12%;
  left: 26%;
  width: 22%;
  max-width: 240px;
  background: var(--bg-soft);
  transform: rotate(-6deg);
  animation-delay: 0.2s;
}

/* Su cinta cuelga del lado izquierdo (como si se hubiera despegado por la derecha) */
.qnote--2::before {
  top: -6px;
  left: 24%;
  transform: rotate(-18deg);
}

/* Post-it 3 - tercer hueco */
.qnote--3 {
  top: 4%;
  left: 52%;
  width: 22%;
  max-width: 240px;
  background: var(--bg);
  transform: rotate(1.5deg);
  animation-delay: 0.35s;
}

/* Post-it 4 - extremo derecho */
.qnote--4 {
  top: 8%;
  right: 0;
  width: 24%;
  max-width: 260px;
  background: var(--light);
  transform: rotate(3deg);
  animation-delay: 0.5s;
}

/* "Spoiler" — respuesta centrada al pie del arco */
.qnote--spoiler {
  bottom: 18%;
  left: 50%;
  right: auto;
  width: auto;
  max-width: none;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  text-align: center;
  animation-delay: 0.75s;
  transform: translateX(-50%) rotate(-2deg);
  transform-origin: center center;
  z-index: 4;
}

.qnote--spoiler .qnote__marker {
  display: block;
}

.qnote--spoiler::before { display: none; }
.qnote--spoiler:hover {
  transform: translateX(-50%) rotate(-2deg) scale(1.04) !important;
  box-shadow: none;
}

.qnote__marker {
  display: inline-block;
  font-family: var(--font);
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--primary);
  padding: 0.1rem 0.4rem;
  text-decoration: line-through;
  text-decoration-color: rgba(244, 102, 15, 0.55);
  text-decoration-thickness: 3px;
}

@keyframes qnote-in {
  0% {
    opacity: 0;
    transform: translateY(-30px) rotate(0deg) scale(0.7);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

/* Mantener la rotación final tras la animación */
.qnote--1 { animation-name: qnote-in-r-2; }
.qnote--2 { animation-name: qnote-in-r-6; }
.qnote--3 { animation-name: qnote-in-r1-5; }
.qnote--4 { animation-name: qnote-in-r3; }
.qnote--spoiler { animation-name: qnote-in-spoiler; }

@keyframes qnote-in-r-2 {
  0% { opacity: 0; transform: translateY(-24px) rotate(3deg) scale(0.85); }
  60% { opacity: 1; }
  100% { opacity: 1; transform: rotate(-2deg); }
}
@keyframes qnote-in-r-6 {
  0% { opacity: 0; transform: translateY(-24px) rotate(3deg) scale(0.85); }
  60% { opacity: 1; }
  100% { opacity: 1; transform: rotate(-6deg); }
}
@keyframes qnote-in-r1-5 {
  0% { opacity: 0; transform: translateY(-24px) rotate(-3deg) scale(0.85); }
  60% { opacity: 1; }
  100% { opacity: 1; transform: rotate(1.5deg); }
}
@keyframes qnote-in-r3 {
  0% { opacity: 0; transform: translateY(-24px) rotate(-3deg) scale(0.85); }
  60% { opacity: 1; }
  100% { opacity: 1; transform: rotate(3deg); }
}
@keyframes qnote-in-spoiler {
  0% { opacity: 0; transform: translateX(-50%) translateY(16px) rotate(0deg) scale(0.7); }
  60% { opacity: 1; }
  100% { opacity: 1; transform: translateX(-50%) rotate(-2deg); }
}

.qnotes__arrow {
  position: absolute;
  left: 50%;
  bottom: -1.5rem;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid rgba(var(--primary-rgb), 0.25);
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(var(--primary-rgb), 0.12);
  animation: qnotes-arrow-bounce 1.8s ease-in-out infinite;
  text-decoration: none;
  z-index: 6;
}

@keyframes qnotes-arrow-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@media (max-width: 720px) {
  /* En móvil: pila vertical compacta, mayoría rectos y solo uno girado.
     Espacio respetado para flecha y siguiente sección. */
  .qnotes { padding: 1.5rem var(--pad) 0; }
  .qnotes__inner { min-height: 0; padding: 0; }
  .qnotes__board {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    align-items: stretch;
    padding-bottom: 4.5rem; /* hueco para la flecha */
  }

  /* Cancelar posicionamiento absoluto y anchos fijos del desktop */
  .qnote {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: auto;
    max-width: 88%;
    font-size: 0.95rem;
    line-height: 1.4;
    padding: 0.85rem 1rem 0.95rem;
  }

  /* Casi todos rectos para no solaparse, solo uno girado (el "despegado") */
  .qnote--1,
  .qnote--3,
  .qnote--4 {
    transform: rotate(0deg) !important;
    animation-name: qnote-in-straight !important;
  }
  .qnote--2 {
    transform: rotate(-4deg) !important;
    animation-name: qnote-in-tilt !important;
    margin: 0.3rem 0 0.6rem; /* hueco extra arriba y abajo para la rotación */
  }

  /* Alternancia ligera izq/der */
  .qnote--1 { align-self: flex-start; }
  .qnote--2 { align-self: flex-end; margin-right: 2%; }
  .qnote--3 { align-self: flex-start; }
  .qnote--4 { align-self: flex-end; max-width: 90%; }

  /* Spoiler: centrado al final, con margen para no chocar con la flecha */
  .qnote--spoiler {
    align-self: center;
    margin: 1rem 0 0;
    padding: 0;
    transform: rotate(-2deg) !important;
    animation-name: qnote-in-spoiler-mobile !important;
  }
  .qnote__marker { font-size: clamp(1.3rem, 5.5vw, 1.7rem); }

  /* Flecha: en móvil pasa al flujo (centrada por el flex column del inner) */
  .qnotes__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .qnotes__board { padding-bottom: 0.5rem; width: 100%; }
  .qnotes__arrow {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin: 1.25rem auto 0;
    animation-name: qnotes-arrow-bounce-mobile;
  }
}

@keyframes qnotes-arrow-bounce-mobile {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes qnote-in-straight {
  0% { opacity: 0; transform: translateY(-12px) scale(0.9); }
  60% { opacity: 1; }
  100% { opacity: 1; transform: rotate(0deg); }
}

@keyframes qnote-in-tilt {
  0% { opacity: 0; transform: translateY(-12px) rotate(2deg) scale(0.9); }
  60% { opacity: 1; }
  100% { opacity: 1; transform: rotate(-4deg); }
}

@keyframes qnote-in-spoiler-mobile {
  0% { opacity: 0; transform: translateY(12px) rotate(0deg) scale(0.85); }
  60% { opacity: 1; }
  100% { opacity: 1; transform: rotate(-2deg); }
}

@media (prefers-reduced-motion: reduce) {
  .qnote,
  .qnotes__arrow {
    animation: none;
    opacity: 1;
  }
}

.problem {
  padding: clamp(4rem, 9vh, 6.5rem) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}

.problem--joined {
  padding-top: clamp(1rem, 2.5vh, 2rem);
}

.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: 0.6rem;
}

.problem__sub {
  font-size: clamp(0.9rem, 1.6vw, 1.15rem);
  font-weight: 500;
  color: var(--text-light);
  margin: 0 0 1.5rem;
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

@media (max-width: 540px) {
  /* En móviles estrechos: permitir que la frase rompa en 2 líneas si hace falta
     (a 320-380px no cabe la frase completa en una sola línea ni con clamp). */
  .problem__sub {
    white-space: normal;
    font-size: 0.85rem;
    line-height: 1.4;
  }
}

.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(1rem, 1.6vw, 1.25rem);
  color: var(--text);
  line-height: 1.6;
  max-width: 60ch;
  font-weight: 500;
  margin-bottom: 2rem;
}

/* Post-it inline dentro de la cita del problema */
.qnote--quote {
  position: relative;
  display: inline-block;
  max-width: 100%;
  padding: 1rem 1.25rem 1.1rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  font-family: var(--font);
  font-weight: 500;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--text);
  transform: rotate(-1.2deg);
  box-shadow:
    0 1px 2px rgba(28, 25, 23, 0.04),
    0 6px 14px rgba(28, 25, 23, 0.05),
    0 14px 28px rgba(244, 102, 15, 0.06);
  opacity: 1;
  animation: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.qnote--quote::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  width: 42px;
  height: 12px;
  background: rgba(244, 102, 15, 0.14);
  border-radius: 2px;
  transform: translateX(-50%) rotate(-2deg);
}

.qnote--quote strong {
  font-weight: 700;
  color: var(--primary);
}

.qnote--quote:hover {
  transform: rotate(0deg) translateY(-3px) scale(1.01) !important;
}

.race-foot {
  margin-top: 1.1rem;
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-light);
}

.race-foot strong {
  color: var(--text);
  font-weight: 700;
}

.race-foot__sep {
  color: var(--text-dim);
  margin: 0 0.3rem;
}

/* 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(var(--primary-rgb), 0.06);
}

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

.stat__num {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--primary);
}

.stat__label {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ═══════════ HOW ═══════════ */
.how {
  padding: clamp(4rem, 9vh, 6.5rem) var(--pad);
}

.how.inverted {
  background: var(--color-deep) !important;
  box-shadow: inset 0 2px 40px rgba(0, 0, 0, 0.4) !important;
}

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

.how__note {
  margin: 1.5rem 0 0;
  text-align: center;
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: -0.005em;
}

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

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

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

.step {
  padding: 1.25rem;
  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 {
  border-color: var(--border-strong);
  box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.08);
}

/* Acento de familia: las dos tarjetas Pro comparten un borde superior primary.
   Dictado se queda sin franja → se diferencian de un vistazo. */
.steps-grid--flow .step--pro {
  border-top: 3px solid var(--primary);
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.03) 0%, #fff 35%);
}

/* En modo invertido, el acento se ve aún más */
.inverted .steps-grid--flow .step--pro {
  border-top-color: var(--primary);
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.12) 0%, transparent 40%);
}

/* Número grande de fondo (decorativo) */
.step__bignum {
  position: absolute;
  bottom: 0.5rem;
  right: 0.9rem;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary);
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Etiqueta grande del modo */
.step__mode {
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
  margin: 0;
}

.step--pro .step__mode {
  color: var(--primary);
}


/* ─── Cómo funciona · 3 pasos visualmente distintos ─── */
.steps-grid--flow {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.steps-grid--flow .step {
  display: flex;
  flex-direction: column;
  /* extra padding-bottom: reserva sitio para el número decorativo (01/02/03) */
  padding: 1.5rem 1.4rem 2.6rem;
  position: relative;
  overflow: hidden;
}

.step__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.step__tag {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-light);
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.02);
  white-space: nowrap;
}

.step__visual {
  border-radius: 12px;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.04) 0%, rgba(var(--primary-rgb), 0.01) 100%);
  border: 1px solid var(--border);
  margin-bottom: 1rem;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
}


/* ═══════ Pasos: visual común ═══════ */

/* Teclas (kbd) */
.step-key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 32px;
  padding: 0 0.6em;
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: 7px;
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  color: var(--text);
  font-weight: 700;
  box-shadow: 0 2px 0 var(--border-strong), 0 3px 8px rgba(0, 0, 0, 0.04);
}

.step-keys__plus {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-weight: 600;
  margin: 0 1px;
}

/* Indicador "lado" en la tecla Alt/⌘: barra izq (Dictado) o der (Pro) */
.step-key--side { position: relative; }

.step--01 .step-key--side::before,
.step--pro .step-key--side::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 3px;
  height: 60%;
  background: var(--primary);
  opacity: 0.55;
  border-radius: 2px;
  transform: translateY(-50%);
}
.step--01 .step-key--side::before { left: -6px; }
.step--pro .step-key--side::after { right: -6px; }

/* Bloque de atajo — píldora compacta dentro de .step__head */
.step-shortcut {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.3rem;
  padding: 0.3rem 0.5rem;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border);
  border-radius: 8px;
}

/* Las teclas dentro del shortcut son más pequeñas que las "grandes" del visual */
.step-shortcut .step-key {
  min-width: 28px;
  height: 26px;
  font-size: 0.7rem;
  padding: 0 0.45em;
  border-radius: 5px;
}

.step-shortcut .step-keys__plus {
  font-size: 0.62rem;
  margin: 0;
}

/* Mostrar atajo según OS detectado (por defecto Win; Mac si body.is-mac) */
.os-keys {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.os-keys.os-mac { display: none; }
body.is-mac .os-keys.os-win { display: none; }
body.is-mac .os-keys.os-mac { display: inline-flex; }

.step-shortcut--pro {
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.07) 0%, rgba(var(--primary-rgb), 0.02) 100%);
  border-color: rgba(var(--primary-rgb), 0.22);
}

/* Ejemplo voz → resultado */
.step-example {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.step-example__voice {
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  letter-spacing: -0.005em;
}

.step-example__arrow {
  text-align: center;
  font-size: 0.95rem;
  color: var(--primary);
  opacity: 0.55;
  line-height: 1;
  margin: -0.15rem 0;
}

/* Campo fake con caret animado */
.step-fakefield {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.6rem 0.75rem;
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.45;
  /* Altura fija idéntica en todos los fakefield para simetría entre tarjetas.
     Si el texto es más largo, se trunca con ellipsis en 2 líneas. */
  height: 60px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
}

.step-fakefield__text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.step-fakefield__text {
  white-space: pre-wrap;
}

/* Variante "documento con selección" para el caso Reescribir.
   Simula un párrafo de texto con la frase clave resaltada como si
   el usuario la hubiera marcado con el ratón. */
.step-fakefield--doc {
  height: auto;
  min-height: 60px;
  display: block;
  overflow: visible;
  padding: 0.55rem 0.7rem;
  font-size: 0.78rem;
  line-height: 1.5;
  cursor: text;
}

.step-doc__before,
.step-doc__after {
  color: var(--text-dim);
}

/* La "selección" — highlight estilo SO + texto en color normal */
.step-doc__selection {
  background: rgba(var(--primary-rgb), 0.28);
  color: var(--text);
  padding: 1px 0;
  border-radius: 2px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* Caret parpadeante al final de la selección, como si acabara de soltar */
.step-doc__cursor {
  display: inline-block;
  width: 1.5px;
  height: 0.95em;
  background: var(--primary);
  margin-left: 1px;
  vertical-align: -2px;
  animation: step-doc-caret 1s steps(2, end) infinite;
}

@keyframes step-doc-caret {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Variante "email": ignora la altura fija de 60px, permite multilinea
   con asunto y cuerpo formateado. */
.step-fakefield--email {
  height: auto;
  display: block;
  overflow: visible;
  padding: 0.55rem 0.7rem;
  font-size: 0.78rem;
  line-height: 1.45;
}

.step-email__subject {
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.step-email__label {
  color: var(--text-dim);
  font-weight: 600;
  margin-right: 0.25rem;
}

.step-email__divider {
  height: 1px;
  background: var(--border);
  margin: 0.35rem -0.7rem 0.45rem;
}

.step-email__body {
  color: var(--text);
}

/* Visual contenedor: una sola columna interna, altura fija para simetría */
.step__visual--single {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.85rem;
  min-height: 280px;
  position: relative;
  z-index: 1;
}

.step-example {
  margin: auto 0;
}

/* Móvil: shortcut un poco más apretado */
@media (max-width: 720px) {
  .step-shortcut { gap: 0.25rem; padding: 0.25rem 0.45rem; }
  .step-shortcut .step-key { min-width: 26px; height: 24px; font-size: 0.66rem; }
}

/* Inverted (dark) variant */
.inverted .step__tag {
  color: rgba(255, 255, 255, 0.7) !important;
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

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

.inverted .step-key {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.95);
  color: var(--text);
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.4), 0 4px 10px rgba(0, 0, 0, 0.25);
}

.inverted .step-keys__plus {
  color: rgba(255, 255, 255, 0.5);
}

.inverted .step-fakefield {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
}

.inverted .step-shortcut {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.inverted .step-shortcut--pro {
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.18) 0%, rgba(var(--primary-rgb), 0.06) 100%);
  border-color: rgba(var(--primary-rgb), 0.4);
}

.inverted .step-example__voice {
  color: #fff;
}

/* Documento con selección en dark mode */
.inverted .step-doc__before,
.inverted .step-doc__after {
  color: rgba(255, 255, 255, 0.5);
}

.inverted .step-doc__selection {
  background: rgba(var(--primary-rgb), 0.4);
  color: #fff;
}

.inverted .step-email__subject,
.inverted .step-email__body {
  color: #fff;
}

.inverted .step-email__label {
  color: rgba(255, 255, 255, 0.55);
}

.inverted .step-email__divider {
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 900px) {
  .steps-grid--flow {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
  .steps-grid--flow .step {
    padding: 1.25rem 1.2rem 1.35rem;
  }
  .step__visual { min-height: auto; padding: 0.85rem; }
  .step-key { min-width: 34px; height: 34px; font-size: 0.8rem; }
}

.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(3rem, 7vh, 5rem) var(--pad) 0;
  max-width: var(--maxw);
  margin: 0 auto;
}

.features__inner {
  width: 100%;
}

/* Head asimétrico */
.features__head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.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__es-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.8rem 0.35rem 0.65rem;
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--text);
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 0 var(--border), 0 6px 16px -10px rgba(28, 25, 23, 0.18);
}

.features__title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  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(var(--primary-rgb), 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);
  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(var(--primary-rgb), 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(4rem, 9vh, 6.5rem) var(--pad);
  /* Fondo marrón profundo, igual que "cómo funciona" — a sangre completa */
  background: var(--color-deep);
  box-shadow: inset 0 2px 40px rgba(0, 0, 0, 0.4);
}

/* El contenido sigue centrado y con el ancho máximo del sitio */
.anywhere__inner {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}

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

/* ── Texto claro sobre el fondo marrón ── */
.anywhere h2,
.anywhere .anywhere__desc {
  color: #fff !important;
}

.anywhere .section-tag {
  color: var(--primary) !important;
}

.anywhere .section-tag::before {
  background: var(--primary) !important;
}

.anywhere .anywhere__desc {
  color: rgba(255, 255, 255, 0.72) !important;
}

/* Texto inferior "funciona también en la app…" sobre marrón */
.anywhere .dl-inline--center {
  color: rgba(255, 255, 255, 0.72) !important;
}

.anywhere .dl-inline--center .dl-link {
  color: var(--primary) !important;
}

.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 {
  box-shadow: 0 20px 48px rgba(var(--primary-rgb), 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(4rem, 9vh, 6.5rem) 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(4rem, 9vh, 6.5rem) var(--pad);
  position: relative;
}

.who__inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
}

.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;
}

.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(var(--primary-rgb), 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(var(--primary-rgb), 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 {
  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(var(--primary-rgb), 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(4rem, 9vh, 6.5rem) 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);
  display: flex;
  flex-direction: column;
}

.plan:hover {
  border-color: var(--border-strong);
  box-shadow: 0 20px 40px rgba(var(--primary-rgb), 0.08);
}

.plan h3 {
  font-size: 2rem;
  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:not(.price-amount) {
  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);
  flex: 1;
}

.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__list-sub {
  display: block;
  font-size: 0.82em;
  font-weight: 400;
  color: var(--text-dim, var(--text-light));
  opacity: 0.75;
  margin-top: 0.15rem;
  line-height: 1.35;
}

.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);
  margin-top: auto;
}

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

.plan--featured {
  border: 2px solid var(--primary);
  background: linear-gradient(160deg, rgba(var(--primary-rgb), 0.06) 0%, rgba(var(--primary-rgb), 0.01) 100%);
  transform: translateY(-12px);
  box-shadow: 0 8px 40px rgba(var(--primary-rgb), 0.18);
}

.plan--featured:hover {
  box-shadow: 0 20px 60px rgba(var(--primary-rgb), 0.28);
}

.plan--featured-glow {
  outline: 3px solid rgba(var(--primary-rgb), 0.18);
  outline-offset: 3px;
}

.plan__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: #fff;
  padding: 0.5em 1em;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
  border: 1px solid var(--primary);
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.28);
}

.plan__btn--primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  font-size: 15px;
  padding: 1.1rem;
}

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

.plan__btn--glow {
  box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.35);
}

.plan__btn--glow:hover {
  box-shadow: 0 8px 32px rgba(var(--primary-rgb), 0.5);
}

.plan--business {
  border: 1px solid var(--border);
  background: #fff;
}

.plan__price--contact {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.plan__price-label {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
}

.plan__btn--business {
  background: #1C1917;
  color: #fff;
  border-color: #1C1917;
}

.plan__btn--business:hover {
  background: #3c3836;
  border-color: #3c3836;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.pricing-grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.pricing-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.plan__list-no {
  opacity: 0.4;
}

.plan__list-no::before {
  content: '–' !important;
  color: var(--text-dim) !important;
}

/* billing toggle */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.billing-pill {
  display: inline-flex;
  align-items: center;
  background: #F0EDE8;
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
}

.billing-pill__option {
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  background: transparent;
  border: none;
  border-radius: 999px;
  padding: 0.45em 1.1em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.billing-pill__option--active {
  background: #FED7AA;
  color: #1C1917;
  font-weight: 600;
}

.billing-save {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.plan__desc {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
  margin-top: -0.25rem;
}

.plan__vat {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: -0.25rem;
  margin-bottom: 0.75rem;
}

.plan__list-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 0.5rem;
  margin-bottom: -0.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.pricing__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  font-size: 0.78rem;
  color: var(--text-dim);
}

.plan__badge--alt {
  background: #0d9488;
}

/* ═══════════ TESTIMONIOS ═══════════ */
.testim {
  padding: clamp(4rem, 9vh, 6.5rem) 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 {
  box-shadow: 0 24px 48px rgba(0,0,0,0.11);
}

/* Estrellas de valoración (JS rellena con 5 <span>) */
.quote__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.9rem;
  line-height: 1;
}

.quote__star {
  width: 16px;
  height: 16px;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.12);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01z'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01z'/></svg>") center / contain no-repeat;
}

.quote__star--full {
  background-color: #F4B400; /* amarillo estrella, no primary para distinguir de UI */
}

.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(4rem, 9vh, 6.5rem) 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(3.5rem, 8vh, 5rem) 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(2.5rem, 6vw, 4rem);
  margin-bottom: 0.5rem;
  line-height: 0.95;
}

.final p:not(.final__note) {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 300;
  margin-bottom: 2rem;
  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 {
  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);
}

.foot__seo {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin-top: 1rem;
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 860px;
}

/* ═══════════ 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(2rem, 8vw, 2.5rem);
  }

  .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);
}

/* Número grande de fondo en modo oscuro */
.inverted .step__bignum {
  color: #fff;
  opacity: 0.08;
}

/* Modo en blanco para Dictado (la 02/03 ya tienen .step--pro → primary) */
.inverted .step__mode {
  color: #fff;
}

.inverted .step--pro .step__mode {
  color: var(--primary);
}

.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(var(--primary-rgb), 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.step:hover,
.plan:hover {
  box-shadow: 0 24px 48px rgba(var(--primary-rgb), 0.12);
}


.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: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    line-height: 0.92;
    margin-bottom: 1.1rem;
    font-size: clamp(2.8rem, 15vw, 4.8rem);
    width: 100%;
  }

  .htitle__sub {
    font-size: 0.35em;
    margin-left: 0.12em;
  }

  .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.4rem, 18vw, 4rem);
    white-space: normal;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
  }

  .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;
  background: var(--color-deep) !important;
  box-shadow: inset 0 2px 40px rgba(0, 0, 0, 0.4) !important;
}

.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);
}

/* ══════════════════════════════════════════════════
   FCAR · carrusel horizontal de funcionalidades
   scroll-jacking pinned section
   ══════════════════════════════════════════════════ */

.fcar {
  position: relative;
  width: 100%;
  background: transparent;
  /* JS sets dynamic --fcar-h based on track width */
  height: var(--fcar-h, 600vh);
}

.fcar__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 720px;
  width: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: center;
  overflow: hidden;
  padding-top: clamp(1.5rem, 4vh, 3rem);
  padding-bottom: clamp(1.5rem, 3vh, 2.5rem);
  box-sizing: border-box;
}

.fcar__head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  width: 100%;
}

/* ── topbar (label · progress · counter) ── */
.fcar__topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(1.4rem, 2.6vh, 2rem) clamp(1.5rem, 5vw, 3.5rem) 0;
  max-width: 100%;
}

.fcar__label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.fcar__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.15);
  animation: fcarPulse 2.4s ease-in-out infinite;
}

@keyframes fcarPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.15); }
  50%      { box-shadow: 0 0 0 7px rgba(var(--primary-rgb), 0.05); }
}

.fcar__progress {
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.fcar__progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 2px;
  transition: width 0.18s linear;
}

.fcar__counter {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
}
.fcar__counter strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.fcar__counter em { font-style: normal; opacity: 0.4; padding: 0 0.2rem; }

/* ── viewport + track ── */
.fcar__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0;
}

.fcar__track {
  display: flex;
  align-items: stretch;
  gap: clamp(1rem, 2vw, 1.6rem);
  padding: 0 clamp(1.5rem, 5vw, 3.5rem);
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

/* ── hint ── */
.fcar__hint {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-self: center;
  align-self: end;
  padding: 0 0 clamp(1rem, 2vh, 1.5rem);
  font-family: 'Courier New', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 auto;
  opacity: 0.7;
}

.fcar__hint-arrow {
  display: inline-block;
  font-size: 14px;
  animation: fcarBounce 1.8s ease-in-out infinite;
}

@keyframes fcarBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}

.fcar.is-pinned .fcar__hint { opacity: 0; transition: opacity 0.4s var(--ease); }

/* ══════════════ CARDS ══════════════ */

.fcard {
  flex: 0 0 clamp(280px, 26vw, 360px);
  height: clamp(420px, 54vh, 520px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 1px 2px rgba(28, 25, 23, 0.04),
    0 18px 40px -28px rgba(28, 25, 23, 0.18);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
  position: relative;
}

.fcard:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 2px 4px rgba(28, 25, 23, 0.05),
    0 30px 60px -30px rgba(28, 25, 23, 0.3);
}

.fcard__media {
  position: relative;
  height: 56%;
  min-height: 260px;
  padding: clamp(1.1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.7rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  isolation: isolate;
}

.fcard__media::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.6;
  background: radial-gradient(120% 80% at 50% 0%, var(--fcc-tint, #fff) 0%, #fff 80%);
}

.fcard__body {
  padding: 1.2rem clamp(1.1rem, 2vw, 1.5rem) 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.fcard__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fcc-accent, var(--primary));
  font-weight: 700;
}

.fcard__title {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 0;
}

.fcard__desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-light);
  margin: 0;
}

.fcard__desc kbd {
  display: inline-block;
  padding: 0.05em 0.4em;
  background: var(--text);
  color: #fff;
  border-radius: 5px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78em;
  font-weight: 700;
  letter-spacing: 0;
  vertical-align: middle;
  transform: translateY(-1px);
}

/* ── per-card accent palette ── */
.fcard--01 { --fcc-tint: #FFEBD9; --fcc-accent: #F4660F; }
.fcard--02 { --fcc-tint: #DCFCE7; --fcc-accent: #15803D; }
.fcard--03 { --fcc-tint: #DBEAFE; --fcc-accent: #1D4ED8; }
.fcard--04 { --fcc-tint: #EDE9FE; --fcc-accent: #6D28D9; }
.fcard--05 { --fcc-tint: #FEF3C7; --fcc-accent: #B45309; }
.fcard--06 { --fcc-tint: #CFFAFE; --fcc-accent: #0E7490; }
.fcard--07 { --fcc-tint: #F1F5F9; --fcc-accent: #475569; }

/* ────── 01 · keys/translate ────── */
.fcard__keys { display: flex; justify-content: center; }
.fck {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: #fff;
  border: 1.5px solid var(--border-strong);
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  box-shadow: 0 3px 0 var(--border);
}
.fck kbd {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  background: #f6f5f3;
  color: var(--text);
  padding: 0.25em 0.55em;
  border-radius: 6px;
  border: 1px solid var(--border);
}
.fck-hot { background: var(--fcc-accent) !important; color: #fff !important; border-color: var(--fcc-accent) !important; }

.fcard__before, .fcard__after {
  font-size: 12.5px;
  line-height: 1.5;
  padding: 0.6rem 0.8rem;
  border-radius: 9px;
  background: #fff;
  border: 1px solid var(--border);
}
.fcard__before { color: var(--text-dim); text-decoration: line-through; text-decoration-color: rgba(0,0,0,0.18); }
.fcard__after { color: var(--text); font-weight: 600; border-color: rgba(var(--primary-rgb), 0.3); box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.06); }
.fcard__arrow { color: var(--fcc-accent); display: flex; justify-content: center; opacity: 0.7; }

/* ────── 02 · privacy shield ────── */
.fcard__shield {
  position: relative;
  display: flex;
  justify-content: center;
  color: var(--fcc-accent);
  margin: 0 auto;
}
.fcard__stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.fcard__priv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.fcard__priv-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 12.5px;
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.6);
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.fcard__priv-list li i {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--fcc-accent);
  position: relative;
  flex-shrink: 0;
}
.fcard__priv-list li i::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
}

/* ────── 03 · voice edit ────── */
.fcard__bubble {
  align-self: flex-start;
  background: var(--fcc-accent);
  color: #fff;
  padding: 0.55rem 1rem;
  border-radius: 16px 16px 16px 4px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 12px -4px rgba(29, 78, 216, 0.4);
}
.fcard__doc {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  font-size: 12px;
  line-height: 1.55;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.fcard__doc s { color: var(--text-dim); text-decoration-color: rgba(0,0,0,0.2); }
.fcard__doc b { color: var(--text); font-weight: 700; font-size: 12.5px; }

/* ────── 04 · vocab pills ────── */
.fcard__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  align-content: center;
  height: 100%;
}
.fcp {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 2px 0 var(--border);
}
.fcp--add {
  background: var(--fcc-accent);
  color: #fff;
  border-color: var(--fcc-accent);
  font-weight: 700;
}

/* ────── 05 · voice commands terminal ────── */
.fcard__terminal {
  background: #1C1917;
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  color: #FED7AA;
}
.fct-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fct-prompt { color: var(--fcc-accent); font-weight: 900; }
.fct-ok { margin-left: auto; color: #4ADE80; font-size: 11px; }
.fct-row--live { color: #fff; }
.fct-blink { animation: fctBlink 1s steps(2) infinite; }
@keyframes fctBlink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }
.fct-typing {
  border-right: 1.5px solid var(--fcc-accent);
  animation: fctType 1.6s steps(1) infinite;
}
@keyframes fctType { 0%, 70% { border-color: var(--fcc-accent); } 71%, 100% { border-color: transparent; } }

/* ────── 06 · modes ────── */
.fcard__modes {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.fcm {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border);
  border-radius: 9px;
  transition: all 0.3s var(--ease);
}
.fcm__ico { font-size: 16px; }
.fcm__name { font-size: 12.5px; font-weight: 700; color: var(--text); }
.fcm__hint { font-family: 'Courier New', monospace; font-size: 10px; color: var(--text-dim); letter-spacing: 0.06em; }
.fcm--active {
  background: #fff;
  border-color: var(--fcc-accent);
  box-shadow: 0 0 0 3px rgba(14, 116, 144, 0.1), -3px 0 0 var(--fcc-accent);
}

/* ────── 07 · offline ────── */
.fcard__offline {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--fcc-accent);
}
.fcard__offline-tag {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: #fff;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
}
.fcard__offline-ok {
  font-size: 14px;
  font-weight: 800;
  color: #15803D;
  background: #DCFCE7;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(21, 128, 61, 0.2);
}

/* ══════════════ MOBILE FALLBACK ══════════════ */
@media (max-width: 860px), (pointer: coarse) {
  .fcar {
    height: auto !important;
    background: var(--bg-soft);
  }
  .fcar__pin {
    position: relative;
    top: auto;
    height: auto;
    overflow: visible;
    grid-template-rows: auto auto auto;
    padding-bottom: 1.5rem;
  }
  .fcar__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .fcar__viewport::-webkit-scrollbar { display: none; }
  .fcar__track {
    transform: none !important;
    padding: 0 1.25rem;
  }
  .fcard {
    flex: 0 0 78vw;
    height: auto;
    min-height: 440px;
    scroll-snap-align: center;
  }
  .fcar__hint { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .fcar { height: auto !important; }
  .fcar__pin { position: relative; height: auto; }
  .fcar__viewport { overflow-x: auto; }
  .fcar__track { transform: none !important; }
  .fcar__dot, .fct-blink, .fct-typing, .fcar__hint-arrow { animation: none !important; }
}

/* ═══════════════════════════════════════════
   DESCARGA · alt-link + picker modal
═══════════════════════════════════════════ */
.hero__dl-alt {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-dim);
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__dl-alt a {
  color: var(--text-light);
  text-decoration: underline;
  text-decoration-color: rgba(0,0,0,.18);
  text-underline-offset: 3px;
  transition: color .15s ease, text-decoration-color .15s ease;
}
.hero__dl-alt a:hover {
  color: var(--accent-deep);
  text-decoration-color: var(--accent-deep);
}
.hero__dl-alt--final {
  margin-top: 12px;
  margin-bottom: 0;
}

.hero__trust {
  margin-top: 14px;
  margin-bottom: 0;
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0.85;
}
.hero__trust span { white-space: nowrap; }

#dl-picker {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 20px;
  animation: dlpFadeIn .18s ease-out;
}
.dl-picker__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 25, 23, .55);
  backdrop-filter: blur(4px);
}
.dl-picker__card {
  position: relative;
  background: var(--bg);
  color: var(--text);
  border-radius: 18px;
  padding: 28px 26px 24px;
  width: min(420px, 100%);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.35), 0 0 0 1px rgba(0,0,0,.06);
  animation: dlpScaleIn .2s ease-out;
}
.dl-picker__card h3 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.dl-picker__hint {
  margin: 0 0 18px;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}
.dl-picker__hint a {
  color: var(--accent-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.dl-picker__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  color: var(--text-dim);
  cursor: pointer;
  border-radius: 8px;
  transition: background .15s ease, color .15s ease;
}
.dl-picker__close:hover {
  background: var(--bg-soft);
  color: var(--text);
}
.dl-picker__opts {
  display: grid;
  gap: 10px;
}
.dl-picker__opt {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.08);
  background: var(--bg-soft);
  color: var(--text);
  text-decoration: none;
  transition: border-color .15s ease, transform .15s ease, background .15s ease;
}
.dl-picker__opt:hover {
  border-color: var(--accent-deep);
  background: #fff;
  transform: translateY(-1px);
}
.dl-picker__opt-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--text);
}
.dl-picker__opt-icon svg {
  width: 22px;
  height: 22px;
}
.dl-picker__opt-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.dl-picker__opt strong {
  font-size: 15px;
  font-weight: 600;
}
.dl-picker__opt-text > span {
  font-size: 12px;
  color: var(--text-dim);
}
.dl-picker__foot {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,.06);
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--text-dim);
  text-align: center;
}
.dl-picker__foot em { font-style: italic; color: var(--text-light); }

/* ═══════════════════════════════════════════
   CTAs INLINE · frases con link subrayado
═══════════════════════════════════════════ */
.dl-inline {
  margin: 2.5rem auto 0;
  max-width: 720px;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.5;
  color: var(--text-light);
  text-align: center;
}
.dl-inline--center { text-align: center; }
.dl-link {
  color: var(--accent-deep);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  text-decoration-color: rgba(244, 102, 15, .35);
  transition: text-decoration-color .15s ease, color .15s ease;
  white-space: nowrap;
}
.dl-link:hover {
  text-decoration-color: var(--accent-deep);
  color: var(--accent-deep);
}

/* ═══════════════════════════════════════════
   CTAs · botones secundarios y banner
═══════════════════════════════════════════ */
.dl-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 3.5rem auto 0;
  text-align: center;
}
.dl-row__line {
  margin: 0;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text-light);
}
.dl-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 12px;
  background: transparent;
  border: 1.5px solid var(--text);
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background .15s ease, color .15s ease, transform .15s ease, border-color .15s ease;
}
.dl-cta:hover {
  background: var(--text);
  color: var(--bg);
  transform: translateY(-1px);
}
.dl-cta .btn__win-icon {
  display: inline-flex;
  align-items: center;
  width: 18px;
  height: 18px;
}
.dl-cta--solid {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  color: #fff;
  padding: 15px 26px;
  font-size: 16px;
}
.dl-cta--solid:hover {
  background: #d65605;
  border-color: #d65605;
  color: #fff;
}

.dl-banner {
  margin: 3rem auto 0;
  padding: 1.8rem 1.5rem;
  background: var(--bg-soft);
  border: 1px solid rgba(0,0,0,.05);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.dl-banner__line {
  margin: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

.dl-faq-close {
  margin: 2.5rem auto 0;
  max-width: 640px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-dim);
  text-align: center;
}
.dl-faq-close .dl-link { color: var(--accent-deep); }

@media (max-width: 600px) {
  .dl-inline, .dl-faq-close { padding: 0 1.2rem; }
  .dl-banner { margin-left: 1rem; margin-right: 1rem; }
  .dl-link { white-space: normal; }
}

@keyframes dlpFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes dlpScaleIn {
  from { opacity: 0; transform: scale(.96); }
  to   { opacity: 1; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  #dl-picker, .dl-picker__card { animation: none; }
}

/* ══════════════════════════════════════════════════
   COMPARATIVA — ablalo vs la competencia
   ══════════════════════════════════════════════════ */
.vs {
  padding: clamp(3rem, 6vw, 4.5rem) var(--pad);
  background: var(--bg-soft);
}
.vs__inner {
  max-width: var(--maxw-narrow);
  margin: 0 auto;
  text-align: center;
}
.vs__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.6rem;
}
.vs__from-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.32rem 0.85rem;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.vs__kicker {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-light);
  max-width: 48ch;
  margin: 0 auto clamp(1.5rem, 3vw, 2rem);
  line-height: 1.5;
}

.vs__table {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg);
  text-align: left;
  box-shadow: 0 18px 50px -28px rgba(28, 25, 23, 0.25);
}
.vs__row {
  display: contents;
}
.vs__cell {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: clamp(0.88rem, 1.25vw, 0.98rem);
  line-height: 1.35;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vs__row:last-child .vs__cell { border-bottom: 0; }

.vs__cell--feat {
  font-weight: 600;
  color: var(--text);
  background: var(--bg-soft);
}
.vs__cell--us {
  background: rgba(var(--primary-rgb), 0.06);
  color: var(--text);
  border-left: 1px solid var(--border);
  font-weight: 500;
}
.vs__cell--them {
  color: var(--text-light);
  border-left: 1px solid var(--border);
}

.vs__row--head .vs__cell {
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.vs__brand {
  font-weight: 800;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  letter-spacing: -0.01em;
}
.vs__brand--us { color: var(--primary); }
.vs__brand--them {
  color: var(--text-dim);
  font-size: clamp(0.82rem, 1.3vw, 1rem);
  font-weight: 700;
}

.vs__sub {
  display: block;
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 400;
  margin-top: 0.15rem;
}
.vs__cell--us strong {
  font-size: 1.15em;
  font-weight: 800;
  color: var(--primary);
}
.vs__nowrap { white-space: nowrap; }

/* fila de precio destacada como ancla */
.vs__row--price .vs__cell {
  background: rgba(var(--primary-rgb), 0.04);
  border-bottom: 1px solid var(--border-strong);
}
.vs__row--price .vs__cell--feat {
  background: rgba(var(--primary-rgb), 0.08);
}
.vs__row--price .vs__cell--us {
  background: rgba(var(--primary-rgb), 0.1);
}
.vs__row--price .vs__cell--us strong {
  font-size: 1.3em;
}

.vs__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15em;
  height: 1.15em;
  border-radius: 50%;
  font-size: 0.72em;
  font-weight: 700;
  margin-right: 0.45em;
  flex-shrink: 0;
}
.vs__ico--ok { background: rgba(var(--primary-rgb), 0.15); color: var(--primary); }
.vs__ico--no { background: rgba(28, 25, 23, 0.08); color: var(--text-dim); }

.vs__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.6rem;
}
.vs__cta-note {
  font-size: 0.82rem;
  color: var(--text-dim);
}

.vs__foot {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.5;
}

@media (max-width: 640px) {
  .vs__table {
    grid-template-columns: 1fr 1fr;
    border-radius: 14px;
  }
  /* feature label spans full width as a row heading */
  .vs__cell--feat {
    grid-column: 1 / -1;
    font-size: 0.95rem;
    padding-bottom: 0.5rem;
    border-bottom: 0;
  }
  .vs__cell--us, .vs__cell--them {
    border-left: 0;
    border-top: 1px solid var(--border);
  }
  .vs__cell--us { border-right: 1px solid var(--border); }
  .vs__row--head .vs__cell--feat { display: none; }
  .vs__row--head .vs__cell--us,
  .vs__row--head .vs__cell--them { align-items: center; text-align: center; }
}

/* ══════════════════════════════════════════════════
   BANNER DE COOKIES (consentimiento RGPD · ver consent.js)
   ══════════════════════════════════════════════════ */
.cookie-bar {
  position: fixed;
  left: 50%;
  bottom: clamp(0.8rem, 2vw, 1.5rem);
  transform: translate(-50%, 140%);
  z-index: 9999;
  width: min(680px, calc(100vw - 2rem));
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.9rem 1.1rem;
  background: rgba(28, 18, 13, 0.96);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.cookie-bar.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}
.cookie-bar__text {
  flex: 1 1 280px;
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}
.cookie-bar__link {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-bar__btns {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}
.cookie-bar__btn {
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s;
}
.cookie-bar__btn--primary {
  background: var(--primary);
  color: #fff;
}
.cookie-bar__btn--primary:hover { background: var(--primary-dark); }
.cookie-bar__btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.2);
}
.cookie-bar__btn--ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 520px) {
  .cookie-bar { flex-direction: column; align-items: stretch; }
  /* En columna, el eje principal es vertical: sin esto, flex-basis:280px
     reservaría 280px de ALTO y dejaba un hueco enorme bajo el texto. */
  .cookie-bar__text { flex: 0 0 auto; }
  .cookie-bar__btns { justify-content: flex-end; }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-bar { transition: opacity 0.2s; transform: translate(-50%, 0); }
}
