/* ════════════════════════════════════════════════════
   NOVA · landing — "La sesión"
   Marco HUD + comandos de voz como estructura.
   Paleta de marca: #0a0a0b · lime #c8f135 · cian #6ee7ff
   Tipos: Archivo Expanded (display) · JetBrains Mono (comandos) · Inter (cuerpo)
   ════════════════════════════════════════════════════ */

:root {
  --bg: #0a0a0b;
  --bg2: #101013;
  --card: rgba(22, 22, 26, .55);
  --border: #26262d;
  --text: #f5f5f7;
  --muted: #9a9aa4;
  --lime: #c8f135;
  --lime-dim: rgba(200, 241, 53, .55);
  --lime-glow: rgba(200, 241, 53, .14);
  --cyan: #6ee7ff;
  --cyan-dim: rgba(110, 231, 255, .5);
  --display: 'Archivo', 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', 'Courier New', monospace;
  --body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --pad: clamp(20px, 5vw, 72px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.mono { font-family: var(--mono); }

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

::selection { background: var(--lime); color: #0a0a0b; }

/* ═══ Barra de progreso ═══ */
.progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--lime), var(--cyan));
  z-index: 70;
  box-shadow: 0 0 10px rgba(200,241,53,.5);
}

/* ═══ Fondo ═══ */
.bg { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.bg-blob { position: absolute; border-radius: 50%; filter: blur(110px); mix-blend-mode: screen; }
.b1 { width: 620px; height: 620px; background: rgba(200,241,53,.13); top: -180px; left: -140px; animation: drift1 22s ease-in-out infinite; }
.b2 { width: 520px; height: 520px; background: rgba(110,231,255,.09); top: 30%; right: -180px; animation: drift2 26s ease-in-out infinite; }
.b3 { width: 460px; height: 460px; background: rgba(182,155,255,.07); bottom: -160px; left: 34%; animation: drift3 30s ease-in-out infinite; }
@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(70px,90px) scale(1.12); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-90px,50px) scale(1.08); } }
@keyframes drift3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(60px,-80px) scale(1.15); } }
.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 20%, transparent 80%);
}
.bg-noise {
  position: absolute; inset: 0; opacity: .04; mix-blend-mode: overlay;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="120" height="120"%3E%3Cfilter id="n"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="3"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23n)"/%3E%3C/svg%3E');
}

/* ═══ Esquinas HUD del viewport ═══ */
.hud-corner {
  position: fixed; width: 18px; height: 18px; z-index: 60;
  border: 1px solid rgba(200,241,53,.35); pointer-events: none;
}
.hud-corner.tl { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.hud-corner.tr { top: 10px; right: 10px; border-left: 0; border-bottom: 0; }
.hud-corner.bl { bottom: 10px; left: 10px; border-right: 0; border-top: 0; }
.hud-corner.br { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }

/* ═══ Topbar ═══ */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; gap: 20px;
  padding: 14px var(--pad);
  background: rgba(10,10,11,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(38,38,45,.7);
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-mark { width: 16px; height: 20px; }
.brand-mark polygon { fill: var(--lime); }
.brand-name {
  font-family: var(--display);
  font-variation-settings: 'wdth' 125;
  font-weight: 800; font-size: 15px; letter-spacing: .22em;
}
.topbar-mid { flex: 1; display: flex; align-items: center; gap: 10px; min-width: 40px; }
.tb-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(200,241,53,.35)); }
.tb-line.r { background: linear-gradient(90deg, rgba(200,241,53,.35), transparent); }
.tb-dot {
  width: 4px; height: 4px; border-radius: 50%; flex-shrink: 0;
  background: var(--lime); box-shadow: 0 0 8px var(--lime);
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .25; } }
.topbar-nav { display: flex; align-items: center; gap: 22px; }
.topbar-nav > a:not(.tb-buy) {
  font-size: 13.5px; color: var(--muted); font-weight: 500;
  transition: color .2s;
}
.topbar-nav > a:not(.tb-buy):hover { color: var(--text); }
.tb-clock { font-size: 11px; color: var(--lime-dim); letter-spacing: .08em; }
.tb-buy {
  font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: .04em;
  color: #0a0a0b; background: var(--lime);
  padding: 8px 16px; border-radius: 4px;
  transition: box-shadow .2s, transform .2s;
}
.tb-buy:hover { box-shadow: 0 0 22px var(--lime-glow), 0 0 8px rgba(200,241,53,.4); transform: translateY(-1px); }

/* ═══ Comando / prompt (dispositivo estructural) ═══ */
.cmd-prompt { color: var(--lime); margin-right: 6px; }
.cmd-quote { color: var(--muted); }
.caret {
  display: inline-block; width: 9px; height: 1.05em;
  background: var(--lime); vertical-align: text-bottom; margin-left: 2px;
  animation: blink 1s steps(1) infinite;
}

