/* =========================================================
   NECORA Landing — 02-core-ui.css
   EXTRAÍDO DESDE landing.css v30.5
   Scope:
   - panels
   - buttons
   - chips / pills globales
   - app nav
   - dynamic island
   - rails
   - right guide
   ========================================================= */

/* =========================================================
   @panels
   5) PANELS (cards base) — stable shared cards
   ========================================================= */
.nl-featureCard,
.nl-switchPanel,
.nl-switchActions,
.nl-form,
.nl-benefitCard,
.nl-metric,
.nl-miniCard,
.nl-success__card{
  border:1px solid var(--nl-bd2);
  background: var(--nl-panel-bg);
  box-shadow: var(--nl-shadow), var(--nl-panel-inset);
}

.nl-softCard{
  background: var(--nl-glass-92);
  border: 1px solid var(--nl-bd);
  border-radius: var(--nl-radius-lg);
  box-shadow: 0 16px 40px rgba(10,20,35,.10);
}

/* =========================================================
   @buttons
   6) BUTTONS
   ========================================================= */
.nl-btn{
  box-shadow:0 10px 26px rgba(10,20,35,.14);
  transition:
    transform .15s ease,
    box-shadow .15s ease,
    background .15s ease,
    border-color .15s ease,
    filter .15s ease;
  -webkit-tap-highlight-color:transparent;
}

.nl-btn:active{
  transform:translateY(1px);
  box-shadow:0 6px 16px rgba(10,20,35,.12);
}

.nl-btn--primary{
  background: linear-gradient(180deg, var(--nl-brand), var(--nl-brand2));
  border-color: transparent;
  color:#fff;
}

@media (hover:hover){
  .nl-btn--primary:hover{
    box-shadow:
      0 16px 34px rgba(0,161,223,.20),
      0 10px 26px rgba(10,20,35,.16);
    filter: brightness(1.01);
  }
}

.nl-btn--ghost{
  background: var(--nl-glass-72);
  border: 1px solid var(--nl-bd);
  color: var(--nl-text);
}

@media (hover:hover){
  .nl-btn--ghost:hover{
    background: var(--nl-glass-90);
    border-color: rgba(0,161,223,.18);
  }
}

.nl-btn--soft{
  background:rgba(0,161,223,.10);
  border:1px solid rgba(0,161,223,.22);
  color:var(--nl-text);
}

@media (hover:hover){
  .nl-btn--soft:hover{
    background:rgba(0,161,223,.14);
    border-color:rgba(0,161,223,.34);
    box-shadow:
      0 16px 34px rgba(0,161,223,.16),
      0 10px 26px rgba(10,20,35,.14);
  }
}

.nl-btn--block{
  width:100%;
  justify-content:center;
}

.nl-btn--link{
  background:transparent;
  border:0;
  padding:10px 12px;
  border-radius:999px;
  color: var(--nl-ink-78);
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
}

@media (hover:hover){
  .nl-btn--link:hover{
    color: var(--nl-ink-92);
    text-decoration:underline;
  }
}

/* =========================================================
   7) CHIPS / PILLS (GLOBAL) — SSOT
   ========================================================= */
.nl-chip{
  display:inline-flex;
  align-items:center;
  height: 34px;
  padding: 0 12px;
  border-radius:999px;
  border:1px solid var(--nl-bd);
  background: var(--nl-glass-72);
  color:var(--nl-text);
  font-weight:900;
  font-size:12px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.65);
  transition:
    transform .15s ease,
    background .15s ease,
    border-color .15s ease;
  white-space:nowrap;
  -webkit-tap-highlight-color:transparent;
}

@media (hover:hover){
  .nl-chip:hover{
    background: var(--nl-glass-90);
    border-color:rgba(0,161,223,.22);
  }
}

.nl-chip:active{
  transform:translateY(1px);
}

.nl-chip.is-active{
  background: rgba(0,161,223,.14);
  border-color: rgba(0,161,223,.28);
}

.nl-pill{
  display:inline-flex;
  align-items:center;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--nl-bd);
  background: var(--nl-glass-72);
  font-weight:900;
  font-size:12px;
  color:var(--nl-text);
  max-width:100%;
}

/* =========================================================
   @app-nav
   8) APP NAV — Bottom fixed (MOBILE ONLY)
   ========================================================= */
.nl-appNav{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(10px + var(--nl-safe-bottom, 0px));
  z-index: 99999;

  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 6px;

  padding: 10px;
  border-radius: 22px;

  background: var(--nl-glass-88);
  border: 1px solid var(--nl-bd);
  box-shadow: 0 18px 50px rgba(10,20,35,.14);
}

