/* ═══════════════ base ═══════════════ */
:root {
  --orange: #fd4c03;
  --orange-ink: #c73503;
  --orange-soft: #fff4f0;
  --ink: #14110f;
  --ink-2: #4a433e;
  --ink-3: #857b74;
  --paper: #fbf8f5;
  --line: #e9e2db;
  --white: #fff;
  --radius: 22px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --shell: min(1180px, 100% - 44px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Inter, Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { margin: 0; letter-spacing: -0.035em; line-height: 1.02; font-weight: 800; }
h1 { font-size: clamp(2.9rem, 7vw, 5.2rem); }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
em { font-style: normal; color: var(--orange); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  padding: 12px 18px; background: var(--ink); color: #fff; border-radius: 0 0 12px 0;
}
.skip:focus { left: 0; }

/* textura sutil para que el naranja no se vea plano */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ═══════════════ cursor ═══════════════ */
.cursor { position: fixed; top: 0; left: 0; z-index: 90; pointer-events: none; mix-blend-mode: multiply; }
.cursor__dot, .cursor__ring {
  position: absolute; top: 0; left: 0; border-radius: 50%;
  transform: translate(-50%, -50%); will-change: transform;
}
.cursor__dot { width: 7px; height: 7px; background: var(--orange); }
.cursor__ring {
  width: 40px; height: 40px; border: 1.5px solid rgba(253, 76, 3, 0.35);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s var(--ease);
}
.cursor.is-hot .cursor__ring { width: 62px; height: 62px; background: rgba(253, 76, 3, 0.08); }
@media (hover: none) { .cursor { display: none; } }

/* ═══════════════ nav ═══════════════ */
.nav {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%);
  z-index: 60; width: var(--shell);
  display: flex; align-items: center; gap: 26px;
  padding: 10px 10px 10px 20px; border: 1px solid transparent; border-radius: 100px;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.is-stuck {
  background: rgba(251, 248, 245, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-color: var(--line);
  box-shadow: 0 10px 40px rgba(20, 17, 15, 0.06);
}
.nav__brand { display: flex; }
.nav__brand img { display: block; height: 34px; width: auto; }
.nav__links { display: flex; gap: 24px; margin-left: auto; font-size: 15px; font-weight: 600; color: var(--ink-2); }
.nav__links a { position: relative; padding: 4px 0; }
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px;
  background: var(--orange); transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease); border-radius: 2px;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
@media (max-width: 900px) { .nav__links { display: none; } .nav__links + .btn { margin-left: auto; } }

/* ═══════════════ botones ═══════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 24px; border-radius: 100px; font-weight: 700; font-size: 15.5px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 12px 30px rgba(253, 76, 3, 0.28); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(253, 76, 3, 0.34); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: rgba(255, 255, 255, 0.6); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--nav { padding: 11px 20px; background: var(--ink); color: #fff; font-size: 14.5px; }
.btn--nav:hover { transform: translateY(-1px); background: var(--orange); }

/* ═══════════════ hero ═══════════════ */
.hero {
  position: relative; min-height: 100svh; padding: 150px 0 90px;
  width: var(--shell); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 40px;
}
.hero__aura {
  position: absolute; z-index: -1; top: -22%; right: -18%; width: 78vw; height: 78vw; max-width: 1000px; max-height: 1000px;
  background: radial-gradient(circle at 50% 50%, rgba(253, 76, 3, 0.22), rgba(253, 76, 3, 0.05) 42%, transparent 66%);
  filter: blur(12px); animation: aura 14s ease-in-out infinite;
}
@keyframes aura {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-4%, 4%) scale(1.08); }
}
.hero__grid {
  position: absolute; inset: 0; z-index: -2; opacity: 0.5;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(circle at 60% 40%, #000 10%, transparent 68%);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13.5px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--orange-ink); margin-bottom: 22px;
}
.pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 rgba(253, 76, 3, 0.6); animation: pulse 2.2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 12px rgba(253, 76, 3, 0); } 100% { box-shadow: 0 0 0 0 rgba(253, 76, 3, 0); } }
.grad {
  background: linear-gradient(100deg, var(--orange) 10%, #ff8a3d 55%, var(--orange-ink));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lede { margin-top: 26px; max-width: 33rem; font-size: 18.5px; color: var(--ink-2); }
.hero__cta { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats { margin: 46px 0 0; display: flex; gap: 40px; flex-wrap: wrap; }
.hero__stats div { display: flex; flex-direction: column-reverse; gap: 2px; }
.hero__stats dt { font-size: 13.5px; color: var(--ink-3); font-weight: 600; }
.hero__stats dd { margin: 0; font-size: 34px; font-weight: 800; letter-spacing: -0.04em; }

.hero__stage { position: relative; display: grid; place-items: center; min-height: 460px; }
.stage__halo {
  position: absolute; width: 82%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(255, 244, 240, 0.6) 55%, transparent 72%);
  box-shadow: 0 40px 120px rgba(253, 76, 3, 0.16);
}
.stage__closy { position: relative; width: min(420px, 82%); aspect-ratio: 1; }
.stage__closy svg { width: 100%; height: 100%; overflow: visible; }
.stage__closy--md { width: min(320px, 78%); }
.stage__closy--sm { width: 120px; }

.chip {
  position: absolute; padding: 10px 16px; border-radius: 100px; background: #fff;
  border: 1px solid var(--line); box-shadow: 0 12px 30px rgba(20, 17, 15, 0.08);
  font-size: 14px; font-weight: 600; white-space: nowrap; opacity: 0;
}
.chip--1 { top: 8%; left: -4%; }
.chip--2 { top: 46%; right: -8%; }
.chip--3 { bottom: 10%; left: 4%; }
.chip--3::before { content: '✓'; color: #238653; font-weight: 800; margin-right: 7px; }

.hero__scroll { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 1.5px solid var(--line); border-radius: 100px; display: grid; place-items: start center; padding-top: 8px; }
.hero__scroll span { width: 4px; height: 8px; border-radius: 4px; background: var(--orange); animation: scroll 1.8s var(--ease) infinite; }
@keyframes scroll { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(16px); opacity: 0; } 100% { opacity: 0; } }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 128px; text-align: center; }
  .hero__copy { order: 2; }
  .hero__stage { order: 1; min-height: 340px; }
  .lede, .hero__cta, .hero__stats { margin-left: auto; margin-right: auto; justify-content: center; }
  .eyebrow { justify-content: center; }
}