/* ═══ Hero ═══ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  align-items: center; gap: clamp(24px, 4vw, 60px);
  padding: 120px var(--pad) 90px;
  max-width: 1360px; margin: 0 auto;
}
.hero-particles {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.hero-copy, .hero-orb { position: relative; z-index: 1; }
.hero-session {
  font-size: 11px; letter-spacing: .28em; color: var(--muted);
  margin-bottom: 22px;
}
.hero-session::before {
  content: ''; display: inline-block; width: 7px; height: 7px;
  background: var(--lime); border-radius: 50%; margin-right: 10px;
  box-shadow: 0 0 8px var(--lime); vertical-align: 1px;
  animation: blink 1.4s ease-in-out infinite;
}
.hero-cmd { font-size: clamp(14px, 1.6vw, 17px); color: var(--text); margin-bottom: 18px; min-height: 1.7em; }
.hero-title {
  font-family: var(--display);
  font-variation-settings: 'wdth' 125;
  font-weight: 900;
  font-size: clamp(44px, 7.2vw, 104px);
  line-height: .96; letter-spacing: -.01em;
  margin-bottom: 26px;
  text-wrap: balance;
}
.ht-line { display: block; }
.grad {
  background: linear-gradient(100deg, var(--lime), var(--cyan), var(--lime));
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 6s ease-in-out infinite;
}
@keyframes shimmer {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero-sub {
  font-size: clamp(15px, 1.5vw, 18px); color: var(--muted);
  max-width: 52ch; margin-bottom: 34px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero-meta { font-size: 10.5px; letter-spacing: .24em; color: #6a6a74; }
.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 9px; letter-spacing: .4em; color: #5b5b64;
  z-index: 1;
}
.hs-line {
  width: 1px; height: 34px; overflow: hidden; position: relative;
  background: rgba(255,255,255,.08);
}
.hs-line::after {
  content: ''; position: absolute; left: 0; top: -50%;
  width: 100%; height: 50%;
  background: var(--lime);
  animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint { 0% { top: -50%; } 100% { top: 110%; } }

/* ═══ Botones ═══ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-weight: 600; font-size: 15px;
  padding: 15px 26px; border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer; transition: transform .2s, box-shadow .25s, border-color .2s, background .2s;
}
.btn-primary { background: var(--lime); color: #0a0a0b; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 34px rgba(200,241,53,.28), 0 0 0 1px rgba(200,241,53,.5);
}
.btn-price {
  font-size: 12px; font-weight: 700; letter-spacing: .04em;
  background: rgba(10,10,11,.16); padding: 3px 8px; border-radius: 3px;
}
.btn-ghost { border-color: var(--border); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: var(--lime-dim); color: var(--lime); }
.btn-wide { width: 100%; justify-content: center; }
.btn-big { font-size: 17px; padding: 18px 34px; }

/* ═══ Orbe deltoide ═══ */
.hero-orb {
  position: relative;
  display: grid; place-items: center;
  min-height: 460px;
  --px: 0px; --py: 0px;
}
.orb-halo {
  position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,241,53,.16), rgba(110,231,255,.06) 45%, transparent 70%);
  animation: haloPulse 4.5s ease-in-out infinite;
}
@keyframes haloPulse { 0%,100% { transform: scale(1); opacity: .8; } 50% { transform: scale(1.14); opacity: 1; } }
.orb-conic {
  position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(200,241,53,.14) 40deg, transparent 90deg, transparent 200deg, rgba(110,231,255,.1) 250deg, transparent 300deg);
  animation: spin 16s linear infinite;
  -webkit-mask-image: radial-gradient(circle, transparent 52%, #000 56%, #000 72%, transparent 76%);
  mask-image: radial-gradient(circle, transparent 52%, #000 56%, #000 72%, transparent 76%);
}
.orb-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid transparent;
}
.orb-ring.r1 {
  width: 300px; height: 300px;
  border-top-color: var(--lime-dim); border-right-color: rgba(200,241,53,.12);
  animation: spin 9s linear infinite;
}
.orb-ring.r2 {
  width: 358px; height: 358px;
  border-bottom-color: var(--cyan-dim); border-left-color: rgba(110,231,255,.1);
  animation: spin 14s linear infinite reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }
.orb-orbit {
  position: absolute; border-radius: 50%;
  animation: spin linear infinite;
}
.orb-orbit.o1 { width: 300px; height: 300px; animation-duration: 9s; }
.orb-orbit.o2 { width: 358px; height: 358px; animation-duration: 14s; animation-direction: reverse; }
.orb-orbit.o3 { width: 420px; height: 420px; animation-duration: 22s; }
.orb-sat {
  position: absolute; top: -3px; left: 50%;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime); box-shadow: 0 0 10px var(--lime);
}
.orb-sat.c { background: var(--cyan); box-shadow: 0 0 10px var(--cyan); width: 5px; height: 5px; }
.orb-sat.s { width: 4px; height: 4px; opacity: .8; }
.orb-ripple {
  position: absolute; width: 220px; height: 220px; border-radius: 50%;
  border: 1px solid rgba(200,241,53,.35);
  animation: ripple 3.6s ease-out infinite;
  opacity: 0;
}
.orb-ripple.p2 { animation-delay: 1.2s; border-color: rgba(110,231,255,.3); }
.orb-ripple.p3 { animation-delay: 2.4s; }
@keyframes ripple {
  0% { transform: scale(.7); opacity: .7; }
  100% { transform: scale(2.05); opacity: 0; }
}
.orb-deltoide {
  width: 118px; position: relative; z-index: 2;
  filter: drop-shadow(0 0 26px rgba(200,241,53,.45)) drop-shadow(0 0 60px rgba(110,231,255,.2));
  animation: breathe 4.5s ease-in-out infinite;
  transform: translate(var(--px), var(--py));
}
@keyframes breathe {
  0%,100% { scale: 1; }
  50% { scale: 1.06; }
}
.orb-eq {
  position: absolute; bottom: 46px; z-index: 2;
  display: flex; align-items: flex-end; gap: 4px; height: 30px;
}
.orb-eq span {
  width: 3px; background: linear-gradient(180deg, var(--lime), rgba(200,241,53,.25));
  border-radius: 2px;
  animation: eq 1.1s ease-in-out infinite;
}
.orb-eq span:nth-child(odd) { background: linear-gradient(180deg, var(--cyan), rgba(110,231,255,.2)); }
.orb-eq span:nth-child(1)  { height: 30%; animation-delay: -.9s; }
.orb-eq span:nth-child(2)  { height: 55%; animation-delay: -.7s; }
.orb-eq span:nth-child(3)  { height: 40%; animation-delay: -.3s; }
.orb-eq span:nth-child(4)  { height: 80%; animation-delay: -1.0s; }
.orb-eq span:nth-child(5)  { height: 60%; animation-delay: -.5s; }
.orb-eq span:nth-child(6)  { height: 95%; animation-delay: -.2s; }
.orb-eq span:nth-child(7)  { height: 50%; animation-delay: -.8s; }
.orb-eq span:nth-child(8)  { height: 72%; animation-delay: -.4s; }
.orb-eq span:nth-child(9)  { height: 72%; animation-delay: -.65s; }
.orb-eq span:nth-child(10) { height: 50%; animation-delay: -.15s; }
.orb-eq span:nth-child(11) { height: 95%; animation-delay: -.55s; }
.orb-eq span:nth-child(12) { height: 60%; animation-delay: -.95s; }
.orb-eq span:nth-child(13) { height: 80%; animation-delay: -.25s; }
.orb-eq span:nth-child(14) { height: 40%; animation-delay: -.75s; }
.orb-eq span:nth-child(15) { height: 55%; animation-delay: -.45s; }
.orb-eq span:nth-child(16) { height: 30%; animation-delay: -.6s; }
@keyframes eq {
  0%,100% { transform: scaleY(.35); }
  50% { transform: scaleY(1); }
}
.orb-status {
  position: absolute; bottom: 8px; z-index: 2;
  font-size: 10px; letter-spacing: .34em; color: var(--lime-dim);
}
.orb-status .dots::after {
  content: ''; animation: dots 1.8s steps(4) infinite;
}
@keyframes dots {
  0% { content: ''; } 25% { content: '.'; } 50% { content: '..'; } 75% { content: '...'; }
}

