/* ===================================================================
   BINK, Marketing site
   Modern look: vivid magenta + gradients, pill buttons, glossy depth.
   Afacad (display) + Inter (body) · Lucide icons.
   Brand colors aligned to Bink (magenta #dd034d / rosado / burgundy).
   NOTE: the official Design System tokens live in css/colors_and_type.css, intentionally NOT imported here while the DS is being modernized.
   =================================================================== */

/* Fuentes self-hosted (variables, subset latin) — antes Google Fonts */
@font-face {
  font-family: "Afacad";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../assets/fonts/afacad-var-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../assets/fonts/inter-var-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* Brand palette */
  --magenta: #dd034d;       /* primary brand accent (vivid) */
  --magenta-deep: #b8023f;
  --rosado: #fd95c1;        /* light accent */
  --burgundy: #9c0357;      /* deep tier */
  --ink: #0b0410;           /* near-black dark surfaces */
  --crudo: #f4eef1;         /* warm off-white */
  --white: #ffffff;

  /* 3D iconography palette (for accents/avatars) */
  --lila: #a579bb;
  --amarillo: #f1b31f;
  --piel: #f9b891;
  --rosado-innov: #d1377d;

  /* Working tokens */
  --paper: #ffffff;
  --paper-2: #f7f2f5;       /* warm sunken */
  --ink-2: #1a0a14;         /* burgundy-tinted near-black (dark cards) */
  --text: #16101f;
  --text-soft: #5a5168;
  --text-faint: #6f677f;   /* antes #8a8298: fallaba contraste AA (3.67:1) sobre blanco */
  --line: rgba(20, 12, 30, 0.09);

  /* Expressive gradients (the modern feel) */
  --grad: linear-gradient(120deg, var(--magenta) 0%, var(--burgundy) 100%);
  --grad-soft: linear-gradient(120deg, #ff3d7f 0%, var(--rosado) 100%);
  --grad-dark: linear-gradient(135deg, var(--ink) 0%, var(--burgundy) 60%, var(--magenta) 120%);

  --radius: 22px;
  --radius-lg: 32px;
  --btn-radius: 999px;      /* pill buttons */
  --shadow-card: 0 30px 60px -25px rgba(156, 3, 87, 0.28);
  --shadow-soft: 0 10px 40px -18px rgba(40, 10, 50, 0.16);

  --maxw: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --spring: cubic-bezier(.34, 1.56, .64, 1);

  --font-display: "Afacad", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

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

/* Los width/height de cada <img> solo reservan espacio (anti-CLS y aspect-ratio);
   el tamaño real siempre lo decide el CSS. Sin esto, un CSS que fija solo el ancho
   dejaria la altura clavada en el valor del atributo (imagen deformada). */
img { height: auto; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: clip;
}

h1, h2, h3, h4, .font-display { font-family: var(--font-display); }

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

.grad-text {
  background: var(--grad);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradFlow 7s ease infinite;
}
@keyframes gradFlow { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

/* ===== Scroll progress ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: var(--grad); z-index: 1000;
  box-shadow: 0 0 14px rgba(221, 3, 77, 0.55);
}

/* ===== Buttons (modern: pill, gradient brand, glossy lift) ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; font-family: var(--font-display); font-weight: 600; font-size: 1.02rem;
  padding: .8rem 1.5rem; border-radius: var(--btn-radius); border: none; cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(120deg, #030303 0%, #dd034d 115%); color: #fff;
  box-shadow: 0 12px 30px -10px rgba(221, 3, 77, 0.5);
  position: relative; overflow: hidden;
}
.btn--primary::after {
  content: ""; position: absolute; top: 0; left: -80%; width: 55%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-20deg); pointer-events: none;
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -12px rgba(221, 3, 77, 0.6); }
.btn--primary:hover::after { animation: btnSheen .75s ease; }
@keyframes btnSheen { from { left: -80%; } to { left: 130%; } }
.btn--ghost {
  background: rgba(20, 12, 30, 0.04); color: var(--text);
  border: 1px solid var(--line);
}
.btn--ghost:hover { background: rgba(20, 12, 30, 0.08); transform: translateY(-2px); }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.1rem; }
.btn--accent {
  background: rgba(221, 3, 77, 0.06); color: var(--magenta);
  border: 1.5px solid var(--magenta);
}
.btn--accent:hover { background: var(--magenta); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 32px -12px rgba(221, 3, 77, 0.5); }

/* ===== Lucide icons (line, 1.75 stroke) ===== */
svg.lucide { stroke-width: 1.75; display: block; }

/* Skip link: oculto hasta recibir foco de teclado */
.skip-link {
  position: fixed; top: -100px; left: 16px; z-index: 999;
  padding: .8rem 1.2rem; border-radius: 999px;
  background: var(--ink); color: #fff; font-weight: 600; font-size: .95rem;
  transition: top .15s ease;
}
.skip-link:focus-visible { top: 12px; outline: 2px solid var(--magenta); outline-offset: 2px; }

/* Oculto visualmente pero presente para lectores/honeypot */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; margin: -1px;
  padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.form-error { background: #fdecec; border-radius: 16px; padding: 1.2rem 1.5rem; text-align: center; font-weight: 600; color: #8c1a1a; margin-top: .8rem; }
.cta__note[data-form-error] { color: #ffb4c2; font-weight: 600; }
.bento__icon svg, .vcard__icon svg { width: 26px; height: 26px; color: var(--magenta); }
.bento__card--accent .bento__icon svg { color: #fff; }
.pocket__emoji svg { width: 30px; height: 30px; color: var(--rosado); }
.contact__points span svg { width: 20px; height: 20px; color: var(--magenta); }
.tabs__btn svg { width: 18px; height: 18px; margin-right: .45rem; vertical-align: -3px; }
.case-card__more svg, .spotlight__more svg { width: 16px; height: 16px; vertical-align: -3px; }
.footer-heart { display: inline-block; vertical-align: -2px; }
.footer-heart svg { width: 14px; height: 14px; color: var(--rosado); fill: var(--rosado); }
.footer__social { display: flex; gap: .55rem; margin-top: 1.2rem; }
.footer__social a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.08); color: rgba(255,255,255,.82); transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease); }
.footer__social a:hover { background: var(--magenta); color: #fff; transform: translateY(-2px); }
.footer__social svg { width: 18px; height: 18px; }

/* ===================================================================
   NAV
   =================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: padding .35s var(--ease);
  padding: .85rem clamp(14px, 3vw, 28px) 0;
}
.nav--scrolled { padding-top: .5rem; }
/* Contenedor "pill" flotante con estética Bink (glass + bordes muy redondeados) */
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; gap: 1.6rem;
  padding: .5rem .55rem .5rem 1.5rem;
  background: rgba(255, 255, 255, .5);
  -webkit-backdrop-filter: blur(22px) saturate(180%); backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 999px;
  box-shadow: 0 10px 34px -16px rgba(20, 12, 30, .28), 0 1px 0 rgba(255, 255, 255, .6) inset;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.nav--scrolled .nav__inner {
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 14px 40px -14px rgba(20, 12, 30, .4), 0 1px 0 rgba(255, 255, 255, .75) inset;
}
/* Sobre el hero oscuro del home (arriba): glass muy transparente que deja ver
   el fondo, texto y logo en blanco (negativo). Al hacer scroll vuelve a claro. */
body:is([data-page="home"],[data-page="producto"]) .nav:not(.nav--scrolled) .nav__inner {
  background: rgba(14, 6, 16, .22);
  -webkit-backdrop-filter: blur(26px) saturate(150%); backdrop-filter: blur(26px) saturate(150%);
  border-color: rgba(255, 255, 255, .2);
  box-shadow: 0 12px 34px -16px rgba(0, 0, 0, .55), 0 1px 0 rgba(255, 255, 255, .14) inset;
}
body:is([data-page="home"],[data-page="producto"]) .nav:not(.nav--scrolled) .nav__links > a,
body:is([data-page="home"],[data-page="producto"]) .nav:not(.nav--scrolled) .nav__trigger { color: #fff; }
body:is([data-page="home"],[data-page="producto"]) .nav:not(.nav--scrolled) .nav__links > a:hover,
body:is([data-page="home"],[data-page="producto"]) .nav:not(.nav--scrolled) .nav__trigger:hover,
body:is([data-page="home"],[data-page="producto"]) .nav:not(.nav--scrolled) .nav__item:hover .nav__trigger { color: #fff; }
body:is([data-page="home"],[data-page="producto"]) .nav:not(.nav--scrolled) .nav__trigger svg { color: rgba(255, 255, 255, .72); }
body:is([data-page="home"],[data-page="producto"]) .nav:not(.nav--scrolled) .nav__logo-img { filter: brightness(0) invert(1); }
body:is([data-page="home"],[data-page="producto"]) .nav:not(.nav--scrolled) .nav__cta .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .34); }
body:is([data-page="home"],[data-page="producto"]) .nav:not(.nav--scrolled) .nav__cta .btn--ghost:hover { border-color: rgba(255, 255, 255, .6); background: rgba(255, 255, 255, .1); }
body:is([data-page="home"],[data-page="producto"]) .nav:not(.nav--scrolled) .nav__burger span { background: #fff; }
.nav__logo {
  display: inline-flex; align-items: center; gap: .5rem;
}
.nav__logo-img { height: 30px; width: auto; display: block; }
.nav--scrolled .nav__logo-img { height: 27px; transition: height .4s var(--ease); }
.bink-card__brand-img { height: 26px; width: auto; display: block; }
.nav__links { display: flex; gap: 1.35rem; margin-left: auto; align-items: center; }
.nav__links a {
  font-size: .98rem; color: var(--text-soft); font-weight: 500;
  position: relative; transition: color .25s;
}
.nav__links a::after {
  content: ""; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--grad); transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; gap: .6rem; }

.nav__burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; padding: 4px; z-index: 901; }
.nav__burger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav__burger.open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__burger.open span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 60px 0 0 0; z-index: 800;
  background: rgba(250, 248, 251, 0.82); backdrop-filter: blur(24px) saturate(180%); -webkit-backdrop-filter: blur(24px) saturate(180%);
  padding: 1.4rem 24px 2rem; flex-direction: column;
  display: none; overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { display: flex; }
.mobile-menu__nav { display: flex; flex-direction: column; }
body.menu-open { overflow: hidden; }

.m-link {
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  padding: 1.05rem 0; font-family: var(--font-display); font-size: 1.25rem; font-weight: 600;
  color: var(--text); border-bottom: 1px solid var(--line); list-style: none; cursor: pointer;
}
.m-link::-webkit-details-marker { display: none; }
.m-link svg { width: 19px; height: 19px; color: var(--text-faint); transition: transform .25s var(--ease); }
.m-acc[open] > .m-link svg { transform: rotate(180deg); }
.m-acc[open] > .m-link { color: var(--magenta); }
.m-acc__body { display: flex; flex-direction: column; padding: .2rem 0 1rem; }
.m-acc__title { font-size: .74rem; text-transform: none; letter-spacing: .02em; color: var(--text-faint); font-weight: 600; margin: .9rem 0 .35rem; }
.m-acc__item { padding: .6rem 0 .6rem 1rem; font-size: 1.05rem; font-weight: 500; color: var(--text-soft); }
.m-acc__item:active, .m-acc__item:hover { color: var(--magenta); }
.mobile-menu .btn { margin-top: 1.5rem; }

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative; min-height: 100vh; display: grid;
  grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 2rem;
  max-width: var(--maxw); margin: 0 auto; padding: 8rem 24px 4rem;
}
.hero__bg { position: absolute; inset: -10% -20%; z-index: -1; overflow: hidden; }
.hero__glow {
  position: absolute; z-index: -1; width: 460px; height: 460px; left: 50%; top: 38%;
  border-radius: 50%; pointer-events: none; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(221,3,77,.13), transparent 65%);
  opacity: 0; transition: opacity .45s var(--ease);
}
.hero:hover .hero__glow { opacity: 1; }
.hero__blob {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .42;
  animation: float 14s ease-in-out infinite;
}
.hero__blob--1 { width: 520px; height: 520px; background: radial-gradient(circle, var(--rosado), transparent 70%); top: -8%; right: 6%; }
.hero__blob--2 { width: 460px; height: 460px; background: radial-gradient(circle, var(--magenta), transparent 70%); bottom: -6%; left: 0%; animation-delay: -5s; opacity: .3; }
.hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 54px 54px; mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 75%);
}
@keyframes float { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(20px,-30px) scale(1.08); } }

.pill {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.6);
  padding: .5rem 1rem; border-radius: 999px; font-size: .88rem; font-weight: 500;
  color: var(--text-soft); margin-bottom: 1.8rem;
  backdrop-filter: blur(14px) saturate(180%); -webkit-backdrop-filter: blur(14px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, var(--shadow-soft);
}
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--magenta); box-shadow: 0 0 0 4px rgba(221,3,77,.18); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(221,3,77,0); } }

.hero__title {
  font-size: clamp(2.7rem, 5.6vw, 4.6rem); font-weight: 700; line-height: 1.02;
  letter-spacing: -0.025em; margin-bottom: 1.5rem;
}
.hero__sub {
  font-size: 1.2rem; color: var(--text-soft); max-width: 38ch; margin-bottom: 2.2rem;
}
.hero__actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-bottom: 2.6rem; }

.hero__trust { display: flex; align-items: center; gap: 1rem; }
.hero__avatars { display: flex; }
.hero__avatars span {
  width: 38px; height: 38px; border-radius: 50%; border: 2px solid var(--paper);
  margin-left: -12px; background: var(--grad-soft);
}
.hero__avatars span:nth-child(2){ background: linear-gradient(120deg, var(--amarillo), var(--piel)); }
.hero__avatars span:nth-child(3){ background: linear-gradient(120deg, var(--lila), var(--burgundy)); }
.hero__avatars span:nth-child(4){ background: linear-gradient(120deg, var(--rosado), var(--rosado-innov)); }
.hero__avatars span:first-child{ margin-left: 0; }
/* Variante con logos de clientes (círculo blanco + logo contenido) */
.hero__avatars--logos span { width: 46px; height: 46px; margin-left: -13px; background: #fff; border: 2px solid rgba(255,255,255,.9); box-shadow: 0 4px 12px -4px rgba(0,0,0,.4); display: grid; place-items: center; overflow: hidden; }
.hero__avatars--logos span:first-child { margin-left: 0; }
.hero__avatars--logos span img { width: 100%; height: 100%; object-fit: contain; padding: 8px; box-sizing: border-box; }
.hero__trust p { font-size: .96rem; color: var(--text-soft); }
.hero__trust strong { color: var(--text); }

/* Floating card */
.hero__card-stage { position: relative; display: flex; justify-content: center; perspective: 1200px; }
.bink-card {
  position: relative; width: min(380px, 90%); aspect-ratio: 1.6/1;
  container-type: inline-size;
  border-radius: 26px; padding: clamp(1rem, 6.7cqw, 1.6rem); color: #fff; overflow: hidden;
  background: #030303;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; justify-content: space-between;
  transform: rotateY(-14deg) rotateX(6deg);
  transition: transform .2s ease-out;
  animation: cardfloat 6s ease-in-out infinite;
}
@keyframes cardfloat { 0%,100% { transform: rotateY(-14deg) rotateX(6deg) translateY(0); } 50% { transform: rotateY(-14deg) rotateX(6deg) translateY(-16px); } }
.bink-card__shine {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.25) 48%, transparent 60%);
  transform: translateX(-60%); animation: shine 5s ease-in-out infinite;
}
@keyframes shine { 0%,70%,100% { transform: translateX(-60%);} 35% { transform: translateX(60%);} }
.bink-card__top { display: flex; justify-content: space-between; align-items: center; }
.bink-card__brand { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.05rem, 6.7cqw, 1.6rem); letter-spacing: -.02em; }
.bink-card__chip { width: 42px; height: 30px; border-radius: 7px; background: linear-gradient(135deg, #e9ebef 0%, #a7abb4 45%, #cfd3da 70%, #9a9ea7 100%); }
.bink-card__label { font-size: clamp(.6rem, 3cqw, .72rem); opacity: .75; display: block; text-transform: none; letter-spacing: .02em; }
.bink-card__amount { font-size: clamp(1.25rem, 8cqw, 1.9rem); font-weight: 600; font-family: var(--font-display); }
.bink-card__pockets { display: flex; flex-wrap: wrap; gap: .4rem; }
.bink-card .chip {
  font-size: clamp(.6rem, 3cqw, .72rem); background: rgba(255,255,255,.16); padding: .25rem .6rem; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.bink-card__footer { display: flex; justify-content: space-between; font-size: clamp(.72rem, 3.9cqw, .92rem); opacity: .9; letter-spacing: .04em; }

.hero__ping {
  position: absolute; background: rgba(255,255,255,0.7); color: var(--text); font-size: .84rem; font-weight: 600;
  padding: .55rem .9rem; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(14px) saturate(180%); -webkit-backdrop-filter: blur(14px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, var(--shadow-soft);
  animation: pingfloat 5s ease-in-out infinite;
}
/* Posicionados fuera del cuerpo de la tarjeta para NO tapar el logo Bink
   (arriba-izq) ni el de Visa (abajo-der). Diagonal: abajo-izq + arriba-der. */
.hero__ping--1 { bottom: 28%; left: -13%; color: var(--magenta); }
.hero__ping--2 { top: 14%; right: -12%; animation-delay: -2.5s; }
@keyframes pingfloat { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-12px);} }
@media (max-width: 560px) {
  .hero__ping { font-size: .76rem; padding: .45rem .7rem; }
  .hero__ping--1 { bottom: 24%; left: 0%; }
  .hero__ping--2 { top: 10%; right: 0%; }
}

/* ===================================================================
   LOGOS
   =================================================================== */
.logos { max-width: var(--maxw); margin: 0 auto; padding: 2rem 24px 3rem; }
.logos__label { text-align: center; font-size: .8rem; letter-spacing: .02em; color: var(--text-faint); font-weight: 600; text-transform: none; margin-bottom: 1.4rem; }
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track { display: flex; gap: 1.1rem; align-items: center; width: max-content; animation: scroll 38s linear infinite; }
/* Cada logo en un chip blanco uniforme → muro parejo aunque los logos sean dispares */
.logo-item {
  display: inline-flex; align-items: center; justify-content: center;
  height: 84px; min-width: 176px; padding: 0 24px; text-decoration: none; color: inherit;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow-soft); transition: transform .3s var(--ease), box-shadow .3s;
}
.logo-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
/* La ALTURA de cada logo se define por-logo (inline) desde la lista LOGOS en main.js,
   para igualar el peso óptico (cuadrados más altos, wordmarks anchos más bajos). */
.logo-img { width: auto; max-width: 134px; object-fit: contain; display: block; }
.marquee__track .logo-text { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--text-soft); letter-spacing: -.01em; white-space: nowrap; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ===================================================================
   STATS
   =================================================================== */
.stats {
  max-width: var(--maxw); margin: 0 auto; padding: .5rem 24px 2.5rem;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.5rem;
}
.stat { text-align: center; padding: .5rem 1rem; flex: 0 1 240px; }
.stat__num { font-family: var(--font-display); display: block; font-size: clamp(3.4rem, 6vw, 5rem); font-weight: 700; letter-spacing: -.03em; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat__label { font-size: .97rem; color: var(--text-soft); }

/* ===================================================================
   SECTIONS
   =================================================================== */
.section { max-width: var(--maxw); margin: 0 auto; padding: 6rem 24px; }
.section--dark { max-width: none; background: var(--ink); color: #fff; padding: 6rem 24px; }
.section--dark .section__title { color: #fff; }
.section--soft { max-width: none; background: var(--crudo); padding: 6rem 24px; }
.section--dark > *, .section--soft > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }

.section__head { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.eyebrow { font-size: .82rem; letter-spacing: .02em; color: var(--magenta); text-transform: none; font-weight: 600; }
.eyebrow--light { color: var(--rosado); }
.section__title { font-size: clamp(2.1rem, 4.2vw, 3.1rem); font-weight: 700; letter-spacing: -.025em; line-height: 1.08; margin: .6rem 0 1rem; }
.section__lead { font-size: 1.18rem; color: var(--text-soft); }
.section__lead--light { color: rgba(255,255,255,.72); }

/* ===== Bento ===== */
.bento { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 1.2rem; }
.bento__card {
  flex: 1 1 220px; min-width: 0;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow-soft);
  transition: transform .4s var(--ease), box-shadow .4s;
}
.bento__card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -28px rgba(156,3,87,.32); }
.bento__card--lg { grid-row: auto; grid-column: auto; }
.bento__card--accent { background: var(--grad); color: #fff; border: none; }
.bento__icon { font-size: 2rem; width: 58px; height: 58px; display: grid; place-items: center; background: var(--crudo); border-radius: 16px; margin-bottom: 1.2rem; }
.bento__card--accent .bento__icon { background: rgba(255,255,255,.18); }
.bento__icon--3d, .bento__card--accent .bento__icon--3d { background: none; width: auto; height: auto; border-radius: 0; position: relative; }
.bento__icon--3d img { width: 88px; height: 88px; object-fit: contain; display: block; }

/* ===== Hover de los íconos 3D: glow de marca + levantamiento + gesto propio ===== */
.bento__icon--3d::after {
  content: ""; position: absolute; left: 44px; top: 44px;
  width: 116px; height: 116px; margin: -58px 0 0 -58px; border-radius: 50%;
  background: radial-gradient(circle, rgba(221,3,77,.20), transparent 70%);
  opacity: 0; transform: scale(.55); pointer-events: none; z-index: 0;
  transition: opacity .4s var(--ease), transform .55s var(--spring);
}
.bento__card:hover .bento__icon--3d::after { opacity: 1; transform: scale(1); }
.bento__card--accent:hover .bento__icon--3d::after { background: radial-gradient(circle, rgba(255,255,255,.32), transparent 70%); }
.bento__lift {
  position: relative; z-index: 1; display: block;
  transition: transform .5s var(--spring), filter .4s var(--ease);
  filter: drop-shadow(0 8px 12px rgba(11,4,16,.16));
}
.bento__card:hover .bento__lift {
  transform: translateY(-12px);
  filter: drop-shadow(0 20px 24px rgba(11,4,16,.26));
}

@media (prefers-reduced-motion: no-preference) {
  .bento__card--activacion:hover .bento__lift img { animation: jolt .6s ease, zap .6s ease; }
  .bento__card--reglas:hover .bento__lift img { animation: wobble .7s ease; }
  .bento__card--panel:hover .bento__lift img { animation: present .7s var(--spring); }
  .bento__card--app:hover .bento__lift img { animation: tilt3d .8s ease; }
}
@keyframes jolt { 0%{transform:rotate(0)}20%{transform:rotate(-6deg)}40%{transform:rotate(5deg)}60%{transform:rotate(-3deg)}80%{transform:rotate(2deg)}100%{transform:rotate(0)} }
@keyframes zap { 0%{filter:brightness(1) saturate(1)}15%{filter:brightness(1.3) saturate(1.35)}30%{filter:brightness(.98)}45%{filter:brightness(1.2) saturate(1.25)}100%{filter:brightness(1)} }
@keyframes wobble { 0%{transform:rotate(0)}25%{transform:rotate(4deg)}50%{transform:rotate(-3deg)}75%{transform:rotate(2deg)}100%{transform:rotate(0)} }
@keyframes present { 0%{transform:scale(1)}55%{transform:scale(1.1)}100%{transform:scale(1.05)} }
@keyframes tilt3d { 0%{transform:perspective(600px) rotateY(0)}50%{transform:perspective(600px) rotateY(16deg)}100%{transform:perspective(600px) rotateY(0)} }
/* "Cuando fluye": módulo más compacto (las tarjetas colapsadas dejaban mucho aire) */
#producto { padding-top: 4rem; padding-bottom: 4rem; }
#producto .section__head { margin-bottom: 2.4rem; }
.bento__card h3 { font-size: 1.45rem; font-weight: 600; letter-spacing: -.01em; margin-bottom: .6rem; line-height: 1.2; min-height: 2.4em; }
.bento__card p { color: var(--text-soft); font-size: 1.02rem; }
.bento__card--accent p { color: rgba(255,255,255,.88); }
.bento__demo { margin-top: 1.6rem; display: flex; flex-direction: column; gap: .8rem; }
.bento__bar { position: relative; background: var(--crudo); border-radius: 10px; padding: .7rem .9rem; font-size: .88rem; font-weight: 600; color: var(--text); overflow: hidden; }
.bento__bar span { position: absolute; inset: 0; width: 0; background: var(--grad-soft); opacity: .28; border-radius: 10px; transition: width 1.2s var(--ease); }
.bento__bar.in span { width: var(--w); }
.bento__bar b { position: relative; font-weight: 600; }

/* "Cuando fluye": colapsado muestra solo ícono + título; al hover se agranda
   el recuadro y revela la descripción (y las barras del primero). */
.bento__card h3 { margin-bottom: 0; }
.bento__card p, .bento__card .bento__demo {
  max-height: 0; opacity: 0; overflow: hidden; margin-top: 0;
  transition: max-height .45s var(--ease), opacity .35s var(--ease), margin .45s var(--ease);
}
.bento__card:hover p { max-height: 14em; opacity: 1; margin-top: .6rem; }
.bento__card:hover .bento__demo { max-height: 24em; opacity: 1; margin-top: 1.4rem; }
.bento__card:hover .bento__bar span { width: var(--w); }

/* ===== Pockets ===== */
.pockets { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; align-items: stretch; grid-auto-rows: 1fr; }
/* Marcas por categoría (fusión con Versatilidad): se revelan al pasar el mouse */
.pocket__brands { display: flex; flex-wrap: wrap; gap: .4rem; position: relative; max-height: 0; opacity: 0; margin-top: 0; overflow: hidden; transition: max-height .45s var(--ease), opacity .35s var(--ease), margin .45s var(--ease); }
.pocket:hover .pocket__brands { max-height: 220px; opacity: 1; margin-top: .9rem; }
.pocket__brands span { font-size: .76rem; font-weight: 500; padding: .28rem .65rem; border-radius: 999px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.85); white-space: normal; max-width: 100%; overflow-wrap: anywhere; }
.pocket {
  position: relative; background: var(--ink-2); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 1.5rem 1.2rem; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), border-color .4s;
}
/* "Ver categoría" alineado al fondo en todas las tarjetas */
.pocket__go { margin-top: auto; }
.pocket:has(.pocket__tag) .pocket__tag { margin-top: auto; }
.pocket:has(.pocket__tag) .pocket__go { margin-top: .8rem; }
.pocket::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .4s;
  background: radial-gradient(circle at 30% 0%, rgba(221,3,77,.25), transparent 60%);
}
.pocket:hover { transform: translateY(-8px); border-color: rgba(221,3,77,.45); }
.pocket:hover::before { opacity: 1; }
.pocket__emoji { font-size: 2.4rem; margin-bottom: 1rem; position: relative; }
.pocket h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: .45rem; position: relative; }
.pocket p { color: rgba(255,255,255,.64); font-size: .9rem; line-height: 1.45; position: relative; }
.pocket__tag { display: inline-block; margin-top: 1rem; font-size: .74rem; font-weight: 600; padding: .25rem .7rem; border-radius: 999px; background: var(--grad); position: relative; }
.pockets__more { text-align: center; margin-top: 2rem; color: rgba(255,255,255,.7); font-size: 1.02rem; }
.pockets__more a { color: var(--rosado); font-weight: 600; }
.pockets__more a:hover { text-decoration: underline; }

