/* BmNexus Landing CSS — cargado site-wide (nav/footer viven aquí; ver bmnexus-blocks.php) */

/* ═══ UTILS ═══ */
.bn-inn  { max-width: var(--bn-max); margin: 0 auto; padding: 0 24px; }
.bn-sec  { padding: 100px 0; }
.g-txt   {
    background: var(--bn-g);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.bn-ey {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--bn-t3);
    margin-bottom: 18px;
}
.bn-ey::before {
    content: '';
    width: 20px; height: 2px;
    background: var(--bn-g);
    border-radius: 2px;
    flex-shrink: 0;
}
.bn-h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}
.bn-lead { font-size: 1rem; color: var(--bn-t2); line-height: 1.8; max-width: 460px; margin-bottom: 24px; }

/* ═══ REVEAL ═══ */
.up {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
    transition-delay: var(--dl, 0s);
}
.up.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .up { opacity: 1; transform: none; }
}

/* ═══ BUTTONS ═══ */
.bn-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 13px 24px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
    cursor: pointer;
    transition: opacity .18s, transform .18s, box-shadow .2s;
    position: relative;
    text-decoration: none;
}
.bn-btn:hover    { transform: translateY(-2px); }
.bn-btn:focus-visible { outline: 2px solid var(--bn-a1); outline-offset: 3px; border-radius: 999px; }
.bn-btn--p {
    background: var(--bn-g);
    color: #fff;
    box-shadow: 0 4px 20px rgba(233,30,140,.25);
}
.bn-btn--p:hover { box-shadow: 0 8px 32px rgba(233,30,140,.4); opacity: .92; }
.bn-btn--o {
    border: 1.5px solid var(--bn-bdr2);
    color: var(--bn-t2);
    background: transparent;
}
.bn-btn--o:hover { border-color: rgba(255,255,255,.3); color: var(--bn-t1); opacity: 1; }
.bn-btn--sm { padding: 10px 20px; font-size: 0.78rem; }

/* ═══ NAV ═══ */
.bn-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--bn-nh);
    z-index: 200;
    background: rgba(9,9,11,.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--bn-bdr);
}
.bn-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 20px;
}
.bn-logo { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.bn-logo__img { height: 32px; width: auto; display: block; }
.bn-nav__cta { margin-left: auto; }

/* ── Botón de menú (Menu ↔ Close vía aria-expanded) ── */
.bn-hbg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4.5px;
    min-width: 44px;
    min-height: 44px;
    padding: 8px;
    cursor: pointer;
    background: none;
    border: none;
    position: relative;
    z-index: 301;
}
.bn-hbg span {
    display: block;
    width: 18px; height: 1.5px;
    background: var(--bn-t2);
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease, background .2s ease;
}
.bn-hbg[aria-expanded="true"] span { background: var(--bn-t1); }
.bn-hbg[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.bn-hbg[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.bn-hbg[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── Overlay a pantalla completa ── */
.bn-menu {
    position: fixed;
    inset: 0;
    height: 100dvh;
    z-index: 300;
    display: none;
    align-items: center;
    background: rgba(9,9,11,.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    opacity: 0;
}
.bn-menu__inner { display: flex; flex-direction: column; align-items: flex-start; gap: 36px; width: 100%; }
.bn-menu__links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.bn-menu__links > li > a {
    font-size: clamp(1.6rem, 5.2vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--bn-t1);
    text-decoration: none;
    display: inline-block;
    transition: color .18s;
}
.bn-menu__links > li > a:hover { color: var(--bn-a1); }

/* Ítem con hijos (p.ej. "Servicios"): agrupador, no enlace — sin
   href (ver functions.php), el navegador ya lo trata como no
   interactivo; el estilo solo lo distingue visualmente. */
.bn-menu__links .menu-item-has-children > a:not([href]) {
    font-size: clamp(1.1rem, 3.6vw, 1.5rem);
    color: var(--bn-t3);
    cursor: default;
}
.bn-menu__links .sub-menu {
    list-style: none;
    margin: 6px 0 14px;
    padding: 0 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-left: 1.5px solid var(--bn-bdr2);
}
.bn-menu__links .sub-menu a {
    font-size: 1rem;
    font-weight: 600;
    color: var(--bn-t2);
    text-decoration: none;
    transition: color .18s;
}
.bn-menu__links .sub-menu a:hover { color: var(--bn-t1); }
.bn-menu__cta { margin-top: 4px; }

body.bn-menu-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
    .bn-hbg span { transition: none; }
}

/* ═══ HERO ═══ */
.bn-hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(var(--bn-nh) + 60px) 0 0;
    position: relative;
    overflow: hidden;
}
.bn-hero::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(139,63,240,.13) 0%, transparent 70%);
    top: 10%; right: -10%;
    pointer-events: none;
}
.bn-hero::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(233,30,140,.08) 0%, transparent 70%);
    top: 40%; left: -5%;
    pointer-events: none;
}
#bn-cnv {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    pointer-events: none;
}
.bn-hero__body { position: relative; z-index: 1; }
.bn-hero__hl {
    font-size: clamp(1.9rem, 4.2vw, 3rem);
    font-weight: 900;
    line-height: 1.03;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}