/* ═══ Ticker ═══ */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 16px 0;
  background: rgba(16,16,19,.5);
}
.ticker-track {
  display: flex; align-items: center; gap: 28px;
  width: max-content;
  font-size: 13px; color: var(--muted); letter-spacing: .02em;
  animation: marquee 36s linear infinite;
}
.ticker-track.rev { animation-direction: reverse; }
.ticker-track i { color: var(--lime); font-style: normal; font-size: 8px; }
.ticker-track span { white-space: nowrap; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ═══ Secciones ═══ */
.section {
  max-width: 1360px; margin: 0 auto;
  padding: clamp(80px, 11vw, 150px) var(--pad) 0;
}
.sec-head { margin-bottom: clamp(38px, 5vw, 64px); }
.sec-cmd {
  font-size: clamp(13px, 1.4vw, 15px); color: var(--muted);
  margin-bottom: 16px;
}
.sec-title {
  font-family: var(--display);
  font-variation-settings: 'wdth' 125;
  font-weight: 800;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.04; letter-spacing: -.01em;
  text-wrap: balance;
}

/* ═══ Problema: mil clics ═══ */
.prob-grid {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: clamp(28px, 4vw, 70px);
  align-items: center;
}
.prob-list { list-style: none; display: grid; gap: 10px; }
.prob-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 18px;
  padding: 15px 20px;
  border: 1px solid var(--border); border-radius: 8px;
  background: var(--card);
  font-size: 13.5px;
  position: relative; overflow: hidden;
}
.pl-task { color: var(--text); position: relative; }
.pl-task::after {
  content: ''; position: absolute; left: 0; top: 55%;
  width: 0; height: 1px; background: var(--lime);
  transition: width .6s ease .35s;
}
.reveal.in .pl-task::after { width: 100%; }
.reveal.in .pl-task { color: var(--muted); transition: color .4s ease .6s; }
.pl-cost { color: #6a6a74; font-size: 11.5px; white-space: nowrap; }
.prob-punch { text-align: left; }
.pp-eyebrow { font-size: 10px; letter-spacing: .3em; color: var(--lime-dim); margin-bottom: 14px; }
.pp-big {
  font-family: var(--display);
  font-variation-settings: 'wdth' 125;
  font-weight: 900;
  font-size: clamp(52px, 6.5vw, 96px);
  line-height: .95; margin-bottom: 18px;
}
.pp-note { color: var(--muted); font-size: 15px; max-width: 38ch; }

/* ═══ Manifiesto (se enciende al scrollear) ═══ */
.manifesto {
  padding: clamp(110px, 15vw, 200px) var(--pad);
  max-width: 1050px; margin: 0 auto;
}
.mani-text {
  font-family: var(--display);
  font-variation-settings: 'wdth' 125;
  font-weight: 800;
  font-size: clamp(26px, 4vw, 52px);
  line-height: 1.25; letter-spacing: -.01em;
  text-wrap: balance;
}
.mw { color: #2c2c33; transition: color .35s ease, text-shadow .35s ease; }
.mw.lit { color: var(--text); }
.mw.lit.hot { color: var(--lime); text-shadow: 0 0 24px rgba(200,241,53,.35); }

/* ═══ Capacidades ═══ */
.cap-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden;
}
.cap {
  background: var(--bg);
  padding: clamp(24px, 3vw, 38px);
  transition: background .3s;
  position: relative;
  overflow: hidden;
  --mx: 50%; --my: 50%;
}
.cap::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--lime), var(--cyan));
  opacity: 0; transition: opacity .3s;
  z-index: 1;
}
.cap::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(220px circle at var(--mx) var(--my), rgba(200,241,53,.07), transparent 70%);
  opacity: 0; transition: opacity .3s;
  pointer-events: none;
}
.cap:hover { background: var(--bg2); }
.cap:hover::before, .cap:hover::after { opacity: 1; }
.cap-tag {
  font-size: 10px; letter-spacing: .26em; color: var(--lime-dim);
  margin-bottom: 16px;
}
.cap h3 {
  font-family: var(--display);
  font-variation-settings: 'wdth' 125;
  font-weight: 700; font-size: 19px; letter-spacing: 0;
  margin-bottom: 10px;
}
.cap p { font-size: 14.5px; color: var(--muted); }