.nl-appNav__item{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap: 6px;

  padding: 10px 6px;
  border-radius: 16px;

  text-decoration:none;
  color: var(--nl-muted);
  border: 1px solid transparent;

  transition:
    transform .15s ease,
    background .15s ease,
    color .15s ease,
    border-color .15s ease;
  -webkit-tap-highlight-color: transparent;
}

.nl-appNav__ico{
  font-size: 16px;
  line-height: 1;
}

.nl-appNav__txt{
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.nl-appNav__item:active{
  transform: translateY(1px);
}

.nl-appNav__item.is-active{
  background: rgba(0,161,223,.14);
  border-color: rgba(0,161,223,.22);
  color: var(--nl-text);
}

@media (min-width: 860px){
  .nl-appNav{ display:none; }
}

@media (max-width: 859px){
  body{ padding-bottom: 96px; }
}

@media (max-width: 380px){
  .nl-appNav{
    left:10px;
    right:10px;
    padding: 9px;
  }

  .nl-appNav__item{ padding: 9px 6px; }
  .nl-appNav__txt{ font-size: 10px; }
}
/* =========================================================
   @island
   9) DYNAMIC ISLAND NAV (DESKTOP ONLY) — ULTRA PRO
   ========================================================= */

/* =========================
   BRAND / NAV / ACTIONS
   ========================= */
.nl-header{
  position:relative;
  z-index:2000;
}

.nl-brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
  text-decoration:none;
  color:inherit;
}

.nl-brand__media{
  flex:0 0 auto;
  width:44px;
  height:44px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.9), rgba(255,255,255,.55) 55%, rgba(255,255,255,.22) 100%);
  border:1px solid rgba(255,255,255,.58);
  box-shadow:
    0 10px 28px rgba(10,20,35,.12),
    inset 0 1px 0 rgba(255,255,255,.78);
  overflow:hidden;
}

.nl-brand__logo{
  width:26px;
  height:26px;
  object-fit:contain;
  display:block;
}

.nl-brand__copy{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:2px;
  line-height:1.05;
}

.nl-brand__eyebrow{
  font-size:10px;
  font-weight:1000;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--nl-ink-50);
}

.nl-brand__title{
  font-size:14px;
  font-weight:1000;
  letter-spacing:-.02em;
  color:var(--nl-ink-96);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.nl-brand__subtitle{
  font-size:11px;
  font-weight:800;
  color:var(--nl-ink-58);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.nl-island__actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  min-width:0;
  flex:0 0 auto;
}

.nl-islandNav__track{
  display:flex;
  align-items:center;
  gap:8px;
  min-width:0;
  padding:4px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.34);
  background:linear-gradient(180deg, rgba(255,255,255,.52), rgba(255,255,255,.26));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.74),
    0 10px 26px rgba(10,20,35,.07);
}

.nl-islandNav__link{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:38px;
  padding:0 14px;
  border-radius:999px;
  text-decoration:none;
  color:var(--nl-ink-70);
  font-weight:900;
  font-size:12px;
  letter-spacing:.03em;
  border:1px solid transparent;
  background:transparent;
  transition:
    transform .18s ease,
    color .18s ease,
    background .18s ease,
    border-color .18s ease,
    box-shadow .18s ease;
  white-space:nowrap;
}

.nl-islandNav__link span{
  position:relative;
  z-index:1;
}

@media (hover:hover){
  .nl-islandNav__link:hover{
    transform:translateY(-1px);
    color:var(--nl-ink-92);
    background:rgba(255,255,255,.62);
    border-color:rgba(0,161,223,.14);
    box-shadow:
      0 10px 22px rgba(10,20,35,.08),
      inset 0 1px 0 rgba(255,255,255,.65);
  }
}

.nl-islandNav__link.is-active{
  color:var(--nl-ink-96);
  background:linear-gradient(180deg, rgba(0,161,223,.16), rgba(0,161,223,.10));
  border-color:rgba(0,161,223,.22);
  box-shadow:
    0 10px 24px rgba(0,161,223,.10),
    inset 0 1px 0 rgba(255,255,255,.56);
}

/* =========================
   BUTTONS NAV
   ========================= */
.nl-btn--wa{
  gap:8px;
  height:42px;
  padding:0 14px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
  white-space:nowrap;
}

.nl-btn__dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background:#22c55e;
  box-shadow:0 0 0 4px rgba(34,197,94,.12);
  flex:0 0 auto;
}