.bn-hero__sub {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    color: var(--bn-t2);
    line-height: 1.78;
    max-width: 500px;
    margin-bottom: 36px;
}
.bn-hero__sub strong { color: var(--bn-t1); font-weight: 600; }
.bn-hero__acts { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.bn-hero__tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--bn-bdr);
}
.bn-hero__tag-l {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bn-t3);
}
.bn-htag {
    font-size: 0.72rem;
    color: var(--bn-t3);
    border: 1px solid var(--bn-bdr);
    padding: 4px 10px;
    border-radius: 999px;
    text-decoration: none;
    transition: color .18s, border-color .18s;
}
.bn-htag:hover { color: var(--bn-t2); border-color: var(--bn-bdr2); }

/* ═══ TICKER ═══ */
.bn-ticker-wrap {
    width: 100%;
    overflow: hidden;
    padding: 14px 0;
    border-top: 1px solid var(--bn-bdr);
    border-bottom: 1px solid var(--bn-bdr);
    background: var(--bn-s1);
    position: relative;
    margin-top: 40px;
}
.bn-ticker-wrap::before,
.bn-ticker-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
}
.bn-ticker-wrap::before { left: 0;  background: linear-gradient(90deg,  var(--bn-s1), transparent); }
.bn-ticker-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--bn-s1), transparent); }
.bn-ticker-label {
    display: block;
    text-align: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--bn-t3);
    opacity: .6;
    margin-bottom: 8px;
}
.bn-ticker {
    display: flex;
    width: max-content;
    animation: bn-tick 38s linear infinite;
}
.bn-ticker:hover { animation-play-state: paused; }
@keyframes bn-tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.bn-tick-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 28px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--bn-t3);
    white-space: nowrap;
}
.bn-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
}
.bn-dot--ok   { background: var(--bn-grn); }
.bn-dot--warn { background: var(--bn-amb); }
.bn-dot--info { background: var(--bn-a1); }
.bn-tick-v { color: var(--bn-t2); }
@media (prefers-reduced-motion: reduce) { .bn-ticker { animation: none; } }

/* ═══ INTERRUPT ═══ */
.bn-interrupt {
    background: var(--bn-g);
    padding: 56px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.bn-interrupt::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg,rgba(255,255,255,.04) 0,rgba(255,255,255,.04) 1px,transparent 1px,transparent 60px);
}
.bn-interrupt__num {
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
    color: #fff;
    position: relative;
}
.bn-interrupt__num span { font-size: .55em; }
.bn-interrupt__label {
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 700;
    color: rgba(255,255,255,.75);
    margin-top: 8px;
    position: relative;
}
.bn-interrupt__sub { font-size: 0.85rem; color: rgba(255,255,255,.5); margin-top: 6px; position: relative; }

/* ═══ PRODUCT SECTIONS ═══ */
.bn-prod { padding: 100px 0; border-top: 1px solid var(--bn-bdr); }
.bn-prod__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.bn-prod__grid--rev { direction: rtl; }
.bn-prod__grid--rev > * { direction: ltr; }
.bn-prod__kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--kc, var(--bn-a1));
    margin-bottom: 16px;
}
.bn-prod__kicker-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--kc, var(--bn-a1));
    animation: bn-pulse 2s ease infinite;
}
@keyframes bn-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.bn-prod__h {
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: 14px;
}
.bn-prod__pain {
    font-size: 0.88rem;
    color: var(--bn-t3);
    font-style: italic;
    line-height: 1.65;
    padding-left: 14px;
    border-left: 2px solid var(--bn-bdr2);
    margin-bottom: 24px;
}
.bn-prod__acts { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.bn-feats { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; }
.bn-feat {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 0.88rem;
    color: var(--bn-t2);
    line-height: 1.6;
}
.bn-feat strong { color: var(--bn-t1); font-weight: 600; }
.bn-feat__check {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: rgba(34,212,122,.12);
    border: 1px solid rgba(34,212,122,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--bn-grn);
}
.bn-feat__check svg { width: 9px; height: 9px; }
@media (max-width: 860px) {
    .bn-prod__grid { grid-template-columns: 1fr; gap: 40px; }
    .bn-prod__grid--rev { direction: ltr; }
}

/* ═══ CHAT MOCKUP ═══ */
.bn-chat {
    background: var(--bn-s1);
    border: 1px solid var(--bn-bdr2);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(0,0,0,.4);
}
.bn-chat__header {
    background: var(--bn-s2);
    border-bottom: 1px solid var(--bn-bdr);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.bn-chat__avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--bn-g);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}