/* ═══ Stats ═══ */
.stats {
  max-width: 1360px; margin: 0 auto;
  padding: clamp(70px, 9vw, 120px) var(--pad) 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 24px);
  text-align: center;
}
.stat {
  padding: clamp(24px, 3vw, 40px) 12px;
  border: 1px solid var(--border); border-radius: 10px;
  background: var(--card);
  transition: border-color .3s, transform .3s;
}
.stat:hover { border-color: rgba(200,241,53,.3); transform: translateY(-3px); }
.stat-num {
  font-family: var(--display);
  font-variation-settings: 'wdth' 125;
  font-weight: 900;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1; margin-bottom: 12px;
}
.stat-label { font-size: 9.5px; letter-spacing: .26em; color: var(--muted); }

/* ═══ Feature rows (deep-dive) ═══ */
.feature .ft-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}
.feature .ft-row.rev .ft-copy { order: 2; }
.feature .ft-row.rev .ft-visual { order: 1; }
.ft-title {
  font-family: var(--display);
  font-variation-settings: 'wdth' 125;
  font-weight: 800;
  font-size: clamp(26px, 3.6vw, 44px);
  line-height: 1.06; margin: 14px 0 18px;
  text-wrap: balance;
}
.ft-text { color: var(--muted); font-size: 15.5px; margin-bottom: 22px; max-width: 48ch; }
.ft-text strong { color: var(--text); font-weight: 600; }
.ft-list { list-style: none; display: grid; gap: 9px; font-size: 12.5px; color: var(--muted); }
.ft-list li::first-letter { color: var(--lime); }

/* — Escenas animadas — */
.scene {
  border: 1px solid var(--border); border-radius: 14px;
  background: var(--card);
  backdrop-filter: blur(8px);
  padding: clamp(22px, 3vw, 36px);
  display: grid; place-items: center;
  min-height: 340px;
  position: relative; overflow: hidden;
}
.scene::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(90% 80% at 50% 0%, rgba(200,241,53,.05), transparent 60%);
  pointer-events: none;
}

/* Escena 1: Telegram */
.ph-frame {
  width: min(300px, 100%);
  border: 1px solid var(--border); border-radius: 18px;
  background: #0d0d10;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.ph-head {
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: .2em; color: var(--muted);
  padding: 12px 16px; border-bottom: 1px solid var(--border);
}
.ph-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 8px var(--lime); animation: blink 1.4s infinite; }
.ph-body { padding: 18px 14px 22px; display: flex; flex-direction: column; gap: 10px; min-height: 190px; }
.ph-b {
  max-width: 85%; padding: 9px 13px; border-radius: 10px;
  font-size: 11.5px; line-height: 1.5;
  opacity: 0;
}
.ph-user { align-self: flex-end; background: rgba(200,241,53,.1); border: 1px solid rgba(200,241,53,.3); }
.ph-nova { align-self: flex-start; background: rgba(255,255,255,.05); border: 1px solid var(--border); color: var(--text); }
.ph1 { animation: phaseIn 9s ease infinite; }
.ph2 { animation: phaseIn2 9s ease infinite; display: flex; align-items: center; gap: 8px; }
.ph3 { animation: phaseIn3 9s ease infinite; }
@keyframes phaseIn  { 0%,6% { opacity: 0; transform: translateY(8px); } 12%, 92% { opacity: 1; transform: none; } 97%,100% { opacity: 0; } }
@keyframes phaseIn2 { 0%,28% { opacity: 0; transform: translateY(8px); } 34%, 92% { opacity: 1; transform: none; } 97%,100% { opacity: 0; } }
@keyframes phaseIn3 { 0%,58% { opacity: 0; transform: translateY(8px); } 64%, 92% { opacity: 1; transform: none; } 97%,100% { opacity: 0; } }
.ph-mic { font-size: 13px; }
.ph-sec { font-size: 9.5px; color: var(--muted); }
.ph-wave { display: flex; align-items: center; gap: 2.5px; height: 16px; }
.ph-wave i {
  width: 2.5px; border-radius: 2px; background: var(--lime);
  animation: eq 1s ease-in-out infinite;
}
.ph-wave i:nth-child(1) { height: 40%; animation-delay: -.2s; }
.ph-wave i:nth-child(2) { height: 90%; animation-delay: -.5s; }
.ph-wave i:nth-child(3) { height: 60%; animation-delay: -.8s; }
.ph-wave i:nth-child(4) { height: 100%; animation-delay: -.35s; }
.ph-wave i:nth-child(5) { height: 55%; animation-delay: -.65s; }
.ph-wave i:nth-child(6) { height: 85%; animation-delay: -.1s; }
.ph-wave i:nth-child(7) { height: 45%; animation-delay: -.9s; }
.ph-wave i:nth-child(8) { height: 70%; animation-delay: -.45s; }

