:root {
  --coral: #d97757;
  --coral-lite: #e99c7e;
  --coral-deep: #be5c3c;
  --cream: #f5f1e8;
  --ink: #14110f;
  --ink-2: #1c1815;
  --ink-3: #251f1b;
  --line: rgba(245, 241, 232, 0.10);
  --text: #ece7df;
  --text-dim: #a79f95;
  --radius: 20px;
  --maxw: 1120px;
  --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.55);
  --font-display: 'Bricolage Grotesque', 'Inter', -apple-system, system-ui, sans-serif;
}
.hero-title, .section h2, .bento-text h3, .func-card h3 { font-family: var(--font-display); }

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }  /* deja ver el título de cada sección bajo el nav fijo */
body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  background: var(--ink);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; border: none; cursor: pointer;
  border-radius: 999px; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  font-size: 15px; padding: 12px 22px; font-family: inherit;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-primary {
  color: #2a1109;
  background: linear-gradient(180deg, var(--coral-lite), var(--coral) 55%, var(--coral-deep));
  box-shadow: 0 10px 28px -8px rgba(217, 119, 87, .55), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -8px rgba(217,119,87,.6), inset 0 1px 0 rgba(255,255,255,.3); }
.btn-ghost {
  color: var(--text); background: rgba(245,241,232,.06);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: rgba(245,241,232,.1); transform: translateY(-2px); }

/* ---------- Nav ---------- */
/* Barra fija de fundador: fina, siempre visible. Tecnológica/vanguardista:
   base oscura + haz de luz que recorre + rejilla sutil + dot pulsante + CTA con shimmer. */
.founder-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center; justify-content: center;
  height: 36px; padding: 0 14px; text-decoration: none; overflow: hidden;
  background:
    linear-gradient(90deg, rgba(217,119,87,.05), rgba(217,119,87,.14) 50%, rgba(217,119,87,.05)),
    repeating-linear-gradient(90deg, transparent 0 7px, rgba(245,241,232,.018) 7px 8px),
    linear-gradient(180deg, #1a1411, #110d0b);
  border-bottom: 1px solid rgba(217,119,87,.32);
  box-shadow: 0 1px 0 rgba(217,119,87,.18), 0 6px 22px -10px rgba(217,119,87,.5);
}
.founder-bar::after {            /* línea de escaneo inferior */
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--coral-lite), transparent);
  opacity: .55; animation: fb-scan 4.5s linear infinite;
}
/* Haz de luz diagonal que barre la barra */
.fb-beam { position: absolute; top: 0; bottom: 0; width: 34%; left: -40%; pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(233,156,126,.28) 45%, rgba(245,241,232,.42) 50%, rgba(233,156,126,.28) 55%, transparent);
  filter: blur(2px); animation: fb-beam 4.5s cubic-bezier(.5,0,.5,1) infinite; }
.fb-inner { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 11px;
  font-size: 13px; font-weight: 600; line-height: 1; color: var(--cream); white-space: nowrap; }
.fb-dot { width: 7px; height: 7px; border-radius: 50%; flex: none;
  background: var(--coral-lite); box-shadow: 0 0 0 0 rgba(233,156,126,.6); animation: fb-pulse 1.9s ease-out infinite; }