.bn-chat__hname { font-size: 0.82rem; font-weight: 700; }
.bn-chat__hstatus {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.63rem;
    color: var(--bn-grn);
}
.bn-chat__hstatus::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--bn-grn);
}
.bn-chat__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 280px;
    background: var(--bn-bg);
}
.bn-cb { display: flex; flex-direction: column; gap: 2px; opacity: 0; transition: opacity .3s; }
.bn-cb.show { opacity: 1; }
.bn-cb--user { align-items: flex-end; }
.bn-cb--bot  { align-items: flex-start; }
.bn-cbt {
    padding: 9px 13px;
    border-radius: 14px;
    font-size: 0.8rem;
    line-height: 1.55;
    max-width: 80%;
}
.bn-cb--user .bn-cbt { background: var(--bn-a2); color: #fff; border-bottom-right-radius: 4px; }
.bn-cb--bot  .bn-cbt {
    background: var(--bn-s2);
    color: var(--bn-t1);
    border-bottom-left-radius: 4px;
    border: 1px solid var(--bn-bdr);
}
.bn-cbt-t { font-size: 0.58rem; color: var(--bn-t3); margin-top: 2px; }
.bn-cb--user .bn-cbt-t { text-align: right; }
.bn-chat-opts { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; opacity: 0; transition: opacity .3s; }
.bn-chat-opts.show { opacity: 1; }
.bn-chat-opt {
    font-size: 0.73rem;
    font-weight: 600;
    color: var(--bn-a1);
    border: 1px solid rgba(233,30,140,.3);
    padding: 5px 10px;
    border-radius: 999px;
}
.bn-typing {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 14px;
    background: var(--bn-s2);
    border: 1px solid var(--bn-bdr);
    border-radius: 14px;
    border-bottom-left-radius: 4px;
    width: fit-content;
    opacity: 0;
    transition: opacity .2s;
}
.bn-typing.show { opacity: 1; }
.bn-typing span {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--bn-t3);
    animation: bn-bounce 1.2s ease infinite;
}
.bn-typing span:nth-child(2) { animation-delay: .18s; }
.bn-typing span:nth-child(3) { animation-delay: .36s; }
@keyframes bn-bounce { 0%,60%,100% { transform: none; } 30% { transform: translateY(-5px); } }