/* Escena 2: cámara / reconocimiento */
.scene-cam { flex-direction: column; gap: 18px; display: flex; align-items: center; justify-content: center; }
.cam-frame {
  position: relative;
  width: min(260px, 90%); aspect-ratio: 1;
  background: #0d0d10;
  border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden;
  display: grid; place-items: center;
}
.cam-c { position: absolute; width: 16px; height: 16px; border: 1px solid var(--lime-dim); }
.cam-c.tl { top: 8px; left: 8px; border-right: 0; border-bottom: 0; }
.cam-c.tr { top: 8px; right: 8px; border-left: 0; border-bottom: 0; }
.cam-c.bl { bottom: 8px; left: 8px; border-right: 0; border-top: 0; }
.cam-c.br { bottom: 8px; right: 8px; border-left: 0; border-top: 0; }
.cam-face { width: 55%; opacity: .9; }
.cam-scan {
  position: absolute; left: 6%; right: 6%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 14px var(--cyan);
  animation: scan 3.2s ease-in-out infinite;
}
@keyframes scan {
  0%, 100% { top: 12%; opacity: 0; }
  10%, 90% { opacity: 1; }
  50% { top: 85%; }
}
.cam-box {
  position: absolute; width: 46%; height: 52%; top: 16%;
  border: 1.5px solid var(--lime);
  border-radius: 6px;
  box-shadow: 0 0 20px rgba(200,241,53,.25);
  animation: camBox 6.4s ease infinite;
  opacity: 0;
}
@keyframes camBox {
  0%, 42% { opacity: 0; transform: scale(1.15); }
  50%, 92% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; }
}
.cam-tag {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  font-size: 9px; letter-spacing: .26em; color: var(--lime);
  background: rgba(10,10,11,.8); border: 1px solid rgba(200,241,53,.35);
  padding: 5px 10px; border-radius: 4px;
  animation: camTag 6.4s ease infinite;
  opacity: 0; white-space: nowrap;
}
@keyframes camTag {
  0%, 48% { opacity: 0; transform: translateX(-50%) translateY(6px); }
  56%, 94% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; }
}
.cam-say {
  font-size: 12.5px; color: var(--muted);
  animation: camTag 6.4s ease infinite;
  opacity: 0;
}

/* Escena 3: automatización */
.au-card {
  width: min(320px, 100%);
  border: 1px solid var(--border); border-radius: 14px;
  background: #0d0d10;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.au-head {
  display: flex; align-items: center; gap: 9px;
  font-size: 10px; letter-spacing: .2em; color: var(--muted);
  padding: 13px 16px; border-bottom: 1px solid var(--border);
}
.au-pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime); box-shadow: 0 0 8px var(--lime);
  animation: blink 1.2s infinite;
}
.au-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px;
  font-size: 11.5px;
  border-bottom: 1px solid rgba(38,38,45,.5);
  opacity: 0;
}
.au-row span { color: var(--muted); }
.au-row b { color: var(--lime); font-weight: 500; }
.ar1 { animation: auIn1 8s ease infinite; }
.ar2 { animation: auIn2 8s ease infinite; }
.ar3 { animation: auIn3 8s ease infinite; }
.ar4 { animation: auIn4 8s ease infinite; }
@keyframes auIn1 { 0%,8%  { opacity: 0; transform: translateX(-10px); } 14%,92% { opacity: 1; transform: none; } 98%,100% { opacity: 0; } }
@keyframes auIn2 { 0%,22% { opacity: 0; transform: translateX(-10px); } 28%,92% { opacity: 1; transform: none; } 98%,100% { opacity: 0; } }
@keyframes auIn3 { 0%,36% { opacity: 0; transform: translateX(-10px); } 42%,92% { opacity: 1; transform: none; } 98%,100% { opacity: 0; } }
@keyframes auIn4 { 0%,50% { opacity: 0; transform: translateX(-10px); } 56%,92% { opacity: 1; transform: none; } 98%,100% { opacity: 0; } }
.au-done {
  text-align: center; padding: 13px 16px;
  font-size: 9.5px; letter-spacing: .28em; color: var(--lime);
  animation: auIn4 8s ease infinite;
  opacity: 0;
}

/* ═══ Chat demo ═══ */
.chat {
  border: 1px solid var(--border); border-radius: 12px;
  background: var(--card);
  backdrop-filter: blur(10px);
  max-width: 720px;
  overflow: hidden;
}
.chat-head {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 11px; letter-spacing: .22em; color: var(--muted);
}
.ch-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime); box-shadow: 0 0 8px var(--lime);
  animation: blink 1.4s ease-in-out infinite;
}
.chat-stream {
  padding: 26px 22px;
  min-height: 320px;
  display: flex; flex-direction: column; gap: 14px;
}
.msg {
  max-width: 82%;
  padding: 12px 16px; border-radius: 10px;
  font-size: 14.5px; line-height: 1.55;
  animation: msgIn .35s ease both;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.msg.user {
  align-self: flex-end;
  background: rgba(200,241,53,.1);
  border: 1px solid rgba(200,241,53,.28);
  font-family: var(--mono); font-size: 13.5px;
}
.msg.nova {
  align-self: flex-start;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  color: var(--text);
}
.msg.nova .who {
  display: block; font-family: var(--mono); font-size: 9.5px;
  letter-spacing: .26em; color: var(--cyan-dim); margin-bottom: 5px;
}
.msg.typing { color: var(--muted); }
.msg.typing .tdots::after { content: ''; animation: dots 1.2s steps(4) infinite; }

/* ═══ Timeline: un día con NOVA ═══ */
.timeline {
  position: relative;
  max-width: 720px;
  padding-left: 42px;
  display: grid; gap: clamp(34px, 4.5vw, 56px);
}
.tl-rail {
  position: absolute; left: 12px; top: 6px; bottom: 6px;
  width: 1px; background: rgba(255,255,255,.08);
}
.tl-fill {
  position: absolute; top: 0; left: 0; width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--lime), var(--cyan));
  box-shadow: 0 0 10px rgba(200,241,53,.4);
}
.tl-item { position: relative; }
.tl-item::before {
  content: ''; position: absolute; left: -36px; top: 7px;
  width: 9px; height: 9px;
  background: var(--bg); border: 1.5px solid var(--lime-dim);
  transform: rotate(45deg);
  transition: background .4s, box-shadow .4s;
}
.tl-item.in::before { background: var(--lime); box-shadow: 0 0 12px rgba(200,241,53,.6); }
.tl-time { font-size: 11px; letter-spacing: .26em; color: var(--lime-dim); margin-bottom: 8px; }
.tl-item h3 {
  font-family: var(--display);
  font-variation-settings: 'wdth' 125;
  font-weight: 700; font-size: clamp(18px, 2vw, 23px);
  margin-bottom: 8px;
}
.tl-item p:last-child { color: var(--muted); font-size: 14.5px; max-width: 52ch; }