.fb-label { font-family: var(--font-display, inherit); font-weight: 800; letter-spacing: .04em; text-transform: uppercase; font-size: 12px;
  background: linear-gradient(90deg, var(--coral-lite), #fff 50%, var(--coral-lite)); background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: fb-shine 5s linear infinite; }
.fb-div { width: 1px; height: 13px; background: linear-gradient(180deg, transparent, rgba(245,241,232,.3), transparent); }
.fb-left { color: rgba(245,241,232,.82); letter-spacing: .01em; }
.fb-num { font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-weight: 800; font-size: 13.5px; color: #fff;
  font-variant-numeric: tabular-nums; padding: 1px 7px; border-radius: 6px; margin: 0 1px;
  background: rgba(217,119,87,.22); border: 1px solid rgba(233,156,126,.4); box-shadow: 0 0 12px -2px rgba(217,119,87,.6); }
.fb-cta { display: inline-flex; align-items: center; gap: 5px; margin-left: 4px; padding: 4px 12px; border-radius: 999px;
  font-weight: 800; font-size: 12px; letter-spacing: .01em; color: #2a1109; position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--coral-lite), var(--coral) 60%, var(--coral-deep)); }
.fb-cta::before { content: ''; position: absolute; inset: 0; transform: translateX(-120%);
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent); animation: fb-cta-shine 4.5s ease-in-out infinite; }
.fb-cta svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s; }
.founder-bar:hover .fb-cta svg { transform: translateX(3px); }
.founder-bar:hover .fb-beam { animation-duration: 2.4s; }
.founder-bar[hidden] { display: none; }
html.founder-bar-on { scroll-padding-top: 124px; }
html.founder-bar-on body { padding-top: 36px; }
html.founder-bar-on .nav { top: 36px; }
@keyframes fb-beam { 0% { left: -40%; } 60%, 100% { left: 110%; } }
@keyframes fb-scan { 0% { transform: translateX(-30%); opacity: 0; } 50% { opacity: .55; } 100% { transform: translateX(30%); opacity: 0; } }
@keyframes fb-pulse { 0% { box-shadow: 0 0 0 0 rgba(233,156,126,.6); } 70%, 100% { box-shadow: 0 0 0 7px rgba(233,156,126,0); } }
@keyframes fb-shine { 0% { background-position: 0% 0; } 100% { background-position: -200% 0; } }
@keyframes fb-cta-shine { 0%, 18% { transform: translateX(-120%); } 38%, 100% { transform: translateX(120%); } }
@media (max-width: 560px) {
  .fb-inner { gap: 8px; font-size: 11.5px; }
  .fb-label { font-size: 11px; } .fb-cta { padding: 3px 9px; font-size: 11px; }
}
@media (prefers-reduced-motion: reduce) {
  .founder-bar::after, .fb-beam, .fb-dot, .fb-label, .fb-cta::before { animation: none; }
  .fb-beam { display: none; }
}

.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.nav::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(20,17,15,.9), rgba(20,17,15,.5));
  border-bottom: 1px solid rgba(217,119,87,.3);
  box-shadow: 0 1px 0 rgba(217,119,87,.06);
}
.nav-inner {
  display: flex; align-items: center; gap: 24px;
  max-width: 1340px; margin: 0 auto; padding: 15px clamp(20px, 4vw, 48px);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand span { font-family: var(--font-display); font-weight: 800; font-size: 20px; letter-spacing: -.02em; color: var(--cream); }
.brand-mark { width: 32px; height: 32px; border-radius: 9px; box-shadow: 0 4px 12px -2px rgba(0,0,0,.4); }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a { color: var(--text-dim); font-size: 15px; font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: var(--text); }
.nav .btn-primary { margin-left: 4px; }
.nav-cta-mobile { display: none; }
.nav-toggle {
  display: none; margin-left: auto;
  width: 42px; height: 42px; border-radius: 11px;
  border: 1px solid rgba(217,119,87,.32); background: rgba(217,119,87,.08);
  cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 56px 24px 60px; overflow: hidden; isolation: isolate; }
.hero-wave { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-wave canvas { width: 100% !important; height: 100% !important; display: block; }
/* Respaldo y atmósfera: glow coral + desvanecido inferior (también si no hay WebGL) */
.hero-fade { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, var(--ink) 4%, rgba(20,17,15,.55) 28%, transparent 56%),
    radial-gradient(56% 60% at 80% 42%, rgba(217,119,87,.14), transparent 72%),
    linear-gradient(180deg, rgba(20,17,15,.45) 0, transparent 16%, transparent 72%, var(--ink) 100%); }
.hero-grid2 { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.04fr; gap: 48px; align-items: center; min-height: 540px; }
.hero-atmos { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.hero-glow { position: absolute; top: -140px; left: 50%; width: 1040px; height: 660px; transform: translateX(-50%);
  background: radial-gradient(ellipse 50% 50% at 50% 42%, rgba(217,119,87,.30), rgba(217,119,87,.05) 46%, transparent 70%);
  filter: blur(16px); animation: heroGlow 9s ease-in-out infinite; }
@keyframes heroGlow { 0%,100% { opacity: .8; transform: translateX(-50%) scale(1); } 50% { opacity: 1; transform: translateX(-50%) scale(1.05); } }
.hero-grid { position: absolute; inset: -2px; opacity: .6;
  background-image: linear-gradient(rgba(245,241,232,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(245,241,232,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(ellipse 58% 52% at 50% 26%, #000, transparent 72%);
  mask-image: radial-gradient(ellipse 58% 52% at 50% 26%, #000, transparent 72%); }

.hero-copy { position: relative; z-index: 2; text-align: left; }
.kicker { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--coral-lite);
  background: rgba(217,119,87,.10); border: 1px solid rgba(217,119,87,.22); padding: 7px 14px 7px 12px; border-radius: 999px; margin-bottom: 26px; }
.kicker-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 4px rgba(217,119,87,.22); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100% { opacity: 1 } 50% { opacity: .4 } }
.hero-title { font-size: clamp(42px, 6.6vw, 74px); line-height: 1.02; font-weight: 700; letter-spacing: -.035em; color: var(--cream); min-height: 2.06em; }
/* L1 nace en crema (como L2); al teclearse se tacha con una línea coral y se apaga */
.ht1 { color: var(--cream); display: inline-block; position: relative; transition: color .55s ease; }
.ht1::after {
  content: ''; position: absolute; left: -.04em; top: 54%; height: .07em; width: 0;
  background: linear-gradient(90deg, var(--coral), var(--coral-lite));
  border-radius: 3px; box-shadow: 0 0 14px rgba(217, 119, 87, .55);
  transition: width .55s cubic-bezier(.55, 0, .2, 1);
}
.ht1.struck { color: var(--text-dim); }
.ht1.struck::after { width: calc(100% + .08em); }
/* L2 entra con un barrido elegante de izquierda a derecha, desenfoque que se aclara y acento coral que asienta a crema */
.ht2 { color: var(--cream); display: inline-block; }
.ht2.htshow { animation: htReveal .8s cubic-bezier(.2, .85, .25, 1) both; }
@keyframes htReveal {
  0%   { opacity: 0; transform: translateY(.2em); clip-path: inset(0 100% 0 0); filter: blur(7px); color: var(--coral); }
  45%  { color: var(--coral-lite); }
  100% { opacity: 1; transform: none; clip-path: inset(0 0 0 0); filter: blur(0); color: var(--cream); }
}
.ht-caret { display: inline-block; width: 3px; height: .86em; vertical-align: -.06em; margin-left: 3px; background: var(--coral); border-radius: 2px; animation: blink 1.05s steps(1) infinite; }
.hero-title-accent { background: linear-gradient(112deg, var(--coral-lite), var(--coral) 58%, var(--coral-deep)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-title-mut { color: var(--text-dim); }
.hero-lead { font-size: clamp(16px, 1.45vw, 19px); color: var(--text-dim); max-width: 480px; margin: 22px 0 30px; line-height: 1.55; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-cta .arr { transition: transform .2s; }
.btn-primary:hover .arr { transform: translateX(3px); }
.hero-trust { margin-top: 22px; color: var(--text-dim); font-size: 13.5px; }
.accent { background: linear-gradient(120deg, var(--coral-lite), var(--coral)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { font-size: clamp(17px, 2.2vw, 21px); color: var(--text-dim); max-width: 620px; margin: 0 auto 34px; }

/* Producto: ventana mostrando el dictado en vivo (la prueba del hero) */
.hero-stage { position: relative; z-index: 2; }
.hero-window { position: relative; border-radius: 18px; overflow: hidden; text-align: left;
  background: linear-gradient(180deg, rgba(33,28,25,.97), rgba(22,18,16,.97));
  border: 1px solid rgba(245,241,232,.13);
  box-shadow: 0 44px 100px -34px rgba(0,0,0,.78), 0 0 0 1px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.05); }
.win-bar { display: flex; align-items: center; gap: 8px; padding: 13px 16px; border-bottom: 1px solid var(--line); }
.win-dot { width: 11px; height: 11px; border-radius: 50%; }
.win-dot.r { background: #ff5f57; } .win-dot.y { background: #febc2e; } .win-dot.g { background: #28c840; }
.win-title { margin-left: 10px; font-size: 13px; color: var(--text-dim); font-weight: 500; }
.win-body { padding: 20px 26px 14px; }
.win-field { font-size: 14.5px; color: var(--text-dim); padding-bottom: 10px; }
.win-field + .win-field { border-top: 1px solid rgba(245,241,232,.06); padding-top: 10px; }
.win-label { display: inline-block; min-width: 58px; color: rgba(167,159,149,.65); }
.win-text { font-size: clamp(17px, 2vw, 20px); line-height: 1.6; color: var(--text); min-height: 88px; margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(245,241,232,.06); }
.hero-caret { display: inline-block; width: 2.5px; height: 1.05em; vertical-align: -.16em; margin-left: 1px; background: var(--coral); border-radius: 2px; animation: blink 1.05s steps(1) infinite; }
.hero-hud { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin: 4px 18px 18px; padding: 11px 14px;
  background: rgba(13,10,9,.72); border: 1px solid var(--line); border-radius: 15px; box-shadow: inset 0 1px 0 rgba(255,255,255,.04); }
.hph-status { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--coral-lite); white-space: nowrap; }
.hph-ic { width: 16px; height: 16px; border-radius: 50%; flex: none; display: grid; place-items: center; box-sizing: border-box; }
.hph-check { width: 11px; height: 11px; fill: none; stroke: #2a1109; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; opacity: 0; }
.ph-listen .hph-ic { background: var(--coral); animation: pulse 1.1s infinite; }
.ph-refine .hph-ic { background: none; border: 2px solid rgba(217,119,87,.28); border-top-color: var(--coral); animation: hphspin .7s linear infinite; }
.ph-ready .hph-ic { background: var(--coral); }
.ph-ready .hph-check { opacity: 1; }
@keyframes hphspin { to { transform: rotate(360deg); } }
.hph-viz { display: inline-flex; align-items: center; gap: 12px; }
.hero-hud .hud-sandal { width: 28px; height: 28px; }
.hero-hud .hud-bars { height: 22px; width: 116px; }
.ph-refine .hud-bars span { animation-duration: 2.2s; opacity: .55; }
.ph-ready .hud-bars span { animation: none; height: 24%; opacity: .35; }
.ph-ready .hud-sandal { animation: none; }
.win-text { transition: opacity .18s ease; }
.win-text.tfade { opacity: 0; }
.win-text .strike { color: rgba(180,172,162,.72); text-decoration: line-through; text-decoration-color: var(--coral);
  text-decoration-thickness: 2.5px; display: inline-block; max-width: 8em;
  transition: max-width .42s ease, opacity .42s ease, transform .42s ease; }
.win-text .strike.striking { max-width: 0; opacity: 0; transform: translateY(-3px); overflow: hidden; }
.win-text .fix { color: var(--coral-lite); font-weight: 600; text-decoration: none; animation: fixIn .4s ease both; }
@keyframes fixIn { 0% { opacity: 0; transform: translateY(4px); } 100% { opacity: 1; transform: none; } }
.cleanflash { animation: cleanIn .55s ease both; }
@keyframes cleanIn { 0% { color: var(--coral-lite); } 100% { color: var(--text); } }
.hero-reflect { width: 72%; height: 56px; margin: 4px auto 0; background: radial-gradient(ellipse at center, rgba(217,119,87,.16), transparent 70%); filter: blur(14px); }
.hud-pill {
  display: flex; align-items: center; gap: 16px;
  background: rgba(28,24,21,.92); border: 1px solid var(--line);
  border-radius: 26px; padding: 16px 18px; box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}
.hud-sandal { width: 40px; height: 40px; flex-shrink: 0; animation: flap 1.4s ease-in-out infinite; transform-origin: 35% 60%; }
@keyframes flap { 0%,100% { transform: rotate(-7deg) } 50% { transform: rotate(7deg) } }
.hud-bars { display: flex; align-items: center; gap: 4px; flex: 1; height: 34px; }
.hud-bars span { flex: 1; background: var(--coral); border-radius: 99px; height: 20%; animation: eq 1.1s ease-in-out infinite; }
.hud-bars span:nth-child(odd) { animation-delay: .15s; }
.hud-bars span:nth-child(3n) { animation-delay: .3s; }
.hud-bars span:nth-child(4n) { animation-delay: .45s; }
@keyframes eq { 0%,100% { height: 18% } 50% { height: 85% } }
.hud-stop {
  background: linear-gradient(180deg, var(--coral), var(--coral-deep));
  color: #fff; font-weight: 600; font-size: 14px; padding: 9px 18px; border-radius: 999px; white-space: nowrap;
}

/* ---------- Trust ---------- */
/* Stats animadas */
.stats { max-width: 1040px; margin: 54px auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { position: relative; text-align: center; padding: 30px 18px; border-radius: 20px; overflow: hidden;
  background: linear-gradient(180deg, var(--ink-2), var(--ink)); border: 1px solid var(--line);
  transition: transform .25s cubic-bezier(.2,.9,.3,1), border-color .25s, box-shadow .25s; }
.stat::before { content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity .3s;
  background: radial-gradient(circle at 50% -10%, rgba(217,119,87,.20), transparent 70%); }
.stat:hover { transform: translateY(-5px); border-color: rgba(217,119,87,.45);
  box-shadow: 0 24px 56px -26px rgba(217,119,87,.55); }
.stat:hover::before { opacity: 1; }
.stat-ic { position: relative; width: 46px; height: 46px; margin: 0 auto 14px; border-radius: 14px;
  display: grid; place-items: center; background: rgba(217,119,87,.12); }
.stat-ic svg { width: 22px; height: 22px; color: var(--coral); }
.stat-num { position: relative; display: block; font-size: 46px; font-weight: 900; line-height: 1; letter-spacing: -.03em;
  background: linear-gradient(180deg, var(--cream), var(--coral-lite)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { position: relative; display: block; margin-top: 9px; color: var(--text-dim); font-size: 13.5px; line-height: 1.4; }

/* Apps compatibles (marquee) */
.apps { padding-top: 30px; }
.apps-marquee { margin-top: 36px; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.apps-row { display: flex; gap: 14px; width: max-content; }
.apps-row + .apps-row { margin-top: 14px; }
.apps-row.r1 { animation: appslide 42s linear infinite; }
.apps-row.r2 { animation: appslide 52s linear infinite reverse; }
.apps-marquee:hover .apps-row { animation-play-state: paused; }
@keyframes appslide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.app-chip { display: inline-flex; align-items: center; gap: 11px; flex: none; white-space: nowrap;
  padding: 11px 20px 11px 13px; background: var(--ink-2); border: 1px solid var(--line); border-radius: 15px;
  transition: transform .2s, border-color .2s, background .2s; }
.app-chip:hover { transform: translateY(-3px); border-color: rgba(245,241,232,.22); background: var(--ink-3); }
.app-logo { width: 28px; height: 28px; flex: none; display: block; object-fit: contain; }
.app-logo svg { width: 100%; height: 100%; display: block; stroke: none; }
.app-name { font-size: 15px; font-weight: 600; color: var(--text); }

/* ---------- Secciones ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: 96px 24px; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.eyebrow { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--coral); margin-bottom: 14px; }
.section h2 { font-size: clamp(28px, 4.5vw, 44px); font-weight: 800; letter-spacing: -.025em; line-height: 1.1; }
.section-sub { margin-top: 16px; color: var(--text-dim); font-size: 17px; }

/* Features grid */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: linear-gradient(180deg, var(--ink-2), var(--ink-3));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: transform .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(217,119,87,.35); }
.card .ic { width: 54px; height: 54px; display: grid; place-items: center; background: rgba(217,119,87,.12); border-radius: 14px; margin-bottom: 18px; }
.card .ic svg { width: 26px; height: 26px; color: var(--coral); }

/* Iconos SVG (estilo línea) */
svg { fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.ic-inline { width: 18px; height: 18px; margin-right: -2px; }
.ic-stop { width: 14px; height: 14px; }
.ic-lock { width: 14px; height: 14px; color: var(--coral-lite); vertical-align: -2px; margin-right: 4px; }
.card h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }
.card p { color: var(--text-dim); font-size: 15px; }

/* How */
.how { border-top: 1px solid var(--line); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step { text-align: center; padding: 12px; }
.step .num {
  width: 56px; height: 56px; margin: 0 auto 20px; border-radius: 50%;
  display: grid; place-items: center; font-size: 22px; font-weight: 800; color: #2a1109;
  background: linear-gradient(180deg, var(--coral-lite), var(--coral-deep));
  box-shadow: 0 12px 28px -8px rgba(217,119,87,.5);
}
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p { color: var(--text-dim); }

/* Pricing */
.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 380px)); gap: 22px; justify-content: center; }
.plan {
  background: linear-gradient(180deg, var(--ink-2), var(--ink-3));
  border: 1px solid var(--line); border-radius: 24px; padding: 34px; position: relative;
}
.plan-featured {
  border-color: rgba(217,119,87,.5);
  box-shadow: 0 30px 70px -30px rgba(217,119,87,.4);
  background: linear-gradient(180deg, #241a15, var(--ink-3));
}
.plan-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(180deg, var(--coral-lite), var(--coral-deep)); color: #2a1109;
  font-size: 12px; font-weight: 700; padding: 6px 16px; border-radius: 999px;
}
.plan-name { font-size: 15px; font-weight: 700; color: var(--coral-lite); text-transform: uppercase; letter-spacing: .05em; }
.plan-price { margin: 14px 0 6px; display: flex; align-items: baseline; gap: 4px; }
.plan-price .currency { font-size: 26px; font-weight: 700; color: var(--cream); }
.plan-price .amount { font-size: 54px; font-weight: 900; color: var(--cream); letter-spacing: -.03em; }
.plan-price .per { font-size: 15px; color: var(--text-dim); margin-left: 4px; }
.plan-tax { font-size: 12px; color: var(--text-dim); margin: -2px 0 12px; letter-spacing: .01em; }
.plan-desc { color: var(--text-dim); font-size: 15px; margin-bottom: 22px; }
.plan-feats { list-style: none; margin-bottom: 26px; }
.plan-feats li { padding: 9px 0; padding-left: 30px; position: relative; font-size: 15px; border-bottom: 1px solid var(--line); }
.plan-feats li:before {
  content: ''; position: absolute; left: 0; top: 11px; width: 18px; height: 18px;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d97757' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}
.plan-secure { text-align: center; margin-top: 14px; font-size: 13px; color: var(--text-dim); }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  border: 1px solid var(--line); border-radius: 14px; padding: 4px 20px; margin-bottom: 12px;
  background: var(--ink-2); transition: border-color .2s;
}
.faq details[open] { border-color: rgba(217,119,87,.35); }
.faq summary { cursor: pointer; padding: 16px 0; font-weight: 600; font-size: 16px; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:after { content: '+'; color: var(--coral); font-size: 22px; font-weight: 400; transition: transform .2s; }
.faq details[open] summary:after { transform: rotate(45deg); }
.faq details p { padding: 0 0 18px; color: var(--text-dim); font-size: 15px; }

/* CTA final */
.final-cta { text-align: center; padding: 100px 24px; max-width: var(--maxw); margin: 0 auto; position: relative; }
.final-sandal { width: 80px; height: 80px; margin: 0 auto 26px; opacity: .95; }
.final-cta h2 { font-size: clamp(30px, 5vw, 52px); font-weight: 900; letter-spacing: -.03em; margin-bottom: 30px; }

/* Footer */
.footer { border-top: 1px solid var(--line); padding: 50px 24px; text-align: center; color: var(--text-dim); }
.footer-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; color: var(--text); font-size: 17px; margin-bottom: 8px; }
.footer-brand img { width: 26px; height: 26px; border-radius: 7px; }
.footer-links { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; margin: 18px 0; }
.footer-links a { color: var(--text-dim); font-size: 14px; transition: color .15s; }
.footer-links a:hover { color: var(--coral-lite); }
.footer small { font-size: 13px; opacity: .7; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-cta-desktop { display: none; }
  .nav-links {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0; margin-left: 0;
    padding: 6px clamp(20px, 5vw, 28px) 20px;
    background: rgba(20,17,15,.97); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(217,119,87,.3);
    box-shadow: 0 18px 40px -16px rgba(0,0,0,.6);
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: transform .22s ease, opacity .22s ease;
  }
  .nav.open .nav-links { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { font-size: 17px; padding: 14px 2px; border-bottom: 1px solid rgba(236,231,223,.07); }
  .nav-cta-mobile { display: block; margin: 16px 0 0; text-align: center; border-bottom: none; }
  .grid, .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .plans { grid-template-columns: 1fr; }
}

/* ---------- HUD stop con icono ---------- */
.hud-stop { display: inline-flex; align-items: center; gap: 7px; }
.hud-stop .ic-stop { color: #fff; }

/* ---------- Sección de vídeo ---------- */
.video-section { padding-top: 40px; }
.video-frame { max-width: 880px; margin: 0 auto; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--ink-2); }
.video-chrome { display: flex; gap: 7px; padding: 12px 16px; background: var(--ink-3); border-bottom: 1px solid var(--line); }
.tl-dot { width: 11px; height: 11px; border-radius: 50%; }
.tl-dot.r { background: #ff5f57; } .tl-dot.y { background: #febc2e; } .tl-dot.g { background: #28c840; }
.video-body { position: relative; aspect-ratio: 16 / 9; display: grid; place-items: center;
  background: radial-gradient(circle at 50% 40%, rgba(217,119,87,.22), transparent 60%), var(--ink); }
.play-btn { width: 78px; height: 78px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(180deg, var(--coral-lite), var(--coral-deep)); color: #2a1109;
  display: grid; place-items: center; box-shadow: 0 16px 40px -10px rgba(217,119,87,.6); transition: transform .2s; }
.play-btn:hover { transform: scale(1.07); }
.play-btn svg { width: 30px; height: 30px; margin-left: 3px; }
.video-caption { position: absolute; bottom: 22px; font-size: 14px; color: var(--text-dim); }

/* ---------- Cómo funciona (interactivo y animado) ---------- */
.ic-flow { width: 17px; height: 17px; color: currentColor; }
.how2 { max-width: 760px; margin: 0 auto; }
.how2-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 22px; }
.how2-tab { display: inline-flex; align-items: center; gap: 7px; background: var(--ink-2); border: 1px solid var(--line);
  color: var(--text-dim); font-family: inherit; font-size: 13px; font-weight: 600; padding: 8px 14px; border-radius: 999px; cursor: pointer; transition: .18s; }
.how2-tab svg { width: 15px; height: 15px; }
.how2-tab:hover { color: var(--text); border-color: rgba(245,241,232,.2); }
.how2-tab.active { color: #2a1109; background: linear-gradient(180deg, var(--coral-lite), var(--coral-deep)); border-color: transparent; }

.how2-window { border-radius: 18px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--ink-2); }
.how2-body { padding: 22px 24px 26px; }
.how2-rowhead { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--coral-lite); }
.how2-rowhead.out { color: var(--text-dim); }
.how2-said { font-size: 18px; line-height: 1.55; color: var(--text); margin-top: 10px; min-height: 56px; font-style: italic; }

.how2-wave { display: inline-flex; align-items: center; gap: 3px; height: 16px; margin-left: auto; opacity: 0; transition: opacity .2s; }
.how2-wave.on { opacity: 1; }
.how2-wave span { width: 3px; height: 28%; background: var(--coral); border-radius: 2px; }
.how2-wave.on span { animation: eq 1s infinite ease-in-out; }
.how2-wave span:nth-child(3n) { animation-delay: -.2s; }
.how2-wave span:nth-child(3n+1) { animation-delay: -.5s; }
.how2-wave span:nth-child(3n+2) { animation-delay: -.8s; }

.how2-transform { display: flex; align-items: center; gap: 10px; justify-content: center; margin: 18px 0; color: var(--text-dim); font-size: 13px; }
.how2-sandal { width: 30px; height: 30px; border-radius: 9px; box-shadow: 0 6px 16px -6px rgba(0,0,0,.5); }
.how2.polishing .how2-sandal { animation: flap 1.4s ease-in-out infinite; transform-origin: 35% 60%; }
.how2-status { font-weight: 600; }
.how2.polishing .how2-status { color: var(--coral-lite); }

.how2-out { border-top: 1px dashed var(--line); padding-top: 16px; }
.how2-field { font-size: 18px; line-height: 1.6; color: var(--text); margin-top: 10px; min-height: 56px; white-space: pre-wrap; }

.how2-progress { height: 3px; background: var(--ink-3); border-radius: 999px; margin-top: 18px; overflow: hidden; }
.how2-progress i { display: block; height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, var(--coral-lite), var(--coral)); }

@media (max-width: 620px) {
  .how2-said, .how2-field { font-size: 16px; }
  .how2-tab span { display: none; }
  .how2-tab { padding: 9px 12px; }
}

/* ---------- Velocidad del pensamiento (animada) ---------- */
.thought { position: relative; text-align: center; padding: 130px 24px; overflow: hidden; }
.thought-glow { position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(217,119,87,.18), transparent 70%); }
.thought-sandal { width: 64px; height: 64px; margin: 0 auto 30px; position: relative; z-index: 1;
  animation: flap 1.6s ease-in-out infinite; transform-origin: 35% 60%; }
.thought-line { position: relative; z-index: 1; font-size: clamp(30px, 6vw, 60px); font-weight: 900;
  letter-spacing: -.03em; line-height: 1.1; margin-bottom: 36px; }
.thought-line .tw { display: inline-block; opacity: 0; transform: translateY(14px) rotate(1deg); filter: blur(4px); }
.thought-line.play .tw { animation: wordIn .55s cubic-bezier(.2,.9,.3,1) forwards; }
.thought-line.play .tw:nth-child(1) { animation-delay: .05s }
.thought-line.play .tw:nth-child(2) { animation-delay: .18s }
.thought-line.play .tw:nth-child(3) { animation-delay: .31s }
.thought-line.play .tw:nth-child(4) { animation-delay: .42s }
.thought-line.play .tw:nth-child(5) { animation-delay: .55s }
.thought-line.play .tw:nth-child(6) { animation-delay: .70s }
.thought-line.play .tw:nth-child(7) { animation-delay: .86s }
@keyframes wordIn { to { opacity: 1; transform: none; filter: blur(0); } }
.caret { display: inline-block; width: 3px; height: .92em; vertical-align: -.12em; margin-left: 4px;
  background: var(--coral); border-radius: 2px; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ---------- Toggle de suscripción ---------- */
.billing-toggle { display: inline-flex; gap: 4px; margin-top: 22px; padding: 4px; background: var(--ink-2); border: 1px solid var(--line); border-radius: 999px; }
.bt { border: none; background: none; color: var(--text-dim); font-family: inherit; font-size: 14px; font-weight: 600; padding: 9px 18px; border-radius: 999px; cursor: pointer; transition: .2s; display: inline-flex; align-items: center; gap: 6px; }
.bt.active { color: #2a1109; background: linear-gradient(180deg, var(--coral-lite), var(--coral-deep)); }
.bt .save { font-size: 11px; background: rgba(0,0,0,.2); padding: 2px 7px; border-radius: 999px; }
.bt.active .save { background: rgba(255,255,255,.25); }
.plan-feats .freq { color: var(--coral-lite); font-weight: 600; }

/* ---------- Modal de marca (sustituye a alert nativo) ---------- */
.hx-overlay { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center;
  background: rgba(10,8,7,.6); backdrop-filter: blur(8px); opacity: 0; transition: opacity .18s ease; padding: 24px; }
.hx-overlay.in { opacity: 1; }
.hx-modal { background: linear-gradient(180deg, var(--ink-2), var(--ink-3)); border: 1px solid var(--line);
  border-radius: 22px; padding: 30px 28px; max-width: 380px; text-align: center; box-shadow: var(--shadow);
  transform: scale(.94); transition: transform .2s cubic-bezier(.2,.9,.3,1); }
.hx-overlay.in .hx-modal { transform: scale(1); }
.hx-modal-ic { width: 64px; height: 64px; border-radius: 16px; margin: 0 auto 18px; box-shadow: 0 10px 26px -8px rgba(217,119,87,.5); }
.hx-modal-title { font-size: 19px; font-weight: 800; margin-bottom: 8px; }
.hx-modal-msg { color: var(--text-dim); font-size: 15px; line-height: 1.5; margin-bottom: 22px; }
.hx-modal-ok { width: 100%; }

/* ---------- Dictado (demo visual) ---------- */
.dictation { border-top: 1px solid var(--line); }
.dict-demo { position: relative; max-width: 720px; margin: 0 auto; }
.dict-window { border-radius: 16px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--ink-2); }
.win-title { margin-left: 8px; font-size: 13px; color: var(--text-dim); }
.dict-body { padding: 22px 24px 40px; min-height: 180px; }
.dict-meta { color: var(--text-dim); font-size: 14px; border-bottom: 1px solid var(--line); padding-bottom: 12px; margin-bottom: 16px; }
.dict-field { font-size: 19px; line-height: 1.6; color: var(--text); min-height: 90px; }
.dict-hud { display: flex; justify-content: center; margin-top: -22px; position: relative; z-index: 2; }
.dict-hud .hud-pill { max-width: 420px; }
.dict-listening { display: inline-flex; align-items: center; gap: 7px; background: rgba(217,119,87,.16); color: var(--coral-lite); font-weight: 600; font-size: 14px; padding: 9px 16px; border-radius: 999px; white-space: nowrap; }
.rec-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); animation: pulse 1.2s infinite; }
.dict-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.dstep { text-align: center; padding: 12px; }
.dkey { display: inline-block; font-weight: 700; font-size: 15px; color: var(--cream); background: var(--ink-3); border: 1px solid var(--line); border-bottom-width: 3px; border-radius: 10px; padding: 10px 16px; margin-bottom: 16px; }
.dico { width: 52px; height: 52px; margin: 0 auto 16px; border-radius: 14px; background: rgba(217,119,87,.12); display: grid; place-items: center; }
.dico svg { width: 24px; height: 24px; color: var(--coral); }
.dstep h3 { font-size: 18px; margin-bottom: 6px; }
.dstep p { color: var(--text-dim); font-size: 15px; }

/* ---------- Transcripción (demo) ---------- */
.transcribe { border-top: 1px solid var(--line); }
.tr-window { max-width: 760px; margin: 0 auto; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--ink-2); }
.tr-body { padding: 14px 10px; }
.tr-line { display: flex; gap: 14px; align-items: baseline; padding: 11px 14px; border-radius: 10px; font-size: 15.5px; }
.tr-line.active { background: rgba(217,119,87,.12); }
.tr-time { font-family: ui-monospace, monospace; font-size: 13px; color: var(--coral-lite); flex-shrink: 0; }
.tr-export { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-top: 1px solid var(--line); background: var(--ink-3); }
.tr-exp-label { font-size: 13px; color: var(--text-dim); margin-right: 4px; }
.tr-chip { font-size: 12px; font-weight: 600; color: var(--coral-lite); background: rgba(217,119,87,.12); border: 1px solid rgba(217,119,87,.28); padding: 5px 12px; border-radius: 8px; }
.tr-limits { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.tr-lim { font-size: 14px; color: var(--text-dim); background: var(--ink-2); border: 1px solid var(--line); border-radius: 999px; padding: 10px 18px; }
.tr-lim.pro { border-color: rgba(217,119,87,.4); }
.tr-lim-tag { font-weight: 700; color: var(--text-dim); margin-right: 6px; }
.tr-lim-tag.pro { color: var(--coral-lite); }

/* ---------- Tres funciones (bento) ---------- */
.bento { display: grid; grid-template-columns: 1.22fr 1fr; gap: 16px; }
.bento-tile { position: relative; display: flex; flex-direction: column; justify-content: space-between; gap: 22px;
  background: linear-gradient(180deg, var(--ink-2), var(--ink-3)); border: 1px solid var(--line); border-radius: 22px;
  padding: 22px; overflow: hidden; transition: transform .25s cubic-bezier(.2,.9,.3,1), border-color .25s, box-shadow .25s; }
.bento-tile:hover { transform: translateY(-4px); border-color: rgba(217,119,87,.42); box-shadow: 0 30px 64px -34px rgba(217,119,87,.42); }
.bento-lead { grid-row: span 2; }
.bento-kicker { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--coral); margin-bottom: 9px; }
.bento-text h3 { font-size: clamp(19px, 2.3vw, 25px); font-weight: 700; letter-spacing: -.02em; margin-bottom: 8px; }
.bento-text p { color: var(--text-dim); font-size: 14.5px; line-height: 1.55; max-width: 46ch; }

/* Demo grande: Dictado */
.bento-demo { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 16px;
  background: var(--ink); border: 1px solid var(--line); border-radius: 16px; padding: 22px; min-height: 196px; }
.bento-field { font-size: 16px; line-height: 1.75; color: var(--text); }
.bd-line { display: block; }
.bd-caret { display: inline-block; width: 2.5px; height: 1.05em; vertical-align: -.16em; background: var(--coral); border-radius: 2px; animation: blink 1.05s steps(1) infinite; }
.bento-pill { display: inline-flex; align-items: center; gap: 11px; align-self: flex-start; padding: 8px 13px;
  background: rgba(13,10,9,.7); border: 1px solid var(--line); border-radius: 13px; }
.bento-sandal { width: 24px; height: 24px; animation: flap 1.4s ease-in-out infinite; transform-origin: 35% 60%; }
.bd-bars { display: inline-flex; align-items: center; gap: 3px; height: 18px; }
.bd-bars i { width: 3px; background: var(--coral); border-radius: 99px; height: 30%; animation: eq 1.1s ease-in-out infinite; }
.bd-bars i:nth-child(odd) { animation-delay: .2s; } .bd-bars i:nth-child(3n) { animation-delay: .4s; }
.bd-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); animation: pulse 1.1s infinite; display: inline-block; }
/* La misma ventana animada del hero, dentro de la tarjeta de Dictado del bento */
.bento-demo:has(.bento-window) { background: none; border: none; padding: 0; min-height: 0; }
.bento-window { width: 100%; }
.bento-window .win-bar { padding: 10px 14px; }
.bento-window .win-title { font-size: 12px; }
.bento-window .win-body { padding: 14px 18px 8px; }
.bento-window .win-field { font-size: 13px; padding-bottom: 8px; }
.bento-window .win-label { min-width: 46px; }
.bento-window .win-text { font-size: 15px; min-height: 64px; margin-top: 10px; padding-top: 10px; line-height: 1.5; }
.bento-window .win-text .strike { max-width: 6em; }
.bento-window .hero-hud { margin: 2px 12px 12px; padding: 9px 12px; }
.bento-window .hero-hud .hud-sandal { width: 22px; height: 22px; }
.bento-window .hero-hud .hud-bars { height: 18px; width: 86px; }
.bento-window .hph-status { font-size: 11px; }

/* ---------- Testimonios ---------- */
.tm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
.tm-card { display: flex; flex-direction: column; background: var(--ink-2); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; margin: 0; }
.tm-video { position: relative; background: #000; aspect-ratio: 16 / 9; }
.tm-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.tm-play { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; transition: opacity .2s; }
.tm-play svg { width: 44px; height: 44px; fill: #fff; stroke: none; filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .55)); opacity: .92; }
.tm-video:hover .tm-play { opacity: 0; }
.tm-body { display: flex; flex-direction: column; gap: 14px; padding: 20px 22px; flex: 1; }
.tm-quote { margin: 0; font-size: 15px; line-height: 1.6; color: var(--text); }
.tm-quote::before { content: '“'; color: var(--coral); font-weight: 800; margin-right: 1px; }
.tm-author { display: flex; align-items: center; gap: 11px; margin-top: auto; }
.tm-av { width: 40px; height: 40px; flex: none; border-radius: 50%; overflow: hidden; display: grid; place-items: center; font-weight: 700; color: var(--coral-lite); background: rgba(217, 119, 87, .16); border: 1px solid rgba(217, 119, 87, .3); }
.tm-av img { width: 100%; height: 100%; object-fit: cover; }
.tm-author strong { display: block; font-size: 14px; color: var(--cream); }
.tm-author small { color: var(--text-dim); font-size: 12.5px; }
@media (max-width: 900px) { .tm-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .tm-grid { grid-template-columns: 1fr; } }

/* Mini visuals: Transcripción / Prompts */
.bento-mini { flex: 1; display: flex; flex-direction: column; gap: 9px; justify-content: center;
  background: var(--ink); border: 1px solid var(--line); border-radius: 16px; padding: 18px; min-height: 116px; }
.bm-wave { display: flex; align-items: center; justify-content: space-between; height: 28px; margin-bottom: 6px; }
.bm-wave i { width: 4px; flex: none; background: rgba(217,119,87,.55); border-radius: 99px; height: 35%; }
.bm-wave i:nth-child(2),.bm-wave i:nth-child(8),.bm-wave i:nth-child(12) { height: 80%; }
.bm-wave i:nth-child(3),.bm-wave i:nth-child(7),.bm-wave i:nth-child(11) { height: 55%; }
.bm-wave i:nth-child(4),.bm-wave i:nth-child(10) { height: 95%; }
.bm-wave i:nth-child(5),.bm-wave i:nth-child(9),.bm-wave i:nth-child(13) { height: 45%; }
.bm-seg { font-size: 13px; color: var(--text-dim); display: flex; gap: 9px; align-items: baseline; }
.bm-t { font-family: ui-monospace, monospace; font-size: 11px; color: var(--coral-lite); flex: none; }
.bento-prompts { flex-direction: row; flex-wrap: wrap; align-content: center; gap: 8px; }
.bp-chip { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 500; color: var(--text);
  padding: 7px 13px; border-radius: 999px; background: color-mix(in srgb, var(--c) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--c) 38%, transparent); }
.bp-chip::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--c); flex: none; }

/* ---------- Banner del beta ---------- */
.beta-banner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: space-between;
  background: linear-gradient(120deg, #2a1a14, var(--ink-3)); border: 1px solid rgba(217,119,87,.45);
  border-radius: 22px; padding: 26px 30px; margin-bottom: 26px; box-shadow: 0 24px 60px -30px rgba(217,119,87,.5); }
.beta-banner-tag { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  color: #2a1109; background: linear-gradient(180deg, var(--coral-lite), var(--coral-deep)); padding: 5px 12px; border-radius: 999px; margin-bottom: 12px; }
.beta-banner-main { flex: 1; min-width: 260px; }
.beta-banner h3 { font-size: 22px; font-weight: 800; letter-spacing: -.02em; }
.beta-banner p { color: var(--text-dim); font-size: 15px; margin-top: 6px; }
.beta-banner p strong { color: var(--coral-lite); }
.beta-banner-left { margin-top: 10px; display: inline-block; font-size: 13px; font-weight: 700; color: var(--coral-lite); background: rgba(217,119,87,.14); border: 1px solid rgba(217,119,87,.3); padding: 5px 12px; border-radius: 999px; }
/* Descargar app de escritorio */
.dl-band { position: relative; overflow: hidden; text-align: center; max-width: 880px; margin: 0 auto;
  background: linear-gradient(150deg, #2a1a13, var(--ink-3) 62%); border: 1px solid rgba(217,119,87,.42);
  border-radius: 26px; padding: 48px 40px; box-shadow: 0 30px 72px -34px rgba(217,119,87,.5); }
.dl-glow { position: absolute; top: -45%; left: 50%; transform: translateX(-50%); width: 720px; height: 420px;
  background: radial-gradient(ellipse at center, rgba(217,119,87,.3), transparent 66%); filter: blur(20px); pointer-events: none; }
.dl-band > :not(.dl-glow) { position: relative; z-index: 1; }
.dl-band h2 { font-size: clamp(27px, 4vw, 42px); }
.dl-lead { color: var(--text-dim); font-size: 17px; max-width: 540px; margin: 16px auto 26px; line-height: 1.55; }
.dl-lead strong { color: var(--coral-lite); }
.kbd { display: inline-flex; align-items: center; justify-content: center; min-width: 24px; height: 23px; padding: 0 6px;
  font-family: ui-monospace, monospace; font-size: 12px; font-weight: 700; color: var(--cream); vertical-align: 1px;
  background: rgba(245,241,232,.09); border: 1px solid var(--line); border-bottom-width: 2px; border-radius: 6px; margin: 0 1px; }
.dl-band h2 .kbd { min-width: 1.05em; height: 1em; padding: 0 .26em; font-size: .56em; border-radius: 9px; vertical-align: .1em; margin: 0 .06em; }
.dl-steps { display: flex; flex-direction: column; gap: 11px; max-width: 460px; margin: 0 auto 28px; text-align: left; }
.dl-step { display: flex; align-items: center; gap: 13px; color: var(--text); font-size: 15px; }
.dl-num { flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: 13px; font-weight: 700;
  color: var(--coral-lite); background: rgba(217,119,87,.16); border: 1px solid rgba(217,119,87,.3); }
.dl-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.dl-note { margin-top: 18px; color: var(--text-dim); font-size: 13px; }

@media (max-width: 860px) { .bento { grid-template-columns: 1fr; } .bento-lead { grid-row: auto; } }
@media (max-width: 900px) {
  .hero-grid2 { grid-template-columns: 1fr; gap: 36px; min-height: 0; text-align: center; }
  .hero-copy { text-align: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
}
@media (max-width: 760px) {
  .hero { padding-top: 44px; }
  .win-text { font-size: 17px; }
  .hero-title { font-size: clamp(38px, 11vw, 52px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-glow, .hud-sandal, .bento-sandal, .hud-bars span, .bd-bars i, .hero-caret, .bd-caret, .hph-ic, .bd-dot, .kicker-dot, .ht-caret { animation: none !important; }
  /* La frase animada debe quedar legible sin animación */
  .thought-line .tw { opacity: 1 !important; transform: none !important; filter: none !important; animation: none !important; }
  .ht2 { opacity: 1 !important; }
}

/* ---------- Selector de idioma ES/EN ---------- */
.langsw { display: inline-flex; align-items: center; gap: 2px; padding: 3px; border-radius: 999px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); }
.lsw-opt { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; border-radius: 999px;
  border: 0; background: transparent; color: var(--text-dim); font: 600 12.5px/1 'Inter', system-ui, sans-serif;
  cursor: pointer; transition: background .15s, color .15s; }
.lsw-opt:hover { color: #fff; }
.lsw-opt.on { background: rgba(217,119,87,.18); color: var(--coral-lite); }
.lsw-flag { width: 20px; height: 14px; border-radius: 3px; overflow: hidden; display: inline-block; flex: none; }
.lsw-flag svg { width: 100%; height: 100%; display: block; }
.lsw-opt span { letter-spacing: .03em; }
@media (max-width: 820px) { .lsw-opt span { display: none; } .lsw-opt { padding: 6px 8px; } }

/* ---------- Gate de descarga (deja email → clave de licencia) ---------- */
.dlg-overlay { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 24px;
  background: rgba(10,8,7,.66); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); opacity: 0; transition: opacity .18s; overflow-y: auto; }
.dlg-overlay.in { opacity: 1; }
.dlg-card { position: relative; width: min(440px, 100%); text-align: center; padding: 34px 30px 26px;
  background: linear-gradient(180deg, var(--ink-2), var(--ink-3)); border: 1px solid var(--line); border-radius: 22px;
  box-shadow: 0 30px 80px -24px rgba(0,0,0,.7); transform: scale(.95); transition: transform .2s; }
.dlg-overlay.in .dlg-card { transform: scale(1); }
.dlg-x { position: absolute; top: 14px; right: 16px; width: 34px; height: 34px; border-radius: 9px; border: 1px solid var(--line);
  background: rgba(245,241,232,.05); color: var(--text-dim); font-size: 22px; line-height: 1; cursor: pointer; transition: background .15s, color .15s; }
.dlg-x:hover { background: rgba(245,241,232,.12); color: var(--cream); }
.dlg-logo { width: 56px; height: 56px; border-radius: 14px; margin: 0 auto 14px; display: block; }
.dlg-title { font-size: 22px; font-weight: 800; letter-spacing: -.02em; color: var(--cream); }
.dlg-sub { font-size: 14.5px; color: var(--text-dim); line-height: 1.5; margin: 8px 0 20px; }
.dlg-form { display: flex; flex-direction: column; gap: 10px; }
.dlg-input { width: 100%; padding: 13px 15px; border-radius: 12px; border: 1px solid var(--line); background: var(--ink); color: var(--cream); font-size: 15px; font-family: inherit; }
.dlg-input:focus { outline: none; border-color: var(--coral); box-shadow: 0 0 0 3px rgba(217,119,87,.18); }
.dlg-input::placeholder { color: #847b71; }
.dlg-err { color: #ef9a86; font-size: 13.5px; text-align: left; background: rgba(217,75,60,.1); border: 1px solid rgba(217,75,60,.3); border-radius: 9px; padding: 8px 12px; }
.dlg-submit { width: 100%; margin-top: 4px; }
.dlg-legal { font-size: 12px; color: #847b71; line-height: 1.5; margin-top: 16px; }
.dlg-ok-ic { width: 58px; height: 58px; border-radius: 50%; margin: 0 auto 14px; display: grid; place-items: center;
  color: #6FA868; background: rgba(111,168,104,.14); border: 1px solid rgba(111,168,104,.4); }
.dlg-ok-ic svg { width: 30px; height: 30px; }
.dlg-key { display: flex; align-items: center; gap: 8px; margin: 18px 0; padding: 6px 6px 6px 14px;
  background: var(--ink); border: 1px solid rgba(217,119,87,.4); border-radius: 12px; }
.dlg-key code { flex: 1; font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: 15px; font-weight: 700; letter-spacing: .5px; color: var(--cream); overflow: hidden; text-overflow: ellipsis; }
.dlg-copy { flex: none; padding: 8px 14px; border-radius: 9px; border: 1px solid var(--line); background: rgba(245,241,232,.06);
  color: var(--text-dim); font-size: 13px; font-weight: 700; cursor: pointer; transition: background .15s, color .15s; }
.dlg-copy:hover { background: rgba(245,241,232,.12); color: var(--cream); }
.dlg-copy.ok { color: #6FA868; border-color: rgba(111,168,104,.4); }
.dlg-dl { width: 100%; }