/* ═══ CALENDAR MOCKUP ═══ */
.bn-cal {
    background: var(--bn-s1);
    border: 1px solid var(--bn-bdr2);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,.55);
}
.bn-cal__header {
    background: var(--bn-s2);
    border-bottom: 1px solid var(--bn-bdr);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.bn-cal__title { font-size: 0.85rem; font-weight: 700; }
.bn-cal__nav { display: flex; gap: 4px; }
.bn-cal__nav button {
    width: 26px; height: 26px;
    border-radius: 6px;
    background: var(--bn-s3);
    border: 1px solid var(--bn-bdr);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--bn-t2);
    cursor: default;
}
.bn-cal__days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: var(--bn-s2);
    border-bottom: 1px solid var(--bn-bdr);
}
.bn-cal__dh {
    text-align: center;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bn-t3);
    padding: 8px 0;
}
.bn-cal__slots {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    padding: 12px;
    background: var(--bn-bg);
}
.bn-slot {
    border-radius: 6px;
    padding: 6px 4px;
    font-size: 0.62rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    border: 1px solid transparent;
    transition: background .4s, color .4s, border-color .4s;
}
.bn-slot--free   { background: rgba(34,212,122,.08); color: var(--bn-grn); border-color: rgba(34,212,122,.15); }
.bn-slot--busy   { background: var(--bn-s2); color: var(--bn-t3); text-decoration: line-through; }
.bn-slot--today  { background: var(--bn-a2); color: #fff; }
.bn-slot--booked { background: var(--bn-g); color: #fff; border-color: transparent; }
.bn-cal__legend {
    padding: 10px 14px;
    border-top: 1px solid var(--bn-bdr);
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.bn-leg-item { display: flex; align-items: center; gap: 5px; font-size: 0.6rem; color: var(--bn-t3); }
.bn-leg-dot { width: 7px; height: 7px; border-radius: 2px; }
.bn-leg-dot--f { background: rgba(34,212,122,.4); }
.bn-leg-dot--b { background: var(--bn-s3); }
.bn-leg-dot--r { background: var(--bn-a1); }

/* ═══ FLOW MOCKUP ═══ */
.bn-flow {
    background: var(--bn-s1);
    border: 1px solid var(--bn-bdr2);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 24px 60px rgba(0,0,0,.55);
}
.bn-flow__title {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bn-t3);
    margin-bottom: 20px;
}
.bn-flow__steps { display: flex; flex-direction: column; gap: 4px; }
.bn-flow__step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--bn-bdr);
    background: var(--bn-bg);
    transition: border-color .4s, background .4s;
}
.bn-flow__step.active { border-color: rgba(233,30,140,.35); background: rgba(233,30,140,.04); }
.bn-flow__step.done   { border-color: rgba(34,212,122,.2);  background: rgba(34,212,122,.03); }
.bn-flow__conn { height: 4px; display: flex; align-items: center; justify-content: center; position: relative; margin: 0 14px; }
.bn-flow__conn::before { content: ''; position: absolute; left: 14px; right: 14px; height: 1px; background: var(--bn-bdr); }
.bn-flow__arrow { font-size: 0.6rem; color: var(--bn-t3); z-index: 1; background: var(--bn-s1); padding: 0 4px; transition: color .4s; }
.bn-flow__step.done + .bn-flow__conn .bn-flow__arrow { color: var(--bn-grn); }
.bn-flow__ico {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
    background: var(--bn-s2);
    border: 1px solid var(--bn-bdr);
    transition: background .4s, border-color .4s;
}
.bn-flow__step.active .bn-flow__ico { background: rgba(233,30,140,.12); border-color: rgba(233,30,140,.3); }
.bn-flow__step.done   .bn-flow__ico { background: rgba(34,212,122,.1); border-color: rgba(34,212,122,.25); }
.bn-flow__info { flex: 1; }
.bn-flow__name { font-size: 0.82rem; font-weight: 700; }
.bn-flow__desc { font-size: 0.7rem; color: var(--bn-t3); }
.bn-flow__status {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 3px 8px;
    border-radius: 999px;
    display: none;
}
.bn-flow__step.active .bn-flow__status { display: block; background: rgba(233,30,140,.15); color: var(--bn-a1); }
.bn-flow__step.done   .bn-flow__status { display: block; background: rgba(34,212,122,.1); color: var(--bn-grn); }

/* ═══ SECTORS ═══ */
.bn-sectors { border-top: 1px solid var(--bn-bdr); }
.bn-sec-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.bn-stag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid var(--bn-bdr);
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--bn-t2);
    transition: border-color .18s, color .18s;
    cursor: default;
}
.bn-stag:hover { border-color: var(--bn-bdr2); color: var(--bn-t1); }
.bn-stag__ico { font-size: 1rem; }
.bn-sec-note { font-size: 0.8rem; color: var(--bn-t3); margin-top: 20px; }
.bn-sec-note a { color: var(--bn-a1); text-decoration: none; }

/* ═══ METRICS ═══ */
.bn-nums { border-top: 1px solid var(--bn-bdr); border-bottom: 1px solid var(--bn-bdr); background: var(--bn-s1); }
.bn-nums__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.bn-nm {
    padding: 48px 32px;
    border-right: 1px solid var(--bn-bdr);
}
.bn-nm:last-child { border-right: none; }
.bn-nm__v {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1;
    background: var(--bn-g);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}