/* ═══ Pasos ═══ */
.steps {
  list-style: none;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 32px);
}
.step {
  border-left: 2px solid var(--border);
  padding: 6px 0 6px clamp(18px, 2vw, 26px);
  transition: border-color .3s;
}
.step:hover { border-left-color: var(--lime); }
.step-n {
  display: block;
  font-size: 10px; letter-spacing: .3em; color: var(--lime-dim);
  margin-bottom: 14px;
}
.step h3 {
  font-family: var(--display);
  font-variation-settings: 'wdth' 125;
  font-weight: 700; font-size: 19px; margin-bottom: 8px;
}
.step p { font-size: 14.5px; color: var(--muted); }

/* ═══ Precio ═══ */
.price-card {
  position: relative;
  max-width: 480px;
  border: 1px solid rgba(200,241,53,.3);
  border-radius: 14px;
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(200,241,53,.07), transparent 55%),
    var(--card);
  padding: clamp(30px, 4vw, 46px);
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}
.price-card::before {
  content: ''; position: absolute; inset: -1px; border-radius: 14px; z-index: -1;
  background: linear-gradient(140deg, rgba(200,241,53,.5), transparent 35%, transparent 65%, rgba(110,231,255,.35));
  filter: blur(1px);
}
.price-tag { font-size: 10px; letter-spacing: .3em; color: var(--lime-dim); margin-bottom: 18px; }
.price-num {
  font-family: var(--display);
  font-variation-settings: 'wdth' 125;
  font-weight: 900; font-size: clamp(56px, 7vw, 84px); line-height: 1;
  margin-bottom: 8px;
}
.price-num .cur { font-size: .32em; vertical-align: 2.1em; letter-spacing: .06em; color: var(--muted); margin-right: 4px; }
.price-note { font-size: 14px; color: var(--muted); margin-bottom: 26px; }
.price-list { list-style: none; margin-bottom: 30px; display: grid; gap: 11px; }
.price-list li {
  font-size: 14.5px; color: var(--text);
  padding-left: 24px; position: relative;
}
.price-list li::before {
  content: '◆'; position: absolute; left: 0; top: 1px;
  color: var(--lime); font-size: 10px;
}
.price-fine { text-align: center; font-size: 10px; letter-spacing: .22em; color: #6a6a74; margin-top: 16px; }

/* ═══ Planes (Demo / Pro) ═══ */
.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1120px;
  align-items: stretch;
}
.plan {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--card);
  padding: clamp(26px, 3vw, 38px);
  display: flex;
  flex-direction: column;
}
.plan.pro {
  border-color: rgba(200,241,53,.3);
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(200,241,53,.08), transparent 55%),
    var(--card);
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}
.plan.pro::before {
  content: ''; position: absolute; inset: -1px; border-radius: 14px; z-index: -1;
  background: linear-gradient(140deg, rgba(200,241,53,.5), transparent 35%, transparent 65%, rgba(110,231,255,.35));
  filter: blur(1px);
}
.plan-badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--lime); color: #0a0a0b;
  font-size: 9px; letter-spacing: .22em; font-weight: 700;
  padding: 4px 12px; border-radius: 100px; white-space: nowrap;
  box-shadow: 0 0 18px var(--lime-glow);
}
.plan-tag { font-size: 10px; letter-spacing: .3em; color: var(--lime-dim); margin-bottom: 14px; }
.plan-price {
  font-family: var(--display);
  font-variation-settings: 'wdth' 125;
  font-weight: 900; font-size: clamp(40px, 5vw, 60px); line-height: 1;
  margin-bottom: 6px; display: flex; align-items: baseline; gap: 2px; flex-wrap: wrap;
}
.plan-price .cur { font-size: .42em; color: var(--muted); align-self: flex-start; margin-top: .35em; }
.plan-cyc { font-size: .28em; color: var(--muted); letter-spacing: .04em; margin-left: 4px; align-self: flex-end; margin-bottom: .5em; }
.plan-per { font-size: 9.5px; letter-spacing: .18em; color: var(--cyan-dim); margin-bottom: 18px; }
.plan-note { font-size: 14px; color: var(--muted); margin-bottom: 22px; min-height: 42px; }
.plan-list { list-style: none; margin-bottom: 28px; display: grid; gap: 10px; flex: 1; }
.plan-list li {
  font-size: 14px; color: var(--text);
  padding-left: 26px; position: relative; line-height: 1.4;
}
.plan-list li::before {
  position: absolute; left: 0; top: 0;
  font-family: var(--mono); font-size: 12px;
}
.plan-list li.on::before { content: '✓'; color: var(--lime); }
.plan-list li.on.hot::before { content: '◆'; font-size: 10px; top: 1px; }
.plan-list li.off { color: #5f5f68; }
.plan-list li.off::before { content: '✕'; color: #4a4a52; }
.plan-fine { text-align: center; font-size: 10px; letter-spacing: .2em; color: #6a6a74; margin-top: 14px; }

/* ── Tarjeta "Próximamente" ── */
.plan.soon {
  overflow: hidden;
  border-style: dashed;
  border-color: rgba(110,231,255,.28);
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(110,231,255,.06), transparent 55%),
    var(--card);
}
.plan.soon .plan-tag { color: var(--cyan-dim); letter-spacing: .5em; }
.plan.soon .plan-per { color: var(--cyan-dim); }
.soon-glow {
  position: absolute; top: -40%; left: -60%;
  width: 60%; height: 180%;
  background: linear-gradient(90deg, transparent, rgba(110,231,255,.10), transparent);
  transform: skewX(-18deg);
  animation: soonSweep 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes soonSweep {
  0%   { left: -60%; }
  55%  { left: 130%; }
  100% { left: 130%; }
}
.soon-num {
  background: linear-gradient(90deg, var(--cyan), #a9b6c4);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(22px, 2.1vw, 27px);
  letter-spacing: -.015em;
  white-space: nowrap;
}
.plan.soon .plan-price { font-size: 0; }
.plan-list li.soon-li { color: var(--muted); }
.plan-list li.soon-li::before { content: '◇'; color: var(--cyan-dim); font-family: var(--mono); font-size: 11px; }
.plan-soon-btn {
  opacity: .5; cursor: default; pointer-events: none;
  border-color: rgba(110,231,255,.28); color: var(--cyan-dim);
  text-align: center;
}
@media (max-width: 980px) {
  .plans { grid-template-columns: 1fr; gap: 30px; max-width: 480px; }
}

/* ═══ FAQ ═══ */
.faq-list { max-width: 720px; display: grid; gap: 10px; }
.faq-list details {
  border: 1px solid var(--border); border-radius: 10px;
  background: var(--card);
  overflow: hidden;
  transition: border-color .25s;
}
.faq-list details[open] { border-color: rgba(200,241,53,.35); }
.faq-list summary {
  cursor: pointer; list-style: none;
  padding: 18px 22px;
  font-weight: 600; font-size: 15.5px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+'; font-family: var(--mono); color: var(--lime);
  font-size: 18px; transition: transform .25s;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p {
  padding: 0 22px 20px;
  font-size: 14.5px; color: var(--muted);
}

/* ═══ CTA final ═══ */
.final {
  position: relative;
  padding: clamp(110px, 14vw, 190px) var(--pad);
  text-align: center;
  overflow: hidden;
}
.final-orb {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  pointer-events: none;
}
.final-orb .orb-ripple { width: 320px; height: 320px; animation-duration: 4.5s; }
.final-inner { position: relative; max-width: 760px; margin: 0 auto; }
.final-mark {
  width: 44px; margin: 0 auto 30px;
  filter: drop-shadow(0 0 18px rgba(200,241,53,.5));
  animation: breathe 4.5s ease-in-out infinite;
}
.final-mark polygon { fill: var(--lime); }
.final-title {
  font-family: var(--display);
  font-variation-settings: 'wdth' 125;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.05; letter-spacing: -.01em;
  margin-bottom: 38px;
  text-wrap: balance;
}

/* ═══ Footer ═══ */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px var(--pad) 56px;
  text-align: center;
}
.foot-brand { font-size: 13px; letter-spacing: .3em; color: var(--lime); margin-bottom: 10px; }
.foot-line { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.foot-cmd { font-size: 11.5px; color: #5b5b64; }

/* ═══ Toast ═══ */
.toast {
  position: fixed; bottom: 30px; left: 50%;
  transform: translate(-50%, 20px);
  background: var(--bg2); border: 1px solid var(--lime-dim);
  color: var(--text); font-size: 13px;
  padding: 13px 22px; border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,.5), 0 0 20px var(--lime-glow);
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 100;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

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

/* ═══ Responsive ═══ */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding-top: 110px; text-align: left; }
  .hero-orb { min-height: 360px; order: -1; margin-top: 10px; }
  .orb-halo { width: 300px; height: 300px; }
  .orb-conic { width: 330px; height: 330px; }
  .orb-ring.r1, .orb-orbit.o1 { width: 240px; height: 240px; }
  .orb-ring.r2, .orb-orbit.o2 { width: 290px; height: 290px; }
  .orb-orbit.o3 { width: 330px; height: 330px; }
  .orb-deltoide { width: 92px; }
  .hero-scroll { display: none; }
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 26px; }
  .prob-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .feature .ft-row { grid-template-columns: 1fr; }
  .feature .ft-row.rev .ft-copy { order: 1; }
  .feature .ft-row.rev .ft-visual { order: 2; }
  .topbar-nav > a:not(.tb-buy) { display: none; }
  .tb-clock { display: none; }
}
@media (max-width: 600px) {
  .cap-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hud-corner { display: none; }
  .chat-stream { min-height: 380px; }
  .msg { max-width: 92%; }
  .timeline { padding-left: 32px; }
  .tl-item::before { left: -26px; }
  .tl-rail { left: 8px; }
}

/* ═══ Reduced motion ═══ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .ticker-track { animation: none; }
  .ph-b, .au-row, .au-done, .cam-box, .cam-tag, .cam-say { opacity: 1; }
  .mw { color: var(--text); }
  .hero-particles { display: none; }
  .tl-fill { height: 100% !important; }
}


/* ═══════════ Modal de suscripción ═══════════ */

.sus-fondo {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(6, 6, 8, .82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: susEntra .18s ease-out;
}
.sus-fondo[hidden] { display: none; }

@keyframes susEntra { from { opacity: 0 } to { opacity: 1 } }

.sus {
  position: relative;
  width: min(460px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  padding: clamp(26px, 4vw, 38px);
  background: linear-gradient(180deg, #14141a, #0d0d10);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .6), 0 0 0 1px var(--lime-glow);
}

.sus-x {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 34px;
  height: 34px;
  font-size: 24px;
  line-height: 1;
  color: var(--muted);
  background: none;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transition: color .15s, background .15s;
}
.sus-x:hover { color: var(--text); background: rgba(255, 255, 255, .06); }

.sus-eyebrow {
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--lime);
  margin-bottom: 10px;
}

.sus-titulo {
  font-family: var(--display);
  font-variation-settings: 'wdth' 125;
  font-size: clamp(24px, 3.4vw, 30px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 10px;
}

.sus-bajada {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}

.sus-paso[hidden] { display: none; }

#susBotonGoogle {
  display: flex;
  justify-content: center;
  min-height: 44px;
}

.sus-fine {
  margin-top: 14px;
  font-size: 10px;
  letter-spacing: .1em;
  text-align: center;
  color: var(--muted);
  opacity: .75;
}

.sus-cuenta {
  padding: 11px 14px;
  margin-bottom: 20px;
  font-size: 12px;
  color: var(--lime);
  background: rgba(200, 241, 53, .07);
  border: 1px solid rgba(200, 241, 53, .22);
  border-radius: 10px;
  word-break: break-all;
}

.sus-label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 500;
}

.sus-input {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text);
  background: rgba(0, 0, 0, .35);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color .15s, box-shadow .15s;
}
.sus-input:focus {
  outline: none;
  border-color: var(--lime-dim);
  box-shadow: 0 0 0 3px var(--lime-glow);
}

.sus-ayuda {
  margin: 8px 0 22px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
}

.sus-salir {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 8px;
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--muted);
  background: none;
  border: 0;
  cursor: pointer;
  transition: color .15s;
}
.sus-salir:hover { color: var(--text); }

.sus-error {
  margin-top: 16px;
  padding: 11px 14px;
  font-size: 13px;
  color: #ffb4b4;
  background: rgba(255, 90, 90, .09);
  border: 1px solid rgba(255, 90, 90, .3);
  border-radius: 10px;
}
.sus-error[hidden] { display: none; }

.btn.cargando {
  pointer-events: none;
  opacity: .6;
}

@media (prefers-reduced-motion: reduce) {
  .sus-fondo { animation: none; }
}

/* ═══ Cuenta: botón del topbar ═══ */
.tb-cuenta {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: .04em;
  color: var(--muted);
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
}
.tb-cuenta:hover { color: var(--text); border-color: var(--lime-dim); }
.tbc-punto {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--muted);
  transition: background .3s, box-shadow .3s;
}
/* Sesión activa: el punto se enciende. Se ve de un vistazo si estás adentro. */
.tb-cuenta.on { color: var(--text); border-color: rgba(200, 241, 53, .28); }
.tb-cuenta.on .tbc-punto { background: var(--lime); box-shadow: 0 0 8px var(--lime); }
.tbc-txt { max-width: 130px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ═══ Cuenta: panel ═══ */
.cta-plan {
  padding: 16px;
  margin-bottom: 22px;
  background: rgba(0, 0, 0, .3);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.cta-plan.pro {
  background: rgba(200, 241, 53, .06);
  border-color: rgba(200, 241, 53, .28);
}
.cta-plan-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cta-plan-tag { font-size: 10px; letter-spacing: .14em; color: var(--muted); }
.cta-plan-chip {
  padding: 4px 12px;
  font-size: 12px; font-weight: 700; letter-spacing: .1em;
  color: var(--muted);
  background: rgba(255, 255, 255, .06);
  border-radius: 999px;
}
.cta-plan.pro .cta-plan-chip { color: #0a0a0b; background: var(--lime); }
.cta-plan-vence { margin-top: 10px; font-size: 11.5px; line-height: 1.5; color: var(--muted); }
.cta-plan-vence:empty { display: none; }

.cta-sec { margin-bottom: 22px; }
.cta-sec-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
  font-size: 10px; letter-spacing: .14em; color: var(--muted);
}
.cta-sec-cont { color: var(--lime-dim); }
.cta-disp { list-style: none; display: grid; gap: 8px; }
.cta-disp:empty { display: none; }
.cta-disp li {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 14px;
  background: rgba(0, 0, 0, .3);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.cta-disp-info { flex: 1; min-width: 0; }
.cta-disp-nom {
  font-size: 13.5px; font-weight: 500;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.cta-disp-visto { font-family: var(--mono); font-size: 10.5px; color: var(--muted); }
.cta-disp-quitar {
  flex-shrink: 0;
  padding: 6px 11px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .08em;
  color: var(--muted);
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  transition: color .15s, border-color .15s;
}
.cta-disp-quitar:hover { color: #ffb4b4; border-color: rgba(255, 90, 90, .4); }
.cta-disp-quitar:disabled { opacity: .45; pointer-events: none; }

.cta-vacio {
  padding: 14px;
  font-size: 10.5px; letter-spacing: .08em; text-align: center;
  color: var(--muted);
  background: rgba(0, 0, 0, .25);
  border: 1px dashed var(--border);
  border-radius: 10px;
}
.cta-vacio[hidden] { display: none; }

@media (max-width: 600px) {
  .tbc-txt { display: none; }
  .tb-cuenta { padding: 8px 10px; }
}