.nl-btn--navCta{
  gap:10px;
  height:44px;
  padding:0 16px;
  border-radius:999px;
  font-weight:1000;
  font-size:12px;
  letter-spacing:.04em;
  text-transform:uppercase;
  white-space:nowrap;
  box-shadow:
    0 16px 34px rgba(0,161,223,.22),
    0 10px 26px rgba(10,20,35,.15);
}

.nl-btn__icon{
  font-size:14px;
  line-height:1;
  transform:translateX(0);
  transition:transform .16s ease;
}

@media (hover:hover){
  .nl-btn--navCta:hover .nl-btn__icon{
    transform:translateX(2px);
  }
}

/* =========================
   BURGER
   ========================= */
.nl-burger{
  display:none;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid var(--nl-bd);
  background:var(--nl-glass-80);
  box-shadow:
    0 10px 24px rgba(10,20,35,.10),
    inset 0 1px 0 rgba(255,255,255,.68);
  color:var(--nl-text);
  transition:
    transform .16s ease,
    background .16s ease,
    border-color .16s ease,
    box-shadow .16s ease;
  -webkit-tap-highlight-color:transparent;
}

.nl-burger__lines{
  width:18px;
  height:14px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.nl-burger__lines span{
  display:block;
  width:100%;
  height:2px;
  border-radius:999px;
  background:currentColor;
  transform-origin:center;
}

@media (hover:hover){
  .nl-burger:hover{
    transform:translateY(-1px);
    background:var(--nl-glass-92);
    border-color:rgba(0,161,223,.18);
    box-shadow:
      0 14px 30px rgba(10,20,35,.12),
      0 8px 22px rgba(0,161,223,.08);
  }
}

.nl-burger:active{
  transform:translateY(1px);
}

/* =========================
   DESKTOP ISLAND
   ========================= */
@media (min-width:860px){
  .nl-islandWrap{
    position:fixed;
    left:0;
    right:0;
    top:0;
    z-index:2000;
    pointer-events:none;
    width:100%;
    overflow:visible;
  }

  .nl-island{
    pointer-events:auto;
    width:min(1180px, calc(100% - (var(--nl-pad) * 2)));
    margin:calc(12px + var(--nl-safe-top,0px)) auto 0;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.42);
    background:
      linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.58)),
      var(--nl-glass-86);
    box-shadow:
      0 18px 46px rgba(10,20,35,.12),
      0 10px 28px rgba(10,20,35,.08),
      inset 0 1px 0 rgba(255,255,255,.80);
    backdrop-filter:blur(18px) saturate(1.15);
    -webkit-backdrop-filter:blur(18px) saturate(1.15);
    transform:translateY(-140%);
    transition:
      transform .24s ease,
      opacity .24s ease,
      box-shadow .20s ease;
    opacity:0;
  }

  .nl-island.is-show{
    transform:translateY(0);
    opacity:1;
  }

  .nl-island__inner{
    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;
    gap:14px;
    padding:10px 12px;
    min-width:0;
  }

  .nl-islandNav{
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:0;
  }
}

/* =========================
   TABLET / MOBILE HEADER
   ========================= */
@media (max-width:859px){
  .nl-islandWrap{
    position:fixed;
    left:0;
    right:0;
    top:0;
    z-index:2000;
    pointer-events:none;
    padding-top:max(8px, var(--nl-safe-top, 0px));
  }

  .nl-island{
    pointer-events:auto;
    width:min(calc(100% - 20px), 100%);
    margin:0 auto;
    border-radius:22px;
    border:1px solid rgba(255,255,255,.42);
    background:
      linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.66));
    box-shadow:
      0 16px 40px rgba(10,20,35,.10),
      inset 0 1px 0 rgba(255,255,255,.82);
    backdrop-filter:blur(16px) saturate(1.12);
    -webkit-backdrop-filter:blur(16px) saturate(1.12);
    overflow:hidden;
  }

  .nl-island__inner{
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    align-items:center;
    gap:12px;
    padding:12px;
  }

  .nl-brand__media{
    width:40px;
    height:40px;
  }

  .nl-brand__logo{
    width:24px;
    height:24px;
  }

  .nl-brand__eyebrow{
    font-size:9px;
  }

  .nl-brand__title{
    font-size:13px;
  }

  .nl-brand__subtitle{
    font-size:10px;
  }

  .nl-islandNav{
    display:none !important;
  }

  .nl-island__actions .nl-btn--wa,
  .nl-island__actions .nl-btn--navCta{
    display:none;
  }

  .nl-burger{
    display:inline-flex;
  }
}

/* =========================
   DRAWER
   ========================= */