.bn-nm__ph {
    display: inline-block;
    font-size: 0.56rem;
    font-weight: 700;
    color: var(--bn-a1);
    letter-spacing: 0.08em;
    border: 1px solid rgba(233,30,140,.25);
    padding: 1px 5px;
    border-radius: 3px;
    margin-left: 6px;
    vertical-align: middle;
    -webkit-text-fill-color: var(--bn-a1);
}
.bn-nm__l { font-size: 0.78rem; color: var(--bn-t2); line-height: 1.5; }
@media (max-width: 700px) {
    .bn-nums__grid { grid-template-columns: repeat(2, 1fr); }
    .bn-nm:nth-child(2) { border-right: none; }
    .bn-nm:nth-child(3) { border-top: 1px solid var(--bn-bdr); border-right: 1px solid var(--bn-bdr); }
    .bn-nm:nth-child(4) { border-top: 1px solid var(--bn-bdr); border-right: none; }
}

/* ═══ PROCESS ═══ */
.bn-proc { border-top: 1px solid var(--bn-bdr); }
.bn-proc__line {
    display: flex;
    gap: 0;
    margin-top: 56px;
    position: relative;
}
.bn-proc__line::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px; right: 20px;
    height: 1px;
    background: var(--bn-g);
    opacity: 0.2;
}
.bn-ps {
    flex: 1;
    padding: 0 20px;
    position: relative;
}
.bn-ps__n {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--bn-bg);
    border: 2px solid var(--bn-bdr2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
    color: var(--bn-t3);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    transition: border-color .3s, color .3s, background .3s;
}
.bn-ps.lit .bn-ps__n { border-color: var(--bn-a1); color: var(--bn-a1); background: rgba(233,30,140,.08); }
.bn-ps__t { font-size: 0.92rem; font-weight: 800; margin-bottom: 6px; letter-spacing: -0.01em; }
.bn-ps__b { font-size: 0.78rem; color: var(--bn-t3); line-height: 1.65; }
@media (max-width: 720px) {
    .bn-proc__line { flex-direction: column; gap: 32px; }
    .bn-proc__line::before { display: none; }
    .bn-ps { border-left: 2px solid var(--bn-bdr); padding-left: 24px; padding-top: 0; }
    .bn-ps__n { position: absolute; left: -21px; top: 0; }
}

/* ═══ FAQ ═══ */
.bn-faq { border-top: 1px solid var(--bn-bdr); }
.bn-faq__list { max-width: 680px; margin-top: 48px; }
.bn-fi { border-bottom: 1px solid var(--bn-bdr); }
.bn-fi:first-child { border-top: 1px solid var(--bn-bdr); }
.bn-fq {
    width: 100%;
    text-align: left;
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--bn-t1);
    letter-spacing: -0.01em;
    background: none;
    border: none;
    cursor: pointer;
    transition: color .18s;
}
.bn-fq:hover { color: var(--bn-a1); }
.bn-fq:focus-visible { outline: 2px solid var(--bn-a1); outline-offset: 2px; }
.bn-fq__ico {
    width: 16px; height: 16px;
    color: var(--bn-a1);
    flex-shrink: 0;
    transition: transform .3s ease;
}
.bn-fi.open .bn-fq__ico { transform: rotate(45deg); }
.bn-fa { max-height: 0; overflow: hidden; transition: max-height .35s cubic-bezier(.16,1,.3,1); }
.bn-fi.open .bn-fa { max-height: 300px; }
.bn-fa p { font-size: 0.86rem; color: var(--bn-t2); line-height: 1.78; padding-bottom: 18px; }
.bn-fa p strong { color: var(--bn-t1); }

/* ═══ CTA FINAL ═══ */
.bn-cta-f {
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.bn-cta-f::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 70%, rgba(139,63,240,.12), transparent);
    pointer-events: none;
}
.bn-cta-f::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: var(--bn-g);
    opacity: .3;
}
.bn-cta-f__in { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.bn-cta-f__h {
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-bottom: 14px;
}
.bn-cta-f__sub { font-size: 1rem; color: var(--bn-t2); line-height: 1.75; margin-bottom: 32px; }
.bn-cta-f__acts { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.bn-cta-f__note { font-size: 0.7rem; color: var(--bn-t3); margin-top: 16px; }

/* ═══ FOOTER ═══ */
.bn-footer {
    border-top: 1px solid var(--bn-bdr);
    padding: 48px 0 32px;
    background: var(--bn-s1);
}
.bn-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.bn-footer__desc { font-size: 0.78rem; color: var(--bn-t3); line-height: 1.75; margin-top: 12px; max-width: 220px; }
.bn-footer__col-h { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bn-t3); margin-bottom: 14px; }
.bn-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.bn-footer__col a { font-size: 0.78rem; color: var(--bn-t3); text-decoration: none; transition: color .18s; }
.bn-footer__col a:hover { color: var(--bn-t2); }
.bn-footer__btm {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--bn-bdr);
    gap: 10px;
    flex-wrap: wrap;
}
.bn-footer__copy { font-size: 0.7rem; color: var(--bn-t3); }
.bn-footer__legal { display: flex; gap: 16px; }
.bn-footer__legal a { font-size: 0.7rem; color: var(--bn-t3); text-decoration: none; transition: color .18s; }
.bn-footer__legal a:hover { color: var(--bn-t2); }
@media (max-width: 780px) { .bn-footer__grid { grid-template-columns: 1fr 1fr; } }