/* ===== Steps ===== */
.steps { display: flex; align-items: flex-start; gap: 1rem; }
.step { flex: 1; }
.step__num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; display: block; margin-bottom: .8rem; }
.step h3 { font-size: 1.45rem; font-weight: 600; margin-bottom: .5rem; letter-spacing: -.01em; }
.step p { color: var(--text-soft); }
.step__line { flex: 0 0 60px; height: 2px; margin-top: 1.8rem; background: linear-gradient(90deg, var(--magenta), transparent); }

/* Cómo funciona: entrada escalonada de los 3 pasos al hacer scroll */
.steps .step.reveal { transform: translateY(42px) scale(.96); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.steps .step.reveal.in { transform: none; }
.step__line.reveal { opacity: 0; transform: scaleX(0); transform-origin: left center; transition: transform .55s var(--ease), opacity .3s var(--ease); }
.step__line.reveal.in { opacity: 1; transform: scaleX(1); }

/* ===== Quotes ===== */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.quote { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-soft); }
.quote blockquote { font-family: var(--font-display); font-size: 1.18rem; line-height: 1.45; margin-bottom: 1.4rem; font-weight: 500; }
.quote figcaption strong { display: block; }
.quote figcaption span { color: var(--text-faint); font-size: .92rem; }

/* ===== FAQ ===== */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: .8rem; }
.faq__item { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 0 1.4rem; overflow: hidden; }
.faq__item summary { list-style: none; cursor: pointer; padding: 1.3rem 0; font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; display: flex; justify-content: space-between; align-items: center; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.5rem; color: var(--magenta); transition: transform .3s; font-weight: 400; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { padding-bottom: 1.3rem; color: var(--text-soft); }

/* ===================================================================
   CTA
   =================================================================== */
.cta { position: relative; margin: 0 auto; max-width: var(--maxw); padding: 4rem 24px 6rem; }
.cta__inner {
  position: relative; background: var(--ink); color: #fff; border-radius: var(--radius-lg);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem); text-align: center; overflow: hidden;
}
.cta__bg { position: absolute; inset: 0; z-index: 0; }
.cta__inner::before {
  content: ""; position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(221,3,77,.5), transparent 65%);
  top: -50%; left: 50%; transform: translateX(-50%); filter: blur(40px);
}
.cta__inner > * { position: relative; }
.cta__inner h2 { font-size: clamp(2.1rem, 4.6vw, 3.3rem); font-weight: 700; letter-spacing: -.025em; line-height: 1.06; margin-bottom: 1rem; }
.cta__inner p { color: rgba(255,255,255,.78); font-size: 1.18rem; max-width: 50ch; margin: 0 auto 2.2rem; }
.cta__form { display: flex; gap: .7rem; max-width: 620px; margin: 0 auto; flex-wrap: wrap; }
.cta__form input {
  flex: 1 1 180px; padding: 1.05rem 1.3rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06); color: #fff; font-family: inherit; font-size: 1rem;
}
.cta__form input::placeholder { color: rgba(255,255,255,.5); }
.cta__form input:focus { outline: none; border-color: var(--magenta); background: rgba(255,255,255,.1); box-shadow: 0 0 0 3px rgba(221,3,77,.28); }
.cta__note { margin-top: 1.2rem; font-size: .9rem; color: rgba(255,255,255,.55); }
.cta__success { margin-top: 1.5rem; font-weight: 600; color: var(--rosado); }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer { background: var(--ink); color: #fff; padding: 4rem 24px 2rem; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 2fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand .nav__logo { color: #fff; }
.footer__brand p { color: rgba(255,255,255,.62); margin-top: 1rem; max-width: 28ch; }
.footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.footer__cols h4 { font-size: 1rem; font-weight: 600; margin-bottom: 1rem; }
.footer__cols a { display: block; color: rgba(255,255,255,.62); font-size: .94rem; padding: .35rem 0; transition: color .25s; }
.footer__cols a:hover { color: #fff; }
.footer__bottom { max-width: var(--maxw); margin: 2rem auto 0; display: flex; justify-content: space-between; color: rgba(255,255,255,.5); font-size: .86rem; flex-wrap: wrap; gap: .5rem; }

/* ===================================================================
   INNER PAGES
   =================================================================== */
/* Compact page hero */
.page-hero { position: relative; max-width: var(--maxw); margin: 0 auto; padding: 10rem 24px 3.5rem; text-align: center; overflow: hidden; }
.page-hero__bg { position: absolute; inset: -30% -20% auto; height: 460px; z-index: -1; }
.page-hero__bg::before {
  content: ""; position: absolute; width: 560px; height: 560px; border-radius: 50%; left: 50%; top: -40%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(253,149,193,.45), transparent 65%); filter: blur(60px);
}
.page-hero .eyebrow { display: block; margin-bottom: .7rem; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; letter-spacing: -.025em; line-height: 1.05; }
.page-hero p { font-size: 1.2rem; color: var(--text-soft); max-width: 56ch; margin: 1.2rem auto 0; }
.page-hero__actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* ===== Plataforma: hero oscuro con demo del panel asomándose ===== */
.plat-hero { position: relative; overflow: hidden; text-align: center; color: #fff; padding: clamp(7.5rem, 12vw, 9.5rem) clamp(14px, 4vw, 28px) clamp(9rem, 17vw, 14rem); }
.plat-hero__bg { position: absolute; inset: 0; z-index: -2; background: linear-gradient(160deg, #000000 0%, #150109 30%, #46071f 68%, #6e0c2e 100%); }
.plat-hero__glow { position: absolute; top: -10%; right: -8%; width: 60%; height: 70%; z-index: -1; background: radial-gradient(circle at 70% 30%, rgba(221,3,77,.32), transparent 60%); filter: blur(40px); pointer-events: none; }
.plat-hero__inner { max-width: 880px; margin: 0 auto; }
.plat-hero__eyebrow { display: block; margin-bottom: .9rem; color: var(--rosado); }
.plat-hero__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem, 6vw, 4.3rem); line-height: 1.04; letter-spacing: -.025em; margin: 0 0 1.1rem; }
.plat-hero__sub { font-size: clamp(1rem, 1.6vw, 1.22rem); color: rgba(255,255,255,.72); max-width: 600px; margin: 0 auto 2rem; }
.plat-hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn--glass { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.26); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.btn--glass:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }

/* Panel interactivo único, asomándose y solapando el hero oscuro */
.plat-panel { position: relative; z-index: 2; max-width: var(--maxw); margin: clamp(-12rem, -14vw, -7rem) auto 0; padding: 0 clamp(14px, 4vw, 28px) clamp(3rem, 7vw, 5rem); }
.plat-panel .dashshow { margin: 0 auto; }
.plat-panel .dashshow__item { margin-top: 0; }
.plat-panel .dash { box-shadow: 0 44px 100px -34px rgba(0,0,0,.72); }
.dash__logo img { height: 17px; width: auto; display: block; }
.dash__cati { width: 15px; height: 15px; object-fit: contain; flex: none; }
/* Barra lateral oscura, como el panel del home (.hp__side) */
.plat-panel .dash__side { background: #1E1E1E; border-right: 0; }
.plat-panel .dash__logo { margin-bottom: 22px; }
.plat-panel .dash__logo img { filter: brightness(0) invert(1); height: 18px; }
.plat-panel .dash__nav { color: #A1A1AA; }
.plat-panel .dash__nav.is-on { background: var(--burgundy); color: #fff; box-shadow: 0 8px 18px -7px rgba(156,4,88,.7); }
.plat-panel .dash__nav:not(.is-on):hover { background: rgba(255,255,255,.08); color: #d8d4dd; }
.plat-panel .dash__org { border-top-color: rgba(255,255,255,.12); color: #b9b3c0; }
.plat-panel .dash__org i.ic { background: rgba(255,255,255,.1); color: #d8d4dd; }
.plat-panel .dash__org small { color: #8a8390; }

/* ===== Hero de la app (tarjeta en vivo) — grid robusto, sin grid-blowout ===== */
.apphero { position: relative; max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.05fr 0.92fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; min-height: 86vh; padding: clamp(7rem, 11vw, 9.5rem) clamp(16px, 4vw, 28px) clamp(3rem, 6vw, 5rem); }
.apphero__content { min-width: 0; }
.apphero__stage { min-width: 0; display: flex; justify-content: center; align-items: center; perspective: 1200px; }
.apphero__stage .bink-card { width: min(390px, 100%); margin: 0; }
.appphone--hero { width: clamp(240px, 23vw, 300px); animation: phone-float 7s ease-in-out infinite; }
.appphone--hero .appphone__ui { transition: none; }
@keyframes phone-float { 0%, 100% { transform: translateY(0) rotate(-1.2deg); } 50% { transform: translateY(-12px) rotate(-1.2deg); } }
@media (prefers-reduced-motion: reduce) { .appphone--hero { animation: none; } }
@media (max-width: 900px) {
  .apphero { grid-template-columns: 1fr; text-align: center; min-height: 0; gap: 2.5rem; padding-top: 7rem; }
  .apphero__content { display: flex; flex-direction: column; align-items: center; }
  .apphero__stage { margin-top: .5rem; }
}

/* ===== App por dentro: un celular grande, features que aparecen al hacer scroll ===== */
.appshow { max-width: var(--maxw); margin: 0 auto; padding: clamp(2.5rem, 6vw, 5rem) clamp(14px, 4vw, 28px) 0; }
.appshow__head { text-align: center; max-width: 640px; margin: 0 auto; }
.appshow__scroll { position: relative; height: 320vh; }
.appshow__sticky { position: sticky; top: 0; height: 100vh; display: grid; place-items: center; }

/* Celular central (iPhone) */
.appphone { position: relative; z-index: 2; width: clamp(228px, 25vw, 298px); aspect-ratio: 9 / 19.4; background: #111114; border-radius: 13.5% / 6.4%; padding: 0.8%; box-shadow: 0 24px 55px -30px rgba(20,2,12,.38); }
.appphone__screen { position: relative; width: 100%; height: 100%; border-radius: 12% / 5.8%; overflow: hidden; background: #efeeea; box-shadow: 0 0 0 1px #050506; container-type: inline-size; }
.appphone__ui { position: absolute; left: 0; top: 0; width: 100%; height: auto; transition: transform .85s cubic-bezier(.4,0,.1,1); }
.appphone__island { position: absolute; left: 50%; top: 2.3%; transform: translateX(-50%); width: 27%; height: 2.7%; background: #000; border-radius: 999px; z-index: 3; }
.appphone__btn { position: absolute; width: 2px; background: #17171b; border-radius: 4px 0 0 4px; }
.appphone__btn--power { right: -2px; top: 27%; height: 10%; border-radius: 0 4px 4px 0; }
.appphone__btn--action { left: -2px; top: 18.5%; height: 4%; }
.appphone__btn--vol1 { left: -2px; top: 26.5%; height: 6.5%; }
.appphone__btn--vol2 { left: -2px; top: 34.5%; height: 6.5%; }

/* Pantallas reales de la app: una por paso, con crossfade + deslizamiento sutil */
.appscreen {
  position: absolute; left: 0; top: 0; width: 100%; height: auto;
  opacity: 0; transform: translateY(20px);
  transition: opacity .55s var(--ease), transform .35s ease-out;
  pointer-events: none; will-change: opacity, transform;
}
/* La pantalla activa se desplaza de forma continua con --app-pan (fijado por JS
   segun el sub-progreso del paso), dando movimiento fluido en todo el recorrido. */
[data-appshow][data-active="0"] .appscreen[data-screen="0"],
[data-appshow][data-active="1"] .appscreen[data-screen="1"],
[data-appshow][data-active="2"] .appscreen[data-screen="2"],
[data-appshow][data-active="3"] .appscreen[data-screen="3"] { opacity: 1; transform: translateY(var(--app-pan, 0px)); }
@media (prefers-reduced-motion: reduce) { .appscreen { transition: opacity .3s ease; transform: none; } }

/* ===== Pantalla "Alimentación" reconstruida en HTML (reemplaza el .webp con lorem)
   Todo dimensionado en cqw para escalar con el ancho del teléfono. ===== */
.appmock { height: 100%; display: flex; flex-direction: column; background: #f4f4f6; color: #1b1b1f; text-align: left; overflow: hidden; }
.appmock svg { display: block; }
/* Barra de estado */
.apm__status { display: flex; justify-content: space-between; align-items: center; padding: 3cqw 5.5cqw 1cqw; font-size: 3.6cqw; font-weight: 700; color: #111; }
.apm__stat { display: inline-flex; align-items: center; gap: 1.6cqw; }
.apm__signal { display: inline-block; width: 4.4cqw; height: 3cqw; background: #111; border-radius: .6cqw; }
.apm__wifi { display: inline-block; width: 3.8cqw; height: 3.8cqw; border: .7cqw solid #111; border-radius: 50%; border-right-color: transparent; border-bottom-color: transparent; transform: rotate(45deg); }
.apm__batt { position: relative; display: inline-block; width: 6.4cqw; height: 3.2cqw; border: .5cqw solid #111; border-radius: 1cqw; }
.apm__batt::after { content: ""; position: absolute; inset: .5cqw; background: #111; border-radius: .3cqw; }
/* Barra de navegación */
.apm__nav { display: flex; justify-content: space-between; align-items: center; padding: 1cqw 5cqw 3cqw; }
.apm__back { display: inline-flex; align-items: center; gap: .8cqw; font-size: 4cqw; font-weight: 600; color: #1b1b1f; }
.apm__back svg { width: 4.6cqw; height: 4.6cqw; }
.apm__navr { display: inline-flex; gap: 3.5cqw; color: #4a4a52; }
.apm__navr svg { width: 4.8cqw; height: 4.8cqw; }
/* Encabezado verde del bolsillo */
.apm__hero { display: flex; align-items: center; gap: 4cqw; margin: 0 4.5cqw; padding: 5cqw 6cqw; border-radius: 5cqw; background: linear-gradient(135deg, #34a76a 0%, #2b8f5c 100%); box-shadow: 0 5cqw 14cqw -6cqw rgba(43,143,92,.6); }
.apm__cart { flex: none; width: 15cqw; height: 15cqw; border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center; color: #2b8f5c; }
.apm__cart svg { width: 8cqw; height: 8cqw; }
.apm__heroname { color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 6.2cqw; letter-spacing: -.01em; }
/* Saldo */
.apm__balance { display: flex; flex-direction: column; gap: 1cqw; padding: 5cqw 6.5cqw 0; }
.apm__ballbl { font-size: 3.5cqw; color: #8a8a90; }
.apm__bal { font-family: var(--font-display); font-weight: 700; font-size: 9.5cqw; line-height: 1.05; color: #17171b; }
.apm__bal b { font-size: 5cqw; font-weight: 600; color: #a2a2a8; }
/* Acciones */
.apm__actions { display: flex; gap: 8cqw; padding: 5cqw 6.5cqw; }
.apm__act { display: flex; flex-direction: column; align-items: center; gap: 1.8cqw; font-size: 3.3cqw; font-weight: 600; color: #3a3a40; }
.apm__actic { width: 11cqw; height: 11cqw; border-radius: 50%; background: #fff; box-shadow: 0 3cqw 8cqw -3cqw rgba(0,0,0,.22), 0 0 0 .4cqw #eeeef0; display: grid; place-items: center; color: var(--magenta); }
.apm__actic svg { width: 4.8cqw; height: 4.8cqw; }
/* Movimientos */
.apm__sec { padding: 1cqw 6.5cqw 2cqw; font-size: 3.6cqw; font-weight: 700; color: #6a6a72; }
.apm__list { flex: 1; background: #fff; border-radius: 5cqw 5cqw 0 0; padding-top: 1.5cqw; }
.apm__row { display: flex; align-items: center; gap: 3.5cqw; padding: 2.8cqw 6.5cqw; }
.apm__row + .apm__row { border-top: .3cqw solid #f1f1f3; }
.apm__rico { flex: none; width: 9.5cqw; height: 9.5cqw; border-radius: 50%; display: grid; place-items: center; }
.apm__rico svg { width: 4.4cqw; height: 4.4cqw; }
.apm__rico--out { border: .6cqw solid rgba(221,3,77,.32); color: var(--magenta); }
.apm__rico--out svg { transform: rotate(-45deg); }
.apm__rico--in { border: .6cqw solid rgba(47,160,96,.42); color: #2fa060; }
.apm__rico--in svg { transform: rotate(135deg); }
.apm__rmain { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.apm__rmain b { font-size: 3.8cqw; font-weight: 600; color: #1b1b1f; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.apm__rmain small { font-size: 3cqw; color: #9a9aa0; }
.apm__amt { flex: none; font-size: 3.8cqw; font-weight: 700; }
.apm__amt--out { color: var(--magenta); }
.apm__amt--in { color: #2fa060; }

/* Rol del fundador (subtitulo bajo el nombre, reemplaza el eyebrow) */
.founder-x__role { color: var(--text-soft); font-weight: 600; font-size: .98rem; margin: .1rem 0 .5rem; }

/* ===== Banner de consentimiento (cookies / Consent Mode v2) ===== */
.cookie-banner {
  position: fixed; left: 50%; bottom: clamp(12px, 3vw, 28px); transform: translateX(-50%) translateY(20px);
  z-index: 1000; width: min(680px, calc(100% - 28px));
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.4rem;
  background: var(--white, #fff); color: var(--text, #1b1b1f);
  border: 1px solid var(--line, #eaeaec); border-radius: 18px;
  padding: 1.1rem 1.3rem; box-shadow: 0 24px 60px -22px rgba(20,2,12,.4);
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease, ease), transform .4s var(--ease, ease);
}
.cookie-banner.is-visible { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.cookie-banner__text { flex: 1 1 300px; font-size: .92rem; line-height: 1.45; color: var(--text-soft, #5a5168); }
.cookie-banner__text a { color: var(--magenta); font-weight: 600; }
.cookie-banner__actions { display: flex; gap: .6rem; flex: none; }
.cookie-banner__btn { font: inherit; font-size: .9rem; font-weight: 600; cursor: pointer; border-radius: 999px; padding: .6rem 1.15rem; border: 1px solid var(--line, #eaeaec); background: transparent; color: var(--text, #1b1b1f); transition: background .2s, color .2s, border-color .2s; }
.cookie-banner__btn:hover { border-color: var(--magenta); color: var(--magenta); }
.cookie-banner__btn--accept { background: var(--grad); border-color: transparent; color: #fff; }
.cookie-banner__btn--accept:hover { color: #fff; filter: brightness(1.05); }
@media (max-width: 520px) { .cookie-banner__actions { width: 100%; } .cookie-banner__btn { flex: 1; } }
@media (prefers-reduced-motion: reduce) { .cookie-banner { transition: opacity .2s ease; } }

/* Notificación push en vivo (teléfono del hero) */
.push-toast {
  position: absolute; top: 9.5%; left: 4%; right: 4%; z-index: 4;
  display: flex; align-items: center; gap: .55rem;
  background: rgba(255,255,255,.97); border-radius: 14px; padding: .55rem .7rem;
  box-shadow: 0 14px 34px -14px rgba(20,2,12,.4), 0 0 0 1px rgba(20,12,30,.05);
  transform: translateY(-135%); opacity: 0; pointer-events: none;
  transition: transform .55s var(--ease), opacity .4s ease;
}
.push-toast.show { transform: translateY(0); opacity: 1; }
.push-toast__ico { width: 26px; height: 26px; flex: none; }
.push-toast__body { flex: 1; min-width: 0; text-align: left; }
.push-toast__title { display: block; font-size: .58rem; letter-spacing: .03em; color: var(--text-faint); }
.push-toast__merchant { display: block; font-size: .76rem; font-weight: 700; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.push-toast__amt { font-size: .76rem; font-weight: 700; color: var(--magenta); flex: none; }

/* Features laterales */
.appfeat { position: absolute; z-index: 3; display: flex; align-items: flex-start; gap: .6rem; width: 232px; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: .8rem .9rem; box-shadow: 0 24px 46px -22px rgba(20,2,12,.42); opacity: 0; transform: translateY(16px) scale(.96); transition: opacity .22s ease, transform .22s ease; pointer-events: none; }
.appfeat__ic { width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(140deg, #0a0a0c 0%, #1a1013 42%, var(--burgundy) 100%); color: #fff; display: grid; place-items: center; flex: none; box-shadow: 0 6px 14px -6px rgba(96,8,64,.55); }
.appfeat__ic svg { width: 18px; height: 18px; color: #fff; stroke: #fff; }
.appfeat b { display: block; font-size: .92rem; color: var(--text); margin-bottom: 2px; line-height: 1.15; }
.appfeat span { font-size: .78rem; color: var(--text-soft); line-height: 1.25; }
.appfeat--l1, .appfeat--l2, .appfeat--l3, .appfeat--l4 { left: clamp(0px, 7vw, 140px); }
.appfeat--r1, .appfeat--r2, .appfeat--r3, .appfeat--r4 { right: clamp(0px, 7vw, 140px); }
.appfeat--l1, .appfeat--r1 { top: 23%; }
.appfeat--l2, .appfeat--r2 { top: 41%; }
.appfeat--l3, .appfeat--r3 { top: 28%; }
.appfeat--l4, .appfeat--r4 { top: 45%; }
[data-appshow][data-active="0"] .appfeat[data-step="0"],
[data-appshow][data-active="1"] .appfeat[data-step="1"],
[data-appshow][data-active="2"] .appfeat[data-step="2"],
[data-appshow][data-active="3"] .appfeat[data-step="3"] { opacity: 1; transform: translateY(0) scale(1); transition-delay: .18s; }

/* Indicador de pasos: puntos magenta clicables (navegan el recorrido) */
.appshow__dots { position: absolute; bottom: 6%; left: 50%; transform: translateX(-50%); display: flex; gap: 9px; z-index: 4; }
.appshow__dots button { width: 11px; height: 11px; padding: 0; border: none; cursor: pointer; border-radius: 50%; background: var(--line); transition: all .35s ease; }
.appshow__dots button:hover { background: var(--rosado); transform: scale(1.2); }
.appshow__dots button:focus-visible { outline: 2px solid var(--magenta); outline-offset: 3px; }
[data-appshow][data-active="0"] .appshow__dots button:nth-child(1),
[data-appshow][data-active="1"] .appshow__dots button:nth-child(2),
[data-appshow][data-active="2"] .appshow__dots button:nth-child(3),
[data-appshow][data-active="3"] .appshow__dots button:nth-child(4) { background: var(--magenta); width: 26px; border-radius: 99px; }

/* Movil: sin pin, celular arriba y features en una columna limpia y alineada */
@media (max-width: 860px) {
  .appshow__scroll { height: auto; }
  .appshow__sticky { position: static; height: auto; display: flex; flex-direction: column; align-items: center; gap: .7rem; padding: 1rem 0 0; }
  .appphone { order: -1; margin: 0 auto 1.6rem; }
  /* Todas las tarjetas al mismo ancho, centradas y con separación pareja */
  .appfeat { position: static; opacity: 1; transform: none; width: 100%; max-width: 440px; margin: 0; }
  .appfeat--l1, .appfeat--l2, .appfeat--l3, .appfeat--l4,
  .appfeat--r1, .appfeat--r2, .appfeat--r3, .appfeat--r4 { left: auto; right: auto; top: auto; }
  .appshow__dots { display: none; }
  .appphone__ui { transform: none !important; }
}

/* Hero a dos columnas: texto a la izquierda, imagen a la derecha */
.page-hero--split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; text-align: left; }
.page-hero--split .eyebrow { display: block; margin-bottom: .7rem; }
.page-hero--split h1 { margin: 0; }
.page-hero--split p { margin: 1.2rem 0 0; max-width: 48ch; }
.page-hero--split .page-hero__actions { justify-content: flex-start; }
.page-hero__copy { min-width: 0; }
.page-hero__copy h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; letter-spacing: -.02em; line-height: 1.15; margin: 1.6rem 0 .6rem; }
.page-hero__copy .split__list { margin-top: 1.2rem; }
.page-hero__visual { min-width: 0; display: flex; justify-content: center; }
.page-hero__visual img { width: 100%; max-width: 520px; height: auto; display: block; }
.page-hero__visual .media-panel { width: 100%; }
@media (max-width: 860px) {
  .page-hero--split { grid-template-columns: 1fr; text-align: center; }
  .page-hero--split .page-hero__actions { justify-content: center; }
  .page-hero--split p { margin-left: auto; margin-right: auto; }
  .page-hero__visual { order: -1; }
  .page-hero__visual img { max-width: 360px; }
}

/* Split feature rows */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.split + .split { margin-top: 5rem; }
.split--rev .split__media { order: 2; }
.split__text h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 700; letter-spacing: -.02em; line-height: 1.12; margin: .5rem 0 1rem; }
.split__text p { color: var(--text-soft); font-size: 1.1rem; }
.split__list { list-style: none; margin-top: 1.4rem; display: flex; flex-direction: column; gap: .8rem; }
.split__list li { display: flex; gap: .7rem; align-items: flex-start; font-weight: 500; }
.split__list li::before { content: "✓"; flex: 0 0 22px; height: 22px; margin-top: 2px; display: grid; place-items: center; border-radius: 50%; background: var(--grad); color: #fff; font-size: .72rem; }

/* Media panel (gradient frame) */
.media-panel {
  position: relative; border-radius: var(--radius-lg); padding: 2rem; min-height: 320px;
  background: var(--crudo); border: 1px solid var(--line); display: grid; place-items: center; overflow: hidden;
}
.media-panel--dark { background: var(--grad-dark); color: #fff; }
.media-panel--dark .mockui { box-shadow: 0 24px 55px -18px rgba(8, 4, 12, .55); }

/* ===== Recreación de pantallas del app (marco de teléfono) ===== */
.phone-stage { display: grid; place-items: center; padding: 2.5rem 1rem; background: radial-gradient(110% 90% at 50% 0%, rgba(222,3,77,.12), transparent 62%); border-radius: var(--radius-lg); }
.phone { position: relative; width: 300px; max-width: 100%; aspect-ratio: 300 / 620; background: #0b0410; border-radius: 46px; padding: 9px; box-shadow: 0 45px 90px -35px rgba(11,4,16,.55); }
.phone__scr { position: relative; width: 100%; height: 100%; background: #f1ebee; border-radius: 38px; overflow: hidden; display: flex; flex-direction: column; font-size: 11px; line-height: 1.3; color: var(--ink); }
.phone__island { position: absolute; top: 9px; left: 50%; transform: translateX(-50%); width: 80px; height: 19px; background: #0b0410; border-radius: 20px; z-index: 6; }
.ap-status { display: flex; justify-content: space-between; align-items: center; padding: 11px 18px 2px; font-weight: 600; font-size: 11px; }
.ap-status__r { display: flex; gap: 4px; align-items: center; }
.ap-status__r i { width: 13px; height: 13px; }
.ap-head { display: flex; align-items: center; gap: 7px; padding: 7px 15px 11px; }
.ap-head__logo { width: 21px; height: 21px; object-fit: contain; }
.ap-head__hi { font-family: var(--font-display); font-weight: 700; font-size: 14px; }
.ap-head__ic { margin-left: auto; display: flex; gap: 11px; color: var(--ink); }
.ap-head__ic i { width: 17px; height: 17px; }
.ap-scroll { flex: 1; overflow: hidden; padding: 0 13px 6px; }
.ap-title { font-family: var(--font-display); font-weight: 700; font-size: 16px; margin: 3px 0 9px; }
.ap-title b { color: var(--magenta); }
.ap-pockets { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ap-pocket { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 9px 10px; }
.ap-pocket__ic { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 6px; }
.ap-pocket__ic i { width: 15px; height: 15px; }
.ap-pocket__name { color: var(--text-soft); font-size: 10px; }
.ap-pocket__amt { font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: -.01em; }
.ap-pocket--food { border-color: #bfe6cf; } .ap-pocket--food .ap-pocket__ic { background: #d8f0e0; color: #1d9e6e; }
.ap-pocket--mob { border-color: #bcd8f0; } .ap-pocket--mob .ap-pocket__ic { background: #d6e8f8; color: #2f7fd0; }
.ap-pocket--dot { border-color: #f3c9da; } .ap-pocket--dot .ap-pocket__ic { background: #fadbe7; color: #c43e74; }
.ap-pocket--gift { border-color: #f3dcb0; } .ap-pocket--gift .ap-pocket__ic { background: #fbecca; color: #c98a14; }
.ap-dots { display: flex; justify-content: center; gap: 5px; margin: 9px 0; }
.ap-dots i { width: 5px; height: 5px; border-radius: 50%; background: #cdc6cf; display: block; }
.ap-dots i.on { width: 14px; border-radius: 5px; background: var(--ink); }
.ap-sh { display: flex; justify-content: space-between; align-items: baseline; margin: 4px 0 7px; }
.ap-sh b { font-family: var(--font-display); font-weight: 700; font-size: 13px; }
.ap-sh span { color: var(--ink); font-weight: 600; font-size: 10px; text-decoration: underline; }
.ap-mov { display: flex; align-items: center; gap: 9px; background: #fff; border-radius: 12px; padding: 8px 10px; margin-bottom: 6px; }
.ap-mov__ic { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid; display: grid; place-items: center; flex: none; }
.ap-mov__ic i { width: 12px; height: 12px; }
.ap-mov__ic--out { border-color: #e6a3c0; color: var(--magenta); }
.ap-mov__ic--in { border-color: #a9d8bd; color: #1d9e6e; }
.ap-mov__m b { font-size: 11px; font-weight: 600; display: block; }
.ap-mov__m span { color: var(--text-soft); font-size: 9px; }
.ap-mov__a { margin-left: auto; font-weight: 700; font-size: 11px; }
.ap-mov__a--out { color: var(--magenta); } .ap-mov__a--in { color: #1d9e6e; }
.ap-cta { background: #fff; border-radius: 14px; padding: 10px 11px; margin-top: 3px; }
.ap-cta__row { display: flex; align-items: center; gap: 8px; }
.ap-cta__t { font-size: 9.5px; color: var(--text-soft); }
.ap-cta__t b { display: block; font-family: var(--font-display); font-weight: 700; font-size: 12.5px; color: var(--ink); margin-top: 1px; }
.ap-cta__t b i { color: var(--magenta); font-style: normal; }
.ap-cta__card { width: 52px; height: 33px; border-radius: 6px; background: linear-gradient(135deg,#241a2b,#0d0712); flex: none; }
.ap-cta__btn { margin-top: 8px; background: var(--magenta); color: #fff; text-align: center; border-radius: 9px; padding: 8px; font-weight: 600; font-size: 11px; }
.ap-nav { display: flex; justify-content: space-around; align-items: center; padding: 8px 6px 11px; background: #faf6f8; border-top: 1px solid var(--line); }
.ap-nav__it { display: flex; flex-direction: column; align-items: center; gap: 2px; color: var(--text-faint); font-size: 9px; }
.ap-nav__it i { width: 18px; height: 18px; }
.ap-nav__it.on { color: var(--magenta); }

/* ===== App wireframe (representación simple con color) ===== */
.wfstage { display: grid; place-items: center; padding: 2.5rem 1rem; }
.wf { position: relative; width: 300px; max-width: 100%; background: #fff; border: 1.5px solid #d8d2d7; border-radius: 44px; box-shadow: 0 28px 55px -30px rgba(40,10,50,.18); overflow: hidden; }
.wf__in { padding: 26px 22px 30px; color: #2e2836; min-height: 500px; }
.wf__notch { width: 44px; height: 5px; border-radius: 5px; background: #e4dee3; margin: 0 auto 26px; }
.wf__head { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; }
.wf__dot { width: 18px; height: 18px; border-radius: 50%; background: var(--magenta); flex: none; }
.wf__head span { font-size: 14px; font-weight: 600; color: #8a8390; }
.wf__bal { margin-bottom: 28px; }
.wf__bal-l { font-size: 10px; color: #aaa3b0; letter-spacing: .1em; margin-bottom: 7px; }
.wf__bal-n { font-family: var(--font-display); font-size: 34px; font-weight: 700; letter-spacing: -.02em; color: #2e2836; line-height: 1; }
.wf__rule { height: 1px; background: #ece7eb; margin-top: 16px; }
.wf__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.wf__box { border: 1px solid #e6e0e5; border-radius: 16px; padding: 15px; }
.wf__ic { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 12px; }
.wf__ic svg { width: 18px; height: 18px; }
.wf__name { font-size: 12px; color: #9a93a6; }
.wf__amt { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: #3a3442; }
.wf__box--food .wf__ic { background: #e3f4ea; color: #1d9e6e; }
.wf__box--mob .wf__ic { background: #e4eefb; color: #2f7fd0; }
.wf__box--dot .wf__ic { background: #fbe7f0; color: #c43e74; }
.wf__box--gift .wf__ic { background: #fbf0d8; color: #c98a14; }

/* ===== Set de wireframes (5 funcionalidades) ===== */
.wf-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 2.6rem 2rem; margin-top: 2.6rem; }
.wf-item { display: flex; flex-direction: column; align-items: center; width: 280px; max-width: 100%; }
.wf-item .wf { width: 100%; }
.wf-cap { text-align: center; margin-top: 1.3rem; max-width: 262px; }
.wf-cap b { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; margin-bottom: .2rem; }
.wf-cap span { color: var(--text-soft); font-size: .9rem; line-height: 1.5; }
.wf-card { border-radius: 14px; padding: 13px 15px; min-height: 80px; display: flex; flex-direction: column; justify-content: space-between; margin-bottom: 11px; }
.wf-card--tall { min-height: 104px; margin-bottom: 18px; }
.wf-card__brand { font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.wf-card__foot { display: flex; justify-content: space-between; align-items: flex-end; font-size: 11px; }
.wf-card__visa { font-family: var(--font-display); font-weight: 700; font-style: italic; font-size: 13px; }
.wf-card--virtual { background: #fff; border: 1px solid #e0dae0; color: #2e2836; }
.wf-card--fisica { background: #15101a; color: #fff; }
.wf-card--amparada { background: var(--burgundy); color: #fff; }
.wf-acts { display: flex; justify-content: space-around; margin: 18px 0; }
.wf-act { display: flex; flex-direction: column; align-items: center; gap: 7px; font-size: 11px; color: #8a8390; }
.wf-act__c { width: 46px; height: 46px; border-radius: 50%; background: #f4eef1; display: grid; place-items: center; color: var(--magenta); }
.wf-act__c svg { width: 19px; height: 19px; }
.wf-status { display: flex; align-items: center; gap: 11px; border: 1px solid #e6e0e5; border-radius: 14px; padding: 13px 15px; }
.wf-status__ic { width: 32px; height: 32px; border-radius: 9px; background: #f4eef1; display: grid; place-items: center; color: #8a8390; flex: none; }
.wf-status__ic svg { width: 17px; height: 17px; }
.wf-status__t { font-size: 11px; color: #9a93a6; }
.wf-status__t b { display: block; font-size: 14px; color: #1d9e6e; font-weight: 600; margin-top: 2px; }
.wf-field-l { font-size: 10px; color: #aaa3b0; letter-spacing: .08em; margin-bottom: 6px; }
.wf-row2 { display: flex; align-items: center; gap: 10px; border: 1px solid #e6e0e5; border-radius: 12px; padding: 10px 12px; margin-bottom: 15px; }
.wf-row2__ic { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; flex: none; }
.wf-row2__ic svg { width: 15px; height: 15px; }
.wf-row2__ic--food { background: #e3f4ea; color: #1d9e6e; }
.wf-row2__av { width: 28px; height: 28px; border-radius: 50%; background: #ece7f0; color: #6f6677; display: grid; place-items: center; font-size: 11px; font-weight: 600; flex: none; }
.wf-row2__t b { display: block; font-size: 12px; color: #2e2836; }
.wf-row2__t span { font-size: 11px; color: #9a93a6; }
.wf-amount { font-family: var(--font-display); font-weight: 700; font-size: 26px; color: #2e2836; margin-bottom: 18px; }
.wf-btn { background: var(--magenta); color: #fff; text-align: center; border-radius: 11px; padding: 11px; font-weight: 600; font-size: 13px; }
.wf-field { border: 1px solid #e6e0e5; border-radius: 12px; padding: 10px 13px; margin-bottom: 11px; }
.wf-field__l { font-size: 11px; color: #aaa3b0; }
.wf-field__v { font-size: 13px; color: #2e2836; }
.wf-note { display: flex; align-items: flex-start; gap: 7px; font-size: 11px; color: #9a93a6; line-height: 1.45; margin: 4px 0 16px; }
.wf-note svg { width: 14px; height: 14px; color: #b0a9b6; flex: none; margin-top: 1px; }
.wf-card__visa-img { height: 13px; width: auto; display: block; }
.wf-card--virtual .wf-card__visa-img { filter: brightness(0); opacity: .72; }
.wf-card--fisica .wf-card__visa-img, .wf-card--amparada .wf-card__visa-img { filter: brightness(0) invert(1); }
.wf-card__top { display: flex; justify-content: space-between; align-items: center; }
.wf-card__nfc { display: inline-flex; transform: rotate(90deg); }
.wf-card__nfc svg { width: 15px; height: 15px; }
.wf-chips { line-height: 1; }
.wf-chips span { display: inline-block; font-size: 11px; border: 1px solid #e6e0e5; border-radius: 7px; padding: 4px 8px; margin: 0 5px 6px 0; color: #6f6677; }
.wf-wallets { display: flex; gap: 7px; margin: 13px 0 16px; }
.wf-wallet { display: flex; align-items: center; justify-content: center; gap: 5px; border: 1px solid #e6e0e5; border-radius: 9px; padding: 7px 8px; font-size: 10.5px; font-weight: 600; color: #2e2836; flex: 1; }
.wf-wallet svg { width: 13px; height: 13px; flex: none; }
.wf-wallet--apple svg { fill: #1a1320; }
.wf-stat { font-family: var(--font-display); font-weight: 700; font-size: 30px; letter-spacing: -.02em; color: var(--magenta); }
.wf-stat-l { font-size: 12px; color: #6f6677; margin-top: 2px; }
.wf-msg { font-size: 11.5px; color: #8a8390; line-height: 1.5; margin-top: 14px; }
.wf-check { display: flex; align-items: center; gap: 10px; border: 1px solid #e6e0e5; border-radius: 12px; padding: 11px 13px; margin-bottom: 10px; }
.wf-check__c { width: 24px; height: 24px; border-radius: 50%; background: #e3f4ea; color: #1d9e6e; display: grid; place-items: center; flex: none; }
.wf-check__c svg { width: 14px; height: 14px; }
.wf-check > span { font-size: 12px; color: #2e2836; }
.wf-shield { display: flex; align-items: center; gap: 11px; background: #f4eef1; border-radius: 12px; padding: 12px 13px; margin-top: 6px; }
.wf-shield__ic { width: 30px; height: 30px; border-radius: 8px; background: #fff; color: var(--magenta); display: grid; place-items: center; flex: none; }
.wf-shield__ic svg { width: 16px; height: 16px; }
.wf-shield__t { font-size: 11px; color: #9a93a6; }
.wf-shield__t b { display: block; font-size: 13px; color: #2e2836; font-weight: 600; }

/* ===== Tarjeta real (intro app, estilo Figma) ===== */
.realcard-stage { display: grid; place-items: center; padding: 2.5rem 1rem; background: radial-gradient(110% 90% at 50% 25%, rgba(222,3,77,.10), transparent 60%); border-radius: var(--radius-lg); }
.realcard { position: relative; width: 340px; max-width: 100%; aspect-ratio: 1.586 / 1; border-radius: 20px; padding: 24px 26px; display: flex; flex-direction: column; box-shadow: 0 35px 70px -30px rgba(11,4,16,.55); }
.realcard--fisica { background: linear-gradient(150deg, #2a1f33 0%, #0d0712 72%); color: #fff; }
.realcard__top { display: flex; justify-content: space-between; align-items: flex-start; }
.realcard__brand { height: 24px; width: auto; }
.realcard__nfc { display: inline-flex; transform: rotate(90deg); opacity: .8; }
.realcard__nfc svg { width: 22px; height: 22px; }
.realcard__chip { width: 40px; height: 30px; border-radius: 7px; background: linear-gradient(135deg, #c9a24e, #efdca0); margin-top: 18px; }
.realcard__num { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: .16em; opacity: .8; margin-top: 16px; }
.realcard__foot { margin-top: auto; display: flex; justify-content: space-between; align-items: flex-end; }
.realcard__type { font-size: .85rem; letter-spacing: .03em; opacity: .85; }
.realcard__visa { height: 22px; width: auto; filter: brightness(0) invert(1); }
@media (prefers-reduced-motion: no-preference) { .realcard { animation: wf-float 7s ease-in-out infinite; } }

/* ===== Plataforma: wireframes de dashboard (ventana de navegador) ===== */
.dashshow { max-width: 940px; margin: 0 auto; }
.dashshow__item { margin-top: 3.6rem; }
.dashshow__head { text-align: center; max-width: 620px; margin: 0 auto 1.5rem; }
.dash { background: #fff; border: 1.5px solid #d8d2d7; border-radius: 16px; box-shadow: var(--shadow-soft); overflow: hidden; color: #2e2836; }
.dash__bar { display: flex; align-items: center; gap: 8px; padding: 11px 14px; border-bottom: 1px solid #eee7eb; background: #faf6f8; }
.dash__bar i.d { width: 10px; height: 10px; border-radius: 50%; background: #e4dee3; display: block; }
.dash__url { margin-left: 8px; font-size: 11px; color: #aaa3b0; border: 1px solid #ece6ea; border-radius: 7px; padding: 3px 12px; display: inline-flex; align-items: center; gap: 5px; }
.dash__url svg { width: 11px; height: 11px; }
.dash__body { display: flex; min-height: 360px; }
.dash__side { width: 172px; border-right: 1px solid #eee7eb; padding: 16px 13px; flex: none; display: flex; flex-direction: column; }
.dash__logo { display: flex; align-items: center; gap: 7px; margin-bottom: 18px; font-size: 13px; font-weight: 600; }
.dash__logo i.dot { width: 18px; height: 18px; border-radius: 50%; background: var(--magenta); display: block; }
.dash__nav { display: flex; align-items: center; gap: 9px; font-size: 12px; color: #8a8390; padding: 7px 9px; border-radius: 8px; margin-bottom: 2px; }
.dash__nav svg { width: 15px; height: 15px; }
.dash__nav.is-on { color: var(--magenta); background: #fbe9f0; font-weight: 600; }
.dash__nav:not(.is-on):hover { background: #f4eef1; }
.dash-hint { display: inline-flex; align-items: center; gap: 8px; margin-top: 1.1rem; font-size: .85rem; font-weight: 600; color: var(--magenta); background: #fbe9f0; border-radius: 999px; padding: 7px 16px; transition: opacity .4s; }
.dash-hint__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--magenta); flex: none; }
@media (prefers-reduced-motion: no-preference) {
  .dash-hint__dot { animation: hintPulse 1.5s ease-in-out infinite; }
  @keyframes hintPulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.55); opacity: .45; } }
  .dashshow:not(.touched) .dash__nav:not(.is-on) { animation: navNudge 2.2s ease-in-out infinite; }
  @keyframes navNudge { 0%, 100% { background: transparent; } 50% { background: #f7eef2; } }
}
.dash__org { margin-top: auto; display: flex; align-items: center; gap: 8px; border-top: 1px solid #eee7eb; padding-top: 12px; font-size: 11px; color: #6f6677; line-height: 1.25; }
.dash__org i.ic { width: 24px; height: 24px; border-radius: 7px; background: #ece7f0; color: #6f6677; display: grid; place-items: center; flex: none; }
.dash__org i.ic svg { width: 13px; height: 13px; }
.dash__org small { color: #aaa3b0; display: block; }
.dash__main { flex: 1; padding: 16px 18px; min-width: 0; }
.dash__top { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.dash__title { font-size: 1rem; font-weight: 700; font-family: var(--font-display); }
.dash__tools { display: flex; align-items: center; gap: 9px; flex: none; }
.dash__search { font-size: 11px; color: #aaa3b0; border: 1px solid #ece6ea; border-radius: 8px; padding: 5px 10px; display: inline-flex; align-items: center; gap: 5px; }
.dash__search svg { width: 12px; height: 12px; }
.dash__av { width: 26px; height: 26px; border-radius: 50%; background: #ece7f0; color: #6f6677; display: grid; place-items: center; font-size: 11px; font-weight: 600; flex: none; }
.dash__sub { font-size: 11px; color: #9a93a6; margin: 3px 0 14px; }
.dash__btnrow { display: flex; align-items: center; gap: 8px; }
.dash__pill { font-size: 11px; border: 1px solid #ece6ea; border-radius: 8px; padding: 6px 11px; color: #6f6677; display: inline-flex; align-items: center; gap: 5px; }
.dash__pill svg { width: 13px; height: 13px; }
.dash__cards { display: flex; gap: 10px; margin-bottom: 14px; }
.dash__card { flex: 1; border: 1px solid #e6e0e5; border-radius: 11px; padding: 11px 13px; }
.dash__card b { display: block; font-size: 18px; font-weight: 700; font-family: var(--font-display); }
.dash__card span { font-size: 10.5px; color: #9a93a6; }
.dash__label { font-size: 10.5px; color: #aaa3b0; letter-spacing: .05em; margin-bottom: 8px; }
.dash__cats { display: flex; gap: 8px; margin-bottom: 15px; }
.dash__cat { flex: 1; border: 1px solid #e6e0e5; border-radius: 10px; padding: 9px 11px; }
.dash__cat-h { display: flex; align-items: center; gap: 6px; font-size: 11px; color: #6f6677; margin-bottom: 6px; }
.dash__cat-h i.d { width: 7px; height: 7px; border-radius: 50%; display: block; }
.dash__cat b { font-size: 13px; font-weight: 600; font-family: var(--font-display); }
.dash__barbg { height: 3px; border-radius: 3px; background: #e9e3e8; margin-top: 7px; }
.dash__barbg i { display: block; height: 3px; border-radius: 3px; }
.dash__table { border: 1px solid #e6e0e5; border-radius: 11px; overflow: hidden; margin-bottom: 14px; }
.dash__th, .dash__tr { display: flex; align-items: center; padding: 9px 13px; gap: 8px; }
.dash__th { font-size: 10.5px; color: #aaa3b0; border-bottom: 1px solid #eee7eb; background: #fbf8fa; }
.dash__tr { font-size: 11.5px; border-bottom: 1px solid #f1ecf0; }
.dash__tr:last-child { border-bottom: 0; }
.dash__who { display: flex; align-items: center; gap: 8px; }
.dash__who i.av { width: 22px; height: 22px; border-radius: 50%; background: #ece7f0; color: #6f6677; display: grid; place-items: center; font-size: 9.5px; font-weight: 600; font-style: normal; flex: none; }
.dash__chip { font-size: 10px; border-radius: 6px; padding: 2px 7px; }
.dash__chip--ok { background: #e3f4ea; color: #1d8a60; }
.dash__chip--wait { background: #fcefd6; color: #9a6a12; }
.dash__chip--neutral { background: #efeaf0; color: #6f6677; }
.dash__actions { display: flex; justify-content: flex-end; gap: 9px; }
.dash__btn { font-size: 12px; border-radius: 9px; padding: 8px 18px; font-weight: 600; }
.dash__btn--primary { background: var(--magenta); color: #fff; }
.dash__btn--ghost { border: 1px solid #e6e0e5; color: #6f6677; }
.dash__toggle { width: 32px; height: 18px; border-radius: 99px; background: var(--magenta); position: relative; flex: none; }
.dash__toggle i { position: absolute; top: 2px; right: 2px; width: 14px; height: 14px; border-radius: 50%; background: #fff; }
.dash__toggle--off { background: #d8d2d7; }
.dash__toggle--off i { right: auto; left: 2px; }
.dash__chart { display: flex; align-items: flex-end; gap: 8px; height: 92px; padding: 8px 4px 0; border-bottom: 1px solid #eee7eb; margin-bottom: 14px; }
.dash__chart i { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(180deg, #f2a9c6, var(--magenta)); display: block; }
.dash__exp { display: flex; align-items: center; gap: 10px; border: 1px solid #e6e0e5; border-radius: 11px; padding: 10px 13px; margin-bottom: 8px; }
.dash__exp i.ic { width: 30px; height: 30px; border-radius: 8px; background: #f4eef1; color: var(--magenta); display: grid; place-items: center; flex: none; }
.dash__exp i.ic svg { width: 15px; height: 15px; }
.dash__exp b { font-size: 12px; font-weight: 500; display: block; }
.dash__exp span { font-size: 10.5px; color: #9a93a6; }
.dash__exp .dl { margin-left: auto; font-size: 11px; color: var(--magenta); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.dash__exp .dl svg { width: 13px; height: 13px; }
@media (max-width: 700px) { .dash__side { display: none; } .dash__cats { flex-wrap: wrap; } .dash__cat { flex: 1 1 44%; } }
@keyframes wf-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@media (prefers-reduced-motion: no-preference) {
  .wf-item .wf { animation: wf-float 7s ease-in-out infinite; }
  .wf-item:nth-child(2) .wf { animation-delay: -1.3s; }
  .wf-item:nth-child(3) .wf { animation-delay: -2.7s; }
  .wf-item:nth-child(4) .wf { animation-delay: -4s; }
  .wf-item:nth-child(5) .wf { animation-delay: -5.2s; }
}
.media-panel img { max-width: 100%; height: auto; border-radius: 16px; display: block; }

/* Mock UI inside media panel */
.mockui { width: 100%; max-width: 360px; background: #fff; color: var(--ink); border-radius: 18px; box-shadow: var(--shadow-card); overflow: hidden; }
.mockui__bar { display: flex; gap: .4rem; padding: .8rem 1rem; border-bottom: 1px solid var(--line); }
.mockui__bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--crudo); }
.mockui__body { padding: 1.2rem; display: flex; flex-direction: column; gap: .8rem; }
.mockui__row { display: flex; justify-content: space-between; align-items: center; padding: .8rem 1rem; border-radius: 12px; background: var(--crudo); font-size: .9rem; font-weight: 600; }
.mockui__row b { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; align-items: stretch; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2.2rem 2rem;
  display: flex; flex-direction: column; box-shadow: var(--shadow-soft); transition: transform .4s var(--ease);
}
.price-card:hover { transform: translateY(-6px); }
.price-card--featured { background: var(--ink); color: #fff; border: none; position: relative; }
.price-card--featured .price-card__price { color: #fff; }
.price-card__badge { position: absolute; top: 1.2rem; right: 1.2rem; font-size: .72rem; font-weight: 600; padding: .25rem .7rem; border-radius: 999px; background: var(--grad); }
.price-card h3 { font-size: 1.4rem; font-weight: 600; }
.price-card__desc { color: var(--text-soft); font-size: .96rem; margin: .4rem 0 1.2rem; min-height: 2.6em; }
.price-card--featured .price-card__desc { color: rgba(255,255,255,.7); }
.price-card__price { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; letter-spacing: -.02em; line-height: 1; }
.price-card__price small { font-size: .95rem; font-weight: 500; color: var(--text-faint); }
.price-card__feats { list-style: none; margin: 1.6rem 0; display: flex; flex-direction: column; gap: .7rem; font-size: .96rem; }
.price-card__feats li { display: flex; gap: .6rem; }
.price-card__feats li::before { content: "✓"; color: var(--magenta); font-weight: 700; }
.price-card--featured .price-card__feats li::before { color: var(--rosado); }
.price-card .btn { margin-top: auto; width: 100%; }
/* Precios: 4 segmentos por monto dispersado/mes */
.price-card { padding: 1.9rem 1.6rem; }
.price-card h3 { font-size: 1.3rem; }
.price-card__desc { font-size: .92rem; margin: .35rem 0 1rem; min-height: 3.2em; }
.price-card__scope { display: flex; flex-direction: column; gap: 3px; padding: 10px 12px; margin: 0 0 1.1rem; background: #faf6f8; border: 1px solid var(--line); border-radius: 12px; }
.price-card__disp { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--ink); letter-spacing: -.01em; }
.price-card__colab { font-size: .8rem; color: var(--text-faint); display: inline-flex; align-items: center; gap: 5px; }
.price-card__colab i, .price-card__colab svg { width: 13px; height: 13px; flex: none; }
.price-card__price { font-size: 2.3rem; }
.price-card__price small { font-size: .9rem; }
.price-card--featured .price-card__scope { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .16); }
.price-card--featured .price-card__disp { color: #fff; }
.price-card--featured .price-card__colab { color: rgba(255, 255, 255, .65); }
.price-card__feats { margin: 1.3rem 0; gap: .6rem; font-size: .92rem; }
.pricing__note { max-width: 980px; margin: 1.6rem auto 0; text-align: center; font-size: .86rem; color: var(--text-faint); line-height: 1.55; }
.pricing__note b { color: var(--text-soft); font-weight: 600; }
/* Franja "Sin costos ocultos" · resalta que no hay cobros adicionales */
.pricing-free { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .7rem 1.5rem; max-width: 980px; margin: 1.8rem auto 0; padding: 1.1rem 1.6rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.pricing-free__lead { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.pricing-free__lead i, .pricing-free__lead svg { width: 19px; height: 19px; color: var(--magenta); }
.pricing-free__items { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 1.1rem; }
.pricing-free__items span { display: inline-flex; align-items: center; gap: 6px; font-size: .92rem; font-weight: 500; color: var(--text-soft); }
.pricing-free__items i, .pricing-free__items svg { width: 15px; height: 15px; color: #1d9e6e; flex: none; }
/* "Todo lo de X" · banda de herencia entre segmentos, debe destacar */
.price-card__inherits { display: inline-flex; align-items: center; gap: 6px; align-self: flex-start; font-size: .84rem; font-weight: 700; color: var(--magenta); background: #fbe9f0; border-radius: 8px; padding: 7px 12px; margin: 1.3rem 0 .55rem; letter-spacing: -.005em; }
.price-card__inherits::before { content: "+"; font-size: 1.1rem; line-height: 0; font-weight: 700; }
.price-card__inherits + .price-card__feats { margin-top: 0; }
.price-card--featured .price-card__inherits { background: rgba(255, 255, 255, .14); color: #fff; }

/* Audience tabs (empresa / empleado) */
.tabs { display: flex; flex-direction: column; align-items: center; }
.tabs__switch { display: inline-flex; gap: .3rem; padding: .35rem; background: var(--crudo); border-radius: 999px; margin: 0 auto 2.8rem; }
.tabs__btn { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; cursor: pointer; border: none; background: transparent; color: var(--text-soft); padding: .7rem 1.5rem; border-radius: 999px; transition: all .3s var(--ease); white-space: nowrap; }
.tabs__btn:hover { color: var(--text); }
.tabs__btn.is-active { background: var(--grad); color: #fff; box-shadow: 0 10px 24px -10px rgba(221,3,77,.5); }
.tabs__panel { display: none; width: 100%; }
.tabs__panel.is-active { display: block; animation: tabfade .5s var(--ease); }
@keyframes tabfade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* Generic value cards (3-up) */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.vcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-soft); }
.vcard__icon { font-size: 1.8rem; width: 54px; height: 54px; display: grid; place-items: center; background: var(--crudo); border-radius: 14px; margin-bottom: 1rem; }
.vcard h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: .5rem; }
.vcard p { color: var(--text-soft); font-size: .98rem; }
.section--soft, .section--soft .vcard, .vcard__icon { transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease); }

/* "Gana tu empresa, gana tu gente": al activar el tab "Para tu equipo"
   la sección entera pasa a tema oscuro (fondo negro + textos blancos).
   "Para tu empresa" se queda como está. */
#para-todos:has(.tabs__btn[data-tab="empleado"].is-active) { background: #030303; }
#para-todos:has(.tabs__btn[data-tab="empleado"].is-active) .section__title,
#para-todos:has(.tabs__btn[data-tab="empleado"].is-active) .vcard h3 { color: #fff; }
#para-todos:has(.tabs__btn[data-tab="empleado"].is-active) .section__lead { color: rgba(255,255,255,.72); }
#para-todos:has(.tabs__btn[data-tab="empleado"].is-active) .vcard p { color: rgba(255,255,255,.68); }
#para-todos:has(.tabs__btn[data-tab="empleado"].is-active) .vcard {
  background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); box-shadow: none;
}
#para-todos:has(.tabs__btn[data-tab="empleado"].is-active) .vcard__icon { background: rgba(255,255,255,.08); }

/* Contact layout */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: var(--maxw); margin: 0 auto; padding: 2rem 24px 5rem; align-items: start; }
.contact__info h2 { font-size: clamp(1.8rem,3.4vw,2.5rem); font-weight: 700; letter-spacing: -.02em; }
.contact__info p { color: var(--text-soft); font-size: 1.1rem; margin-top: 1rem; }
.contact__points { list-style: none; margin-top: 1.8rem; display: flex; flex-direction: column; gap: 1rem; }
.contact__points li { display: flex; gap: .8rem; align-items: center; font-weight: 500; }
.contact__points span { flex: 0 0 40px; height: 40px; display: grid; place-items: center; background: var(--crudo); border-radius: 12px; font-size: 1.1rem; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2.2rem; box-shadow: var(--shadow-card); }
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.field label { font-size: .9rem; font-weight: 600; }
.field input, .field select, .field textarea {
  padding: .9rem 1.1rem; border-radius: 14px; border: 1px solid var(--line); background: var(--crudo);
  font-family: inherit; font-size: 1rem; color: var(--text);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--magenta); background: #fff; box-shadow: 0 0 0 3px rgba(221,3,77,.18); }
.form-card .btn { width: 100%; margin-top: .4rem; }
.form-success { background: var(--crudo); border-radius: 16px; padding: 2rem; text-align: center; font-weight: 600; color: var(--burgundy); }

/* Timeline (Nuestra historia) */
.timeline { max-width: 720px; margin: 0 auto; }
.tl-item { position: relative; padding: 0 0 2.2rem 2.4rem; border-left: 2px solid var(--line); }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: -8px; top: 3px; width: 14px; height: 14px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 0 5px rgba(221,3,77,.12); }
.tl-item .tl-year { font-family: var(--font-display); font-weight: 700; color: var(--magenta); font-size: 1.05rem; }
.tl-item h3 { font-size: 1.25rem; font-weight: 600; margin: .15rem 0 .35rem; letter-spacing: -.01em; }
.tl-item p { color: var(--text-soft); }

/* Respaldo band */
.backing { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.5rem; align-items: center; background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: clamp(2rem,4vw,3.5rem); }
.backing h2 { font-size: clamp(1.7rem,3.2vw,2.4rem); font-weight: 700; letter-spacing: -.02em; line-height: 1.12; }
.backing p { color: rgba(255,255,255,.75); font-size: 1.08rem; margin-top: 1rem; }
.backing__stats { display: grid; gap: 1rem; }
.backing__stat { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; padding: 1.2rem 1.4rem; }
.backing__stat b { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; display: block; background: linear-gradient(120deg,#fff,var(--rosado)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.backing__stat span { color: rgba(255,255,255,.7); font-size: .92rem; }
@media (max-width: 860px) { .backing { grid-template-columns: 1fr; } }

/* ===================================================================
   ARTÍCULO DE BLOG (post)
   =================================================================== */
.article-head { max-width: 768px; margin: 0 auto; padding: 7.5rem 24px 0; }
.article-back { display: inline-flex; align-items: center; gap: .35rem; color: var(--magenta); font-weight: 600; font-size: .92rem; margin-bottom: 1.6rem; }
.article-back svg { width: 16px; height: 16px; }
.article-tag { display: inline-block; font-size: .74rem; font-weight: 600; text-transform: none; letter-spacing: .02em; color: var(--magenta); background: var(--paper-2); padding: .3rem .8rem; border-radius: 999px; margin-bottom: 1.1rem; }
.article-head h1 { font-size: clamp(2rem, 4.2vw, 3rem); font-weight: 700; letter-spacing: -.02em; line-height: 1.12; }
.article-meta { display: flex; flex-wrap: wrap; gap: .4rem .9rem; align-items: center; margin-top: 1.2rem; color: var(--text-faint); font-size: .92rem; }
.article-meta .sep { opacity: .5; }
.article-lead { font-size: 1.25rem; color: var(--text-soft); line-height: 1.5; margin-top: 1.4rem; }
.article-cover { max-width: 1000px; margin: 2.2rem auto 0; height: clamp(160px, 26vw, 280px); border-radius: var(--radius-lg); background: var(--grad-dark); position: relative; overflow: hidden; }
.article-cover::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px); background-size: 5px 5px; }
.article-body { max-width: 760px; margin: 0 auto; padding: 2.4rem 24px 2rem; }
.article-body h2 { font-size: 1.55rem; font-weight: 700; letter-spacing: -.01em; margin: 2.4rem 0 .8rem; line-height: 1.2; }
.article-body h3 { font-size: 1.2rem; font-weight: 600; margin: 1.8rem 0 .5rem; }
.article-body p { color: var(--text-soft); font-size: 1.1rem; line-height: 1.75; margin-bottom: 1.1rem; }
.article-body ul { padding-left: 1.3rem; margin: 0 0 1.2rem; }
.article-body li { color: var(--text-soft); font-size: 1.06rem; line-height: 1.6; margin-bottom: .55rem; }
.article-body strong { color: var(--text); font-weight: 600; }
.article-hl { border-left: 3px solid var(--magenta); background: var(--paper-2); padding: 1rem 1.3rem; margin: 1.8rem 0; border-radius: 0 12px 12px 0; font-family: var(--font-display); font-size: 1.18rem; line-height: 1.4; color: var(--text); }
.article-foot { max-width: 760px; margin: 0 auto; padding: 1.4rem 24px 0; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }

/* Legal prose */
.prose { max-width: 760px; margin: 0 auto; padding: 2rem 24px 5rem; }
.prose h2 { font-size: 1.5rem; font-weight: 700; margin: 2.2rem 0 .8rem; letter-spacing: -.01em; }
.prose p, .prose li { color: var(--text-soft); font-size: 1.04rem; margin-bottom: .8rem; line-height: 1.7; }
.prose ul { padding-left: 1.2rem; }
.prose strong { color: var(--text); }
.prose__updated { color: var(--text-faint); font-size: .9rem; margin-bottom: 2rem; }

/* CTA band (reusable, lighter than full cta) */
.ctaband { max-width: var(--maxw); margin: 0 auto; padding: 4rem 24px 6rem; }

/* ===================================================================
   CASOS DE ÉXITO
   =================================================================== */
/* Filter chips */
.filters { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 2.6rem; }
.filter-chip {
  font-family: inherit; font-size: .92rem; font-weight: 600; cursor: pointer;
  padding: .55rem 1.2rem; border-radius: 999px; border: 1px solid var(--line);
  background: #fff; color: var(--text-soft); transition: all .3s var(--ease);
}
.filter-chip:hover { border-color: var(--magenta); color: var(--magenta); }
.filter-chip.is-active { background: var(--grad); color: #fff; border-color: transparent; box-shadow: 0 10px 24px -10px rgba(221,3,77,.5); }

/* Spotlight featured case */
.spotlight {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; color: #fff;
  background: var(--grad-dark); padding: clamp(2rem,4vw,3.5rem);
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.5rem; align-items: center;
}
.spotlight::before { content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%; top: -40%; right: -10%; background: radial-gradient(circle, rgba(253,149,193,.35), transparent 65%); filter: blur(40px); }
.spotlight > * { position: relative; }
.spotlight__tag { display: inline-block; font-size: .78rem; font-weight: 600; letter-spacing: .02em; text-transform: none; padding: .3rem .8rem; border-radius: 999px; background: rgba(255,255,255,.16); margin-bottom: 1.2rem; }
.spotlight__quote { font-family: var(--font-display); font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 600; line-height: 1.25; letter-spacing: -.01em; }
.spotlight__who { margin-top: 1.4rem; }
.spotlight__who strong { display: block; font-size: 1.05rem; }
.spotlight__who span { color: rgba(255,255,255,.7); font-size: .92rem; }
.spotlight__metrics { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.metric-tile { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 18px; padding: 1.4rem; backdrop-filter: blur(6px); }
.metric-tile__num { font-family: var(--font-display); font-size: clamp(2rem,4vw,2.8rem); font-weight: 700; letter-spacing: -.03em; line-height: 1; background: linear-gradient(120deg,#fff,var(--rosado)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.metric-tile__label { font-size: .9rem; color: rgba(255,255,255,.75); margin-top: .5rem; }
.case-keystat { text-align: center; padding: .25rem 24px 2.25rem; }
.case-keystat__num { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(3rem,8vw,4.6rem); line-height: 1; letter-spacing: -.03em; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.case-keystat__label { display: block; margin-top: .4rem; font-size: .8rem; font-weight: 600; color: var(--text-soft); text-transform: none; letter-spacing: .02em; }
.case-extra { max-width: 820px; margin: 0 auto; padding: 0 24px 1rem; }
.case-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.case-gallery img, .case-gallery__ph { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); display: block; }
.case-gallery__ph { display: grid; place-items: center; background: var(--paper-2); border: 1px dashed var(--line); color: var(--text-faint); font-size: .85rem; text-align: center; padding: 1rem; }
.case-quote { margin: 0 0 1rem; padding: 1.6rem 1.9rem; background: var(--paper-2); border-left: 4px solid var(--magenta); border-radius: 0 var(--radius) var(--radius) 0; }
.case-quote__text { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.25rem, 2.4vw, 1.6rem); line-height: 1.4; color: var(--ink); }
.case-quote__by { margin-top: 1rem; display: flex; align-items: center; gap: .7rem; font-size: .92rem; color: var(--text-soft); }
.case-quote__by img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.case-quote__by b { color: var(--ink); font-weight: 600; }
.case-special { max-width: 980px; margin: 0 auto 1rem; padding: 0 24px; }
.case-special__inner { background: var(--grad); color: #fff; border-radius: var(--radius-lg); padding: 2.4rem 2rem; text-align: center; }
.case-special__eyebrow { display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: .02em; text-transform: none; background: rgba(255,255,255,.18); padding: .35rem .85rem; border-radius: 999px; margin-bottom: 1rem; }
.case-special__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.6rem, 4vw, 2.3rem); line-height: 1.15; margin-bottom: .8rem; }
.case-special__title span { text-decoration: underline; text-decoration-color: rgba(255,255,255,.55); text-underline-offset: 5px; }
.case-special p { color: rgba(255,255,255,.92); max-width: 640px; margin: 0 auto 1.6rem; font-size: 1.02rem; line-height: 1.6; }
.case-special p b { font-weight: 700; }
.case-special__stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.5rem; }
.case-special__stats b { display: block; font-family: var(--font-display); font-weight: 700; font-size: 2.2rem; line-height: 1; }
.case-special__stats span { display: block; margin-top: .3rem; font-size: .82rem; color: rgba(255,255,255,.85); }

/* Case grid */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.case-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow-soft); overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
  display: flex; flex-direction: column;
}
.case-card::after { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.case-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -28px rgba(156,3,87,.32); border-color: transparent; }
.case-card:hover::after { transform: scaleX(1); }
.case-card.is-hidden { display: none; }
.case-card__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.4rem; }
.case-card__tag { font-size: .74rem; font-weight: 600; letter-spacing: .02em; text-transform: none; color: var(--magenta); background: var(--crudo); padding: .3rem .7rem; border-radius: 999px; }
.case-card__logo { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: #fff; background: var(--grad); font-size: 1.1rem; }
.case-card__metric { font-family: var(--font-display); font-size: clamp(2.4rem,4vw,3rem); font-weight: 700; letter-spacing: -.03em; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.case-card__metric-label { color: var(--text-soft); font-weight: 600; margin: .4rem 0 1.1rem; }
.case-card__quote { color: var(--text-soft); font-size: 1rem; line-height: 1.5; margin-bottom: 1.4rem; }
.case-card__foot { margin-top: auto; display: flex; flex-direction: column; gap: .1rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.case-card__foot strong { font-size: 1rem; }
.case-card__foot span { color: var(--text-faint); font-size: .88rem; }

/* Tarjeta clickable + pista de testimonio */
.case-card.is-clickable { cursor: pointer; }
.spotlight.is-clickable { cursor: pointer; }
.case-card__more { display: inline-flex; align-items: center; gap: .4rem; margin-top: -.4rem; margin-bottom: 1.2rem; font-weight: 600; font-size: .9rem; color: var(--magenta); }
.spotlight__more { display: inline-flex; align-items: center; gap: .45rem; margin-top: 1.4rem; font-weight: 600; color: #fff; background: rgba(255,255,255,.16); padding: .55rem 1.1rem; border-radius: 999px; font-size: .92rem; backdrop-filter: blur(6px); transition: background .3s; }
.spotlight.is-clickable:hover .spotlight__more { background: rgba(255,255,255,.28); }

/* Modal de caso de éxito */
.case-modal { position: fixed; inset: 0; z-index: 1100; display: none; align-items: center; justify-content: center; padding: 24px; }
.case-modal.open { display: flex; }
.case-modal__backdrop { position: absolute; inset: 0; background: rgba(3,3,3,.62); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); animation: fadein .3s; }
.case-modal__panel { position: relative; background: #fff; border-radius: var(--radius-lg); padding: clamp(1.5rem,4vw,2.6rem); max-width: 680px; width: 100%; max-height: 90vh; overflow: auto; box-shadow: var(--shadow-card); animation: tabfade .4s var(--ease); }
.case-modal__close { position: absolute; top: 1rem; right: 1rem; width: 40px; height: 40px; border-radius: 50%; border: none; background: var(--crudo); font-size: 1.5rem; line-height: 1; cursor: pointer; color: var(--text); transition: .2s; z-index: 2; }
.case-modal__close:hover { background: var(--magenta); color: #fff; }
.case-modal__head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.4rem; padding-right: 2.5rem; }
.case-modal__logo { flex: 0 0 auto; width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: #fff; background: var(--grad); font-size: 1.4rem; }
.case-modal__head h3 { font-size: 1.5rem; font-weight: 700; letter-spacing: -.01em; }
.case-modal__sector { color: var(--magenta); font-weight: 600; font-size: .9rem; }
.case-modal__video { position: relative; aspect-ratio: 16/9; border-radius: 18px; overflow: hidden; background: var(--grad-dark); display: grid; place-items: center; margin-bottom: 1.4rem; }
.case-modal__video video, .case-modal__video iframe { width: 100%; height: 100%; object-fit: cover; border: 0; }
.case-modal__play { width: 72px; height: 72px; border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center; color: var(--magenta); box-shadow: 0 10px 30px -8px rgba(0,0,0,.4); }
.case-modal__play svg { width: 28px; height: 28px; margin-left: 3px; }
.case-modal__vlabel { position: absolute; bottom: .9rem; left: 1.1rem; color: #fff; font-size: .85rem; font-weight: 600; opacity: .92; }
.case-modal__highlight { font-size: 1.1rem; color: var(--text-soft); line-height: 1.55; margin-bottom: 1.5rem; }
.case-modal__metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: .8rem; margin-bottom: 1.6rem; }
.cm-metric { background: var(--crudo); border-radius: 14px; padding: 1.1rem .8rem; text-align: center; }
.cm-metric__n { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; letter-spacing: -.02em; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.cm-metric__l { font-size: .82rem; color: var(--text-soft); margin-top: .2rem; }
body.modal-open { overflow: hidden; }
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
@media (max-width: 560px) { .case-modal__metrics { grid-template-columns: 1fr 1fr; } }

@media (max-width: 980px) {
  .spotlight { grid-template-columns: 1fr; }
  .cases { grid-template-columns: 1fr; }
}

@media (max-width: 1200px) {
  .pricing { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  .split, .contact { grid-template-columns: 1fr; gap: 2rem; }
  .split--rev .split__media { order: 0; }
  .cards-3 { grid-template-columns: 1fr; }
  .page-hero { padding-top: 8.5rem; }
}
@media (max-width: 620px) {
  .pricing { grid-template-columns: 1fr; }
}

/* ===================================================================
   HERO CARD, Visa logo
   =================================================================== */
.bink-card__visa { height: 24px; width: auto; filter: brightness(0) invert(1); opacity: 1; }

/* ===================================================================
   WALLET BADGES (Apple Wallet / Google Pay)
   =================================================================== */
.wallets { display: inline-flex; gap: .7rem; flex-wrap: wrap; align-items: center; }
.wallets__label { display: block; font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: none; color: var(--text-faint); margin-bottom: .7rem; }
.wallet-badge { display: inline-flex; align-items: center; gap: .55rem; padding: .6rem 1rem; border-radius: 12px; font-weight: 600; font-size: .92rem; cursor: default; transition: transform .25s var(--ease); }
.wallet-badge:hover { transform: translateY(-2px); }
.wallet-badge--apple { background: #000; color: #fff; }
.wallet-badge--google { background: #fff; color: #3c4043; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.wallet-badge svg { height: 18px; width: auto; display: block; }
.wallet-badge--apple svg { fill: #fff; }
.hero__wallets { margin-top: 1.6rem; }

/* ===================================================================
   COMPARATIVA (tabla vs alternativas)
   =================================================================== */
.compare-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); background: #fff; }
.compare { width: 100%; border-collapse: collapse; min-width: 640px; }
.compare th, .compare td { padding: 1.1rem 1.3rem; text-align: center; border-bottom: 1px solid var(--line); font-size: .98rem; }
.compare thead th { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--text); background: var(--paper-2); }
.compare thead th .sub { display: block; font-family: var(--font-body); font-size: .78rem; font-weight: 500; color: var(--text-faint); }
.compare tbody th { text-align: left; font-weight: 600; color: var(--text); font-size: .96rem; }
.compare tr:last-child td, .compare tr:last-child th { border-bottom: none; }
.compare .col-bink { background: rgba(221,3,77,.05); position: relative; }
.compare thead .col-bink { background: var(--grad); color: #fff; border-top-right-radius: 0; }
.compare thead .col-bink .sub { color: rgba(255,255,255,.85); }
.compare .yes svg { width: 22px; height: 22px; color: #1ca64c; }
.compare .no svg { width: 20px; height: 20px; color: var(--text-faint); opacity: .55; }
.compare .col-bink .yes svg { color: var(--magenta); }
.compare td.val { font-weight: 500; color: var(--text-soft); }
.compare td.col-bink.val { font-weight: 600; color: var(--magenta); }
.compare__note { text-align: center; color: var(--text-faint); font-size: .85rem; margin-top: 1rem; }

/* ===================================================================
   BOLSILLO, tarjeta clickable + chips de comercios
   =================================================================== */
.pocket { text-decoration: none; }
.pocket__go { display: inline-flex; align-items: center; gap: .3rem; padding-top: 1rem; color: var(--rosado); font-weight: 600; font-size: .9rem; }
.pocket__go svg { width: 15px; height: 15px; }
.chips-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.4rem; }
.chip-tag { background: var(--paper-2); border: 1px solid var(--line); border-radius: 999px; padding: .5rem 1rem; font-weight: 500; font-size: .92rem; display: inline-flex; gap: .45rem; align-items: center; }
.chip-tag svg { width: 16px; height: 16px; color: var(--magenta); }
.bolsillo-ico { width: 60px; height: 60px; display: inline-grid; place-items: center; background: var(--grad); border-radius: 18px; margin-bottom: 1.2rem; }
.bolsillo-ico svg { width: 30px; height: 30px; color: #fff; }

/* ===== Íconos de bolsillos: el cuadro toma el tono del propio bolsillo. ===== */
/* Tokens de color de los 10 bolsillos (skill bink-bolsillos) */
[data-cat="alimentacion"]       { --cat-tint: rgba(59,144,90,.15); }
[data-cat="trabajo-remoto"]     { --cat-tint: rgba(201,65,67,.14); }
[data-cat="movilidad"]          { --cat-tint: rgba(52,136,179,.15); }
[data-cat="educacion"]          { --cat-tint: rgba(74,79,188,.14); }
[data-cat="dotacion"]           { --cat-tint: rgba(170,59,119,.14); }
[data-cat="viaticos"]           { --cat-tint: rgba(126,70,156,.14); }
[data-cat="regalo"]             { --cat-tint: rgba(216,163,56,.18); }
[data-cat="recreacion-turismo"] { --cat-tint: rgba(169,62,158,.14); }
[data-cat="salud"]              { --cat-tint: rgba(68,196,188,.15); }
[data-cat="bienestar"]          { --cat-tint: rgba(49,165,200,.15); }

/* Iconos 2.0: ya traen su círculo (color @ 20%), contenedor transparente */
.pocket__emoji.pocket__emoji--new { width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; background: transparent; margin-bottom: .8rem; }
.pocket__emoji--new img { width: 100%; height: 100%; object-fit: contain; display: block; }
.hp__pic.hp__pic--new, .sig__p-ic.sig__p-ic--new, .usecat__ic.usecat__ic--new { background: transparent; }
.hp__pic--new img, .sig__p-ic--new img, .usecat__ic--new img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* El SVG (viewBox normalizado, glifo centrado al 64%) es transparente salvo el
   glifo: el tinte del contenedor (--cat-tint) se ve detrás → contenedor del
   color del bolsillo. Doble clase para ganar al fondo base de cada contenedor. */
/* Versatilidad (cuadro 40px) */
.usecat__ic.usecat__ic--3d { background: var(--cat-tint, rgba(221,3,77,.1)); }
.usecat__ic--3d img { width: 100%; height: 100%; object-fit: contain; display: block; }
/* Hero de página de bolsillo (cuadro grande) */
.bolsillo-ico.bolsillo-ico--3d { width: 96px; height: 96px; border-radius: 24px; background: var(--cat-tint, var(--grad)); }
.bolsillo-ico--3d img { width: 100%; height: 100%; object-fit: contain; display: block; }
/* Grilla beneficios: cuadro tintado del color del bolsillo */
.pocket__emoji.pocket__emoji--3d { width: 76px; height: 76px; border-radius: 18px; display: grid; place-items: center; background: var(--cat-tint, rgba(255,255,255,.06)); margin-bottom: 1rem; font-size: 0; }
.pocket__emoji--3d img { width: 100%; height: 100%; object-fit: contain; display: block; }
/* Home: sección "muchos bolsillos" (cuadro 38px) */
.sig__p-ic.sig__p-ic--3d, .sig__pocket.is-on .sig__p-ic.sig__p-ic--3d { background: var(--cat-tint, transparent); }
.sig__p-ic--3d img { width: 100%; height: 100%; object-fit: contain; display: block; }
/* Home: mockup app (cuadro 38px) */
.hp__pic.hp__pic--3d { background: var(--cat-tint, transparent); }
.hp__pic--3d img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* ===================================================================
   CASE LOGOS (real, color, on white chip)
   =================================================================== */

.case-card__logo {
  width: auto; min-width: 52px; height: 44px; background: #fff; border: 1px solid var(--line);
  border-radius: 10px; padding: 5px 9px; display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
}
.case-card__logo img { max-height: 32px; max-width: 104px; width: auto; object-fit: contain; display: block; }
.case-card__logo--text { background: var(--grad); border: none; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: .02em; box-shadow: var(--shadow-soft); }
.case-card__metric--text { font-size: 1.4rem; line-height: 1.15; margin-bottom: 1.1rem; }
/* Bink Flex · casos de uso (grid 2×2) + franja de bolsillos */
.usecases { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.flex-pockets { text-align: center; margin-top: 2.4rem; }
.flex-pockets__label { display: block; color: var(--text-soft); font-weight: 600; margin-bottom: 1rem; }
.flex-pockets__chips { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; }
.flex-pockets__chips span { display: inline-flex; align-items: center; gap: 7px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .55rem 1.05rem; font-weight: 600; font-size: .95rem; color: var(--ink); box-shadow: var(--shadow-soft); }
.flex-pockets__chips i, .flex-pockets__chips svg { width: 16px; height: 16px; color: var(--magenta); }
.flex-pockets__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 1.2rem; color: var(--magenta); font-weight: 600; }
.flex-pockets__link i, .flex-pockets__link svg { width: 16px; height: 16px; }
@media (max-width: 720px) { .usecases { grid-template-columns: 1fr; } }
/* Panel destacado de cada subsección de caso de uso */
.flex-case-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(2.2rem, 4vw, 3rem); min-height: 230px; display: grid; place-content: center; text-align: center; box-shadow: var(--shadow-card); }
.flex-case-panel > i, .flex-case-panel > svg { width: 30px; height: 30px; margin: 0 auto 1rem; color: var(--magenta); }
.flex-case-panel__big { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.1rem, 4.5vw, 2.9rem); line-height: 1.05; letter-spacing: -.02em; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.flex-case-panel__sub { margin: .8rem auto 0; color: var(--text-soft); font-size: .98rem; max-width: 26ch; }
/* primera subsección separada del encabezado del capítulo */
.section__head + .split { margin-top: 2.6rem; }
/* anclas del dropdown Bink Flex: no quedar bajo el nav fijo */
#casos-de-uso, #bolsillos, #calculadora { scroll-margin-top: 90px; }
/* Banda destacada "¿buscas ahorro en salario?" → Bink Flex */
.flex-cta { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; background: var(--grad-dark); color: #fff; border-radius: var(--radius-lg); padding: clamp(2rem, 4vw, 3rem); box-shadow: var(--shadow-card); }
.flex-cta__text { max-width: 60ch; }
.flex-cta .eyebrow { color: var(--rosado); }
.flex-cta h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin: .3rem 0 .5rem; }
.flex-cta p { color: rgba(255, 255, 255, .82); }
.flex-cta .btn { flex: none; }
.btn--light { background: #fff; color: var(--magenta); }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -12px rgba(0, 0, 0, .35); }
@media (max-width: 720px) { .flex-cta { flex-direction: column; align-items: flex-start; } }
.link-arrow { display: inline-flex; align-items: center; gap: 6px; margin-top: .8rem; color: var(--magenta); font-weight: 600; }
.link-arrow i, .link-arrow svg { width: 16px; height: 16px; }
.link-arrow:hover { gap: 9px; }
/* Badge de gravabilidad en páginas de bolsillo flex */
.taxbadge { display: inline-flex; align-items: center; gap: 8px; margin-top: 1.3rem; padding: .55rem 1.1rem; border-radius: 999px; font-weight: 700; font-size: .95rem; }
.taxbadge i, .taxbadge svg { width: 18px; height: 18px; }
.taxbadge--ok { background: #e3f4ea; color: #1d8a60; }
.taxbadge--pacto { background: #fcefd6; color: #9a6a12; }
.spotlight__logo { display: inline-flex; align-items: center; height: 40px; background: #fff; border-radius: 10px; padding: 6px 12px; margin-bottom: 1.2rem; }
.spotlight__logo img { max-height: 26px; max-width: 130px; width: auto; object-fit: contain; }
.case-modal__logo.has-img { background: #fff; border: 1px solid var(--line); }
.case-modal__logo img { max-width: 40px; max-height: 36px; object-fit: contain; }

/* ===================================================================
   CALCULADORA de flexibilización salarial
   =================================================================== */
.calc-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; max-width: var(--maxw); margin: 0 auto; }
@media (max-width: 900px) { .calc-wrap { grid-template-columns: 1fr; gap: 2rem; } }
.calc-intro h2 { font-size: clamp(1.9rem,3.6vw,2.7rem); font-weight: 700; letter-spacing: -.02em; line-height: 1.1; margin: .5rem 0 1rem; }
.calc-intro p { color: var(--text-soft); font-size: 1.12rem; }
.calc-intro .split__list { margin-top: 1.4rem; }
.calc {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card); padding: 2rem;
}
.calc__field { margin-bottom: 1.1rem; }
.calc__field label { display: block; font-size: .9rem; font-weight: 600; color: var(--text-soft); margin-bottom: .45rem; }
.calc__inwrap { position: relative; }
.calc__inwrap .prefix { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-faint); font-size: .95rem; font-weight: 600; pointer-events: none; }
.calc__field input[type=text] {
  width: 100%; box-sizing: border-box; padding: .85rem 1rem .85rem 3.4rem;
  border: 1px solid var(--line); border-radius: 14px; font-family: inherit; font-size: 1.1rem; font-weight: 700;
  color: var(--text); font-variant-numeric: tabular-nums; background: var(--paper-2); transition: all .2s;
}
.calc__field input[type=text]:focus { outline: none; border-color: var(--magenta); background: #fff; box-shadow: 0 0 0 3px rgba(221,3,77,.12); }
.calc__hint { font-size: .8rem; color: var(--text-faint); margin-top: .35rem; }
.calc__sliderhead { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: .6rem; }
.calc__sliderhead b { color: var(--magenta); font-size: 1.05rem; font-variant-numeric: tabular-nums; }
.calc input[type=range] { width: 100%; -webkit-appearance: none; appearance: none; height: 6px; background: var(--paper-2); border-radius: 999px; outline: none; }
.calc input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--magenta); cursor: pointer; border: 3px solid #fff; box-shadow: var(--shadow-soft); }
.calc input[type=range]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--magenta); cursor: pointer; border: 3px solid #fff; }
.calc__result {
  margin-top: 1.5rem; padding: 1.6rem; background: var(--grad); color: #fff; border-radius: 20px;
  box-shadow: 0 16px 40px -14px rgba(221,3,77,.5); position: relative; overflow: hidden;
}
.calc__result .lbl { font-size: .78rem; text-transform: none; letter-spacing: .02em; opacity: .85; margin-bottom: .4rem; }
.calc__big { font-family: var(--font-display); font-size: clamp(2.2rem,5vw,3rem); font-weight: 800; letter-spacing: -.02em; line-height: 1; font-variant-numeric: tabular-nums; }
.calc__equiv { font-size: .95rem; opacity: .92; margin-top: .8rem; }
.calc__break { margin-top: 1.2rem; padding: 1rem 1.2rem; background: var(--paper-2); border-radius: 14px; }
.calc__break .r { display: flex; justify-content: space-between; padding: .35rem 0; font-size: .9rem; font-variant-numeric: tabular-nums; color: var(--text-soft); }
.calc__break .r b { color: var(--text); font-weight: 600; }
.calc__break .r.delta b { color: #1ca64c; }
.calc__foot { margin-top: 1rem; font-size: .76rem; color: var(--text-faint); text-align: center; line-height: 1.5; }

/* ===================================================================
   BLOG
   =================================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.post { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); transition: transform .4s var(--ease), box-shadow .4s; }
.post:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -28px rgba(156,3,87,.3); }
.post__thumb { aspect-ratio: 16/10; background: var(--grad-dark); position: relative; display: grid; place-items: center; overflow: hidden; }
.post__thumb span { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: rgba(255,255,255,.92); padding: 1.2rem; text-align: center; letter-spacing: -.01em; }
.post__thumb--2 { background: var(--grad); }
.post__thumb--3 { background: linear-gradient(135deg,#1a0a14,#9c0357); }
.post__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post__tag { align-self: flex-start; font-size: .72rem; font-weight: 600; text-transform: none; letter-spacing: .02em; color: var(--magenta); background: var(--paper-2); padding: .25rem .7rem; border-radius: 999px; margin-bottom: .9rem; }
.post__body h3 { font-size: 1.2rem; font-weight: 600; line-height: 1.25; margin-bottom: .5rem; }
.post__body p { color: var(--text-soft); font-size: .96rem; flex: 1; }
.post__meta { display: flex; align-items: center; gap: .5rem; margin-top: 1.1rem; color: var(--text-faint); font-size: .85rem; }
.post__more { color: var(--magenta); font-weight: 600; font-size: .92rem; margin-top: 1rem; display: inline-flex; align-items: center; gap: .3rem; }
.blog-featured { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); margin-bottom: 2.5rem; background: #fff; }
.blog-featured__media { background: var(--grad-dark); min-height: 320px; display: grid; place-items: center; padding: 2rem; }
.blog-featured__media span { font-family: var(--font-display); font-weight: 700; font-size: 1.8rem; color: #fff; text-align: center; letter-spacing: -.01em; }
.blog-featured__body { padding: clamp(2rem,4vw,3rem); align-self: center; }
.blog-featured__body h2 { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 700; letter-spacing: -.02em; line-height: 1.15; margin: .6rem 0 1rem; }
.blog-featured__body p { color: var(--text-soft); font-size: 1.08rem; }

/* ===================================================================
   NAV MEGA-MENU (Soluciones / Recursos)
   =================================================================== */
.nav__item { position: relative; }
.nav__trigger { display: inline-flex; align-items: center; gap: .3rem; cursor: pointer; background: none; border: none; font-family: inherit; font-size: .98rem; font-weight: 500; color: var(--text-soft); padding: 0; transition: color .25s; }
.nav__trigger:hover, .nav__item:hover .nav__trigger { color: var(--text); }
.nav__trigger svg { width: 15px; height: 15px; transition: transform .25s; }
.nav__item:hover .nav__trigger svg { transform: rotate(180deg); }
.mega {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(22px) saturate(180%); -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.65); border-radius: 26px;
  box-shadow: 0 18px 50px -20px rgba(20, 12, 30, .4), 0 1px 0 rgba(255,255,255,.7) inset;
  padding: 1.4rem; display: grid; gap: 1.6rem; opacity: 0; visibility: hidden; transition: all .28s var(--ease);
  z-index: 50;
}
.mega--cols3 { grid-template-columns: repeat(3, minmax(170px, 1fr)); width: 620px; }
.mega--cols1 { width: 250px; }

/* Mega dividido: riel de categorías + paneles que se despliegan al hover */
.mega--split { grid-template-columns: 210px 1fr; width: 700px; padding: 0; gap: 0; overflow: hidden; }
.mega__rail { display: flex; flex-direction: column; gap: .15rem; padding: .9rem; background: #1E1E1E; border-right: 1px solid rgba(255,255,255,.08); }
.mega__cat { display: flex; align-items: center; justify-content: space-between; gap: .5rem; width: 100%; text-align: left; background: transparent; border: 0; border-radius: 12px; padding: .72rem .8rem; font-family: inherit; font-weight: 600; font-size: .94rem; color: rgba(255,255,255,.82); cursor: pointer; transition: background .2s, color .2s; }
.mega__cat > i, .mega__cat > svg { width: 16px; height: 16px; color: rgba(255,255,255,.4); flex: none; transition: transform .2s, color .2s; }
.mega__cat:hover, .mega__cat.is-active { background: var(--burgundy); color: #fff; }
.mega__cat:hover > i, .mega__cat:hover > svg, .mega__cat.is-active > i, .mega__cat.is-active > svg { color: #fff; transform: translateX(2px); }
.mega__panes { padding: .9rem; min-width: 0; min-height: 230px; }
.mega__pane { display: none; grid-template-columns: 1fr 1fr; gap: .1rem .4rem; }
.mega__pane.is-active { display: grid; }
.mega__more { grid-column: 1 / -1; display: inline-flex; align-items: center; gap: .4rem; margin-top: .35rem; padding: .55rem .5rem; font-weight: 700; font-size: .82rem; color: var(--magenta); border-top: 1px solid var(--line); border-radius: 0 0 10px 10px; transition: gap .2s, color .2s; }
.mega__more:hover { gap: .65rem; color: var(--magenta-deep); }
.mega__more > i, .mega__more > svg { width: 15px; height: 15px; }
.mega__hub { margin-top: auto; display: flex; align-items: center; justify-content: center; gap: .5rem; padding: .72rem .85rem; border-radius: 12px; font-weight: 700; font-size: .9rem; color: var(--magenta); background: #fff; box-shadow: 0 8px 20px -10px rgba(0,0,0,.55); transition: transform .2s var(--ease), box-shadow .2s; }
.mega__hub:hover { transform: translateY(-2px); box-shadow: 0 12px 26px -10px rgba(0,0,0,.6); color: var(--magenta-deep); }
.mega__hub > i, .mega__hub > svg { width: 17px; height: 17px; flex: none; }
.m-acc__item--hub { font-weight: 700; color: var(--magenta); }
.nav__item:hover .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; } /* hover bridge */
.mega__col h5, .mega__coltitle { display: block; font-size: .74rem; text-transform: none; letter-spacing: .02em; color: var(--text-faint); margin-bottom: .7rem; font-weight: 600; }
.mega__link { display: flex; align-items: flex-start; gap: .7rem; padding: .5rem; border-radius: 12px; transition: background .2s; }
.mega__link:hover { background: var(--paper-2); }
.mega__link svg { width: 20px; height: 20px; color: var(--magenta); flex: 0 0 auto; margin-top: 2px; }
.mega__link img.mega__ico { width: 30px; height: 30px; flex: 0 0 auto; margin-top: -2px; }
.mega__link b { display: block; font-size: .95rem; font-weight: 600; color: var(--text); }
.mega__link span { display: block; font-size: .82rem; color: var(--text-faint); line-height: 1.35; }

/* ===================================================================
   REVEAL ANIMATIONS
   =================================================================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__blob, .bink-card, .bink-card__shine, .hero__ping, .marquee__track, .pill__dot, .grad-text { animation: none; }
  .grad-text { background-position: 0 50%; }
  .btn--primary::after, .hero__glow { display: none; }
  html { scroll-behavior: auto; }
}

/* ===================================================================
   MOMENTO FIRMA · un salario, muchos bolsillos (scroll signature)
   =================================================================== */
.signature { overflow: hidden; }
.sig { display: grid; grid-template-columns: .9fr 1.3fr; gap: 2.4rem; align-items: center; margin-top: 2.6rem; }
.sig__source { display: flex; align-items: center; gap: 1.2rem; }
.sig__card { flex: 1; position: relative; overflow: hidden; background: var(--grad); color: #fff; border-radius: var(--radius-lg); padding: 2rem 1.8rem; box-shadow: var(--shadow-card); }
.sig__card::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 80% at 110% -10%, rgba(255,255,255,.28), transparent 60%); pointer-events: none; }
.sig__src-label { display: block; font-size: .92rem; font-weight: 500; opacity: .92; }
.sig__total { display: block; font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; line-height: 1.08; margin: .35rem 0; font-variant-numeric: tabular-nums; }
.sig__src-foot { display: block; font-size: .85rem; opacity: .82; }
.sig__arrow { flex: none; color: var(--magenta); display: grid; place-items: center; }
.sig__arrow svg { width: 30px; height: 30px; }
.sig__pockets { display: grid; gap: .9rem; }
.sig__pocket { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.3rem; box-shadow: var(--shadow-soft); }
.sig__p-head { display: flex; align-items: center; gap: .8rem; }
.sig__p-ic { width: 38px; height: 38px; flex: none; border-radius: 12px; background: var(--paper-2); color: var(--text-soft); display: grid; place-items: center; transition: background .45s var(--ease), color .45s var(--ease); }
.sig__p-ic svg { width: 20px; height: 20px; }
.sig__pocket.is-on .sig__p-ic { background: rgba(221,3,77,.10); color: var(--magenta); }
.sig__p-name { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.sig__p-amt { margin-left: auto; font-weight: 700; color: var(--text); font-variant-numeric: tabular-nums; }
.sig__bar { margin-top: .8rem; height: 8px; border-radius: 999px; background: var(--paper-2); overflow: hidden; }
.sig__bar span { display: block; height: 100%; width: 0; border-radius: 999px; background: var(--grad); }
@media (max-width: 760px) {
  .sig { grid-template-columns: 1fr; gap: 1.6rem; }
  .sig__arrow { transform: rotate(90deg); }
  .sig__total { font-size: 2.2rem; }
}

/* Lenis smooth scroll (inercia) */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* ===== Announcement bar (franja de anuncios) ===== */
:root { --announce-h: 0px; }
.announce { position: fixed; top: 0; left: 0; right: 0; z-index: 950; background: #030303; color: #fff; }
.announce__inner { max-width: var(--maxw); margin: 0 auto; min-height: 44px; display: flex; align-items: center; justify-content: center; gap: 1rem; padding: .5rem 2.75rem; position: relative; }
.announce__text { display: inline-flex; align-items: center; gap: .5rem; font-size: .9rem; font-weight: 500; line-height: 1.4; text-align: center; }
.announce__text > svg { width: 16px; height: 16px; flex: none; }
.announce__link { text-decoration: underline; font-weight: 700; white-space: nowrap; }
.announce__link:hover { opacity: .85; }
.announce__close { position: absolute; right: .6rem; top: 50%; transform: translateY(-50%); background: transparent; border: none; color: #fff; cursor: pointer; opacity: .8; display: grid; place-items: center; padding: 4px; line-height: 0; }
.announce__close:hover { opacity: 1; }
.announce__close svg { width: 18px; height: 18px; }
/* la franja empuja el chrome y el contenido (var = 0px cuando no hay franja) */
.nav { top: var(--announce-h); }
.scroll-progress { top: var(--announce-h); }
.mobile-menu { top: calc(60px + var(--announce-h)); }
body { padding-top: var(--announce-h); }
@media (max-width: 560px) { .announce__inner { padding: .5rem 2.25rem .5rem .75rem; } .announce__text { font-size: .82rem; } }

/* ===== Banner de consentimiento de cookies ===== */
.cookie-consent { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1200; max-width: 720px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-card); padding: 1rem 1.25rem; }
.cookie-consent p { font-size: .9rem; color: var(--text-soft); margin: 0; flex: 1; min-width: 240px; }
.cookie-consent a { color: var(--magenta); text-decoration: underline; }
.cookie-consent__btns { display: flex; gap: .6rem; flex: none; }
.cookie-consent .btn { padding: .5rem 1.1rem; font-size: .9rem; }
@media (max-width: 560px) { .cookie-consent { flex-direction: column; align-items: stretch; text-align: center; } .cookie-consent__btns { justify-content: center; } }

/* ===== Video modal (hero "Ver cómo funciona") ===== */
.video-modal { position: fixed; inset: 0; z-index: 1300; display: none; align-items: center; justify-content: center; padding: 24px; }
.video-modal.open { display: flex; }
.video-modal__backdrop { position: absolute; inset: 0; background: rgba(8,4,12,.7); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.video-modal__box { position: relative; z-index: 1; max-width: 90vw; }
.video-modal__video { display: block; max-height: 86vh; max-width: 90vw; width: auto; height: auto; border-radius: var(--radius); box-shadow: 0 40px 120px -30px rgba(0,0,0,.7); background: #000; }
.video-modal__close { position: absolute; top: -14px; right: -14px; width: 40px; height: 40px; border-radius: 50%; background: #fff; color: var(--ink); border: none; cursor: pointer; display: grid; place-items: center; box-shadow: var(--shadow-soft); transition: transform .2s var(--ease); z-index: 2; }
.video-modal__close:hover { transform: scale(1.06); }
.video-modal__close svg { width: 20px; height: 20px; }
body.modal-open { overflow: hidden; }
@media (max-width: 560px) { .video-modal__close { top: 6px; right: 6px; } }

/* ===== Dónde usarlo (versatilidad por categoría) ===== */
.usecat { display: flex; flex-direction: column; gap: .9rem; margin-top: 2.4rem; }
.usecat__row { display: grid; grid-template-columns: 220px 1fr; gap: 1.5rem; align-items: center; padding: 1.1rem 1.4rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.usecat__cat { display: flex; align-items: center; gap: .7rem; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; }
.usecat__ic { width: 40px; height: 40px; flex: none; border-radius: 12px; background: rgba(221,3,77,.1); color: var(--magenta); display: grid; place-items: center; }
.usecat__ic svg { width: 20px; height: 20px; }
.usecat__brands { display: flex; flex-wrap: wrap; gap: .5rem; }
.usecat__brands span { font-size: .9rem; font-weight: 500; color: var(--text-soft); background: var(--paper-2); border: 1px solid var(--line); border-radius: 999px; padding: .4rem .9rem; }
.usecat__note { text-align: center; font-size: .82rem; color: var(--text-faint); margin-top: 1.4rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.usecat__note--light { color: rgba(255,255,255,.5); }
@media (max-width: 680px) { .usecat__row { grid-template-columns: 1fr; gap: .9rem; } }

/* ===== Nosotros: misión, equipo, prueba real ===== */
.mision-card { background: var(--grad); color: #fff; border-radius: var(--radius-lg); padding: 2.4rem; box-shadow: var(--shadow-card); position: relative; overflow: hidden; }
.mision-card__mark img { height: 38px; width: auto; }
.mision-card__big { font-family: var(--font-display); font-weight: 700; font-size: 2rem; line-height: 1.12; margin: 1.2rem 0 1.4rem; }
.mision-card__points { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.mision-card__points li { display: flex; align-items: center; gap: .6rem; font-size: 1rem; }
.mision-card__points svg { width: 18px; height: 18px; flex: none; opacity: .9; }
.team { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.4rem; margin-top: 2.4rem; }
.team__card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); padding: 1.8rem 1.4rem; text-align: center; }
.team__avatar { width: 88px; height: 88px; margin: 0 auto 1rem; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; overflow: hidden; }
.team__avatar img { width: 100%; height: 100%; object-fit: cover; }
.team__avatar svg { width: 38px; height: 38px; opacity: .85; }
.team__card figcaption strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; }
.team__card figcaption span { display: block; font-size: .9rem; color: var(--text-soft); margin-top: .15rem; }
.proof { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.2rem; margin-top: 2.4rem; }
.proof__card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-soft); padding: 1.8rem 1.4rem; text-align: center; }
.proof__logo { height: 30px; width: auto; max-width: 130px; object-fit: contain; margin: 0 auto .9rem; display: block; }
.proof__num { display: block; font-family: var(--font-display); font-weight: 700; font-size: 2.4rem; line-height: 1; color: var(--magenta); }
.proof__label { display: block; font-size: .9rem; color: var(--text-soft); margin-top: .3rem; }
.proof__cta { text-align: center; margin-top: 1.6rem; }
.proof__cta a { color: var(--magenta); font-weight: 600; }
@media (max-width: 560px) { .mision-card__big { font-size: 1.7rem; } }
.founder { display: flex; align-items: center; gap: 2rem; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); padding: 2rem 2.2rem; margin-top: 2.4rem; }
.founder__avatar { width: 120px; height: 120px; flex: none; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; overflow: hidden; }
.founder__avatar img { width: 100%; height: 100%; object-fit: cover; }
.founder__avatar svg { width: 52px; height: 52px; opacity: .85; }
.founder__body h3 { font-family: var(--font-display); font-size: 1.6rem; margin: .2rem 0 .1rem; }
.founder__role { display: block; color: var(--magenta); font-weight: 600; font-size: .95rem; margin-bottom: .6rem; }
.founder__body p { color: var(--text-soft); max-width: 52ch; }
.team__sub { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; text-align: center; margin-top: 3rem; }
@media (max-width: 640px) { .founder { flex-direction: column; text-align: center; gap: 1.2rem; } .founder__body p { margin-left: auto; margin-right: auto; } }
.team__bio { font-size: .9rem; color: var(--text-soft); line-height: 1.5; margin: .7rem 0 .8rem; }
.team__links { display: flex; gap: .5rem; justify-content: center; }
.founder .team__links { justify-content: flex-start; margin-top: .9rem; }
.team__social { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: var(--paper-2); color: var(--text-soft); transition: background .25s, color .25s; }
.team__social:hover { background: var(--magenta); color: #fff; }
.team__social svg { width: 17px; height: 17px; }
.team-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin-top: 2.4rem; }
.team-gallery__item { aspect-ratio: 4 / 3; border-radius: var(--radius); background: var(--paper-2); border: 1px solid var(--line); display: grid; place-items: center; color: var(--text-faint); overflow: hidden; }
.team-gallery__item img { width: 100%; height: 100%; object-fit: cover; }
.team-gallery__item svg { width: 30px; height: 30px; }
@media (max-width: 640px) { .founder .team__links { justify-content: center; } }

/* ===== Equipo dinámico (photo-forward + hover reveal) ===== */
.founder-x { display: flex; align-items: stretch; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); margin-top: 2.4rem; }
.founder-x__photo { flex: none; width: 38%; min-height: 300px; background: var(--grad); display: grid; place-items: center; color: rgba(255,255,255,.6); }
.founder-x__photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-x__photo svg { width: 64px; height: 64px; }
.founder-x__body { padding: 2.4rem; display: flex; flex-direction: column; justify-content: center; }
.founder-x__body h3 { font-family: var(--font-display); font-size: 1.7rem; margin: .3rem 0 .1rem; }
.founder-x__body p { color: var(--text-soft); max-width: 54ch; margin: .6rem 0 1rem; }
@media (max-width: 720px) { .founder-x { flex-direction: column; } .founder-x__photo { width: 100%; min-height: 0; aspect-ratio: 16 / 10; } }
/* Tarjeta de fundador · versión elevada (más decorada) */
.founder-x { position: relative; box-shadow: var(--shadow-card); }
.founder-x::after { content: ""; position: absolute; top: -35%; right: -8%; width: 360px; height: 360px; background: radial-gradient(circle, rgba(222, 3, 77, .12), transparent 70%); pointer-events: none; z-index: 0; }
.founder-x__photo, .founder-x__body { position: relative; z-index: 1; }
.founder-x__tag { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; line-height: 1.3; color: var(--ink); margin: .5rem 0 .2rem; max-width: 32ch; }
.founder-x__creds { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.1rem 0; }
.founder-x__creds span { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 600; color: var(--burgundy); background: #fbe9f0; border: 1px solid rgba(156, 3, 87, .13); border-radius: 999px; padding: 6px 12px; }
.founder-x__creds i, .founder-x__creds svg { width: 14px; height: 14px; color: var(--magenta); flex: none; }
.founder-x__creds .is-hl { background: var(--grad); color: #fff; border-color: transparent; box-shadow: 0 8px 20px -8px rgba(221, 3, 77, .5); }
.founder-x__creds .is-hl i, .founder-x__creds .is-hl svg { color: #fff; }
.team-dyn { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; margin-top: 2.4rem; }
.memb { position: relative; aspect-ratio: 3 / 4; border-radius: var(--radius); overflow: hidden; background: var(--grad); box-shadow: var(--shadow-soft); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.memb:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.memb__photo { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,.55); }
.memb__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.memb:hover .memb__photo img { transform: scale(1.07); }
.memb__photo svg { width: 54px; height: 54px; }
.memb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,4,12,.85) 0%, rgba(8,4,12,.3) 45%, transparent 72%); pointer-events: none; }
.memb__info { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.1rem 1.2rem 1.2rem; color: #fff; }
.memb__info strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; }
.memb__info > span { display: block; font-size: .85rem; color: var(--rosado); margin-top: .1rem; }
.memb__bio { font-size: .85rem; line-height: 1.45; color: rgba(255,255,255,.88); max-height: 0; opacity: 0; margin: 0; overflow: hidden; transition: max-height .45s var(--ease), opacity .35s, margin .45s var(--ease); }
.memb__link { display: inline-grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.16); color: #fff; max-height: 0; opacity: 0; overflow: hidden; transition: opacity .35s, max-height .45s, background .25s; }
.memb__link:hover { background: var(--magenta); }
.memb__link svg { width: 16px; height: 16px; }
.memb:hover .memb__bio { max-height: 9rem; opacity: 1; margin: .5rem 0 .75rem; }
.memb:hover .memb__link { max-height: 44px; opacity: 1; }
@media (hover: none) { .memb__bio { max-height: 9rem; opacity: 1; margin: .5rem 0 .75rem; } .memb__link { max-height: 44px; opacity: 1; } }
/* Pills de respaldo (dónde trabajó cada uno) · se revelan en hover como la bio */
.memb__pills { display: flex; flex-wrap: wrap; gap: 5px; max-height: 0; opacity: 0; overflow: hidden; margin: 0; transition: max-height .45s var(--ease), opacity .35s, margin .45s var(--ease); }
.memb:hover .memb__pills { max-height: 5rem; opacity: 1; margin: .55rem 0 .15rem; }
@media (hover: none) { .memb__pills { max-height: 5rem; opacity: 1; margin: .55rem 0 .15rem; } }
.memb__pills span { display: inline-flex; align-items: center; font-size: .68rem; font-weight: 600; color: #fff; background: rgba(255, 255, 255, .16); border: 1px solid rgba(255, 255, 255, .24); border-radius: 999px; padding: 3px 9px; }
.team-collage { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 130px; gap: 1rem; margin-top: 2.4rem; }
.team-collage__item { border-radius: var(--radius); background: var(--paper-2); border: 1px solid var(--line); display: grid; place-items: center; color: var(--text-faint); overflow: hidden; }
.team-collage__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.team-collage__item:hover img { transform: scale(1.05); }
.team-collage__item svg { width: 30px; height: 30px; }
.team-collage__item--big { grid-column: span 2; grid-row: span 2; }
@media (max-width: 640px) { .team-collage { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 120px; } }

/* ===== Hero portal (panel de administración animado, recreado del diseño) ===== */
.hp { position: relative; width: 100%; max-width: 920px; margin: 0 auto; }
.panel-stage { margin-top: 2.6rem; }

/* Panel: texto a la izquierda, interfaz a la derecha + giro en profundidad */
#panel .panel-layout { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: clamp(2rem, 4vw, 4rem); align-items: center; }
#panel .panel-head { text-align: left; max-width: none; margin: 0; min-width: 0; }
#panel .panel-stage { margin-top: 0; min-width: 0; perspective: 1700px; }
#panel .hp { max-width: none; overflow: hidden; border-radius: 22px; transform: perspective(1700px) rotateY(13deg); transition: transform .12s linear; will-change: transform; }
@media (max-width: 900px) {
  #panel .panel-layout { grid-template-columns: 1fr; gap: 2.2rem; }
  #panel .panel-head { text-align: center; }
  #panel .hp { transform: none; }
}
@media (prefers-reduced-motion: reduce) { #panel .hp { transform: none !important; } }
.hp__fit { width: 1040px; transform-origin: top left; }
.hp__win { width: 1040px; height: 620px; border-radius: 22px; background: #fff; overflow: hidden; border: 1px solid #F0E6EB; box-shadow: 0 4px 14px -4px rgba(96,8,64,.10), 0 44px 90px -34px rgba(96,8,64,.34); font-family: var(--font-body); animation: hp-float 8s ease-in-out infinite; will-change: transform; }
.hp__chrome { height: 46px; background: #F8F6F7; border-bottom: 1px solid #EFEAED; display: flex; align-items: center; gap: 14px; padding: 0 18px; }
.hp__dots { display: flex; gap: 7px; }
.hp__dots span { width: 11px; height: 11px; border-radius: 99px; }
.hp__dots span:nth-child(1) { background: #FF5F57; } .hp__dots span:nth-child(2) { background: #FEBC2E; } .hp__dots span:nth-child(3) { background: #28C840; }
.hp__url { flex: 1; max-width: 420px; height: 28px; border-radius: 8px; background: #fff; border: 1px solid #ECE6E9; display: flex; align-items: center; gap: 8px; padding: 0 12px; color: #A1A1AA; font: 500 12.5px/1 var(--font-body); }
.hp__urldot { width: 6px; height: 6px; border-radius: 99px; background: #31C859; }
.hp__body { display: flex; height: 574px; }
.hp__side { width: 188px; background: #1E1E1E; padding: 22px 16px; display: flex; flex-direction: column; gap: 5px; }
.hp__logo { height: 27px; width: auto; align-self: flex-start; margin: 2px 4px 20px; }
.hp__nav { display: flex; align-items: center; gap: 11px; padding: 11px 12px; border-radius: 10px; color: #A1A1AA; font: 500 13.5px/1 var(--font-body); }
.hp__nav svg { width: 17px; height: 17px; }
.hp__nav.is-active { background: var(--burgundy); color: #fff; font-weight: 600; box-shadow: 0 8px 18px -7px rgba(156,4,88,.7); }
.hp__user { margin-top: auto; display: flex; align-items: center; gap: 10px; padding: 11px; border-radius: 12px; background: rgba(255,255,255,.05); }
.hp__avatar { width: 32px; height: 32px; border-radius: 99px; background: var(--burgundy); color: #fff; display: flex; align-items: center; justify-content: center; font: 700 12px/1 var(--font-body); flex: none; }
.hp__user b { display: block; color: #fff; font: 600 12.5px/1.2 var(--font-body); }
.hp__user > div > span { display: block; color: #71717A; font: 500 11px/1.2 var(--font-body); margin-top: 2px; }
.hp__main { flex: 1; padding: 26px 30px; min-width: 0; }
.hp__head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 22px; }
.hp__eyebrow { font: 600 11px/1 var(--font-body); letter-spacing: .02em; text-transform: none; color: var(--burgundy); }
.hp__title { font: 700 30px/1.1 var(--font-display); letter-spacing: -.02em; color: #1E1E1E; margin-top: 4px; white-space: nowrap; }
.hp__actions { display: flex; align-items: center; gap: 12px; }
.hp__live { display: flex; align-items: center; gap: 7px; padding: 7px 12px; border-radius: 99px; background: #fff; border: 1px solid #EDE7EA; font: 600 11.5px/1 var(--font-body); color: #52525B; white-space: nowrap; }
.hp__livedot { position: relative; width: 8px; height: 8px; }
.hp__livedot > i { position: absolute; inset: 0; border-radius: 99px; background: #31C859; }
.hp__ping { left: 50%; top: 50%; width: 8px; height: 8px; transform: translate(-50%,-50%); border-radius: 99px; background: #31C859; animation: hp-ping 2.667s ease-out infinite; }
.hp__btn { display: flex; align-items: center; gap: 7px; padding: 11px 16px; border-radius: 12px; background: var(--burgundy); color: #fff; font: 600 13px/1 var(--font-body); box-shadow: 0 10px 22px -10px rgba(156,4,88,.7); white-space: nowrap; }
.hp__btn svg { width: 15px; height: 15px; }
.hp__kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 22px; }
.hp__kpi { border: 1px solid #EFEAED; border-radius: 14px; padding: 15px 17px; background: #fff; }
.hp__kpil { font: 600 11px/1 var(--font-body); letter-spacing: .04em; text-transform: none; color: #A1A1AA; }
.hp__kpiv { font: 800 26px/1 var(--font-body); letter-spacing: -.02em; color: #1E1E1E; margin: 10px 0 7px; font-variant-numeric: tabular-nums; white-space: nowrap; }
.hp__kpid { display: inline-flex; align-items: center; gap: 5px; font: 600 11.5px/1 var(--font-body); color: #31C859; }
.hp__kpid svg { width: 13px; height: 13px; }
.hp__kpi--pulse { animation: hp-kpi 8s ease-in-out infinite; }
.hp__cols { display: grid; grid-template-columns: 1.25fr 1fr; gap: 16px; }
.hp__card { border: 1px solid #EFEAED; border-radius: 16px; padding: 18px 18px 6px; }
.hp__cardhead { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; font: 600 15px/1 var(--font-body); color: #1E1E1E; }
.hp__link { font: 600 12px/1 var(--font-body); color: var(--burgundy); }
.hp__cardhead2 { font: 600 15px/1 var(--font-body); color: #1E1E1E; margin-bottom: 6px; }
.hp__pocket { display: grid; grid-template-columns: 38px 1fr 84px 116px; gap: 12px; align-items: center; padding: 11px 8px; border-radius: 10px; }
.hp__pocket--food { animation: hp-food 8s ease-in-out infinite; }
.hp__pic { width: 38px; height: 38px; border-radius: 10px; background: #FCE8EF; color: var(--burgundy); display: flex; align-items: center; justify-content: center; }
.hp__pic svg { width: 19px; height: 19px; }
.hp__pname { font: 600 14px/1.1 var(--font-body); color: #1E1E1E; }
.hp__pname small { display: block; font: 500 11px/1.2 var(--font-body); color: #A1A1AA; margin-top: 2px; }
.hp__bar { height: 6px; border-radius: 99px; background: #EDEDEF; overflow: hidden; }
.hp__bar i { display: block; height: 100%; border-radius: 99px; background: var(--burgundy); }
.hp__amt { font: 700 13.5px/1 var(--font-body); color: #1E1E1E; text-align: right; font-variant-numeric: tabular-nums; }
.hp__actnew { overflow: hidden; animation: hp-rowin 8s ease-in-out infinite; }
.hp__act { display: flex; gap: 11px; align-items: flex-start; padding: 11px 0; border-bottom: 1px solid #F2EFF0; }
.hp__act--last { border-bottom: none; }
.hp__actdot { width: 8px; height: 8px; border-radius: 99px; margin-top: 6px; flex: none; }
.hp__actnew .hp__actdot { animation: hp-hot 8s ease-in-out infinite; }
.hp__actmain { flex: 1; font: 500 13px/1.4 var(--font-body); color: #3F3F46; }
.hp__actmain b { color: #1E1E1E; font-weight: 600; }
.hp__actmeta { font: 500 11px/1 var(--font-body); color: #A1A1AA; margin-top: 3px; font-variant-numeric: tabular-nums; }
@keyframes hp-float { 0% { transform: translateY(0) scale(1); } 25% { transform: translateY(9px) scale(1.005); } 50% { transform: translateY(0) scale(1); } 75% { transform: translateY(-9px) scale(.995); } 100% { transform: translateY(0) scale(1); } }
@keyframes hp-ping { 0% { transform: translate(-50%,-50%) scale(1); opacity: .5; } 100% { transform: translate(-50%,-50%) scale(3.4); opacity: 0; } }
@keyframes hp-rowin { 0%,15% { max-height: 0; opacity: 0; transform: translateY(-18px); } 22%,80% { max-height: 56px; opacity: 1; transform: translateY(0); } 88%,100% { max-height: 0; opacity: 0; transform: translateY(14px); } }
@keyframes hp-hot { 0%,16% { box-shadow: 0 0 0 0 rgba(49,200,89,0); } 26% { box-shadow: 0 0 0 4px rgba(49,200,89,.18); } 45%,100% { box-shadow: 0 0 0 0 rgba(49,200,89,0); } }
@keyframes hp-food { 0%,17% { background: transparent; box-shadow: inset 0 0 0 0 rgba(156,4,88,0); } 28% { background: rgba(252,232,239,.9); box-shadow: inset 0 0 0 1.5px rgba(156,4,88,.45); } 49%,100% { background: transparent; box-shadow: inset 0 0 0 0 rgba(156,4,88,0); } }
@keyframes hp-kpi { 0%,19% { background: #fff; box-shadow: 0 0 0 0 rgba(156,4,88,0); } 30% { background: rgba(252,232,239,.6); box-shadow: 0 0 0 3px rgba(156,4,88,.12); } 51%,100% { background: #fff; box-shadow: 0 0 0 0 rgba(156,4,88,0); } }
@media (prefers-reduced-motion: reduce) { .hp__win, .hp__ping, .hp__actnew, .hp__kpi--pulse, .hp__pocket--food, .hp__actnew .hp__actdot { animation: none !important; } .hp__actnew { max-height: 56px; opacity: 1; } }
@media (max-width: 600px) { .hp__title { font-size: 22px; } }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 7rem; text-align: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__actions, .hero__trust { justify-content: center; }
  .hero__card-stage { margin-top: 3rem; }
  /* El bento es flex: fijamos base al 50% (menos medio gap) para 2 columnas reales = 2x2 */
  .bento__card { flex: 1 1 calc(50% - .6rem); }
  .bento__card--lg { grid-row: span 1; }
  .pockets { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .steps { flex-direction: column; }
  .step__line { width: 2px; height: 40px; margin: 0 0 0 1.2rem; background: linear-gradient(180deg, var(--magenta), transparent); }
  .footer__inner { grid-template-columns: 1fr; }
}

/* Grid de bolsillos 5×2: baja a 3 columnas en laptops antes de pasar a 2 */
@media (max-width: 1200px) {
  .pockets { grid-template-columns: repeat(3, 1fr); }
}

/* Cambia a menú móvil antes (980px) para que el nav no se desborde y oculte el CTA */
@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; margin-left: auto; }
}

@media (max-width: 720px) {
  .pockets { grid-template-columns: 1fr; }
  /* El bento se mantiene 2x2 en móvil (no 1 columna); tarjetas más compactas */
  .bento__card { flex: 1 1 calc(50% - .5rem); padding: 1.4rem 1.25rem; }
  .bento { gap: 1rem; }
  .bento__card h3 { font-size: 1.15rem; min-height: 2.6em; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   Teléfono interactivo del app (showcase navegable)
   ============================================================ */
.ip-stage { display: grid; place-items: center; gap: 1.1rem; padding: .4rem 0 1rem; }
.ip-phone { width: 300px; max-width: 88vw; margin: 0; }
.ip-in { display: flex; flex-direction: column; min-height: 544px; overflow: hidden; }
.ip-screens { flex: 1 1 auto; }
.ip-screen { display: none; }
.ip-screen.is-on { display: block; animation: ipFade .28s ease; }
@keyframes ipFade { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: translateY(0); } }

/* Barra de navegación inferior */
.ip-tabbar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; border-top: 1.5px solid var(--line); margin: 12px -22px -30px; padding: 10px 8px 18px; background: #fff; }
.ip-tab { appearance: none; -webkit-appearance: none; border: 0; background: transparent; cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 5px 0; font-family: var(--font-body); font-size: 10.5px; font-weight: 600; letter-spacing: .01em; color: #b3acbb; border-radius: 12px; transition: color .18s ease; }
.ip-tab i, .ip-tab svg { width: 20px; height: 20px; }
.ip-tab.is-on { color: var(--magenta); }
.ip-tab:not(.is-on):hover { color: #8a8390; }

/* Tarjeta con efecto congelar */
.ip-card { position: relative; }
.ip-frost { position: absolute; inset: 0; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: rgba(214, 228, 246, .42); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); border: 1.5px solid rgba(255, 255, 255, .55); color: #fff; opacity: 0; pointer-events: none; transition: opacity .35s ease; }
.ip-frost i, .ip-frost svg { width: 32px; height: 32px; filter: drop-shadow(0 2px 7px rgba(20, 40, 80, .4)); }
.ip-card.is-frozen .ip-frost { opacity: 1; }
.ip-card.is-frozen { filter: saturate(.55); }
.ip-freeze { cursor: pointer; transition: transform .15s ease; }
.ip-freeze:hover { transform: translateY(-2px); }
.ip-freeze.is-active .wf-act__c { background: #e7f1ff; color: #1c7ed6; }

/* Lista de movimientos */
.ip-list { display: flex; flex-direction: column; }
.ip-mov { display: flex; align-items: center; gap: 11px; padding: 10px 2px; border-bottom: 1px solid var(--line); }
.ip-mov:last-child { border-bottom: 0; }
.ip-mov__ic { width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center; flex: none; color: #fff; }
.ip-mov__ic i, .ip-mov__ic svg { width: 16px; height: 16px; }
.ip-mov__ic--food { background: #1d9e6e; }
.ip-mov__ic--mob { background: #2f7fd0; }
.ip-mov__ic--gift { background: #c98a14; }
.ip-mov__ic--in { background: #2f9e44; }
.ip-mov__d { flex: 1; display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.ip-mov__d b { font-size: 13px; font-weight: 600; color: #2e2836; }
.ip-mov__d span { font-size: 10.5px; color: #8a8390; }
.ip-mov__amt { font-size: 13px; font-weight: 700; color: #2e2836; white-space: nowrap; }
.ip-mov__amt--in { color: #2f9e44; }

/* Perfil */
.ip-prof { display: flex; flex-direction: column; align-items: center; gap: 9px; text-align: center; margin-bottom: 20px; }
.ip-avatar { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; background: var(--grad); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 23px; box-shadow: 0 12px 24px -9px rgba(156, 3, 87, .55); }
.ip-prof__name { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: #2e2836; }
.ip-verified { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; color: #2f9e44; background: #ebfbee; border-radius: 999px; padding: 4px 12px; }
.ip-verified i, .ip-verified svg { width: 14px; height: 14px; }
.ip-rows { display: flex; flex-direction: column; }
.ip-drow { display: flex; justify-content: space-between; align-items: center; padding: 11px 2px; border-bottom: 1px solid var(--line); font-size: 12.5px; }
.ip-drow:last-child { border-bottom: 0; }
.ip-drow span { color: #8a8390; }
.ip-drow b { color: #2e2836; font-weight: 600; }

/* Subtítulo "Y además" antes de los wireframes extra */
.wf-subhead { text-align: center; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.15rem, 2.4vw, 1.4rem); color: var(--ink); margin: 2.8rem 0 .3rem; }
.wf-sub { text-align: center; color: var(--text-soft); margin: 0 auto 1.6rem; max-width: 540px; font-size: .98rem; }

/* Guía: empuja suavemente los tabs hasta el primer toque */
@media (prefers-reduced-motion: no-preference) {
  .ip-phone:not(.touched) .ip-tab:not(.is-on) i,
  .ip-phone:not(.touched) .ip-tab:not(.is-on) svg { animation: ipTabNudge 2.4s ease-in-out infinite; }
  @keyframes ipTabNudge { 0%, 100% { transform: translateY(0); opacity: .6; } 50% { transform: translateY(-3px); opacity: 1; } }
}

/* Selector de alcance de reglas (empresa / área / colaborador) */
.dash__scope { display: inline-flex; gap: 3px; background: #f1eaef; border-radius: 9px; padding: 3px; margin: 0 0 13px; }
.dash__scopebtn { appearance: none; -webkit-appearance: none; border: 0; background: transparent; cursor: pointer; font-family: var(--font-body); font-size: 10.5px; font-weight: 600; color: #6f6677; padding: 5px 11px; border-radius: 7px; transition: background .15s ease, color .15s ease; }
.dash__scopebtn.is-on { background: #fff; color: var(--magenta); box-shadow: 0 1px 3px rgba(20, 12, 30, .1); }
.dash__scopebtn:not(.is-on):hover { color: var(--ink); }
.dash__scopeview { display: none; }
.dash__scopeview.is-on { display: block; animation: ipFade .26s ease; }

/* ===================================================================
   Páginas de bolsillo (.bolsillo-cat): dominante del color de la
   categoría. Cada página define --cat y --cat-strong en el <main>.
   =================================================================== */
.bolsillo-cat .eyebrow { color: var(--cat-strong); }
.bolsillo-cat .grad-text { background: linear-gradient(120deg, var(--cat), var(--cat-strong)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.bolsillo-cat .page-hero__bg::before { background: radial-gradient(circle, color-mix(in srgb, var(--cat) 38%, transparent), transparent 65%); }
.bolsillo-cat .section--soft { background: color-mix(in srgb, var(--cat) 9%, transparent); }
.bolsillo-cat .vcard__icon { background: color-mix(in srgb, var(--cat) 12%, transparent); }
.bolsillo-cat .vcard__icon svg { color: var(--cat-strong); }
.bolsillo-cat .chip-tag { background: color-mix(in srgb, var(--cat) 10%, transparent); border-color: color-mix(in srgb, var(--cat) 30%, transparent); }
.bolsillo-cat .chip-tag svg { color: var(--cat-strong); }
.bolsillo-cat .page-hero__copy h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; letter-spacing: -.02em; line-height: 1.15; margin: 1.8rem 0 .6rem; }
.bolsillo-cat .page-hero__copy .split__list { margin-top: 1.2rem; }
.bolsillo-cat .page-hero__visual { aspect-ratio: 1 / 1; max-width: 460px; width: 100%; margin: 0 auto; background: linear-gradient(160deg, color-mix(in srgb, var(--cat) 16%, transparent), color-mix(in srgb, var(--cat) 6%, transparent)); border: 1px solid color-mix(in srgb, var(--cat) 22%, transparent); border-radius: 32px; padding: clamp(1.5rem, 4vw, 2.6rem); box-shadow: 0 24px 60px -28px color-mix(in srgb, var(--cat-strong) 50%, transparent); align-items: center; }
.bolsillo-cat .page-hero__visual img { max-width: 100%; max-height: 100%; object-fit: contain; }
/* CTA final en estilo Bink: texto blanco + botón con la gradación de marca */
.bolsillo-cat .cta__inner .grad-text { background: none; -webkit-text-fill-color: #fff; color: #fff; }
.bolsillo-cat .cta__inner .btn--primary { background: linear-gradient(120deg, #030303 0%, #dd034d 115%); box-shadow: 0 12px 30px -10px rgba(221,3,77,.5); }
.bolsillo-cat .cta__inner .btn--primary:hover { box-shadow: 0 16px 38px -10px rgba(221,3,77,.65); }

/* ===================================================================
   HERO orbit (.hero--orbit): texto a la izquierda + iPhone con la
   tarjeta orbitando. Degradado negro→burgundy. Clásico en
   index-clasico.html. Animaciones (entrada + órbita) en interactions.js.
   =================================================================== */
.hero--orbit { position: relative; display: block; width: 100%; max-width: none; margin: 0; min-height: 92vh; overflow: hidden; padding: 6.5rem 0 2.5rem; color: #fff; grid-template-columns: none; }
.hero__bg--maroon { position: absolute; inset: 0; z-index: 0; background: linear-gradient(125deg, #000000 0%, #150109 34%, #46071f 72%, #6e0c2e 100%); }
.hero--orbit .hero__wordmark { position: absolute; left: 50%; bottom: 1%; transform: translateX(-50%); z-index: 1; pointer-events: none; font-family: var(--font-display); font-weight: 700; font-size: clamp(6rem, 22vw, 20rem); line-height: .8; letter-spacing: -.04em; color: rgba(255,255,255,.05); white-space: nowrap; }

.hero-orbit { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(24px, 4vw, 48px); display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(2rem, 4vw, 4rem); align-items: center; min-height: calc(92vh - 9rem); }

/* --- Columna de texto (izquierda) --- */
.hero-orbit__copy { min-width: 0; }
.hero-chips { display: flex; flex-wrap: wrap; gap: .5rem 1.3rem; margin-bottom: 1.5rem; }
.hero-chip { display: inline-flex; align-items: center; gap: .4rem; font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.82); }
.hero-chip i, .hero-chip svg { width: 15px; height: 15px; color: var(--rosado); flex: none; }
.hero--orbit .hero__title { font-size: clamp(2.2rem, 4.2vw, 4rem); font-weight: 700; letter-spacing: -.03em; line-height: 1.03; color: #fff; max-width: 15ch; }
.hero--orbit .hero__sub { color: rgba(255,255,255,.78); font-size: 1.05rem; line-height: 1.55; margin: 1.3rem 0 1.8rem; max-width: 40ch; }
.hero--orbit .hero__actions { display: flex; gap: .7rem; flex-wrap: wrap; }
.hero--orbit .btn--ghost { color: #fff; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.05); }
.hero--orbit .btn--ghost:hover { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.12); }
.hero-support { display: flex; align-items: center; gap: .8rem; margin-top: 2.6rem; }
.hero-support__txt { display: flex; flex-direction: column; line-height: 1.25; }
.hero-support__txt strong { font-family: var(--font-display); font-size: 1.05rem; }
.hero-support__txt span { font-size: .85rem; color: rgba(255,255,255,.66); }

/* --- Escenario: iPhone + órbita (derecha) --- */
.hero-orbit__stage { position: relative; min-width: 0; width: 100%; max-width: 540px; aspect-ratio: 1 / 1; margin: 0 0 0 auto; }
.orbit-glow { position: absolute; left: 50%; top: 50%; width: 92%; height: 92%; transform: translate(-50%,-50%); background: radial-gradient(circle, rgba(221,3,77,.3), transparent 62%); filter: blur(50px); pointer-events: none; }

/* iPhone 17 Pro Max mockup (marco de titanio, bisel fino, Dynamic Island) */
.phone { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 52%; max-width: 268px; aspect-ratio: 9 / 19.4; background: linear-gradient(135deg, #5b5b61 0%, #2a2a2e 20%, #101013 52%, #2c2c31 86%, #54545a 100%); border-radius: 17.5% / 8.1%; padding: 2.1%; box-shadow: 0 38px 82px -24px rgba(0,0,0,.72), 0 0 0 1px rgba(255,255,255,.1) inset; z-index: 2; }
.phone__screen { position: relative; width: 100%; height: 100%; border-radius: 15% / 6.9%; overflow: hidden; background: #f6f4f7; box-shadow: 0 0 0 2.5px #08080a; }
.phone__island { position: absolute; left: 50%; top: 2.3%; transform: translateX(-50%); width: 27%; height: 2.8%; background: #000; border-radius: 999px; z-index: 6; }
.phone__btn { position: absolute; background: linear-gradient(90deg, #3c3c41, #18181b); border-radius: 2px; z-index: 1; }
.phone__btn--power  { right: -2px; top: 27%; width: 3px; height: 11%; }
.phone__btn--action { left: -2px; top: 18%; width: 3px; height: 4.5%; }
.phone__btn--vol1   { left: -2px; top: 27%; width: 3px; height: 7.5%; }
.phone__btn--vol2   { left: -2px; top: 37%; width: 3px; height: 7.5%; }

/* Interfaz real de la app dentro del iPhone (assets/Interfaz App.svg) */
.phone__ui { position: absolute; left: 0; top: 0; width: 100%; height: auto; display: block; will-change: transform; }

/* Notificaciones flotantes estilo app (aleatorias, salen de distintos puntos del celular) */
.hero-notis { position: absolute; inset: 0; z-index: 7; pointer-events: none; }
.hero-noti { position: absolute; display: flex; align-items: center; gap: .5rem; background: #fff; border-radius: 15px; padding: .48rem .7rem .48rem .48rem; box-shadow: 0 18px 38px -16px rgba(20,2,12,.5), 0 2px 8px rgba(0,0,0,.06); white-space: nowrap; will-change: transform, opacity; }
.hero-noti__ic { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; flex: none; }
.hero-noti__ic img { width: 58%; height: 58%; object-fit: contain; }
.hero-noti__body { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.hero-noti__row { display: flex; align-items: baseline; gap: 1rem; justify-content: space-between; }
.hero-noti__title { font-size: .82rem; color: #1c1320; font-weight: 700; }
.hero-noti__amt { font-weight: 800; letter-spacing: -.01em; line-height: 1.1; }
.hero-noti__amt--pos { font-size: .9rem; color: #2f9e54; }
.hero-noti__amt--neg { font-size: .82rem; color: var(--magenta); }
.hero-noti__sub { font-size: .68rem; color: #8a8390; }

/* Tarjeta al frente del iPhone — gira sobre su eje (flip) mostrando el respaldo */
.orbit-card { position: absolute; left: 50%; top: 50%; width: 60%; max-width: 320px; z-index: 5; pointer-events: auto; cursor: pointer; transform: translate(-50%, -50%) rotate(-10deg); perspective: 1300px; }
.orbit-card__hint { position: absolute; right: -10px; bottom: -10px; width: 34px; height: 34px; border-radius: 50%; background: var(--magenta); color: #fff; display: grid; place-items: center; box-shadow: 0 8px 20px -6px rgba(221,3,77,.7); z-index: 2; animation: hintPulse 1.8s ease-in-out infinite; transition: opacity .4s ease; }
.orbit-card__hint svg { width: 17px; height: 17px; }
.orbit-card.is-used .orbit-card__hint { opacity: 0; pointer-events: none; }
@keyframes hintPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.14); } }
.flip-card { position: relative; width: 100%; aspect-ratio: 1.6 / 1; transform-style: preserve-3d; will-change: transform; }
.flip-card__face { position: absolute; inset: 0; backface-visibility: hidden; -webkit-backface-visibility: hidden; }
.flip-card__back { transform: rotateY(180deg); }
.flip-card__face .bink-card { width: 100%; height: 100%; aspect-ratio: auto; box-shadow: 0 28px 52px -16px rgba(0,0,0,.62), 0 0 0 1px rgba(255,255,255,.06) inset; }
/* Respaldo de la tarjeta */
.bink-card--back { background: #050505; padding: 0; overflow: hidden; justify-content: flex-start; }
.cardback__stripe { width: 100%; height: 24%; background: #191919; margin-top: 13%; }
.cardback__sign { margin: 7% 8% 0; height: 15%; border-radius: 4px; background: linear-gradient(180deg, #fff, #e7e7ec); display: flex; align-items: center; justify-content: flex-end; padding: 0 8px; }
.cardback__cvv { font-style: italic; color: #1c1320; font-weight: 700; letter-spacing: 1px; font-size: clamp(.55rem, 2vw, .85rem); }
.cardback__foot { margin-top: auto; padding: 0 8% 7%; display: flex; align-items: center; justify-content: space-between; gap: .5rem; position: relative; z-index: 1; }
.cardback__foot .bink-card__brand-img { height: 16px; opacity: .92; }
.cardback__foot span { font-size: clamp(.5rem, 1.5vw, .66rem); color: rgba(255,255,255,.55); text-align: right; }
/* Punto que recorre la órbita (posición en interactions.js) */
.orbit-dot { position: absolute; left: 50%; top: 50%; width: 13px; height: 13px; margin: -6px 0 0 -6px; border-radius: 50%; background: var(--rosado); box-shadow: 0 0 14px 2px rgba(253,149,193,.85), 0 0 0 4px rgba(253,149,193,.18); z-index: 3; pointer-events: none; will-change: transform; }

@media (max-width: 980px) {
  .hero--orbit { min-height: 0; padding: 7rem 0 3rem; }
  .hero-orbit { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; min-height: 0; }
  .hero-orbit__copy { display: flex; flex-direction: column; align-items: center; }
  .hero--orbit .hero__title { max-width: 90vw; font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .hero--orbit .hero__sub { max-width: 90vw; }
  .hero-chips, .hero--orbit .hero__actions, .hero-support { justify-content: center; }
  .hero-orbit__stage { margin: 0 auto; max-width: min(380px, 86vw); }
  .hero-noti { padding: .42rem .62rem .42rem .42rem; border-radius: 13px; gap: .45rem; }
  .hero-noti__ic { width: 29px; height: 29px; }
  .hero-noti__title { font-size: .76rem; }
  .hero-noti__amt--pos { font-size: .84rem; }
  .hero-noti__amt--neg { font-size: .76rem; }
  .hero-noti__sub { font-size: .64rem; }
  .hero-noti__row { gap: .8rem; }
}

/* El nav es un "pill" claro siempre, así que el texto/logo van oscuros en
   todas las páginas (legible sobre el hero oscuro y sobre fondos claros). */

/* ===================================================================
   Página "Iniciar sesión": selector de tipo de cuenta (¿Qué cuenta tienes?)
   =================================================================== */
.login-choose { min-height: calc(100vh - 220px); display: grid; place-items: center; padding: 9rem 24px 5rem; text-align: center; }
.login-choose__inner { max-width: 780px; width: 100%; }
.login-choose .eyebrow { display: inline-block; margin-bottom: .8rem; }
.login-choose h1 { font-family: var(--font-display); font-size: clamp(2.3rem, 5.2vw, 3.6rem); font-weight: 700; letter-spacing: -.03em; line-height: 1.04; color: var(--ink); }
.login-choose__lead { color: var(--text-soft); margin: 1rem auto 3rem; max-width: 46ch; font-size: 1.05rem; }

.login-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.login-card {
  position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center;
  padding: 3rem 1.6rem 2.2rem; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); text-decoration: none;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.login-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.login-card::after { content: ""; position: absolute; top: -40%; right: -20%; width: 240px; height: 240px; background: radial-gradient(circle, rgba(221,3,77,.12), transparent 70%); opacity: 0; transition: opacity .4s; pointer-events: none; }
.login-card:hover { transform: translateY(-8px); border-color: rgba(221,3,77,.4); box-shadow: var(--shadow-card); }
.login-card:hover::before { transform: scaleX(1); }
.login-card:hover::after { opacity: 1; }

.login-card__title { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--ink); margin-top: 1.6rem; }
.login-card__sub { color: var(--text-soft); font-size: .98rem; margin-top: .2rem; }
.login-card__cta { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.3rem; color: var(--magenta); font-weight: 600; font-size: .95rem; transition: gap .25s var(--ease); }
.login-card:hover .login-card__cta { gap: .7rem; }
.login-card__cta svg { width: 16px; height: 16px; }

/* Iconos línea (estética Bink): contenedor + badge */
.lc-ico { position: relative; width: 104px; height: 104px; display: grid; place-items: center; }
.lc-ico__web, .lc-ico__phone { position: relative; border: 3px solid var(--ink); display: grid; place-items: center; overflow: hidden; background: #fff; }
.lc-ico__web { width: 92px; height: 70px; border-radius: 14px; padding-top: 16px; }
.lc-ico__bar { position: absolute; top: 0; left: 0; right: 0; height: 16px; border-bottom: 3px solid var(--ink); display: flex; align-items: center; gap: 4px; padding-left: 8px; }
.lc-ico__bar i { width: 5px; height: 5px; border-radius: 50%; background: var(--ink); }
.lc-ico__phone { width: 62px; height: 96px; border-radius: 16px; }
.lc-ico__notch { position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 22px; height: 5px; border-radius: 999px; background: var(--ink); }
.lc-ico__mark { width: 34px; height: auto; border-radius: 6px; }
.lc-ico__phone .lc-ico__mark { width: 30px; }
.lc-ico__badge { position: absolute; right: 0; bottom: 0; width: 38px; height: 38px; border-radius: 50%; background: #fff; border: 3px solid var(--ink); display: grid; place-items: center; }
.lc-ico__badge svg { width: 17px; height: 17px; color: var(--ink); }

.login-choose__foot { margin-top: 2.6rem; color: var(--text-soft); font-size: .98rem; }
.login-choose__foot a { color: var(--magenta); font-weight: 600; }

@media (max-width: 600px) { .login-cards { grid-template-columns: 1fr; } .login-choose { padding-top: 8rem; } }

/* ===== Soluciones · hub + subpáginas ===== */
.sol-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 1.4rem; max-width: var(--maxw); margin: 0 auto; }
.sol-grid--wide { grid-template-columns: repeat(4, 1fr); gap: 1.1rem; max-width: var(--maxw); }
@media (max-width: 980px) { .sol-grid--wide { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .sol-grid--wide { grid-template-columns: 1fr; } }
.sol-card { --c: var(--magenta); position: relative; display: flex; flex-direction: column; gap: .75rem; padding: 1.7rem 1.55rem 1.5rem; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-soft); text-decoration: none; color: var(--text); overflow: hidden; transition: transform .26s var(--ease), box-shadow .26s var(--ease), border-color .26s; }
.sol-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--c); }
.sol-card:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -22px rgba(30,12,40,.32); border-color: color-mix(in srgb, var(--c) 40%, var(--line)); }
.sol-card__ic { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: color-mix(in srgb, var(--c) 13%, #fff); color: var(--c); }
.sol-card__ic svg { width: 27px; height: 27px; }
.sol-card__ic img { width: 32px; height: 32px; object-fit: contain; }
.sol-card__k { font-size: .72rem; font-weight: 700; letter-spacing: .02em; text-transform: none; color: var(--c); }
.sol-card h3 { margin: .05rem 0 0; font-size: 1.32rem; line-height: 1.15; }
.sol-card p { margin: 0; color: var(--text-soft); font-size: .94rem; line-height: 1.5; }
.sol-card__tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .15rem; }
.sol-card__tags span { font-size: .73rem; font-weight: 600; color: var(--text-soft); background: var(--paper-2); border-radius: 999px; padding: .26rem .62rem; }
.sol-card__go { margin-top: auto; padding-top: .85rem; display: inline-flex; align-items: center; gap: .42rem; font-weight: 700; font-size: .9rem; color: var(--c); }
.sol-card__go svg { width: 16px; height: 16px; transition: transform .2s; }
.sol-card:hover .sol-card__go svg { transform: translateX(4px); }
.sol-hub { padding-top: 0; padding-bottom: 2rem; }
.page-hero:has(+ .sol-hub) { padding-bottom: 1.25rem; }
.sol-note { max-width: 720px; margin: 2.4rem auto 0; text-align: center; color: var(--text-soft); font-size: .95rem; }
@media (max-width: 600px) { .sol-grid { grid-template-columns: 1fr; } }

/* Subpáginas de Soluciones: un solo título arriba + filas balanceadas */
.soluciones-sub__grid { padding-top: 2.5rem; }
.pockets--cols4 { grid-template-columns: repeat(4, 1fr); }
.pockets--cols3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1200px) { .pockets--cols4 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 980px)  { .pockets--cols4, .pockets--cols3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px)  { .pockets--cols4, .pockets--cols3 { grid-template-columns: 1fr; } }

/* Lead de cada panel del selector de rol (paginas de industria) */
.tabs__lead { max-width: 700px; margin: 0 auto 1.8rem; text-align: center; color: var(--text-soft); font-size: 1.08rem; }

/* ---- Paginas de industria: acento por sector + hero visual ---- */
main.industria { --acc: var(--magenta); }
main.industria .vcard__icon { background: color-mix(in srgb, var(--acc) 12%, #fff); }
main.industria .vcard__icon svg { color: var(--acc); }
main.industria .page-hero__bg { background:
  radial-gradient(560px 320px at 82% 12%, color-mix(in srgb, var(--acc) 16%, transparent), transparent 70%),
  radial-gradient(480px 300px at 8% 88%, color-mix(in srgb, var(--acc) 10%, transparent), transparent 70%); }
.indv { position: relative; width: min(440px, 100%); margin: 0 auto; padding: 1.6rem .4rem; }
.indv__panel { background: #fff; border-radius: 22px; box-shadow: var(--shadow-card); padding: 1.35rem 1.5rem 1.05rem; }
.indv__head { display: flex; align-items: center; gap: .55rem; font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--text); padding-bottom: .85rem; border-bottom: 1px solid var(--line); }
.indv__head svg { width: 20px; height: 20px; color: var(--acc); flex: none; }
.indv__row { padding: .75rem 0 .35rem; }
.indv__row > div { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; font-size: .92rem; color: var(--text-soft); }
.indv__row b { color: var(--text); font-variant-numeric: tabular-nums; font-size: 1.04rem; font-weight: 700; }
.indv__meter { height: 6px; border-radius: 999px; background: var(--crudo); overflow: hidden; margin-top: .5rem; }
.indv__meter span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--acc), color-mix(in srgb, var(--acc) 45%, #fff)); }
.indv__chip { position: absolute; z-index: 2; display: inline-flex; align-items: center; gap: .45rem; background: #fff; border-radius: 999px; box-shadow: 0 16px 34px -14px rgba(27,20,32,.4); padding: .38rem .85rem .38rem .4rem; font-size: .83rem; font-weight: 600; color: var(--text); animation: indfloat 5.5s ease-in-out infinite; }
.indv__chip img { width: 28px; height: 28px; display: block; }
@keyframes indfloat { 50% { transform: translateY(-9px); } }
@media (prefers-reduced-motion: reduce) { .indv__chip { animation: none; } }
@media (max-width: 640px) { .indv__chip { font-size: .78rem; } .indv__chip img { width: 22px; height: 22px; } }

/* ---- Selector de rol (paginas de industria): el fondo cambia con el rol activo ----
   CFO -> negro (--ink) · RRHH -> burgundy (--burgundy) · Empleado -> magenta (--magenta) */
#por-rol { transition: background-color .55s var(--ease); }
#por-rol[data-bg="ink"] { background: var(--ink); }
#por-rol[data-bg="burgundy"] { background: var(--burgundy); }
#por-rol[data-bg="magenta"] { background: var(--magenta); }
#por-rol[data-bg] .section__title { color: #fff; }
#por-rol[data-bg] .section__title .grad-text { background-image: var(--grad-soft); }
#por-rol[data-bg] .section__lead { color: rgba(255,255,255,.78); }
#por-rol[data-bg] .tabs__lead { color: rgba(255,255,255,.88); }
#por-rol[data-bg] .tabs__switch { background: rgba(255,255,255,.12); }
#por-rol[data-bg] .tabs__btn { color: rgba(255,255,255,.75); }
#por-rol[data-bg] .tabs__btn:hover { color: #fff; }
#por-rol[data-bg] .tabs__btn.is-active { background: #fff; color: var(--magenta); box-shadow: 0 10px 24px -10px rgba(0,0,0,.4); }

/* ---- Appshow como apertura de la pagina de la app ---- */
.appshow--hero { padding-top: clamp(6.5rem, 10vw, 8.5rem); }
.appshow--hero .appshow__head { max-width: 720px; }
/* Modo fluido: el JS interpola opacidad/posicion por frame segun el scroll;
   las transiciones CSS amortiguarian y se sentirian saltos. */
[data-appshow].is-fluid .appscreen,
[data-appshow].is-fluid .appfeat { transition: none; }