.nl-drawer[hidden]{
  display:none !important;
}

.nl-drawer{
  position:fixed;
  inset:0;
  z-index:2500;
}

.nl-drawer__backdrop{
  position:absolute;
  inset:0;
  background:rgba(6,12,20,.42);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  opacity:0;
  animation:nlDrawerBackdropIn .22s ease forwards;
}

.nl-drawer__panel{
  position:absolute;
  top:0;
  right:0;
  width:min(92vw, 420px);
  height:100dvh;
  display:flex;
  flex-direction:column;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,250,252,.92));
  border-left:1px solid rgba(255,255,255,.62);
  box-shadow:
    -24px 0 60px rgba(10,20,35,.16),
    inset 0 1px 0 rgba(255,255,255,.8);
  backdrop-filter:blur(18px) saturate(1.1);
  -webkit-backdrop-filter:blur(18px) saturate(1.1);
  transform:translateX(100%);
  animation:nlDrawerPanelIn .24s ease forwards;
  outline:none;
}

.nl-drawer__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:18px 18px 14px;
  border-bottom:1px solid rgba(12,18,28,.08);
}

.nl-drawerBrand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.nl-drawerBrand__logo{
  width:38px;
  height:38px;
  border-radius:999px;
  padding:6px;
  background:rgba(255,255,255,.8);
  border:1px solid rgba(12,18,28,.08);
  box-shadow:
    0 10px 24px rgba(10,20,35,.08),
    inset 0 1px 0 rgba(255,255,255,.7);
}

.nl-drawerBrand__copy{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:2px;
}

.nl-drawerBrand__eyebrow{
  font-size:10px;
  font-weight:1000;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--nl-ink-50);
}

.nl-drawerBrand__title{
  font-size:15px;
  font-weight:1000;
  letter-spacing:-.02em;
  color:var(--nl-ink-96);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.nl-drawer__close{
  flex:0 0 auto;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid var(--nl-bd);
  background:var(--nl-glass-82);
  color:var(--nl-text);
  box-shadow:
    0 10px 24px rgba(10,20,35,.08),
    inset 0 1px 0 rgba(255,255,255,.7);
  transition:
    transform .16s ease,
    background .16s ease,
    border-color .16s ease;
}

@media (hover:hover){
  .nl-drawer__close:hover{
    transform:translateY(-1px);
    background:var(--nl-glass-92);
    border-color:rgba(0,161,223,.16);
  }
}

.nl-drawer__body{
  flex:1 1 auto;
  min-height:0;
  overflow:auto;
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:18px;
}

.nl-drawerNav{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.nl-drawerNav__link{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  min-height:54px;
  padding:0 16px;
  border-radius:18px;
  text-decoration:none;
  color:var(--nl-ink-88);
  font-weight:900;
  font-size:14px;
  letter-spacing:.01em;
  border:1px solid rgba(12,18,28,.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.58));
  box-shadow:
    0 10px 26px rgba(10,20,35,.06),
    inset 0 1px 0 rgba(255,255,255,.72);
  transition:
    transform .16s ease,
    background .16s ease,
    border-color .16s ease,
    box-shadow .16s ease,
    color .16s ease;
}

.nl-drawerNav__arrow{
  font-size:14px;
  line-height:1;
  color:var(--nl-ink-54);
  transition:transform .16s ease, color .16s ease;
}

@media (hover:hover){
  .nl-drawerNav__link:hover{
    transform:translateY(-1px);
    color:var(--nl-ink-96);
    border-color:rgba(0,161,223,.16);
    background:
      linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.72));
    box-shadow:
      0 14px 30px rgba(10,20,35,.08),
      0 8px 20px rgba(0,161,223,.06);
  }

  .nl-drawerNav__link:hover .nl-drawerNav__arrow{
    transform:translateX(2px);
    color:var(--nl-ink-78);
  }
}

.nl-drawer__ctaGroup{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding-top:4px;
}

.nl-drawer__meta{
  margin-top:auto;
  padding-top:8px;
}

.nl-micro--soft{
  opacity:.72;
}

/* =========================
   ANIMATIONS
   ========================= */
@keyframes nlDrawerBackdropIn{
  from{ opacity:0; }
  to{ opacity:1; }
}

@keyframes nlDrawerPanelIn{
  from{ transform:translateX(100%); }
  to{ transform:translateX(0); }
}

/* =========================
   TINY MOBILE
   ========================= */