/* ═══ HERO: SPLIT LAYOUT (con foto del fundador) ═════════════ */
.bn-hero__split {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
}

/* Texto y foto: 50/50 exacto — flex:1 en ambas divide el espacio igualmente */
.bn-hero__copy {
    flex: 1;
    min-width: 0;
}

.bn-hero__portrait-wrap {
    flex: 1;
    align-self: stretch;
    display: flex;
    align-items: center;
}

/* Sin border, sin box-shadow, sin border-radius, sin overflow:hidden */
.bn-hero__portrait {
    width: 100%;
    height: 100%;
    min-height: 500px;
    position: relative;
}

.bn-hero__portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: grayscale(1) contrast(1.15) brightness(0.9);
    -webkit-mask-image:
        linear-gradient(to right, transparent 0%, black 20%, black 85%, transparent 100%),
        linear-gradient(to bottom, black 65%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
        linear-gradient(to right, transparent 0%, black 20%, black 85%, transparent 100%),
        linear-gradient(to bottom, black 65%, transparent 100%);
    mask-composite: intersect;
}

/* Tablet (900–1100px): foto visible pero más estrecha — se ajusta sola por flex */
@media (max-width: 1100px) and (min-width: 901px) {
    .bn-hero__split { gap: 32px; }
    .bn-hero__portrait { min-height: 420px; }
}

@media (max-width: 900px) {
    .bn-hero__portrait-wrap { display: none; }
    .bn-hero__split { display: block; }
    .bn-hero__copy { flex: none; }
}
@media (max-width: 440px) { .bn-footer__grid { grid-template-columns: 1fr; } }

/* ═══ USE CASES GRID ══════════════════════════════════════════ */
.bn-ucg { border-top: 1px solid var(--bn-bdr); }

.bn-ucg__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.bn-uc {
    background: var(--bn-s1);
    border: 1px solid var(--bn-bdr);
    border-radius: 14px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color .2s;
}
.bn-uc:hover { border-color: var(--bn-bdr2); }

.bn-uc__icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: rgba(233,30,140,.08);
    border: 1px solid rgba(233,30,140,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--bn-a1);
}
.bn-uc__icon svg { width: 20px; height: 20px; }

.bn-uc__title {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.bn-uc__desc {
    font-size: 0.82rem;
    color: var(--bn-t2);
    line-height: 1.7;
}

.bn-uc__feats {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.bn-uc__feat {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--bn-t2);
    line-height: 1.5;
}
.bn-uc__check {
    width: 14px; height: 14px;
    flex-shrink: 0;
    color: var(--bn-a1);
    margin-top: 2px;
}

.bn-uc__result {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--bn-t1);
    background: rgba(255,255,255,.03);
    border: 1px solid var(--bn-bdr);
    border-radius: 8px;
    padding: 10px 12px;
    line-height: 1.5;
    margin-top: auto;
}
.bn-uc__result svg { flex-shrink: 0; color: var(--bn-a1); margin-top: 1px; }

.bn-ucg__cta {
    margin-top: 56px;
    text-align: center;
    padding: 48px 32px;
    border: 1px solid var(--bn-bdr);
    border-radius: 16px;
    background: var(--bn-s1);
    position: relative;
    overflow: hidden;
}
.bn-ucg__cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(233,30,140,.07), transparent);
    pointer-events: none;
}
.bn-ucg__cta-h {
    font-size: clamp(1.2rem, 2.2vw, 1.75rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    position: relative;
}
.bn-ucg__cta-sub {
    font-size: 0.9rem;
    color: var(--bn-t2);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 28px;
    position: relative;
}

@media (max-width: 960px) {
    .bn-ucg__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .bn-ucg__grid { grid-template-columns: 1fr; }
    .bn-ucg__cta  { padding: 32px 20px; }
}