/* ═══════════════ marquee ═══════════════ */
.marquee { overflow: hidden; padding: 26px 0; border-block: 1px solid var(--line); background: #fff; }
.marquee__track { display: flex; gap: 34px; align-items: center; width: max-content; animation: slide 32s linear infinite; font-weight: 800; font-size: 22px; letter-spacing: -0.02em; color: var(--ink); }
.marquee__track i { color: var(--orange); font-style: normal; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ═══════════════ secciones ═══════════════ */
.section { width: var(--shell); margin: 0 auto; padding: 120px 0; }
.section__head { max-width: 44rem; margin-bottom: 60px; }
.section__lede { margin-top: 20px; font-size: 18.5px; color: var(--ink-2); }

.reveal { opacity: 0; transform: translateY(26px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }

/* ═══════════════ agentes ═══════════════ */
.agents__layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.agents__closy { position: relative; display: grid; place-items: center; }
.agent-orb {
  position: absolute; width: 88%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, var(--orange-soft), transparent 68%);
  transition: background 0.7s var(--ease);
}
.agents__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.agent {
  display: flex; gap: 18px; padding: 22px 24px; border-radius: var(--radius);
  border: 1.5px solid var(--line); background: #fff; cursor: pointer;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.agent:hover { transform: translateX(6px); }
.agent.is-active { border-color: var(--orange); box-shadow: 0 18px 44px rgba(253, 76, 3, 0.12); }
.agent__icon { flex: none; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 13px; background: var(--orange-soft); color: var(--orange); transition: background 0.4s var(--ease), color 0.4s var(--ease); }
.agent.is-active .agent__icon { background: var(--orange); color: #fff; }
.agent__icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.agent h3 { font-size: 19px; margin-bottom: 5px; }
.agent p { font-size: 15.5px; color: var(--ink-2); }
@media (max-width: 900px) { .agents__layout { grid-template-columns: 1fr; } }

/* ═══════════════ pipeline ═══════════════ */
.pipe { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pipe__col { background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); padding: 18px; }
.pipe__col header { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-3); margin-bottom: 14px; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--orange); }
.pipe__col[data-stage='4'] .dot { background: #238653; }
.card { padding: 14px 15px; border-radius: 14px; background: var(--paper); border: 1px solid var(--line); margin-bottom: 10px; opacity: 0; transform: translateY(14px); }
.card.is-in { opacity: 1; transform: none; transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.card strong { display: block; font-size: 15px; }
.card p { font-size: 14px; color: var(--ink-2); margin: 3px 0 9px; }
.card--win { background: #f0fbf5; border-color: #bfe6cf; }
.tag { display: inline-block; padding: 4px 10px; border-radius: 100px; font-size: 12px; font-weight: 700; background: #fff; border: 1px solid var(--line); color: var(--ink-3); }
.tag--ok { color: var(--orange-ink); border-color: rgba(253, 76, 3, 0.3); background: var(--orange-soft); }
.tag--win { color: #17693f; border-color: #bfe6cf; background: #dcf5e7; }
@media (max-width: 900px) { .pipe { grid-template-columns: repeat(2, 1fr); } }

/* ═══════════════ catalogo ═══════════════ */
.catalog__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.ticks { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 12px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; font-size: 16.5px; color: var(--ink-2); }
.ticks li::before { content: '✓'; flex: none; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: var(--orange); color: #fff; font-size: 13px; font-weight: 800; }
.catalog__stage { display: grid; place-items: center; gap: 22px; }
.catalog__steps { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.cstep { padding: 10px 18px; border-radius: 100px; border: 1.5px solid var(--line); background: #fff; font: inherit; font-size: 14.5px; font-weight: 700; cursor: pointer; color: var(--ink-2); transition: all 0.3s var(--ease); }
.cstep.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }
@media (max-width: 900px) { .catalog__grid { grid-template-columns: 1fr; } }

/* ═══════════════ integraciones ═══════════════ */
.int-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }
.int {
  position: relative; padding: 26px 22px; border-radius: var(--radius); background: #fff;
  border: 1.5px solid var(--line); overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.int:hover { transform: translateY(-6px); border-color: transparent; box-shadow: 0 22px 50px rgba(20, 17, 15, 0.1); }
.int__logo { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; margin-bottom: 16px; color: #fff; }
.int__logo svg { width: 24px; height: 24px; }
.int h3 { font-size: 17px; margin-bottom: 4px; }
.int p { font-size: 14px; color: var(--ink-3); }
.int__soon { position: absolute; top: 14px; right: 14px; font-size: 11px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-3); background: var(--paper); border: 1px solid var(--line); padding: 3px 9px; border-radius: 100px; }

/* ═══════════════ metricas ═══════════════ */
.metrics__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.insight { margin-top: 30px; display: flex; gap: 16px; align-items: flex-start; padding: 22px; border-radius: var(--radius); background: var(--ink); color: #fff; }
.insight__closy { flex: none; width: 62px; height: 62px; }
.insight__closy svg { width: 100%; height: 100%; }
.insight p { font-size: 15.5px; line-height: 1.55; color: rgba(255, 255, 255, 0.78); }
.insight b { color: #fff; display: block; margin-bottom: 6px; }
.insight i { color: var(--orange); font-style: normal; font-weight: 700; }
.metrics__panel { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mcard { padding: 24px; border-radius: var(--radius); background: #fff; border: 1.5px solid var(--line); }
.mcard span { font-size: 13.5px; color: var(--ink-3); font-weight: 600; }
.mcard b { display: block; font-size: 40px; font-weight: 800; letter-spacing: -0.045em; margin: 6px 0; }
.mcard i { font-style: normal; font-size: 13.5px; font-weight: 800; }
.up { color: #17693f; } .down { color: var(--orange-ink); }
.mcard--chart { grid-column: span 2; }
.spark { width: 100%; height: 90px; margin-top: 10px; }
.spark__line { fill: none; stroke: var(--orange); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.spark__area { fill: url(#sparkfill); opacity: 0.18; }
@media (max-width: 900px) { .metrics__grid { grid-template-columns: 1fr; } }

/* ═══════════════ plataforma ═══════════════ */
.browser { border-radius: 20px; overflow: hidden; border: 1.5px solid var(--line); box-shadow: 0 40px 90px rgba(20, 17, 15, 0.12); background: #fff; }
.browser__bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; background: #f3efeb; border-bottom: 1px solid var(--line); }
.browser__bar i { width: 11px; height: 11px; border-radius: 50%; background: #d9d2cb; }
.browser__bar span { margin-left: 14px; font-size: 13px; color: var(--ink-3); font-weight: 600; }
.browser__body { display: grid; grid-template-columns: 210px 1fr; min-height: 420px; }
.ui-side { padding: 22px 18px; border-right: 1px solid var(--line); background: var(--paper); }
.ui-side img { display: block; margin-bottom: 4px; }
.ui-side__tag { font-size: 11px; font-weight: 800; letter-spacing: 0.14em; color: var(--ink-3); }
.ui-side nav { margin-top: 26px; display: grid; gap: 4px; }
.ui-side a { padding: 10px 12px; border-radius: 11px; font-size: 14.5px; font-weight: 600; color: var(--ink-2); }
.ui-side a.is-on { background: var(--orange-soft); color: var(--orange-ink); }
.ui-main { padding: 24px 26px; }
.ui-tabs { display: flex; gap: 22px; border-bottom: 1px solid var(--line); padding-bottom: 12px; font-size: 14.5px; font-weight: 600; color: var(--ink-3); flex-wrap: wrap; }
.ui-tabs .is-on { color: var(--orange-ink); position: relative; }
.ui-tabs .is-on::after { content: ''; position: absolute; left: 0; right: 0; bottom: -13px; height: 2px; background: var(--orange); }
.ui-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 22px 0; }
.ui-card { padding: 16px; border-radius: 14px; border: 1px solid var(--line); }
.ui-card span { font-size: 12.5px; color: var(--ink-3); }
.ui-card b { display: block; font-size: 27px; font-weight: 800; letter-spacing: -0.04em; }
.ui-rows { display: grid; gap: 8px; }
.ui-row { display: flex; align-items: center; gap: 11px; padding: 13px 15px; border-radius: 13px; border: 1px solid var(--line); font-size: 14.5px; opacity: 0; transform: translateX(-12px); }
.ui-row.is-in { opacity: 1; transform: none; transition: all 0.6s var(--ease); }
.ui-row em { margin-left: auto; font-style: normal; font-size: 13px; color: var(--ink-3); }
.pill { padding: 3px 10px; border-radius: 100px; font-size: 12px; font-weight: 800; }
.pill--sales { background: #fff0e8; color: #c73503; }
.pill--cat { background: #eef4ff; color: #1d55bc; }
.pill--sup { background: #edf9f5; color: #0b664d; }
.pill--col { background: #f4f0fc; color: #543795; }
@media (max-width: 800px) { .browser__body { grid-template-columns: 1fr; } .ui-side { display: none; } .ui-cards { grid-template-columns: 1fr; } }

/* ═══════════════ contacto ═══════════════ */
.contact { padding-bottom: 130px; }
.contact__inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: center; padding: 54px; border-radius: 32px; background: linear-gradient(135deg, #fff, var(--orange-soft)); border: 1.5px solid rgba(253, 76, 3, 0.18); }
.contact__copy .stage__closy { margin-bottom: 18px; }
.contact__widget { min-height: 560px; border-radius: 22px; overflow: hidden; background: #fff; border: 1px solid var(--line); }
.calendly-inline-widget { width: 100%; height: 560px; }
.calendly__fallback { height: 100%; display: grid; place-content: center; justify-items: center; gap: 16px; text-align: center; padding: 30px; }
.calendly__fallback p { font-size: 19px; font-weight: 700; }
@media (max-width: 900px) { .contact__inner { grid-template-columns: 1fr; padding: 30px; } }

.footer { width: var(--shell); margin: 0 auto; padding: 46px 0 60px; border-top: 1px solid var(--line); display: grid; gap: 10px; justify-items: center; text-align: center; }
.footer p { color: var(--ink-2); }
.footer small { color: var(--ink-3); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .card, .ui-row { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ═══════════════ conversación en vivo ═══════════════ */
.live__grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: 70px; align-items: center; }
.live__facts { list-style: none; margin: 34px 0 0; padding: 0; display: flex; gap: 34px; flex-wrap: wrap; }
.live__facts li { display: grid; }
.live__facts b { font-size: 32px; font-weight: 800; letter-spacing: -0.04em; color: var(--orange); }
.live__facts span { font-size: 13.5px; color: var(--ink-3); font-weight: 600; }

.phone {
  position: relative; justify-self: center; width: min(370px, 100%); height: 620px;
  border-radius: 42px; background: #fff; border: 1px solid var(--line);
  box-shadow: 0 40px 90px rgba(20, 17, 15, 0.16), 0 0 0 10px #16130f, 0 0 0 11px #2c2622;
  display: flex; flex-direction: column; overflow: hidden;
}
.phone__notch { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 92px; height: 22px; border-radius: 100px; background: #16130f; z-index: 3; }
.phone__head { display: flex; align-items: center; gap: 11px; padding: 42px 18px 14px; border-bottom: 1px solid var(--line); background: var(--paper); }
.phone__ava { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(140deg, var(--orange), #ff8a3d); }
.phone__head b { display: block; font-size: 15px; }
.phone__head i { font-style: normal; font-size: 12.5px; color: #238653; font-weight: 600; }
.phone__thread { flex: 1; overflow: hidden; padding: 18px 16px; display: flex; flex-direction: column; gap: 10px; justify-content: flex-end; }
.msg { max-width: 82%; padding: 11px 15px; border-radius: 18px; font-size: 14.5px; line-height: 1.5; opacity: 0; transform: translateY(14px) scale(0.96); }
.msg--in { align-self: flex-start; background: var(--paper); border: 1px solid var(--line); border-bottom-left-radius: 6px; }
.msg--out { align-self: flex-end; background: var(--orange); color: #fff; border-bottom-right-radius: 6px; }
.msg--card { align-self: flex-end; background: #fff; border: 1.5px solid var(--orange); color: var(--ink); padding: 14px; border-radius: 16px; width: 82%; }
.msg--card b { display: block; font-size: 14px; margin-bottom: 8px; }
.msg--card .row { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--ink-2); padding: 3px 0; }
.msg--card .tot { border-top: 1px dashed var(--line); margin-top: 7px; padding-top: 8px; font-weight: 800; color: var(--ink); }
.msg--pay { align-self: flex-end; background: #dcf5e7; color: #17693f; border: 1px solid #bfe6cf; font-weight: 700; }
.typing { align-self: flex-start; display: flex; gap: 4px; padding: 13px 16px; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; border-bottom-left-radius: 6px; opacity: 0; }
.typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--ink-3); animation: typing 1.2s ease-in-out infinite; }
.typing i:nth-child(2) { animation-delay: 0.16s; }
.typing i:nth-child(3) { animation-delay: 0.32s; }
@keyframes typing { 0%, 100% { opacity: 0.3; transform: translateY(0); } 50% { opacity: 1; transform: translateY(-4px); } }
.phone__bar { padding: 12px 16px 18px; border-top: 1px solid var(--line); background: var(--paper); }
.phone__bar span { display: block; height: 38px; border-radius: 100px; background: #fff; border: 1px solid var(--line); }
@media (max-width: 900px) { .live__grid { grid-template-columns: 1fr; } }

/* ═══════════════ órbita de agentes ═══════════════ */
.orbit { position: absolute; inset: 0; pointer-events: none; }
.orbit__ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); border: 1px dashed rgba(253, 76, 3, 0.28); border-radius: 50%; }
.orbit__node {
  position: absolute; top: 50%; left: 50%; width: 42px; height: 42px; margin: -21px 0 0 -21px;
  border-radius: 13px; background: #fff; border: 1.5px solid var(--line);
  display: grid; place-items: center; box-shadow: 0 10px 26px rgba(20, 17, 15, 0.09);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.orbit__node svg { width: 20px; height: 20px; fill: none; stroke: var(--ink-3); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.orbit__node.is-on { border-color: var(--orange); }
.orbit__node.is-on svg { stroke: var(--orange); }

/* ═══════════════ canales ═══════════════ */
.funnel { position: relative; min-height: 440px; display: grid; place-items: center; }
.funnel__svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.funnel__hub { position: relative; z-index: 2; width: 148px; height: 148px; border-radius: 34px; background: var(--ink); display: grid; place-items: center; box-shadow: 0 28px 60px rgba(20,17,15,.22); }
.funnel__hub img { width: 92px; }
.ch {
  position: absolute; z-index: 2; display: flex; align-items: center; gap: 12px;
  padding: 13px 18px 13px 13px; border-radius: 100px; background: #fff;
  border: 1.5px solid var(--line); box-shadow: 0 14px 34px rgba(20,17,15,.09);
}
.ch__ico { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; }
.ch__ico svg { width: 21px; height: 21px; fill: #fff; }
.ch b { display: block; font-size: 14.5px; }
.ch span { font-size: 12.5px; color: var(--ink-3); }

@media (max-width: 760px) {
  .scene__panel { margin-left: 0; transform: translate(-50%, 120px) scale(.94); }
  .scene__panel.is-on { transform: translate(-50%, 120px) scale(1); }
  .story__sticky.has-panel .scene__closy { transform: translateY(-90px) scale(.8); }
}

/* ═══════════════ agentes con escena ═══════════════ */
.agents__stage { position: relative; display: grid; place-items: center; padding: 20px; border-radius: 28px; background: #fff; border: 1.5px solid var(--line); box-shadow: 0 26px 60px rgba(20,17,15,.08); transition: box-shadow 0.6s var(--ease); }
.agent-scene { width: 100%; max-width: 460px; }
.agent { align-items: center; }
.agents__list .agent h3 { font-size: 19px; margin-bottom: 5px; }

/* ═══════════════ hero: negro, naranja y blanco ═══════════════ */
.story { position: relative; height: 620vh; background: #0d0b0a; }
.story__sticky { position: sticky; top: 0; height: 100svh; overflow: hidden; background: #0d0b0a; }
.story__glow {
  position: absolute; left: 50%; top: 42%; width: 120vw; height: 120vw; max-width: 1300px; max-height: 1300px;
  transform: translate(-50%, -50%); pointer-events: none;
  background: radial-gradient(circle, rgba(253,76,3,.20), rgba(253,76,3,.05) 38%, transparent 62%);
}

.story__text { position: absolute; top: clamp(84px, 13svh, 150px); left: 50%; transform: translateX(-50%); width: min(920px, calc(100% - 44px)); text-align: center; z-index: 4; }
.story__text .eyebrow { color: #ff7a3c; margin-bottom: 18px; }
.story__text h1 { color: #fff; font-size: clamp(2.1rem, 5.2vw, 4rem); }
.story__text h1 span { display: block; }
.story__text h1 .grad { background: linear-gradient(100deg, #fd4c03, #ff9a5c); -webkit-background-clip: text; background-clip: text; color: transparent; }
.story__cap { position: relative; margin-top: 20px; height: 3.4em; }
.story__cap span { position: absolute; inset: 0; opacity: 0; font-size: 18px; color: rgba(255,255,255,.62); transition: opacity .45s var(--ease), transform .45s var(--ease); transform: translateY(8px); }
.story__cap span.is-on { opacity: 1; transform: none; }

/* el suelo por el que camina */
.road { position: absolute; left: 0; right: 0; bottom: 0; height: 62svh; z-index: 3; }
.road__line { position: absolute; left: 0; right: 0; bottom: 21svh; height: 2px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.16) 12%, rgba(255,255,255,.16) 88%, transparent); }
.walker { position: absolute; bottom: 15svh; left: 0; width: clamp(190px, 24vw, 300px); aspect-ratio: 400/320; will-change: transform; }
.walker svg { width: 100%; height: 100%; overflow: visible; }

.rain { position: absolute; inset: 0; pointer-events: none; }
.rain span { position: absolute; width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center; will-change: transform, opacity; box-shadow: 0 8px 22px rgba(0,0,0,.4); }
.rain svg { width: 19px; height: 19px; fill: #fff; }

.hud { position: absolute; right: 6vw; bottom: 40svh; padding: 12px 20px; border-radius: 100px; background: rgba(255,45,45,.14); border: 1px solid rgba(255,45,45,.4); color: #ff8a8a; font-size: 15px; font-weight: 700; opacity: 0; will-change: opacity, transform; }
.hud b { color: #ff5252; font-size: 19px; }

.onoff { position: absolute; right: 6vw; bottom: 30svh; width: min(300px, 74vw); padding: 18px; border-radius: 20px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(12px); color: #fff; opacity: 0; will-change: opacity, transform; }
.onoff__sw { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.onoff__sw i { width: 44px; height: 26px; border-radius: 100px; background: rgba(255,255,255,.2); position: relative; transition: background .4s var(--ease); }
.onoff__sw i::after { content: ''; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; transition: transform .4s var(--ease); }
.onoff.is-live .onoff__sw i { background: var(--orange); }
.onoff.is-live .onoff__sw i::after { transform: translateX(18px); }
.onoff > span { display: flex; align-items: center; gap: 9px; margin-top: 9px; font-size: 14px; color: rgba(255,255,255,.58); }
.onoff > span::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.24); transition: background .4s var(--ease); }
.onoff.is-live > span::before { background: #4ade80; }

.story__rail { position: absolute; right: 22px; top: 50%; transform: translateY(-50%); z-index: 5; display: grid; gap: 8px; }
.story__rail i { width: 5px; height: 20px; border-radius: 100px; background: rgba(255,255,255,.16); transition: all .4s var(--ease); }
.story__rail i.is-on { background: var(--orange); height: 32px; }
.story__cta { position: absolute; left: 50%; bottom: 5svh; transform: translateX(-50%); z-index: 5; opacity: 0; transition: opacity .5s var(--ease); }
.story__cta.is-on { opacity: 1; }

/* el marquee y las secciones siguientes heredan el negro por continuidad */
.marquee { background: #14110f; border-color: rgba(255,255,255,.1); }
.marquee__track { color: #fff; }
.channels { background: #14110f; color: #fff; }
.channels h2 { color: #fff; }
.channels .section__lede { color: rgba(255,255,255,.62); }
.channels .ch { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.13); color: #fff; }
.channels .ch span span { color: rgba(255,255,255,.55); }
.channels .funnel__hub { background: #fff; }