@media (max-width:380px){
  .nl-island{
    width:min(calc(100% - 14px), 100%);
    border-radius:18px;
  }

  .nl-island__inner{
    padding:10px;
  }

  .nl-brand{
    gap:10px;
  }

  .nl-brand__title{
    font-size:12px;
  }

  .nl-brand__subtitle{
    font-size:9px;
  }

  .nl-drawer__panel{
    width:100%;
  }

  .nl-drawer__body{
    padding:14px;
  }

  .nl-drawerNav__link{
    min-height:50px;
    padding:0 14px;
    font-size:13px;
  }
}

/* =========================================================
   @rails
   10) RAILS (left icons)
   ========================================================= */
.nl-rail{
  position:absolute;
  top:0;
  bottom:0;
  z-index:12;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:12px;
  pointer-events:none;
}

.nl-rail--left{
  left:clamp(10px, 1.4vw, 18px);
}

.nl-rail__label{
  writing-mode:vertical-rl;
  transform:rotate(180deg);
  letter-spacing:.24em;
  text-transform:uppercase;
  font-weight:1000;
  font-size:10px;
  color: var(--nl-text-weak);
  margin-bottom:8px;
}

.nl-rail__icon{
  pointer-events:auto;
  width:40px;
  height:40px;
  border-radius:999px;
  display:grid;
  place-items:center;
  border:1px solid var(--nl-bd);
  background: var(--nl-glass-86);
  box-shadow:
    0 16px 46px rgba(10,20,35,.12),
    inset 0 1px 0 rgba(255,255,255,.65);
  color: var(--nl-ink-82);
  transition:
    transform .16s ease,
    background .16s ease,
    border-color .16s ease,
    box-shadow .16s ease;
}

.nl-rail__icon svg{
  width:18px;
  height:18px;
  opacity:.92;
}

@media (hover:hover){
  .nl-rail__icon:hover{
    transform:translateY(-2px);
    background: var(--nl-glass-95);
    border-color:rgba(0,161,223,.22);
    box-shadow:
      0 20px 56px rgba(10,20,35,.14),
      0 14px 34px rgba(0,161,223,.10),
      inset 0 1px 0 rgba(255,255,255,.70);
  }
}

/* =========================================================
   11) RIGHT GUIDE — ULTRA MINIMAL DOTS (DESKTOP ONLY)
   ========================================================= */
@media (min-width: 860px){

  .nl-rail--right{
    position: fixed;
    top: 50%;
    right: clamp(10px, 1.4vw, 18px);
    transform: translateY(-50%);
    z-index: 2147483647;
    pointer-events: none;
  }

  .nl-rail--right.is-in-hero{
    opacity: 0;
    transform: translateY(-50%) translateX(8px);
  }

  .nl-rail--right.is-fixed{
    opacity: 1;
    transform: translateY(-50%) translateX(0);
    transition: opacity .18s ease, transform .18s ease;
  }

  .nl-railGuide--pro{
    pointer-events: auto;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
  }

  .nl-railGuide__items{
    display:flex;
    flex-direction:column;
    gap: 10px;
    align-items:center;
  }

  .nl-railGuide__item{
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--nl-ink-22);
    border: 1px solid rgba(12,18,28,.14);
    text-decoration:none;
    display:block;
    outline: none;
    transition:
      transform .14s ease,
      background .14s ease,
      border-color .14s ease,
      box-shadow .14s ease;
  }

  @media (hover:hover){
    .nl-railGuide__item:hover{
      transform: scale(1.12);
      background: var(--nl-ink-44);
      border-color: rgba(12,18,28,.22);
      box-shadow: 0 10px 26px rgba(10,20,35,.16);
    }
  }

  .nl-railGuide__item.is-active{
    background: rgba(0,161,223,.70);
    border-color: rgba(0,161,223,.55);
    box-shadow:
      0 0 0 5px rgba(0,161,223,.14),
      0 12px 30px rgba(0,161,223,.18);
  }

  .nl-railGuide__n,
  .nl-railGuide__label,
  .nl-railGuide__line{
    display:none !important;
  }

  .nl-railGuide__item::after{
    content: attr(aria-label);
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    opacity: 0;
    pointer-events: none;

    padding: 8px 10px;
    border-radius: 999px;

    background: var(--nl-pop-bg);
    border: 1px solid var(--nl-bd);
    box-shadow: var(--nl-pop-shadow);

    color: var(--nl-ink-86);
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;

    transition: opacity .14s ease, transform .14s ease;
  }

  @media (hover:hover){
    .nl-railGuide__item:hover::after{
      opacity: 1;
      transform: translateY(-50%) translateX(0);
    }
  }
}

@media (max-width: 859px){
  .nl-rail--right{ display:none !important; }
}