/* ───────────────────────────────────────────────────────────
   Nexin port overrides — custom styles on top of template CSS.
   Loaded last in nexin-preview/layout.tsx.
   ─────────────────────────────────────────────────────────── */

/* Pill base — unused (replaced by .wnm-hero-tagline v5) */

/* ─── Hero tagline (replaces "KTORÉ REÁLNE" pill) ─────────────── */
.nexin-root .wnm-hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 8px 0;
  margin: 6px 0 4px;
  color: #0a0a0b;
}
.nexin-root .wnm-hero-tagline__prefix {
  display: inline-flex;
  color: #c7ff1e;
  filter: drop-shadow(0 0 6px rgba(199, 255, 30, 0.45));
}
.nexin-root .wnm-hero-tagline__line {
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: wnm-tag-line-draw 1.1s cubic-bezier(0.22, 1, 0.36, 1) 400ms forwards;
}
.nexin-root .wnm-hero-tagline__arrow {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: wnm-tag-line-draw 0.6s cubic-bezier(0.22, 1, 0.36, 1) 1200ms forwards;
}
@keyframes wnm-tag-line-draw {
  to { stroke-dashoffset: 0; }
}

.nexin-root .wnm-hero-tagline__word {
  display: inline-block;
  overflow: hidden;
  line-height: 1;
  padding: 0.12em 0;
}
.nexin-root .wnm-hero-tagline__word-inner {
  display: inline-flex;
  position: relative;
  align-items: baseline;
}
.nexin-root .wnm-hero-tagline__em {
  font-family: "Marcellus", serif;
  font-style: italic;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1;
  color: #0a0a0b;
  display: inline-block;
  animation: wnm-tag-em-rise 1s cubic-bezier(0.16, 1, 0.3, 1) 700ms both;
}
@keyframes wnm-tag-em-rise {
  from { transform: translateY(80%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.nexin-root .wnm-hero-tagline__underline {
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -18%;
  width: 108%;
  height: 0.36em;
  color: #c7ff1e;
  filter: drop-shadow(0 0 6px rgba(199, 255, 30, 0.45));
}
.nexin-root .wnm-hero-tagline__underline path {
  stroke-dasharray: 280;
  stroke-dashoffset: 280;
  animation: wnm-tag-underline-draw 1.4s cubic-bezier(0.77, 0, 0.175, 1) 1500ms forwards;
}
@keyframes wnm-tag-underline-draw {
  to { stroke-dashoffset: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .nexin-root .wnm-hero-tagline__line,
  .nexin-root .wnm-hero-tagline__arrow,
  .nexin-root .wnm-hero-tagline__em,
  .nexin-root .wnm-hero-tagline__underline path { animation: none; stroke-dashoffset: 0; opacity: 1; transform: none; }
}
@media (max-width: 640px) {
  .nexin-root .wnm-hero-tagline {
    gap: 12px;
  }
  .nexin-root .wnm-hero-tagline__em {
    font-size: clamp(22px, 6vw, 34px);
  }
}

/* ─── Hero titles — shrink ~12% from Nexin default 220px
       for better breathing room (user review 2026-04-23) ───── */
.nexin-root .banner-one__big-title-one,
.nexin-root .banner-one__big-title-two {
  font-size: clamp(72px, 13.5vw, 194px);
  line-height: 0.96;
  letter-spacing: -0.015em;
}

/* Mobile: stack content-two vertically so pill doesn't crowd the title */
@media (max-width: 640px) {
  .nexin-root .banner-one__content-two {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .nexin-root .banner-one__content-two-list li+li {
    margin-left: 0;
  }
  /* Nexin default hides last li on mobile (was the avatar). We now have
     only one li (the lime pill) — force-show it. */
  .nexin-root .banner-one__content-two-list li:last-child {
    display: block;
  }
  .nexin-root .banner-one__big-title-one,
  .nexin-root .banner-one__big-title-two {
    font-size: clamp(56px, 16vw, 92px);
    line-height: 0.98;
  }
}

/* ─── Custom SiteHeader — dark premium bar ────────────────── */
:root {
  --header-bg: rgba(10, 10, 11, 0.88);
  --header-bg-scrolled: rgba(10, 10, 11, 0.96);
  --header-border: rgba(255, 252, 246, 0.08);
  --header-border-scrolled: rgba(255, 252, 246, 0.14);
  --header-ink: #0a0a0b;
  --header-fg: #f6f5f1;
  --header-muted: rgba(246, 245, 241, 0.55);
  --header-lime: #c7ff1e;
  --header-lime-dark: #4f6b00;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: #0a0a0b;
  border-bottom: 1px solid rgba(255, 252, 246, 0.08);
  transition: border-color 0.4s, box-shadow 0.4s;
}
.site-header.is-scrolled {
  border-bottom-color: rgba(255, 252, 246, 0.14);
  box-shadow: 0 10px 30px -18px rgba(10, 10, 11, 0.6);
}

/* All Nexin hero sections start below fixed 76px header */
.nexin-root .wnm-srv__hero,
.nexin-root .wnm-pri__hero,
.nexin-root .wnm-kt__hero,
.nexin-root .wnm-prj__hero,
.nexin-root .wnm-ab__hero,
.nexin-root .wnm-bg__hero,
.nexin-root .wnm-bg2__hero,
.nexin-root .wnm-bg3__hero,
.nexin-root .wnm-bp__hero,
.nexin-root .wnm-cs__hero,
.nexin-root .wnm-terms__hero,
.nexin-root .wnm-city__hero {
  padding-top: clamp(120px, 14vh, 160px) !important;
}

.site-header__inner {
  max-width: 1480px;
  margin: 0 auto;
  height: 76px;
  padding: 0 clamp(18px, 3vw, 36px);
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
}

/* ─ Brand — lime logo badge only, no wordmark ─ */
.site-header__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #f6f5f1;
  flex-shrink: 0;
}
.site-header__logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: #c7ff1e;
  box-shadow: 0 0 0 1.5px rgba(199, 255, 30, 0.35),
    0 6px 18px -6px rgba(199, 255, 30, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-header__brand:hover .site-header__logo {
  transform: rotate(-8deg) scale(1.06);
}
.site-header__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─ Primary nav ─ Unbounded variable, modern sans with character */
.site-header__nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 32px);
  flex: 1;
  justify-content: center;
}
@media (max-width: 1080px) {
  .site-header__nav {
    display: none;
  }
}
.site-header__link {
  position: relative;
  font-family: "Unbounded", "Kanit", sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f6f5f1;
  text-decoration: none;
  padding: 10px 2px;
  transition: color 0.3s;
}
.site-header__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  height: 2px;
  width: 0;
  background: #c7ff1e;
  transform: translateX(-50%);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}
.site-header__link:hover {
  color: #c7ff1e;
}
.site-header__link:hover::after {
  width: calc(100% - 6px);
}
.site-header__link.is-active {
  color: #c7ff1e;
}
.site-header__link.is-active::after {
  width: calc(100% - 6px);
}

/* ─ Right cluster ─ */
.site-header__right {
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 1.6vw, 18px);
  flex-shrink: 0;
  margin-left: auto;
}

.site-header__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  border: 1px solid rgba(246, 245, 241, 0.14);
  border-radius: 999px;
  font-family: "Unbounded", "Kanit", sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f6f5f1;
  background: rgba(246, 245, 241, 0.04);
}
@media (max-width: 900px) {
  .site-header__badge {
    display: none !important;
  }
  /* Mobile header — hide CTA, keep only logo + burger. CTA lives in FloatingContact. */
  .site-header__cta {
    display: none !important;
  }
}
.site-header__badge-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c7ff1e;
  box-shadow: 0 0 0 3px rgba(199, 255, 30, 0.22);
  animation: siteHeaderPulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes siteHeaderPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(199, 255, 30, 0.28); }
  50%      { box-shadow: 0 0 0 7px rgba(199, 255, 30, 0.04); }
}
.site-header__badge-label {
  font-weight: 700;
  color: #c7ff1e;
}
.site-header__badge-sep {
  color: rgba(246, 245, 241, 0.55);
  font-weight: 400;
}
.site-header__badge-meta {
  color: rgba(246, 245, 241, 0.55);
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ─ CTA — lime pill, inverted on hover (ink + lime text) ─ */
.site-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: #c7ff1e;
  color: #0a0a0b;
  border-radius: 999px;
  border: 1px solid #c7ff1e;
  font-family: "Unbounded", "Kanit", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.35s, color 0.35s, border-color 0.35s;
}
.site-header__cta:hover {
  background: #0a0a0b;
  color: #c7ff1e;
  border-color: #c7ff1e;
  transform: translateY(-1px);
}
.site-header__cta svg {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-header__cta:hover svg {
  transform: translateX(3px);
}

/* ─ Burger (mobile) ─ */
.site-header__burger {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #c7ff1e;
  color: #0a0a0b;
  border: none;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  flex-shrink: 0;
}
.site-header__burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.site-header__burger span:last-child {
  width: 12px;
}
@media (max-width: 1080px) {
  .site-header__burger {
    display: inline-flex;
  }
}

/* ─ Mobile overlay ─ */
.site-mobile {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #0a0a0b;
  color: #f9f9f9;
  display: none;
  flex-direction: column;
  padding: 64px 28px 32px;
}
.site-mobile.is-open {
  display: flex;
  opacity: 1;
  animation: siteMobileIn 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes siteMobileIn {
  0% { opacity: 0; transform: translateY(-8px); }
  100% { opacity: 1; transform: translateY(0); }
}
.site-mobile__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.06);
  border: 1px solid rgba(255, 252, 246, 0.14);
  color: #f6f5f1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.site-mobile__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
.site-mobile__nav a {
  font-family: "Unbounded", "Kanit", sans-serif;
  font-size: clamp(28px, 7vw, 44px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
  color: #f6f5f1;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s;
}
.site-mobile.is-open .site-mobile__nav a {
  opacity: 1;
  transform: translateY(0);
}
.site-mobile__nav a:hover {
  color: #c7ff1e;
}
.site-mobile__foot {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  font-family: "Unbounded", sans-serif;
  font-size: 13px;
  color: rgba(246, 245, 241, 0.55);
}
.site-mobile__foot a {
  color: #f6f5f1;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.site-mobile__foot a:hover {
  border-bottom-color: #c7ff1e;
}

/* Nexin preloader — ensure lime (our accent, not default yellow-green) + fade-out */
.wnm-preloader { transition: opacity 0.45s ease, visibility 0.45s ease; }
.wnm-preloader--fade { opacity: 0; visibility: hidden; pointer-events: none; }
.wnm-preloader div:nth-child(1) { background-color: #c7ff1e !important; }
.wnm-preloader div:nth-child(2) { background-color: rgba(199, 255, 30, 0.7) !important; }
.wnm-preloader div:nth-child(3) { background-color: rgba(199, 255, 30, 0.4) !important; }

/* Hero — compact, Nexin-original background stays untouched (v6) */
.nexin-root .banner-one {
  padding-top: 132px;
  padding-bottom: 110px;
  position: relative;
  overflow: visible;
  z-index: 5;
}
.nexin-root .banner-one > .container {
  width: 100%;
}

/* Grain overlay removed — it was cooling the Nexin cream bg. Keep clean. */
.nexin-root .wnm-hero-grain { display: none; }

/* ─── Services — Ink Tier Cards (dark bg, lime pill price) v3 ─── */
.nexin-root .service-one {
  --so-ink: #0a0a0b;
  --so-lime: #c7ff1e;
  --so-cream: #f9f9f9;
  --so-cream-dim: rgba(246, 239, 224, 0.55);
  --so-border: rgba(246, 239, 224, 0.12);
  --so-border-hv: rgba(199, 255, 30, 0.6);
  --so-gray: rgba(246, 239, 224, 0.55);
  --so-transition: 0.36s cubic-bezier(0.22, 1, 0.36, 1);
  background-color: var(--so-ink);
  padding-bottom: 80px;
}

.nexin-root .section-title__title,
.nexin-root .service-one__title,
.nexin-root .service-one__sub-title,
.nexin-root .service-one__top-text,
.nexin-root .service-one__text {
  text-transform: none !important;
}
.nexin-root .section-title__title {
  font-family: "Marcellus", serif !important;
  font-size: clamp(32px, 3.6vw, 58px) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.018em !important;
  font-weight: 400 !important;
}
.nexin-root .service-one .section-title__tagline {
  color: var(--so-lime) !important;
  font-family: "Unbounded", "Kanit", sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.22em !important;
}
.nexin-root .service-one .section-title__tagline-shape {
  background: var(--so-lime) !important;
}
.nexin-root .service-one .section-title__title {
  color: var(--so-cream) !important;
}
.nexin-root .service-one__top {
  border-bottom-color: var(--so-border) !important;
}
.nexin-root .service-one__top-text {
  color: var(--so-cream-dim) !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: clamp(14px, 1.15vw, 16px) !important;
  line-height: 1.7 !important;
}
.nexin-root .service-one__top-text::before {
  background-color: var(--so-border) !important;
}

/* Card inner — ink with chamfered clip-path */
.nexin-root .service-one__single::before,
.nexin-root .service-one__single::after {
  display: none !important;
}
.nexin-root .service-one__single-inner {
  background-color: #111114 !important;
  border: 1px solid var(--so-border);
  border-radius: 2px !important;
  padding: 36px 36px 40px !important;
  transition: border-color var(--so-transition), box-shadow var(--so-transition),
    background-color var(--so-transition);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 88% 100%, 0 100%, 0% 50%);
}
.nexin-root .service-one__single-inner::before,
.nexin-root .service-one__single-inner::after {
  display: none !important;
}
.nexin-root .service-one__single {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .service-one__single:hover {
  transform: translateY(-4px);
}
.nexin-root .service-one__single:hover .service-one__single-inner {
  border-color: var(--so-border-hv) !important;
  box-shadow: 0 0 0 1px rgba(199, 255, 30, 0.18),
    0 20px 48px -12px rgba(0, 0, 0, 0.72);
  background-color: #13130f !important;
}
.nexin-root .service-one__single-inner-shape-1 {
  background-color: var(--so-border) !important;
  transition: background-color var(--so-transition);
}
.nexin-root .service-one__single:hover .service-one__single-inner-shape-1 {
  background-color: var(--so-lime) !important;
}

/* Price — lime outlined pill, display-sized (hero of the card) */
.nexin-root .service-one__sub-title-box {
  align-items: center;
  gap: 0;
  margin-bottom: 4px;
}
.nexin-root .service-one__sub-title-shape-1 {
  display: none !important;
}
.nexin-root .service-one__sub-title {
  display: inline-block;
  font-family: "Marcellus", serif !important;
  font-size: clamp(22px, 2.4vw, 30px) !important;
  font-weight: 400 !important;
  letter-spacing: -0.02em !important;
  color: var(--so-lime) !important;
  line-height: 1 !important;
  background: rgba(199, 255, 30, 0.07);
  border: 1px solid rgba(199, 255, 30, 0.22);
  border-radius: 100px;
  padding: 8px 18px !important;
  transition: background var(--so-transition), border-color var(--so-transition);
}
.nexin-root .service-one__single:hover .service-one__sub-title {
  background: rgba(199, 255, 30, 0.13);
  border-color: rgba(199, 255, 30, 0.5);
}

/* Title — cream serif */
.nexin-root .service-one__title {
  font-family: "Marcellus", serif !important;
  font-size: clamp(20px, 2vw, 26px) !important;
  font-weight: 400 !important;
  line-height: 1.3 !important;
  margin: 18px 0 16px !important;
  color: var(--so-cream) !important;
}
.nexin-root .service-one__title a {
  color: var(--so-cream) !important;
  text-decoration: none;
}
.nexin-root .service-one__single:hover .service-one__title,
.nexin-root .service-one__single:hover .service-one__title a {
  color: #fff !important;
}

/* Icon — cream → lime glow on hover */
.nexin-root .service-one__icon {
  display: block;
  margin: 20px 0 4px;
}
.nexin-root .service-one__icon span {
  font-size: 44px !important;
  color: var(--so-cream-dim) !important;
  transition: color var(--so-transition), filter var(--so-transition);
}
.nexin-root .service-one__single:hover .service-one__icon span {
  color: var(--so-lime) !important;
  filter: drop-shadow(0 0 8px rgba(199, 255, 30, 0.45));
}

/* Description — gray → dim cream on hover */
.nexin-root .service-one__text {
  color: var(--so-gray) !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: clamp(13px, 1.1vw, 15px) !important;
  line-height: 1.7 !important;
  margin-top: 16px !important;
}
.nexin-root .service-one__single:hover .service-one__text {
  color: rgba(246, 239, 224, 0.72) !important;
}

/* Arrow badge — JSX uses <span> (not <a>) because the whole card is a Link.
   Selectors target the span directly. Hover = lime fill + black icon. */
.nexin-root .service-one__arrow {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: #1a1a1e;
  border: 1px solid var(--so-border);
  border-radius: 50%;
  font-size: 22px;
  color: var(--so-cream-dim);
  transition: background-color var(--so-transition),
    border-color var(--so-transition),
    color var(--so-transition),
    box-shadow var(--so-transition);
}
.nexin-root .service-one__arrow .icon-arrow-down {
  transition: color var(--so-transition);
}
.nexin-root .service-one__single:hover .service-one__arrow {
  background-color: #c7ff1e !important;
  border-color: #c7ff1e !important;
  color: #0a0a0b !important;
  box-shadow: 0 0 24px rgba(199, 255, 30, 0.55);
}
.nexin-root .service-one__single:hover .service-one__arrow .icon-arrow-down {
  color: #0a0a0b !important;
}

/* Responsive */
@media (max-width: 1024px) {
  .nexin-root .service-one__single-inner {
    padding: 28px 28px 32px !important;
  }
  .nexin-root .service-one__sub-title {
    font-size: clamp(18px, 2.8vw, 24px) !important;
  }
  .nexin-root .service-one__title {
    font-size: clamp(18px, 2.4vw, 22px) !important;
  }
}
@media (max-width: 640px) {
  .nexin-root .service-one {
    padding-bottom: 48px;
  }
  .nexin-root .service-one__single-inner {
    padding: 24px 22px 28px !important;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 92% 100%, 0 100%, 0% 50%);
    margin-bottom: 16px;
  }
  .nexin-root .service-one__sub-title { font-size: 20px !important; }
  .nexin-root .service-one__title {
    font-size: 19px !important;
    margin: 14px 0 12px !important;
  }
  .nexin-root .service-one__icon span { font-size: 36px !important; }
  .nexin-root .service-one__text { font-size: 13px !important; }
}

/* ─── Responsive show/hide helpers ─── */
.wnm-show-mobile { display: none; }
@media (max-width: 640px) {
  .wnm-hide-mobile { display: none !important; }
  .wnm-show-mobile { display: inline; }
}

/* ─── Generic staggered rise reveal ──────────────────────────── */
.wnm-hero-reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: wnm-hero-rise 1s cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0ms) forwards;
}
@keyframes wnm-hero-rise {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Clip-path word reveal (Weby, Zarábajú) ──────────────────
   Outer h2 clips; inner wrapper lifts so text appears to rise from
   bottom edge. Each char has its own stagger via var(--i) + var(--d). */
.wnm-clip-reveal {
  display: inline-block;
  overflow: hidden;
  line-height: 1;
  /* safari needs explicit padding so descenders (ú, á) don't get clipped */
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
  vertical-align: top;
}
.wnm-clip-reveal__inner {
  display: inline-flex;
  white-space: nowrap;
  line-height: inherit;
  font-family: inherit;
}
.wnm-clip-reveal .wnm-char {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: wnm-char-rise 1.1s cubic-bezier(0.2, 0.9, 0.2, 1)
    calc(var(--d, 0ms) + var(--i, 0) * 55ms) forwards;
}
/* Keep natural spacing between word-parts even though inner is flex */
.wnm-clip-reveal .wnm-char:first-child { margin-left: 0; }
@keyframes wnm-char-rise {
  0%   { transform: translateY(110%); opacity: 0; }
  60%  { opacity: 1; }
  100% { transform: translateY(0);    opacity: 1; }
}

/* ─── Pill reveal — scale in with subtle rotate ─── */
.wnm-pill-reveal {
  opacity: 0;
  transform: scale(0.86) rotate(-2deg);
  transform-origin: center center;
  animation: wnm-pill-pop 0.9s cubic-bezier(0.34, 1.3, 0.64, 1) var(--d, 0ms) forwards;
}
@keyframes wnm-pill-pop {
  0%   { opacity: 0; transform: scale(0.86) rotate(-2deg); }
  65%  { opacity: 1; transform: scale(1.04) rotate(0.5deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

@media (prefers-reduced-motion: reduce) {
  .wnm-hero-reveal,
  .wnm-clip-reveal .wnm-char,
  .wnm-pill-reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ─── Hero primary CTA row (lime pill + outline secondary) ────── */
/* Secondary inline text link (now the only inline CTA in details-box) */
.nexin-root .wnm-hero-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 10px 0 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #0a0a0b;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, color 0.25s;
}
.nexin-root .wnm-hero-cta__link:hover {
  border-bottom-color: #0a0a0b;
}
.nexin-root .wnm-hero-cta__link .icon-arrow-up-right {
  font-size: 13px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-hero-cta__link:hover .icon-arrow-up-right {
  transform: translate(2px, -2px);
}

/* ─── Beam-glow CTA (v4: bigger, with eyebrow label) ──────────── */
@property --wnm-beam-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
.nexin-root .wnm-hero-cta-main {
  margin-top: clamp(28px, 4vw, 48px);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}
.nexin-root .wnm-beam-cta-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.nexin-root .wnm-beam-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Unbounded", "Kanit", sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.55);
}
.nexin-root .wnm-beam-cta__eyebrow-dash {
  width: 28px;
  height: 1px;
  background: #c7ff1e;
  box-shadow: 0 0 8px rgba(199, 255, 30, 0.7);
}
.nexin-root .wnm-beam-cta {
  --wnm-beam-angle: 0deg;
  position: relative;
  display: inline-flex;
  isolation: isolate;
  border-radius: 999px;
  padding: 2px;
  text-decoration: none;
  background: transparent;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  animation: wnm-beam-spin 4s linear infinite;
}
.nexin-root .wnm-beam-cta__border {
  overflow: hidden;
}
.nexin-root .wnm-beam-cta:hover {
  transform: translateY(-2px);
}
.nexin-root .wnm-beam-cta__border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: conic-gradient(
    from var(--wnm-beam-angle),
    #c7ff1e 0deg,
    rgba(199, 255, 30, 0.9) 30deg,
    rgba(199, 255, 30, 0.1) 90deg,
    rgba(199, 255, 30, 0.02) 180deg,
    rgba(199, 255, 30, 0.1) 270deg,
    rgba(199, 255, 30, 0.9) 330deg,
    #c7ff1e 360deg
  );
  z-index: 0;
}
.nexin-root .wnm-beam-cta::before {
  content: "";
  position: absolute;
  inset: -40px;
  border-radius: 999px;
  background: radial-gradient(closest-side, rgba(199, 255, 30, 0.35), transparent 70%);
  z-index: -1;
  filter: blur(20px);
  opacity: 0.5;
  transition: opacity 0.4s ease;
}
.nexin-root .wnm-beam-cta:hover::before {
  opacity: 0.9;
}
.nexin-root .wnm-beam-cta__inner {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 22px 42px;
  border-radius: 999px;
  background: #c7ff1e; /* lime base */
  color: #0a0a0b;
  font-family: "Unbounded", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  box-shadow: 0 14px 38px -12px rgba(199, 255, 30, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
/* Shine sweep — diagonal white gradient pass across the lime face */
.nexin-root .wnm-beam-cta__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(255, 255, 255, 0.55) 48%,
    rgba(255, 255, 255, 0.85) 50%,
    rgba(255, 255, 255, 0.55) 52%,
    transparent 70%
  );
  transform: translateX(-120%);
  animation: wnm-cta-shine 3.2s cubic-bezier(0.6, 0, 0.4, 1) infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}
/* Soft lime halo pulse that grows from under the pill */
.nexin-root .wnm-beam-cta__inner::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(199, 255, 30, 0.55);
  animation: wnm-cta-halo 2.8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  pointer-events: none;
  z-index: -1;
}
@keyframes wnm-cta-shine {
  0%, 15%  { transform: translateX(-120%); }
  70%, 100%{ transform: translateX(120%); }
}
@keyframes wnm-cta-halo {
  0%   { box-shadow: 0 0 0 0 rgba(199, 255, 30, 0.65); }
  70%  { box-shadow: 0 0 0 26px rgba(199, 255, 30, 0); }
  100% { box-shadow: 0 0 0 0 rgba(199, 255, 30, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .nexin-root .wnm-beam-cta__inner::before,
  .nexin-root .wnm-beam-cta__inner::after { animation: none; }
}
.nexin-root .wnm-beam-cta__inner svg {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-beam-cta:hover .wnm-beam-cta__inner svg {
  transform: translateX(3px);
}
.nexin-root .wnm-beam-cta__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(10, 10, 11, 0.6);
  letter-spacing: 0.01em;
}
.nexin-root .wnm-beam-cta__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c7ff1e;
  box-shadow: 0 0 0 0 rgba(199, 255, 30, 0.7);
  animation: wnm-beam-meta-pulse 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
@keyframes wnm-beam-spin {
  to { --wnm-beam-angle: 360deg; }
}
@keyframes wnm-beam-meta-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(199, 255, 30, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(199, 255, 30, 0); }
  100% { box-shadow: 0 0 0 0 rgba(199, 255, 30, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .nexin-root .wnm-beam-cta,
  .nexin-root .wnm-beam-cta__dot { animation: none; }
}

/* Hide default Nexin review-box — replaced by .wnm-trust-strip */
.nexin-root .banner-one__review-box {
  display: none;
}

/* ─── Trust strip — horizontal typographic row, 4 stats ────── */
.nexin-root .wnm-trust-strip {
  margin-top: clamp(42px, 5vw, 72px);
  padding-top: clamp(28px, 3vw, 44px);
  border-top: 1px solid rgba(10, 10, 11, 0.12);
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: clamp(18px, 2.5vw, 40px);
  max-width: 860px;
}
.nexin-root .wnm-trust-strip__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.nexin-root .wnm-trust-strip__num {
  font-family: "Marcellus", serif;
  font-size: clamp(32px, 3.2vw, 44px);
  line-height: 1;
  color: #0a0a0b;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
}
.nexin-root .wnm-trust-strip__num em {
  font-family: "Unbounded", "Kanit", sans-serif;
  font-size: 0.38em;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.06em;
  margin-left: 3px;
  color: #c7ff1e;
  text-shadow: 0 0 10px rgba(199, 255, 30, 0.5);
}
.nexin-root .wnm-trust-strip__label {
  font-family: "Unbounded", "Kanit", sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.55);
}
.nexin-root .wnm-trust-strip__sep {
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, transparent, rgba(10, 10, 11, 0.25), transparent);
}

/* ─── Scroll progress rail — fixed right edge, fills on scroll ─────
   Pro adaptive design: visible on BOTH light AND dark backgrounds.
   Label uses mix-blend-mode: difference (auto-inverts).
   Track uses neutral mid-grey with subtle ring (visible on both).
   Fill stays lime (saturated colors pop on both contrasts).            */
.wnm-scroll-rail {
  position: fixed;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 40;
  pointer-events: none;
}
.wnm-scroll-rail__label {
  font-family: "Unbounded", "Kanit", "Plus Jakarta Sans", sans-serif;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  /* Brand lime text — subtle, no pill chip. 1px dark text-shadow stroke
     dáva čitateľnosť na cream bg bez toho aby sa farba dynamicky menila. */
  color: #c7ff1e;
  text-shadow:
    0 0 1px rgba(10, 10, 11, 0.65),
    0 1px 2px rgba(10, 10, 11, 0.25);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.wnm-scroll-rail__track {
  position: relative !important;
  width: 2px;
  height: 120px;
  background: rgba(128, 128, 128, 0.42);
  border-radius: 99px;
  overflow: visible;
  box-shadow:
    0 0 0 0.5px rgba(255, 255, 255, 0.18),
    inset 0 0 0 0.5px rgba(0, 0, 0, 0.12);
}
.wnm-scroll-rail__track::before,
.wnm-scroll-rail__track::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: rgba(140, 140, 140, 0.45);
  box-shadow:
    0 0 0 0.5px rgba(255, 255, 255, 0.12),
    inset 0 0 0 0.5px rgba(0, 0, 0, 0.1);
}
.wnm-scroll-rail__track::before { top: -8px; }
.wnm-scroll-rail__track::after { bottom: -8px; }
.wnm-scroll-rail__fill {
  position: absolute !important;
  top: 0 !important;
  bottom: auto !important;
  left: 0 !important;
  width: 100% !important;
  height: var(--wnm-scroll-h, 0px) !important;
  /* --rail-accent is set per page (default lime). On case study pages
     it's tinted to the project's category color via ScrollbarTint, then
     swapped back to lime when footer enters viewport. */
  background: linear-gradient(
    180deg,
    var(--rail-accent, #c7ff1e) 0%,
    color-mix(in oklab, var(--rail-accent, #c7ff1e) 70%, white) 100%
  );
  box-shadow:
    0 0 12px color-mix(in oklab, var(--rail-accent, #c7ff1e) 85%, transparent),
    0 0 28px color-mix(in oklab, var(--rail-accent, #c7ff1e) 45%, transparent),
    0 0 0 0.5px color-mix(in oklab, var(--rail-accent, #c7ff1e) 40%, transparent);
  border-radius: 99px;
  transition: height 0.08s linear, background 0.6s ease, box-shadow 0.6s ease;
}
.wnm-scroll-rail__label {
  color: var(--rail-accent, #c7ff1e) !important;
  transition: color 0.6s ease;
}
@media (max-width: 767px) {
  .wnm-scroll-rail { display: none; }
}

/* ─── Pill variants — toggleable via class on content-two-single ─── */
/* Common base shared across all variants — reset Nexin defaults */
.nexin-root .wnm-pill--dark,
.nexin-root .wnm-pill--soft,
.nexin-root .wnm-pill--outline {
  min-height: auto !important;
  padding: 16px 26px 16px 22px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  border-radius: 999px !important;
  box-shadow: none !important;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-pill--dark::after,
.nexin-root .wnm-pill--soft::after,
.nexin-root .wnm-pill--outline::after {
  content: none !important;
}
.nexin-root .wnm-pill--dark:hover,
.nexin-root .wnm-pill--soft:hover,
.nexin-root .wnm-pill--outline:hover {
  transform: translateY(-2px);
}
.nexin-root [class*="wnm-pill--"] h3 {
  font-family: "Unbounded", "Kanit", sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
  margin: 0 !important;
}
.nexin-root .wnm-pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #c7ff1e;
  box-shadow: 0 0 10px rgba(199, 255, 30, 0.7);
  animation: wnm-pill-dot-pulse 2.4s ease-in-out infinite;
}
.nexin-root .wnm-pill__arrow {
  font-family: "Marcellus", serif;
  font-size: 22px;
  line-height: 1;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
[class*="wnm-pill--"]:hover .wnm-pill__arrow {
  transform: translateX(4px);
}
@keyframes wnm-pill-dot-pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(199, 255, 30, 0.55); transform: scale(1); }
  50%      { box-shadow: 0 0 14px rgba(199, 255, 30, 0.9); transform: scale(1.18); }
}

/* Variant A — DARK CHIP (primary pick) */
.nexin-root .wnm-pill--dark {
  background: #0a0a0b !important;
  border: 1px solid #0a0a0b !important;
}
.nexin-root .wnm-pill--dark h3 { color: #f6f5f1 !important; }
.nexin-root .wnm-pill--dark .wnm-pill__arrow { color: #c7ff1e; }

/* Variant B — SOFT LIME TINT */
.nexin-root .wnm-pill--soft {
  background: rgba(199, 255, 30, 0.22) !important;
  border: 1px solid rgba(199, 255, 30, 0.6) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.nexin-root .wnm-pill--soft h3 { color: #0a0a0b !important; }
.nexin-root .wnm-pill--soft .wnm-pill__arrow { color: #0a0a0b; }

/* Variant C — DOUBLE OUTLINE */
.nexin-root .wnm-pill--outline {
  background: transparent !important;
  border: 1.5px solid #0a0a0b !important;
  box-shadow: inset 0 0 0 4px rgba(199, 255, 30, 0.18) !important;
}
.nexin-root .wnm-pill--outline h3 { color: #0a0a0b !important; }
.nexin-root .wnm-pill--outline .wnm-pill__arrow { color: #0a0a0b; }

/* ─── Mobile hero (v4: tighter, still mobile-first) ──────────── */
@media (max-width: 640px) {
  .nexin-root .banner-one {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 80px;
  }
  .nexin-root [class*="wnm-pill--"] {
    padding: 12px 18px 12px 16px !important;
    gap: 10px !important;
  }
  .nexin-root [class*="wnm-pill--"] h3 {
    font-size: 12.5px !important;
    letter-spacing: 0.1em !important;
    white-space: nowrap !important;
  }
  .nexin-root .wnm-pill__arrow { font-size: 18px; }
  .nexin-root .wnm-pill__dot { width: 6px; height: 6px; }
  .nexin-root .banner-one__big-title-one,
  .nexin-root .banner-one__big-title-two {
    font-size: clamp(68px, 20vw, 118px);
    line-height: 0.94;
    letter-spacing: -0.025em;
    font-weight: 400;
  }
  .nexin-root .banner-one__details-box {
    margin-top: 28px;
  }
  .nexin-root .banner-one__text-box-one p {
    font-size: 15.5px;
    line-height: 1.55;
  }
  .nexin-root .wnm-hero-cta__link {
    font-size: 14px;
    margin-top: 12px;
  }
  /* Trust strip — 2x2 grid on mobile, smaller type */
  .nexin-root .wnm-trust-strip {
    margin-top: 32px;
    padding-top: 24px;
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
  }
  .nexin-root .wnm-trust-strip__sep { display: none; }
  .nexin-root .wnm-trust-strip__item {
    padding-left: 12px;
    border-left: 1px solid rgba(10, 10, 11, 0.15);
  }
  .nexin-root .wnm-trust-strip__num { font-size: 28px; }
  .nexin-root .wnm-trust-strip__label { font-size: 9.5px; letter-spacing: 0.14em; }
}

/* ─── Explore Orbit — rotating SEO keyword circle ──────────
   Half-straddles the section boundary (bottom of hero, top of next). */
.explore-orbit {
  position: absolute;
  right: clamp(24px, 6vw, 96px);
  bottom: 0;
  transform: translateY(50%);
  width: 180px;
  height: 180px;
  background: #0a0a0b;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  color: #f6f5f1;
  text-decoration: none;
  box-shadow: 0 24px 54px -22px rgba(10, 10, 11, 0.55);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.explore-orbit:hover {
  transform: translateY(50%) scale(1.04);
}

.explore-orbit__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: exploreOrbitSpin 16s linear infinite;
}
.explore-orbit:hover .explore-orbit__ring {
  animation-duration: 8s;
}
.explore-orbit__ring text {
  font-family: "Unbounded", "Kanit", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  fill: #f6f5f1;
}
@keyframes exploreOrbitSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.explore-orbit__arrow {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #c7ff1e;
  color: #0a0a0b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.explore-orbit:hover .explore-orbit__arrow {
  transform: rotate(-45deg);
}

@media (max-width: 640px) {
  .explore-orbit {
    width: 130px;
    height: 130px;
    right: 18px;
  }
  .explore-orbit__ring text {
    font-size: 10px;
    letter-spacing: 0.06em;
  }
  .explore-orbit__arrow {
    width: 40px;
    height: 40px;
  }
}

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

/* ─── Explore One section — cinematic bg + overlay content ────── */
.nexin-root .explore-one {
  position: relative;
  padding: 0;
  min-height: 755px;
  max-height: 785px;
  overflow: hidden;
  z-index: 1;
}
.nexin-root .explore-one__bg {
  position: relative;
  width: 100%;
  min-height: 755px;
  max-height: 785px;
  background-repeat: no-repeat;
  background-size: cover;
  /* 2026-04-23 — user review: crop ~10px more off ceiling + reveal book/pen/mug/laptop fully.
     Height grew +20px (10 top-crop, 10 bottom-reveal); Y bumped from 42% → 58% so scene sits lower. */
  background-position: 50% 58%;
  display: flex;
  align-items: center;
}
.nexin-root .explore-one__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 10, 11, 0.72) 0%,
    rgba(10, 10, 11, 0.45) 40%,
    rgba(10, 10, 11, 0.1) 75%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}
.nexin-root .explore-one__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 11, 0.35) 0%,
    transparent 30%,
    transparent 70%,
    rgba(10, 10, 11, 0.45) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.nexin-root .explore-one__bg .container {
  position: relative;
  z-index: 2;
  padding-top: clamp(72px, 9vh, 110px);
  padding-bottom: clamp(72px, 9vh, 110px);
}
.explore-one__content {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.4vw, 24px);
  color: #f6f5f1;
}
.explore-one__eyebrow {
  font-family: "Unbounded", "Kanit", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c7ff1e;
  display: inline-flex;
  gap: 8px;
}
.explore-one__eyebrow span {
  color: rgba(199, 255, 30, 0.5);
}
.explore-one__title {
  font-family: "Marcellus", serif;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #f6f5f1;
  margin: 0;
  font-weight: 400;
}
.explore-one__title em {
  font-style: italic;
  color: #c7ff1e;
  display: block;
}
.explore-one__lead {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  color: rgba(246, 245, 241, 0.94);
  max-width: 540px;
  margin: 0;
}
.explore-one__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: #c7ff1e;
  color: #0a0a0b;
  border: 1px solid #c7ff1e;
  border-radius: 999px;
  font-family: "Unbounded", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  align-self: flex-start;
  margin-top: 12px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.35s, color 0.35s;
}
.explore-one__cta:hover {
  background: transparent;
  color: #c7ff1e;
  transform: translateY(-1px);
}
.explore-one__cta svg {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.explore-one__cta:hover svg {
  transform: translateX(3px);
}

@media (max-width: 1024px) {
  .nexin-root .explore-one,
  .nexin-root .explore-one__bg {
    min-height: 570px;
    max-height: 650px;
  }
}
@media (max-width: 640px) {
  .nexin-root .explore-one,
  .nexin-root .explore-one__bg {
    min-height: 480px;
    max-height: 580px;
  }
}

/* ─── About One section — DARK theme (Nexin original vibe) ───────── */
.nexin-root .about-one {
  position: relative;
  padding: clamp(80px, 10vh, 130px) 0 clamp(80px, 10vh, 130px);
  background: #0a0a0b;
  color: #f6f5f1;
  overflow: hidden;
  z-index: 1;
}
/* ─── Subtle blueprint — web wireframe ghost (behind text) ────── */
.nexin-root .about-one__blueprint {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
  mask-image: radial-gradient(ellipse at 75% 40%, #000 0%, rgba(0,0,0,0.85) 45%, rgba(0,0,0,0) 80%);
  -webkit-mask-image: radial-gradient(ellipse at 75% 40%, #000 0%, rgba(0,0,0,0.85) 45%, rgba(0,0,0,0) 80%);
}
.nexin-root .about-one__blueprint-cta {
  stroke: rgba(199, 255, 30, 0.5);
  stroke-width: 1.2;
  animation: wnm-blueprint-cta-breathe 4s ease-in-out infinite;
}
@keyframes wnm-blueprint-cta-breathe {
  0%, 100% { stroke-opacity: 0.5; }
  50%      { stroke-opacity: 0.9; }
}
.nexin-root .about-one__blueprint-ping {
  animation: wnm-blueprint-ping 9s cubic-bezier(0.33, 0, 0.67, 1) infinite;
}
@keyframes wnm-blueprint-ping {
  0%   { transform: translateX(86px);  opacity: 0; }
  10%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateX(532px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .nexin-root .about-one__blueprint-cta,
  .nexin-root .about-one__blueprint-ping { animation: none; }
}
.nexin-root .about-one .container {
  position: relative;
  z-index: 2;
}
.nexin-root .about-one__eyebrow {
  font-family: "Unbounded", "Kanit", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c7ff1e;
  display: inline-flex;
  gap: 8px;
  margin-bottom: clamp(20px, 2.5vw, 32px);
}
.nexin-root .about-one__eyebrow span {
  color: rgba(199, 255, 30, 0.45);
}
.nexin-root .about-one__title {
  font-family: "Marcellus", serif;
  font-size: clamp(30px, 3.8vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: #f6f5f1;
  margin: 0 0 clamp(48px, 6vw, 80px);
  font-weight: 400;
  max-width: 960px;
}
.nexin-root .about-one__title em {
  font-style: italic;
  position: relative;
  padding: 0 0.08em;
  background: linear-gradient(180deg, transparent 66%, rgba(199, 255, 30, 0.55) 66%);
  color: #f6f5f1;
}
.nexin-root .about-one__grid {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  margin-bottom: clamp(60px, 8vw, 100px);
}
.nexin-root .about-one__experience-box {
  padding: 28px 0;
  border-top: 1px solid rgba(246, 245, 241, 0.14);
  border-bottom: 1px solid rgba(246, 245, 241, 0.14);
}
.nexin-root .about-one__experience-count {
  display: inline-flex;
  align-items: baseline;
  font-family: "Marcellus", serif;
  color: #f6f5f1;
}
.nexin-root .about-one__experience-count h3 {
  font-size: clamp(64px, 8vw, 108px);
  line-height: 1;
  margin: 0;
  font-weight: 400;
  color: #f6f5f1;
}
.nexin-root .about-one__experience-count span {
  font-size: clamp(40px, 5vw, 64px);
  color: #c7ff1e;
  margin-left: 4px;
  font-weight: 400;
  text-shadow: 0 0 32px rgba(199, 255, 30, 0.6);
}
.nexin-root .about-one__experience-count-text {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(246, 245, 241, 0.65);
  margin: 12px 0 0;
}
.nexin-root .about-one__single-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
}
.nexin-root .about-one__single {
  padding: 0;
}
.nexin-root .about-one__single-2 {
  padding-left: clamp(28px, 4vw, 60px);
  border-left: 1px solid rgba(246, 245, 241, 0.12);
}
.nexin-root .about-one__single-title {
  font-family: "Unbounded", "Kanit", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f6f5f1;
  margin: 0 0 16px;
}
.nexin-root .about-one__single-title::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #c7ff1e;
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-1px);
  box-shadow: 0 0 12px rgba(199, 255, 30, 0.5);
}
.nexin-root .about-one__text {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(246, 245, 241, 0.82);
  margin: 0 0 22px;
  text-transform: none;
}
.nexin-root .about-one__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Unbounded", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f6f5f1;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(246, 245, 241, 0.35);
  transition: color 0.25s, border-color 0.25s;
}
.nexin-root .about-one__btn:hover {
  color: #c7ff1e;
  border-bottom-color: #c7ff1e;
}
.nexin-root .about-one__btn .icon-arrow-up-right {
  font-size: 14px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .about-one__btn:hover .icon-arrow-up-right {
  transform: translate(2px, -2px);
}

/* Bottom row — typographic client logos on dark */
.nexin-root .about-one__bottom {
  position: relative;
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid rgba(246, 245, 241, 0.14);
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}
.nexin-root .about-one__bottom-title {
  font-family: "Unbounded", "Kanit", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246, 245, 241, 0.55);
  margin: 0;
}
.nexin-root .about-one__brands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  column-gap: clamp(28px, 4vw, 56px);
}
.nexin-root .about-one__brand {
  font-family: "Marcellus", serif;
  font-size: clamp(16px, 1.4vw, 22px);
  letter-spacing: 0.04em;
  color: rgba(246, 245, 241, 0.88);
  white-space: nowrap;
  position: relative;
  transition: color 0.25s;
}
.nexin-root .about-one__brand:last-child {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(10px, 0.9vw, 12px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(246, 245, 241, 0.45);
  padding: 6px 12px;
  border: 1px solid rgba(246, 245, 241, 0.22);
  border-radius: 999px;
}

@media (max-width: 1024px) {
  .nexin-root .about-one__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  /* Mobile flush-left: kill legacy module-css indents (margin-left: 100/53/47px)
     that survive on mobile because module-css/about.css loads AFTER nexin-overrides
     and lacks proper @media reset. Selectors prefixed with .nexin-root for higher
     specificity (0,2,0) to beat the module-css defaults (0,1,0). */
  .nexin-root .about-one__experience-box,
  .nexin-root .about-one__single-list,
  .nexin-root .about-one__single,
  .nexin-root .about-one__single-2 {
    margin-left: 0;
  }
  .nexin-root .about-one__single-list {
    grid-template-columns: 1fr 1fr;
  }
  .nexin-root .about-one__bottom {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .nexin-root .about-one__orbit {
    top: auto;
    right: auto;
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 0 24px auto;
    display: block;
  }
}
@media (max-width: 640px) {
  /* All selectors prefixed with .nexin-root to beat the 1024px override
     specificity (was a stacking bug — 2-col grid stayed at 640px). */
  .nexin-root .about-one__single-list {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }
  .nexin-root .about-one__single-2 {
    padding-left: 0;
    padding-top: 32px;
    border-left: none;
    border-top: 1px solid rgba(10, 10, 11, 0.1);
  }
  .nexin-root .about-one__brands {
    gap: 14px 24px;
  }
  .nexin-root .about-one__shape-1 {
    display: none;
  }
  /* Mobile: flush-left service-one intro — no indent, no left accent line.
     Desktop uses margin-left:145px + a vertical divider; on mobile that
     pattern just steals 16-32px from the readable column. */
  .nexin-root .service-one__top {
    padding-bottom: 48px;
    margin-bottom: 40px;
  }
  .nexin-root .service-one__top-text {
    margin-left: 0 !important;
    padding-left: 0 !important;
    margin-top: 24px;
    max-width: 100% !important;
  }
  .nexin-root .service-one__top-text::before {
    display: none !important;
  }
}
@media (max-width: 991px) {
  /* Tablet — flush-left to keep the heading/paragraph relationship clean. */
  .nexin-root .service-one__top-text {
    margin-left: 0 !important;
    padding-left: 0 !important;
    max-width: 56ch;
  }
  .nexin-root .service-one__top-text::before {
    display: none !important;
  }
}

/* ─── Portfolio — infinite marquee + brand placeholder cards ───── */
.nexin-root .wnm-portfolio {
  padding: clamp(90px, 10vw, 140px) 0 clamp(90px, 10vw, 140px);
  background: #fafaf8;
  position: relative;
  overflow: hidden;
}

/* Header (container) */
.nexin-root .wnm-portfolio__head {
  max-width: 1320px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  padding: 0 clamp(20px, 5vw, 60px);
}
.nexin-root .wnm-portfolio__head .section-title__title em {
  font-style: italic;
  font-family: "Marcellus", serif;
  background: linear-gradient(180deg, transparent 66%, rgba(199, 255, 30, 0.55) 66%);
  padding: 0 0.08em;
}
.nexin-root .wnm-portfolio__intro {
  grid-column: 1 / 2;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.7;
  color: rgba(10, 10, 11, 0.72);
  margin: 22px 0 0;
  max-width: 560px;
}
.nexin-root .wnm-portfolio__view-all {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: #0a0a0b;
  color: #fafaf8;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 99px;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.nexin-root .wnm-portfolio__view-all span {
  font-size: 16px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-portfolio__view-all:hover {
  background: #c7ff1e;
  color: #0a0a0b;
  transform: translateY(-2px);
}
.nexin-root .wnm-portfolio__view-all:hover span { transform: translateX(4px); }

/* Marquee — edge-to-edge horizontal band with fade masks */
.nexin-root .wnm-portfolio__marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 80px,
    #000 calc(100% - 80px),
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 80px,
    #000 calc(100% - 80px),
    transparent 100%
  );
}
.nexin-root .wnm-portfolio__track {
  display: inline-flex;
  gap: clamp(18px, 2vw, 28px);
  animation: wnm-portfolio-scroll 40s linear infinite;
  will-change: transform;
  padding: 4px 0;
}
.nexin-root .wnm-portfolio__marquee:hover .wnm-portfolio__track,
.nexin-root .wnm-portfolio__track:focus-within {
  animation-play-state: paused;
}
.nexin-root .wnm-portfolio__group {
  display: inline-flex;
  gap: clamp(18px, 2vw, 28px);
  padding-right: clamp(18px, 2vw, 28px);
  flex-shrink: 0;
}
@keyframes wnm-portfolio-scroll {
  to { transform: translateX(-50%); }
}

/* Card — two-row composition: abstract visual on top, meta on bottom */
.nexin-root .wnm-p-card {
  --accent: #c7ff1e;
  width: clamp(260px, 28vw, 340px);
  height: auto;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(10, 10, 11, 0.08);
  overflow: hidden;
  text-decoration: none;
  color: #0a0a0b;
  box-shadow: 0 10px 32px -18px rgba(10, 10, 11, 0.14);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s,
    border-color 0.3s;
}
.nexin-root .wnm-p-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -24px rgba(10, 10, 11, 0.3);
  border-color: rgba(199, 255, 30, 0.5);
}

/* Visual — abstract placeholder with monogram + category */
.nexin-root .wnm-p-card__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(120% 120% at 20% 10%, color-mix(in oklab, var(--accent) 65%, transparent) 0%, transparent 50%),
    radial-gradient(80% 80% at 80% 80%, color-mix(in oklab, var(--accent) 35%, transparent) 0%, transparent 60%),
    #111114;
  color: rgba(246, 245, 241, 0.4);
  overflow: hidden;
  isolation: isolate;
}
.nexin-root .wnm-p-card__pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: rgba(246, 245, 241, 0.28);
  z-index: 1;
}
.nexin-root .wnm-p-card__index {
  position: absolute;
  top: 16px;
  left: 18px;
  z-index: 3;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(246, 245, 241, 0.7);
}
.nexin-root .wnm-p-card__monogram {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  font-family: "Marcellus", "Plus Jakarta Sans", serif;
  font-size: clamp(110px, 16vw, 180px);
  font-weight: 400;
  line-height: 0.8;
  color: var(--accent);
  letter-spacing: -0.04em;
  text-shadow: 0 0 40px color-mix(in oklab, var(--accent) 45%, transparent);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-p-card:hover .wnm-p-card__monogram {
  transform: scale(1.08) rotate(-3deg);
}
.nexin-root .wnm-p-card__badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 3;
  padding: 5px 12px;
  background: rgba(246, 245, 241, 0.95);
  color: #0a0a0b;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 99px;
  backdrop-filter: blur(6px);
}

/* Body — name + metric + CTA */
.nexin-root .wnm-p-card__body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.nexin-root .wnm-p-card__name {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0a0a0b;
  margin: 0;
  line-height: 1.2;
}
.nexin-root .wnm-p-card__metric {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  padding: 10px 0;
  border-top: 1px dashed rgba(10, 10, 11, 0.15);
  border-bottom: 1px dashed rgba(10, 10, 11, 0.15);
}
.nexin-root .wnm-p-card__metric-num {
  font-family: "Marcellus", serif;
  font-size: 26px;
  line-height: 1;
  color: #0a0a0b;
  letter-spacing: -0.02em;
}
.nexin-root .wnm-p-card__metric-label {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 12px;
  color: rgba(10, 10, 11, 0.66);
  line-height: 1.35;
}
.nexin-root .wnm-p-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(10, 10, 11, 0.6);
  transition: color 0.25s, gap 0.25s;
}
.nexin-root .wnm-p-card__cta span {
  font-size: 14px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-p-card:hover .wnm-p-card__cta {
  color: #0a0a0b;
  gap: 10px;
}
.nexin-root .wnm-p-card:hover .wnm-p-card__cta span {
  transform: translate(3px, -3px);
}

@media (max-width: 900px) {
  .nexin-root .wnm-portfolio__head {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .nexin-root .wnm-portfolio__view-all {
    grid-column: 1;
    grid-row: auto;
    align-self: start;
    margin-top: 8px;
  }
  .nexin-root .wnm-portfolio__track { animation-duration: 32s; }
}
@media (max-width: 640px) {
  .nexin-root .wnm-p-card { width: 260px; }
  .nexin-root .wnm-p-card__monogram { font-size: 110px; }
  .nexin-root .wnm-portfolio__marquee {
    mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .nexin-root .wnm-portfolio__track { animation: none; }
}

/* ─── Process One — 3 steps with custom SVG micro-animations ─── */
.nexin-root .wnm-process {
  padding: clamp(90px, 10vw, 140px) 0;
  background: #f9f9f9;
  position: relative;
  overflow: hidden;
}
.nexin-root .wnm-process__header {
  max-width: 820px;
  margin: 0 auto clamp(60px, 8vw, 100px);
  text-align: center;
}
.nexin-root .wnm-process__tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Unbounded", "Kanit", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #0a0a0b;
  margin-bottom: 24px;
}
.nexin-root .wnm-process__tagline-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #c7ff1e;
  box-shadow: 0 0 10px rgba(199, 255, 30, 0.6);
  animation: wnm-proc-dot 2.4s ease-in-out infinite;
}
@keyframes wnm-proc-dot {
  0%, 100% { transform: scale(1); box-shadow: 0 0 8px rgba(199, 255, 30, 0.55); }
  50%      { transform: scale(1.25); box-shadow: 0 0 16px rgba(199, 255, 30, 0.9); }
}
.nexin-root .wnm-process__title {
  font-family: "Marcellus", serif;
  font-size: clamp(32px, 4.2vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.018em;
  color: #0a0a0b;
  margin: 0 0 24px;
  font-weight: 400;
}
.nexin-root .wnm-process__title em {
  font-style: italic;
  position: relative;
  padding: 0 0.08em;
  background: linear-gradient(180deg, transparent 66%, rgba(199, 255, 30, 0.55) 66%);
}
.nexin-root .wnm-process__lead {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.7;
  color: rgba(10, 10, 11, 0.72);
  margin: 0 auto;
  max-width: 620px;
}

.nexin-root .wnm-process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
  position: relative;
}
.nexin-root .wnm-process__steps::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 16%; right: 16%;
  height: 1px;
  background: repeating-linear-gradient(90deg,
    rgba(10, 10, 11, 0.22) 0 6px,
    transparent 6px 12px);
  z-index: 0;
}
.nexin-root .wnm-process__step {
  position: relative;
  z-index: 1;
  padding: 24px;
  text-align: left;
}
.nexin-root .wnm-process__visual {
  width: 160px;
  height: 160px;
  margin: 0 auto 24px;
  background: #fafaf8;
  border: 1px solid rgba(10, 10, 11, 0.1);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px -18px rgba(10, 10, 11, 0.25);
}
.nexin-root .wnm-process__visual svg {
  width: 100%;
  height: 100%;
  display: block;
}
.nexin-root .wnm-process__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.nexin-root .wnm-process__num {
  font-family: "Marcellus", serif;
  font-size: 44px;
  line-height: 1;
  color: #0a0a0b;
  letter-spacing: -0.02em;
}
.nexin-root .wnm-process__tag {
  font-family: "Unbounded", "Kanit", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.55);
  padding: 5px 10px;
  border: 1px solid rgba(10, 10, 11, 0.2);
  border-radius: 99px;
}
.nexin-root .wnm-process__step-title {
  font-family: "Marcellus", serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  color: #0a0a0b;
  margin: 6px 0 14px;
  line-height: 1.2;
}
.nexin-root .wnm-process__step-text {
  font-family: "DM Sans", sans-serif;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(10, 10, 11, 0.72);
  margin: 0;
}

/* ══════════════════════════════════════════════════════════
   STEP 1 — Konzultácia: tail-bubble convo + typing + online pulse
   Timeline (5s loop): in-bubble → typing → out-bubble → settle
   ══════════════════════════════════════════════════════════ */
.nexin-root .wnm-p1-bubble--in {
  transform-origin: 24px 52px;
  animation: wnm-p1-in 5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
.nexin-root .wnm-p1-bubble--out {
  transform-origin: 136px 120px;
  animation: wnm-p1-out 5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}
.nexin-root .wnm-p1-typing {
  animation: wnm-p1-typing 5s ease-in-out infinite;
}
.nexin-root .wnm-p1-dot {
  transform-origin: center;
  animation: wnm-p1-dot-bounce 1.1s ease-in-out infinite;
}
.nexin-root .wnm-p1-dot--2 { animation-delay: 0.15s; }
.nexin-root .wnm-p1-dot--3 { animation-delay: 0.3s; }
.nexin-root .wnm-p1-online {
  transform-origin: 136px 30px;
}
.nexin-root .wnm-p1-online-pulse {
  transform-origin: 136px 30px;
  animation: wnm-p1-ring 2.4s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes wnm-p1-in {
  0%, 4%     { opacity: 0; transform: scale(0.8) translateY(6px); }
  14%, 96%   { opacity: 1; transform: scale(1) translateY(0); }
  100%       { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes wnm-p1-typing {
  0%, 24%    { opacity: 0; transform: scale(0.92); }
  30%, 46%   { opacity: 1; transform: scale(1); }
  54%, 100%  { opacity: 0; transform: scale(0.92); }
}
@keyframes wnm-p1-dot-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.55; }
  30%           { transform: translateY(-3px); opacity: 1; }
}
@keyframes wnm-p1-out {
  0%, 54%    { opacity: 0; transform: scale(0.8) translateY(6px); }
  66%, 100%  { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes wnm-p1-ring {
  0%   { opacity: 0.8; transform: scale(1); }
  80%  { opacity: 0;   transform: scale(2.6); }
  100% { opacity: 0;   transform: scale(2.6); }
}

/* ══════════════════════════════════════════════════════════
   STEP 2 — Dizajn & kód: layered stack assembling + ship badge
   Timeline (5.2s loop): wireframe → design layer → code → ship
   ══════════════════════════════════════════════════════════ */
.nexin-root .wnm-p2-layer {
  transform-origin: center;
  opacity: 0;
  animation: wnm-p2-layer-in 5.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
.nexin-root .wnm-p2-layer--1 { animation-delay: 0.3s; }
.nexin-root .wnm-p2-layer--2 { animation-delay: 1.0s; }
.nexin-root .wnm-p2-code {
  transform-origin: 94px 100px;
  opacity: 0;
  animation: wnm-p2-code-in 5.2s cubic-bezier(0.22, 1, 0.36, 1) infinite 1.7s;
}
.nexin-root .wnm-p2-cursor {
  animation: wnm-p2-blink 0.9s steps(1) infinite;
}
.nexin-root .wnm-p2-ship {
  transform-origin: 128px 40px;
  opacity: 0;
  animation: wnm-p2-ship-pop 5.2s cubic-bezier(0.34, 1.6, 0.64, 1) infinite 2.6s;
}

@keyframes wnm-p2-layer-in {
  0%, 5%    { opacity: 0; transform: translateY(6px) scale(0.95); }
  15%, 96%  { opacity: 1; transform: translateY(0) scale(1); }
  100%      { opacity: 1; transform: none; }
}
@keyframes wnm-p2-code-in {
  0%, 26%   { opacity: 0; transform: translateY(8px) scale(0.93); }
  36%, 96%  { opacity: 1; transform: translateY(0) scale(1); }
  100%      { opacity: 1; transform: none; }
}
@keyframes wnm-p2-blink {
  50% { opacity: 0; }
}
@keyframes wnm-p2-ship-pop {
  0%, 46%   { opacity: 0; transform: scale(0.4) rotate(-15deg); }
  56%       { opacity: 1; transform: scale(1.15) rotate(0); }
  66%, 96%  { opacity: 1; transform: scale(1) rotate(0); }
  100%      { opacity: 1; transform: scale(1); }
}

/* ══════════════════════════════════════════════════════════
   STEP 3 — Launch & SEO: SERP competitors fading, us rising to #1
   Timeline (5s loop): initial state → our site rises → flag pops
   ══════════════════════════════════════════════════════════ */
.nexin-root .wnm-p3-serp__item {
  opacity: 1;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.5s;
}
.nexin-root .wnm-p3-serp__item--a {
  animation: wnm-p3-a 5s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
.nexin-root .wnm-p3-serp__item--b {
  animation: wnm-p3-b 5s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
.nexin-root .wnm-p3-serp__item--us {
  animation: wnm-p3-us 5s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
.nexin-root .wnm-p3-flag {
  transform-origin: 126px 117px;
  opacity: 0;
  animation: wnm-p3-flag 5s cubic-bezier(0.34, 1.6, 0.64, 1) infinite 2.8s;
}
.nexin-root .wnm-p3-arrow {
  transform-origin: 144px 138px;
  opacity: 0;
  animation: wnm-p3-arrow 5s ease-in-out infinite 1.8s;
}
.nexin-root .wnm-p3-arrow path {
  filter: drop-shadow(0 0 3px rgba(199, 255, 30, 0.6));
}

@keyframes wnm-p3-a {
  0%, 20%   { transform: translateY(0); opacity: 0.55; }
  60%       { transform: translateY(26px); opacity: 0.25; }
  90%, 100% { transform: translateY(26px); opacity: 0.25; }
}
@keyframes wnm-p3-b {
  0%, 20%   { transform: translateY(0); opacity: 0.55; }
  60%       { transform: translateY(26px); opacity: 0.25; }
  90%, 100% { transform: translateY(26px); opacity: 0.25; }
}
@keyframes wnm-p3-us {
  0%, 15%   { transform: translateY(0); opacity: 0.6; }
  55%       { transform: translateY(-52px); opacity: 1; }
  90%, 100% { transform: translateY(-52px); opacity: 1; }
}
@keyframes wnm-p3-flag {
  0%, 10%   { opacity: 0; transform: scale(0.3) rotate(-25deg); }
  25%       { opacity: 1; transform: scale(1.2) rotate(0); }
  40%, 96%  { opacity: 1; transform: scale(1) rotate(0); }
  100%      { opacity: 1; transform: scale(1); }
}
@keyframes wnm-p3-arrow {
  0%, 15%    { opacity: 0; transform: translateY(16px); }
  40%, 90%   { opacity: 1; transform: translateY(0); }
  100%       { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .nexin-root [class*="wnm-p1-"],
  .nexin-root [class*="wnm-p2-"],
  .nexin-root [class*="wnm-p3-"] {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    stroke-dashoffset: 0 !important;
  }
}

@media (max-width: 900px) {
  .nexin-root .wnm-process__steps { grid-template-columns: 1fr; gap: 0; }
  .nexin-root .wnm-process__steps::before { display: none; }
}

/* GLOBAL: Nexin's .page-wrapper ships with overflow: hidden, which traps
   `position: sticky` inside its scroll-formatting-context. Use `overflow: clip`
   instead — visually clips identically but does NOT create a scroll
   container, so sticky on case study sidebar etc. works correctly. */
.page-wrapper { overflow: clip !important; }
html, body { overflow-x: clip !important; }

/* Mobile sticky stack — cards pile up as you scroll. Each step sticks,
   the next slides over it. Bg hides content beneath for clean swap. */
@media (max-width: 900px) {
  .nexin-root,
  .nexin-root .wnm-process,
  .nexin-root .wnm-process .container,
  .nexin-root .wnm-process__steps {
    overflow: visible;
  }
  .nexin-root .wnm-process__step {
    position: sticky;
    top: 80px;
    padding: 28px 24px 32px;
    background: #f9f9f9;
    border: 1px solid rgba(10, 10, 11, 0.08);
    border-radius: 20px;
    box-shadow: 0 -20px 40px -24px rgba(10, 10, 11, 0.18);
    margin-bottom: 18px;
    transform-origin: center top;
    transition: transform 0.3s ease-out;
  }
  /* Staggered sticky tops so each card lands slightly lower than the prev,
     revealing the card beneath it as a "tab" at the top. */
  .nexin-root .wnm-process__step:nth-child(1) { top: 80px; }
  .nexin-root .wnm-process__step:nth-child(2) { top: 96px; }
  .nexin-root .wnm-process__step:nth-child(3) { top: 112px; }
  /* Last card releases sticky so user can scroll past the whole stack */
  .nexin-root .wnm-process__step:last-child {
    margin-bottom: 60px;
  }
}
@media (max-width: 640px) {
  .nexin-root .wnm-process__header { margin-bottom: 48px; }
  .nexin-root .wnm-process__visual { width: 140px; height: 140px; }
  .nexin-root .wnm-process__num { font-size: 36px; }
  .nexin-root .wnm-process__step { padding: 24px 20px 26px; }
}

/* ══════════════════════════════════════════════════════════
   HERO V1 — Marketing Hero (produkčná verzia, z hero-lab)
   Plus Jakarta Sans · centered · massive CTA · avatar stack · logos
   ══════════════════════════════════════════════════════════ */

/* Choreografovaný load-in kit (shared) */
.nexin-root .hl3-anim {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(8px);
  animation: hl3-enter 1s cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0ms) forwards;
}
@keyframes hl3-enter {
  to { opacity: 1; transform: none; filter: blur(0); }
}
.nexin-root .hl3-avatar-anim {
  opacity: 0;
  transform: scale(0.5) translateY(6px);
  animation: hl3-pop 0.7s cubic-bezier(0.34, 1.6, 0.64, 1) var(--d, 0ms) forwards;
}
@keyframes hl3-pop {
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Banner-one container becomes centered flex */
.nexin-root .banner-one .container { position: relative; z-index: 2; }
.nexin-root .banner-one__inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  padding: 0 clamp(0px, 2vw, 20px);
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
}

/* Status pill */
.nexin-root .wnm-hero-v1__status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px 8px 12px;
  background: #fff;
  border: 1px solid rgba(10, 10, 11, 0.12);
  border-radius: 99px;
  margin-bottom: 40px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(10, 10, 11, 0.72);
  box-shadow: 0 6px 24px -12px rgba(10, 10, 11, 0.15);
}
.nexin-root .wnm-hero-v1__status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #c7ff1e;
  box-shadow: 0 0 0 4px rgba(199, 255, 30, 0.35);
  animation: wnm-hero-v1-pulse 1.6s ease-in-out infinite;
}
@keyframes wnm-hero-v1-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(199, 255, 30, 0.6); }
  50%      { box-shadow: 0 0 0 6px rgba(199, 255, 30, 0); }
}
.nexin-root .wnm-hero-v1__status-slots {
  padding: 2px 10px;
  background: #0a0a0b;
  color: #c7ff1e;
  border-radius: 99px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Title */
.nexin-root .wnm-hero-v1__title {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif !important;
  font-weight: 800 !important;
  font-size: clamp(54px, 8.5vw, 136px) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.045em !important;
  color: #0a0a0b !important;
  margin: 0 0 28px !important;
  text-transform: none !important;
}
.nexin-root .wnm-hero-v1__line { display: block; }
.nexin-root .wnm-hero-v1__line--hl { margin-top: 6px; }
.nexin-root .wnm-hero-v1__highlight {
  position: relative;
  display: inline-block;
  padding: 0 0.15em;
  isolation: isolate;
}
.nexin-root .wnm-hero-v1__hl-svg {
  position: absolute;
  left: -4%; right: -4%; top: 8%; bottom: 8%;
  width: 108%; height: 84%;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left center;
  animation: wnm-hero-v1-hl 0.9s 0.9s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
@keyframes wnm-hero-v1-hl { to { transform: scaleX(1); } }
.nexin-root .wnm-hero-v1__hl-text { position: relative; z-index: 1; }

/* Sub */
.nexin-root .wnm-hero-v1__sub {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.55;
  color: rgba(10, 10, 11, 0.72);
  margin: 0 auto 40px;
  max-width: 680px;
}
.nexin-root .wnm-hero-v1__sub strong { color: #0a0a0b; font-weight: 700; }

/* CTAs */
.nexin-root .wnm-hero-v1__ctas {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.nexin-root .wnm-hero-v1__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 36px;
  background: #c7ff1e;
  color: #0a0a0b;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  text-decoration: none;
  border-radius: 99px;
  box-shadow: 0 24px 56px -18px rgba(199, 255, 30, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.nexin-root .wnm-hero-v1__cta-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.6) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: wnm-hero-v1-shine 3.2s 2.4s cubic-bezier(0.6, 0, 0.4, 1) infinite;
  pointer-events: none;
}
@keyframes wnm-hero-v1-shine {
  0%, 15% { transform: translateX(-120%); }
  70%, 100% { transform: translateX(120%); }
}
.nexin-root .wnm-hero-v1__cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 32px 64px -16px rgba(199, 255, 30, 0.95);
  color: #0a0a0b;
}
.nexin-root .wnm-hero-v1__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 28px;
  background: #fff;
  color: #0a0a0b;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: 1.5px solid rgba(10, 10, 11, 0.12);
  border-radius: 99px;
  transition: border-color 0.25s, transform 0.25s;
}
.nexin-root .wnm-hero-v1__cta-secondary:hover {
  border-color: #0a0a0b;
  transform: translateY(-3px);
  color: #0a0a0b;
}
.nexin-root .wnm-hero-v1__play { color: #c7ff1e; font-size: 18px; }
.nexin-root .wnm-hero-v1__cta-secondary:hover .wnm-hero-v1__play { color: #0a0a0b; }

/* Trust strip — subtle inline social proof, not a competing card */
.nexin-root .wnm-hero-v1__trust {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px 14px 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(10, 10, 11, 0.10);
  border-radius: 99px;
  box-shadow: 0 6px 24px -16px rgba(10, 10, 11, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  margin: 28px auto 44px;
  width: fit-content;
}
.nexin-root .wnm-hero-v1__avatars { display: inline-flex; align-items: center; }
.nexin-root .wnm-hero-v1__avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -7px;
  display: inline-grid;
  place-items: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 9px;
  color: #0a0a0b;
  box-shadow: 0 2px 6px -2px rgba(10, 10, 11, 0.18);
}
.nexin-root .wnm-hero-v1__avatar:first-child { margin-left: 0; }
.nexin-root .wnm-hero-v1__avatar--1 { background: linear-gradient(135deg, #c7ff1e, #7db800); }
.nexin-root .wnm-hero-v1__avatar--2 { background: linear-gradient(135deg, #ffd36b, #ff9a2e); }
.nexin-root .wnm-hero-v1__avatar--3 { background: linear-gradient(135deg, #a0d9ff, #4a7ab8); }
.nexin-root .wnm-hero-v1__avatar--4 { background: linear-gradient(135deg, #ffb0b8, #e8506b); }
.nexin-root .wnm-hero-v1__avatar--5 { background: linear-gradient(135deg, #d4c6ff, #8264e5); }
.nexin-root .wnm-hero-v1__avatar--plus { background: #0a0a0b; color: #c7ff1e; font-size: 8.5px; }
.nexin-root .wnm-hero-v1__trust-text {
  text-align: left;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nexin-root .wnm-hero-v1__stars {
  color: #c7ff1e;
  font-size: 12px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-shadow: 0 0 8px rgba(199, 255, 30, 0.4);
}
.nexin-root .wnm-hero-v1__stars span { color: #0a0a0b; font-weight: 700; font-size: 12px; text-shadow: none; }
.nexin-root .wnm-hero-v1__trust-divider {
  display: inline-block;
  width: 1px; height: 14px;
  background: rgba(10, 10, 11, 0.18);
}
.nexin-root .wnm-hero-v1__trust-label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  color: rgba(10, 10, 11, 0.62);
}
.nexin-root .wnm-hero-v1__trust-label strong { color: #0a0a0b; font-weight: 600; }

/* Logos */
.nexin-root .wnm-hero-v1__logos {
  padding-top: 20px;
  border-top: 1px dashed rgba(10, 10, 11, 0.15);
}
.nexin-root .wnm-hero-v1__logos-label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(10, 10, 11, 0.45);
  display: block;
  margin-bottom: 18px;
}
.nexin-root .wnm-hero-v1__logos-row {
  display: inline-flex;
  gap: clamp(20px, 4vw, 52px);
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.nexin-root .wnm-hero-v1__logos-row span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(13px, 1.3vw, 17px);
  letter-spacing: 0.04em;
  color: rgba(10, 10, 11, 0.55);
  filter: saturate(0);
  transition: filter 0.25s, color 0.25s;
}
.nexin-root .wnm-hero-v1__logos-row span:hover { filter: saturate(1); color: #0a0a0b; }
.nexin-root .wnm-hero-v1__logos-plus {
  padding: 4px 12px;
  border: 1px solid rgba(10, 10, 11, 0.2);
  border-radius: 99px;
  font-size: 10.5px !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase;
}

/* Mobile */
@media (max-width: 640px) {
  .nexin-root .banner-one__inner { text-align: left; }
  .nexin-root .wnm-hero-v1__status {
    margin-bottom: 24px;
    padding: 6px 12px 6px 10px;
    font-size: 11.5px;
    gap: 8px;
    max-width: 100%;
  }
  .nexin-root .wnm-hero-v1__status-slots { padding: 2px 8px; font-size: 9.5px; }
  .nexin-root .wnm-hero-v1__title {
    font-size: clamp(38px, 11.5vw, 52px) !important;
    line-height: 0.95 !important;
    letter-spacing: -0.03em !important;
    margin-bottom: 20px !important;
  }
  .nexin-root .wnm-hero-v1__sub {
    text-align: left;
    font-size: 15px;
    margin: 0 0 28px;
    max-width: none;
  }
  .nexin-root .wnm-hero-v1__ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-bottom: 24px;
  }
  .nexin-root .wnm-hero-v1__cta-primary,
  .nexin-root .wnm-hero-v1__cta-secondary {
    justify-content: center;
    padding: 18px 24px;
    font-size: 15px;
    width: 100%;
  }
  .nexin-root .wnm-hero-v1__trust {
    display: flex;
    flex-direction: row;
    gap: 12px;
    padding: 10px 16px 10px 10px;
    margin: 0 0 28px;
    width: 100%;
    border-radius: 14px;
    box-sizing: border-box;
  }
  .nexin-root .wnm-hero-v1__avatar { width: 26px; height: 26px; font-size: 9px; margin-left: -6px; }
  .nexin-root .wnm-hero-v1__avatar--plus { font-size: 8.5px; }
  .nexin-root .wnm-hero-v1__stars { font-size: 12px; }
  .nexin-root .wnm-hero-v1__stars span { font-size: 12px; }
  .nexin-root .wnm-hero-v1__trust-label { font-size: 11px; line-height: 1.35; }
  .nexin-root .wnm-hero-v1__logos { text-align: left; padding-top: 16px; }
  .nexin-root .wnm-hero-v1__logos-label { font-size: 9.5px; margin-bottom: 12px; }
  .nexin-root .wnm-hero-v1__logos-row { gap: 14px 22px; justify-content: flex-start; }
  .nexin-root .wnm-hero-v1__logos-row span { font-size: 11.5px; letter-spacing: 0.02em; }
  .nexin-root .wnm-hero-v1__logos-plus { font-size: 9.5px !important; padding: 3px 9px; }
}

@media (prefers-reduced-motion: reduce) {
  .nexin-root .hl3-anim,
  .nexin-root .hl3-avatar-anim,
  .nexin-root .wnm-hero-v1__hl-svg,
  .nexin-root .wnm-hero-v1__cta-primary::after {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* ══════════════════════════════════════════════════════════
   FLOATING CONTACT — round lime FAB (matches production)
   Mobile only (≤900px). Expand → 2 dark pills with lime icons.
   ══════════════════════════════════════════════════════════ */
.wnm-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
}
@media (max-width: 900px) {
  .wnm-fab { display: flex; }
}
.wnm-fab--visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

/* Round primary button — 56×56 lime */
.wnm-fab__main {
  all: unset;
  cursor: pointer;
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  background: #c7ff1e;
  color: #0a0a0b;
  border-radius: 50%;
  box-shadow: 0 16px 36px -10px rgba(199, 255, 30, 0.7),
    0 4px 16px -6px rgba(10, 10, 11, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s;
  animation: wnm-fab-pulse 2.4s ease-in-out infinite;
}
.wnm-fab__main:hover { box-shadow: 0 20px 44px -10px rgba(199, 255, 30, 0.9), 0 6px 20px -6px rgba(10, 10, 11, 0.25); }
.wnm-fab__main:active { transform: scale(0.94); }
.wnm-fab__main:focus-visible { outline: 2px solid #0a0a0b; outline-offset: 3px; }

.wnm-fab__main-ic {
  width: 22px;
  height: 22px;
  transition: transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1);
}
.wnm-fab--open .wnm-fab__main { animation: none; }
.wnm-fab--open .wnm-fab__main-ic { transform: rotate(90deg); }

@keyframes wnm-fab-pulse {
  0%, 100% {
    box-shadow: 0 16px 36px -10px rgba(199, 255, 30, 0.7),
      0 0 0 0 rgba(199, 255, 30, 0.55),
      inset 0 1px 0 rgba(255, 255, 255, 0.45);
  }
  60% {
    box-shadow: 0 16px 36px -10px rgba(199, 255, 30, 0.7),
      0 0 0 14px rgba(199, 255, 30, 0),
      inset 0 1px 0 rgba(255, 255, 255, 0.45);
  }
}

/* Action pills — dark bg + lime icon + lime text (matches production)
   Fixed min-width so both pills have identical size regardless of text length */
.wnm-fab__action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px 0 16px;
  min-width: 150px;
  height: 44px;
  background: #0a0a0b;
  color: #c7ff1e;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  text-decoration: none;
  border-radius: 99px;
  box-shadow: 0 12px 28px -10px rgba(10, 10, 11, 0.42),
    inset 0 0 0 1px rgba(199, 255, 30, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.92);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.2s,
    color 0.2s;
  box-sizing: border-box;
}
.wnm-fab__action-ic {
  width: 18px;
  height: 18px;
  color: #c7ff1e;
  flex-shrink: 0;
}
.wnm-fab--open .wnm-fab__action {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.wnm-fab--open .wnm-fab__action:nth-of-type(1) { transition-delay: 40ms; }
.wnm-fab--open .wnm-fab__action:nth-of-type(2) { transition-delay: 110ms; }
.wnm-fab__action:hover {
  background: #c7ff1e;
  color: #0a0a0b;
  box-shadow: 0 14px 32px -10px rgba(199, 255, 30, 0.6);
}
.wnm-fab__action:hover .wnm-fab__action-ic { color: #0a0a0b; }

@media (prefers-reduced-motion: reduce) {
  .wnm-fab,
  .wnm-fab__main,
  .wnm-fab__main-ic,
  .wnm-fab__action {
    animation: none !important;
    transition: opacity 0.2s !important;
  }
}

/* ══════════════════════════════════════════════════════════
   CONTACT FORM — 2-col info + form
   ══════════════════════════════════════════════════════════ */
.nexin-root .wnm-contact {
  padding: clamp(90px, 10vw, 140px) 0;
  background: #0a0a0b;
  color: #f6f5f1;
  position: relative;
  overflow: hidden;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
}
.nexin-root .wnm-contact::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 255, 30, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.nexin-root .wnm-contact .container {
  position: relative;
  z-index: 1;
}
.nexin-root .wnm-contact__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

/* LEFT — info */
.nexin-root .wnm-contact__info { padding-top: 8px; }
.nexin-root .wnm-contact__tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c7ff1e;
  margin-bottom: 24px;
}
.nexin-root .wnm-contact__tagline-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #c7ff1e;
  box-shadow: 0 0 10px rgba(199, 255, 30, 0.7);
  animation: wnm-fab-pulse 2.4s ease-in-out infinite;
}
.nexin-root .wnm-contact__title {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: clamp(36px, 4.2vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #f6f5f1;
  margin: 0 0 20px;
}
.nexin-root .wnm-contact__title em {
  font-style: italic;
  position: relative;
  padding: 0 0.08em;
  background: linear-gradient(180deg, transparent 66%, rgba(199, 255, 30, 0.5) 66%);
}
.nexin-root .wnm-contact__lead {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
  color: rgba(246, 245, 241, 0.7);
  margin: 0 0 36px;
  max-width: 420px;
}

.nexin-root .wnm-contact__items {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.nexin-root .wnm-contact__items li {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nexin-root .wnm-contact__ic {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(199, 255, 30, 0.12);
  color: #c7ff1e;
  display: grid;
  place-items: center;
}
.nexin-root .wnm-contact__ic svg { width: 20px; height: 20px; }
.nexin-root .wnm-contact__item-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 245, 241, 0.45);
  margin-bottom: 2px;
}
.nexin-root .wnm-contact__item-value {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #f6f5f1;
  text-decoration: none;
  transition: color 0.2s;
}
a.wnm-contact__item-value:hover { color: #c7ff1e; }

.nexin-root .wnm-contact__trust {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px 14px 14px;
  background: rgba(246, 245, 241, 0.05);
  border: 1px solid rgba(246, 245, 241, 0.1);
  border-radius: 14px;
}
.nexin-root .wnm-contact__trust-avatars {
  display: inline-flex;
  align-items: center;
}
.nexin-root .wnm-contact__trust-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid #0a0a0b;
  margin-left: -6px;
  display: inline-grid;
  place-items: center;
  font-size: 10px;
  font-weight: 700;
  color: #0a0a0b;
}
.nexin-root .wnm-contact__trust-avatar:first-child { margin-left: 0; }
.nexin-root .wnm-contact__trust-avatar--1 { background: linear-gradient(135deg, #c7ff1e, #7db800); }
.nexin-root .wnm-contact__trust-avatar--2 { background: linear-gradient(135deg, #ffd36b, #ff9a2e); }
.nexin-root .wnm-contact__trust-avatar--3 { background: linear-gradient(135deg, #a0d9ff, #4a7ab8); }
.nexin-root .wnm-contact__trust-avatar--plus { background: #c7ff1e; color: #0a0a0b; font-size: 9.5px; }
.nexin-root .wnm-contact__trust-text {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(246, 245, 241, 0.6);
}
.nexin-root .wnm-contact__trust-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #f6f5f1;
  margin-bottom: 2px;
}

/* RIGHT — form */
.nexin-root .wnm-contact__form {
  background: #111114;
  border: 1px solid rgba(246, 245, 241, 0.1);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 36px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.nexin-root .wnm-contact__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nexin-root .wnm-contact__field--half { grid-column: span 1; }
.nexin-root .wnm-contact__field--full { grid-column: span 2; }
.nexin-root .wnm-contact__field label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(246, 245, 241, 0.6);
}
.nexin-root .wnm-contact__field input,
.nexin-root .wnm-contact__field textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(246, 245, 241, 0.04);
  border: 1px solid rgba(246, 245, 241, 0.12);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14.5px;
  color: #f6f5f1;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.nexin-root .wnm-contact__field input::placeholder,
.nexin-root .wnm-contact__field textarea::placeholder {
  color: rgba(246, 245, 241, 0.35);
}
.nexin-root .wnm-contact__field input:focus,
.nexin-root .wnm-contact__field textarea:focus {
  outline: none;
  background: rgba(199, 255, 30, 0.06);
  border-color: #c7ff1e;
  box-shadow: 0 0 0 4px rgba(199, 255, 30, 0.12);
}
.nexin-root .wnm-contact__field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.55;
}

.nexin-root .wnm-contact__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.nexin-root .wnm-contact__chip {
  cursor: pointer;
}
.nexin-root .wnm-contact__chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.nexin-root .wnm-contact__chip span {
  display: inline-block;
  padding: 9px 16px;
  background: rgba(246, 245, 241, 0.05);
  border: 1px solid rgba(246, 245, 241, 0.12);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(246, 245, 241, 0.75);
  transition: all 0.2s;
}
.nexin-root .wnm-contact__chip:hover span {
  border-color: rgba(199, 255, 30, 0.4);
  color: #f6f5f1;
}
.nexin-root .wnm-contact__chip input:checked + span {
  background: #c7ff1e;
  border-color: #c7ff1e;
  color: #0a0a0b;
  font-weight: 700;
}

.nexin-root .wnm-contact__submit-row {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.nexin-root .wnm-contact__submit {
  all: unset;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  background: #c7ff1e;
  color: #0a0a0b;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  border-radius: 99px;
  box-shadow: 0 20px 48px -16px rgba(199, 255, 30, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s, color 0.3s;
}
.nexin-root .wnm-contact__submit:hover { transform: translateY(-2px); }
.nexin-root .wnm-contact__submit:disabled {
  cursor: not-allowed;
  opacity: 0.75;
}
.nexin-root .wnm-contact__submit-ic {
  width: 26px; height: 26px;
  background: #0a0a0b;
  color: #c7ff1e;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-contact__submit-ic svg { width: 14px; height: 14px; }
.nexin-root .wnm-contact__submit:hover .wnm-contact__submit-ic { transform: translateX(3px); }
.nexin-root .wnm-contact__submit--submitting {
  background: rgba(199, 255, 30, 0.4);
}
.nexin-root .wnm-contact__submit--ok {
  background: #c7ff1e;
  color: #0a0a0b;
}
.nexin-root .wnm-contact__submit--ok .wnm-contact__submit-ic {
  background: #0a0a0b;
  color: #c7ff1e;
}
.nexin-root .wnm-contact__consent {
  font-size: 11.5px;
  line-height: 1.5;
  color: rgba(246, 245, 241, 0.5);
  margin: 0;
  flex: 1;
  min-width: 200px;
}
.nexin-root .wnm-contact__consent a {
  color: #c7ff1e;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 900px) {
  .nexin-root .wnm-contact__grid { grid-template-columns: 1fr; gap: 36px; }
  .nexin-root .wnm-contact__form { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nexin-root .wnm-contact__form { grid-template-columns: 1fr; padding: 20px; gap: 14px; }
  .nexin-root .wnm-contact__field--half { grid-column: span 1; }
  .nexin-root .wnm-contact__field--full { grid-column: span 1; }
  .nexin-root .wnm-contact__submit-row { grid-column: span 1; flex-direction: column; align-items: stretch; gap: 14px; }
  .nexin-root .wnm-contact__submit { justify-content: center; }
  .nexin-root .wnm-contact__consent { min-width: 0; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════════════
   VYBRANÉ REFERENCIE — Parallax Marquee (V6 from portfolio-lab)
   2 opposing rows · row 1 sharp foreground · row 2 blurred depth
   Cards = full-bleed Nano Banana Pro premium artworks
   ═══════════════════════════════════════════════════════════════════ */

.nexin-root .wnm-vr {
  background: #0a0a0b;
  color: #fff;
  padding: 100px 0 110px;
  overflow: hidden;
}
.nexin-root .wnm-vr__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px 48px;
  margin-bottom: 56px;
}
.nexin-root .wnm-vr__head .section-title__title {
  color: #fff;
  font-family: "Fraunces", "Marcellus", serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  margin: 12px 0 0;
}
.nexin-root .wnm-vr__head .section-title__title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(120deg, transparent 0%, transparent 28%, rgba(199, 255, 30, 0.55) 28%, rgba(199, 255, 30, 0.55) 90%, transparent 90%);
  background-size: 100% 70%;
  background-repeat: no-repeat;
  background-position: 0 78%;
  padding: 0 6px;
}
.nexin-root .wnm-vr__head .section-title__tagline {
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.18em;
  font-weight: 600;
  font-size: 12px;
}
.nexin-root .wnm-vr__head .section-title__tagline-shape {
  background: #c7ff1e;
}
.nexin-root .wnm-vr__intro {
  grid-column: 1;
  max-width: 540px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.65;
  margin: 14px 0 0;
}
.nexin-root .wnm-vr__view-all {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 99px;
  background: #c7ff1e;
  color: #0a0a0b;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 24px -8px rgba(199, 255, 30, 0.45);
}
.nexin-root .wnm-vr__view-all:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px rgba(199, 255, 30, 0.6);
  color: #0a0a0b;
}

/* Marquee rows */
.nexin-root .wnm-vr__row { width: 100%; overflow: hidden; }
.nexin-root .wnm-vr__row--1 { margin-bottom: 28px; }
.nexin-root .wnm-vr__track {
  display: flex;
  width: max-content;
  animation: wnmVrScroll 40s linear infinite;
}
.nexin-root .wnm-vr__track--rev {
  animation-name: wnmVrScrollRev;
  animation-duration: 48s;
}
.nexin-root .wnm-vr__row:hover .wnm-vr__track { animation-play-state: paused; }
@keyframes wnmVrScroll { to { transform: translateX(-50%); } }
@keyframes wnmVrScrollRev { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.nexin-root .wnm-vr__group {
  display: flex;
  gap: 24px;
  padding-right: 24px;
}

.nexin-root .wnm-vr__card {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: #0a0a0b;
  isolation: isolate;
}
.nexin-root .wnm-vr__card:hover {
  transform: translateY(-4px) scale(1.02);
  color: #fff;
}
.nexin-root .wnm-vr__card--lg { width: 520px; height: 320px; }
.nexin-root .wnm-vr__card--sm {
  width: 360px;
  height: 220px;
  opacity: 0.7;
  filter: blur(1px) saturate(0.9);
  transition: opacity 0.5s, filter 0.5s, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-vr__card--sm:hover {
  opacity: 1;
  filter: blur(0) saturate(1);
  transform: translateY(-4px) scale(1.03);
}

.nexin-root .wnm-vr__card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-vr__card:hover .wnm-vr__card-bg { transform: scale(1.05); }

.nexin-root .wnm-vr__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.15) 42%, rgba(0, 0, 0, 0) 62%);
  z-index: 1;
  pointer-events: none;
}

.nexin-root .wnm-vr__badge {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  padding: 7px 14px;
  border-radius: 99px;
  background: rgba(10, 10, 11, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}
.nexin-root .wnm-vr__badge em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
  margin-left: 4px;
}
.nexin-root .wnm-vr__badge--sm {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
}
.nexin-root .wnm-vr__badge--sm em {
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Responsive: tablet */
@media (max-width: 991px) {
  .nexin-root .wnm-vr { padding: 80px 0 90px; }
  .nexin-root .wnm-vr__head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
  .nexin-root .wnm-vr__view-all {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }
}

/* Responsive: mobile */
@media (max-width: 640px) {
  .nexin-root .wnm-vr { padding: 64px 0 72px; }
  .nexin-root .wnm-vr__head { margin-bottom: 32px; }
  .nexin-root .wnm-vr__head .section-title__title { font-size: clamp(32px, 8vw, 44px); }
  .nexin-root .wnm-vr__row--1 { margin-bottom: 18px; }
  .nexin-root .wnm-vr__card--lg { width: 320px; height: 200px; }
  .nexin-root .wnm-vr__card--sm { width: 240px; height: 150px; }
  .nexin-root .wnm-vr__group { gap: 16px; padding-right: 16px; }
  .nexin-root .wnm-vr__badge { font-size: 11.5px; padding: 6px 12px; }
  .nexin-root .wnm-vr__badge--sm { font-size: 10.5px; padding: 5px 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .nexin-root .wnm-vr__track,
  .nexin-root .wnm-vr__track--rev {
    animation-duration: 120s !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   FAQ — Accordion with smooth grid-template-rows transition
   SEO-optimized · JSON-LD FAQPage embedded · keyboard accessible
   ═══════════════════════════════════════════════════════════════════ */
.nexin-root .wnm-faq {
  background: #fafaf8;
  color: #0a0a0b;
  padding: 110px 0 120px;
  position: relative;
  overflow: hidden;
}
.nexin-root .wnm-faq::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(199, 255, 30, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.nexin-root .wnm-faq__head {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 32px 64px;
  align-items: end;
  margin-bottom: 56px;
  position: relative;
}
.nexin-root .wnm-faq__head .section-title__title {
  font-family: "Fraunces", "Marcellus", serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  margin: 12px 0 0;
  color: #0a0a0b;
}
.nexin-root .wnm-faq__head .section-title__title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(120deg, transparent 0%, transparent 28%, rgba(199, 255, 30, 0.7) 28%, rgba(199, 255, 30, 0.7) 90%, transparent 90%);
  background-size: 100% 70%;
  background-repeat: no-repeat;
  background-position: 0 78%;
  padding: 0 6px;
}
.nexin-root .wnm-faq__intro {
  color: rgba(10, 10, 11, 0.65);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  max-width: 480px;
}
.nexin-root .wnm-faq__intro a {
  color: #0a0a0b;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid #c7ff1e;
  transition: background 0.2s;
}
.nexin-root .wnm-faq__intro a:hover {
  background: rgba(199, 255, 30, 0.4);
}
.nexin-root .wnm-faq__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nexin-root .wnm-faq__item {
  background: #fff;
  border: 1px solid rgba(10, 10, 11, 0.08);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-faq__item:hover {
  border-color: rgba(10, 10, 11, 0.18);
  box-shadow: 0 8px 24px -12px rgba(10, 10, 11, 0.12);
}
.nexin-root .wnm-faq__item--open {
  border-color: rgba(199, 255, 30, 0.45);
  box-shadow: 0 16px 40px -16px rgba(10, 10, 11, 0.18);
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.96) 100%);
}
.nexin-root .wnm-faq__btn {
  all: unset;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  width: 100%;
  padding: 26px 28px;
  box-sizing: border-box;
  transition: padding 0.3s;
}
.nexin-root .wnm-faq__btn:focus-visible {
  outline: 2px solid #c7ff1e;
  outline-offset: -3px;
  border-radius: 18px;
}
.nexin-root .wnm-faq__num {
  font-family: "Fraunces", "Marcellus", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  color: rgba(10, 10, 11, 0.4);
  min-width: 32px;
  transition: color 0.3s;
}
.nexin-root .wnm-faq__item--open .wnm-faq__num {
  color: #0a0a0b;
}
.nexin-root .wnm-faq__q {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 17.5px;
  line-height: 1.4;
  color: #0a0a0b;
  letter-spacing: -0.005em;
}
.nexin-root .wnm-faq__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 10, 11, 0.04);
  display: grid;
  place-items: center;
  color: #0a0a0b;
  transition: background 0.3s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-faq__item--open .wnm-faq__icon {
  background: #c7ff1e;
  transform: rotate(135deg);
}
.nexin-root .wnm-faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-faq__item--open .wnm-faq__panel {
  grid-template-rows: 1fr;
}
.nexin-root .wnm-faq__panel-inner {
  overflow: hidden;
  min-height: 0;
}
.nexin-root .wnm-faq__panel-inner p {
  padding: 0 28px 28px 82px;
  margin: -4px 0 0;
  color: rgba(10, 10, 11, 0.72);
  font-size: 15.5px;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .nexin-root .wnm-faq { padding: 80px 0 90px; }
  .nexin-root .wnm-faq__head {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  .nexin-root .wnm-faq__intro { max-width: none; }
}
@media (max-width: 640px) {
  .nexin-root .wnm-faq { padding: 56px 0 64px; }
  .nexin-root .wnm-faq__head .section-title__title { font-size: clamp(30px, 8vw, 40px); line-height: 1.1; }
  .nexin-root .wnm-faq__intro { font-size: 14.5px; }
  .nexin-root .wnm-faq__list { gap: 10px; }
  .nexin-root .wnm-faq__item { border-radius: 14px; }
  .nexin-root .wnm-faq__btn {
    grid-template-columns: auto 1fr auto;
    padding: 18px 16px;
    gap: 12px;
    align-items: center;
  }
  .nexin-root .wnm-faq__num { font-size: 14px; min-width: auto; line-height: 1; }
  .nexin-root .wnm-faq__q { font-size: 14.5px; line-height: 1.35; font-weight: 600; }
  .nexin-root .wnm-faq__icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }
  .nexin-root .wnm-faq__icon svg { width: 16px; height: 16px; }
  .nexin-root .wnm-faq__item--open .wnm-faq__icon { transform: rotate(135deg); }
  .nexin-root .wnm-faq__panel-inner p {
    padding: 0 16px 20px 16px;
    font-size: 14px;
    line-height: 1.65;
    margin-top: -4px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   FOOTER — Nexin-style, dark, with big CTA top + 3-col menus + legal
   ═══════════════════════════════════════════════════════════════════ */
.nexin-root .wnm-footer {
  background: #0a0a0b;
  color: rgba(249, 249, 249, 0.78);
  position: relative;
  overflow: hidden;
}
.nexin-root .wnm-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199, 255, 30, 0.35), transparent);
}

/* Top CTA block */
.nexin-root .wnm-footer__top {
  padding: 88px 0 72px;
  border-bottom: 1px solid rgba(249, 249, 249, 0.08);
  position: relative;
}
.nexin-root .wnm-footer__top::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: #c7ff1e;
  border-radius: 2px;
  box-shadow: 0 0 16px rgba(199, 255, 30, 0.5);
}
.nexin-root .wnm-footer__top-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px 64px;
}
.nexin-root .wnm-footer__title {
  font-family: "Fraunces", "Marcellus", serif;
  font-weight: 300;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.95;
  margin: 0;
  color: #f9f9f9;
  letter-spacing: -0.02em;
}
.nexin-root .wnm-footer__title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(120deg, transparent 0%, transparent 8%, rgba(199, 255, 30, 0.55) 8%, rgba(199, 255, 30, 0.55) 92%, transparent 92%);
  background-size: 100% 60%;
  background-repeat: no-repeat;
  background-position: 0 76%;
  padding: 0 6px;
}
.nexin-root .wnm-footer__sub {
  margin: 18px 0 0;
  font-size: 15.5px;
  color: rgba(249, 249, 249, 0.6);
  max-width: 420px;
}
.nexin-root .wnm-footer__cta-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
.nexin-root .wnm-footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  border-radius: 99px;
  background: #c7ff1e;
  color: #0a0a0b !important;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
  box-shadow: 0 8px 28px -8px rgba(199, 255, 30, 0.45);
}
.nexin-root .wnm-footer__cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 44px -10px rgba(199, 255, 30, 0.6);
  color: #0a0a0b !important;
}
.nexin-root .wnm-footer__cta-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-footer__cta:hover .wnm-footer__cta-icon {
  transform: translate(3px, -3px);
}
.nexin-root .wnm-footer__email {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14.5px;
  color: rgba(249, 249, 249, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.nexin-root .wnm-footer__email:hover {
  color: #c7ff1e;
}

/* Bottom block */
.nexin-root .wnm-footer__bottom {
  padding: 64px 0 36px;
}
.nexin-root .wnm-footer__bottom-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px 64px;
  align-items: start;
  margin-bottom: 48px;
}
.nexin-root .wnm-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.nexin-root .wnm-footer__intro {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(249, 249, 249, 0.65);
  max-width: 320px;
}
.nexin-root .wnm-footer__intro-meta {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(249, 249, 249, 0.4);
  letter-spacing: 0.02em;
}
.nexin-root .wnm-footer__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}
.nexin-root .wnm-footer__logo-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #c7ff1e;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 8px 24px -10px rgba(199, 255, 30, 0.6);
}
.nexin-root .wnm-footer__logo-mark img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}
.nexin-root .wnm-footer__logo-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: #f9f9f9;
  letter-spacing: -0.005em;
}
.nexin-root .wnm-footer__logo-text em {
  font-style: italic;
  font-weight: 400;
  color: rgba(249, 249, 249, 0.7);
}
.nexin-root .wnm-footer__menus {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 48px;
}
.nexin-root .wnm-footer__menu-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.nexin-root .wnm-footer__menu-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(249, 249, 249, 0.45);
  margin-bottom: 4px;
}
.nexin-root .wnm-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nexin-root .wnm-footer__menu a {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14.5px;
  color: rgba(249, 249, 249, 0.78);
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* Mobile touch target — 8px vertical padding gives ~32px hit area
     for 14.5px text (was bare ~18-22px height, too small for thumbs). */
  padding: 8px 0;
  transition: color 0.2s, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-footer__menu a::before {
  content: "→";
  font-family: "Plus Jakarta Sans", sans-serif;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: #c7ff1e;
}
.nexin-root .wnm-footer__menu a:hover {
  color: #c7ff1e;
  transform: translateX(4px);
}
.nexin-root .wnm-footer__menu a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.nexin-root .wnm-footer__rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249, 249, 249, 0.12), transparent);
  margin: 0 0 24px;
}
.nexin-root .wnm-footer__legal {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  font-size: 13px;
}
.nexin-root .wnm-footer__copy {
  margin: 0;
  color: rgba(249, 249, 249, 0.55);
}
.nexin-root .wnm-footer__copy strong {
  color: rgba(249, 249, 249, 0.85);
  font-weight: 600;
}
.nexin-root .wnm-footer__legal-mid {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(249, 249, 249, 0.55);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  justify-self: center;
}
.nexin-root .wnm-footer__legal-mid a {
  color: rgba(249, 249, 249, 0.85);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
  /* WCAG mobile touch target — min 32px clickable area via padding.
     Small footprint legal links were 13-15px tall on mobile. */
  display: inline-block;
  padding: 8px 4px;
  margin: -8px 0;
  line-height: 1.4;
}
.nexin-root .wnm-footer__legal-mid a:hover {
  color: #c7ff1e;
  border-bottom-color: #c7ff1e;
}
.nexin-root .wnm-footer__legal-mid > span {
  opacity: 0.4;
}
.nexin-root .wnm-footer__socials {
  display: flex;
  gap: 8px;
}
.nexin-root .wnm-footer__socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(249, 249, 249, 0.14);
  display: grid;
  place-items: center;
  color: rgba(249, 249, 249, 0.7);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-footer__socials a:hover {
  background: #c7ff1e;
  border-color: #c7ff1e;
  color: #0a0a0b;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px -6px rgba(199, 255, 30, 0.5);
}
.nexin-root .wnm-footer__made {
  margin: 0;
  text-align: right;
  color: rgba(249, 249, 249, 0.55);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
}
.nexin-root .wnm-footer__flag {
  display: inline-grid;
  place-items: center;
  padding: 2px 8px;
  border-radius: 99px;
  background: rgba(199, 255, 30, 0.14);
  color: #c7ff1e;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.1em;
}
.nexin-root .wnm-footer__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c7ff1e;
  box-shadow: 0 0 0 0 rgba(199, 255, 30, 0.7);
  animation: wnmFooterPulse 2.4s ease-in-out infinite;
}
@keyframes wnmFooterPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(199, 255, 30, 0.7); }
  50% { box-shadow: 0 0 0 8px rgba(199, 255, 30, 0); }
}

@media (max-width: 991px) {
  .nexin-root .wnm-footer__top { padding: 64px 0 56px; }
  .nexin-root .wnm-footer__top-inner {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
  .nexin-root .wnm-footer__cta-box { align-items: flex-start; }
  .nexin-root .wnm-footer__bottom-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 640px) {
  .nexin-root .wnm-footer__top { padding: 48px 0 40px; }
  .nexin-root .wnm-footer__bottom { padding: 48px 0 28px; }
  .nexin-root .wnm-footer__menus {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
  }
  .nexin-root .wnm-footer__legal {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 18px;
  }
  .nexin-root .wnm-footer__socials { justify-self: center; }
  .nexin-root .wnm-footer__made { justify-self: center; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════════════
   LEGAL / TERMS PAGE — Sticky TOC + Long-form readable content
   ═══════════════════════════════════════════════════════════════════ */
.nexin-root .wnm-terms__hero {
  background: #fafaf8;
  color: #0a0a0b;
  padding: 88px 0 56px;
  position: relative;
  overflow: hidden;
}
.nexin-root .wnm-terms__hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.nexin-root .wnm-terms__hero-bg svg {
  width: 100%;
  height: 100%;
}
.nexin-root .wnm-terms__hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.nexin-root .wnm-terms__hero-inner {
  position: relative;
  z-index: 1;
}
.nexin-root .wnm-terms__hero-stats {
  background: linear-gradient(135deg, #0a0a0b 0%, #1a1a1d 100%);
  color: #f9f9f9;
  border-radius: 22px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .wnm-terms__hero-stats::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199,255,30,0.16), transparent 70%);
  pointer-events: none;
}
.nexin-root .wnm-terms__hero-stats-eyebrow {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #c7ff1e;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.nexin-root .wnm-terms__hero-stats ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.nexin-root .wnm-terms__hero-stats li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: rgba(249,249,249,0.82);
  font-weight: 500;
  line-height: 1.45;
}
.nexin-root .wnm-terms__hero-stats li > span {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c7ff1e;
  box-shadow: 0 0 0 3px rgba(199,255,30,0.18);
}
@media (max-width: 991px) {
  .nexin-root .wnm-terms__hero-grid { grid-template-columns: 1fr; gap: 32px; }
}
.nexin-root .wnm-terms__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(10, 10, 11, 0.6);
  text-decoration: none;
  margin-bottom: 28px;
  padding: 8px 14px;
  border-radius: 99px;
  background: rgba(10, 10, 11, 0.04);
  transition: all 0.25s;
}
.nexin-root .wnm-terms__breadcrumb:hover {
  background: #c7ff1e;
  color: #0a0a0b;
  transform: translateX(-3px);
}
.nexin-root .wnm-terms__title {
  font-family: "Fraunces", "Marcellus", serif;
  font-weight: 400;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.02;
  margin: 14px 0 0;
  color: #0a0a0b;
  letter-spacing: -0.015em;
}
.nexin-root .wnm-terms__title em {
  font-style: italic;
  background: linear-gradient(120deg, transparent 0%, transparent 18%, rgba(199, 255, 30, 0.6) 18%, rgba(199, 255, 30, 0.6) 92%, transparent 92%);
  background-size: 100% 60%;
  background-repeat: no-repeat;
  background-position: 0 78%;
  padding: 0 6px;
}
.nexin-root .wnm-terms__lead {
  margin: 28px 0 0;
  font-size: 17.5px;
  line-height: 1.6;
  color: rgba(10, 10, 11, 0.72);
  max-width: 720px;
}
.nexin-root .wnm-terms__lead strong {
  color: #0a0a0b;
  font-weight: 600;
  background: linear-gradient(transparent 60%, rgba(199, 255, 30, 0.4) 60%);
}
.nexin-root .wnm-terms__meta {
  margin: 22px 0 0;
  font-size: 13px;
  color: rgba(10, 10, 11, 0.5);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}
.nexin-root .wnm-terms__meta strong {
  color: #0a0a0b;
  font-weight: 600;
}

/* Content layout: TOC + body */
.nexin-root .wnm-terms__content {
  background: #fff;
  padding: 64px 0 100px;
  border-top: 1px solid rgba(10, 10, 11, 0.05);
}
.nexin-root .wnm-terms__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}
.nexin-root .wnm-terms__toc {
  position: sticky;
  top: 100px;
  align-self: start;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .wnm-terms__toc-label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.45);
  margin-bottom: 16px;
}
.nexin-root .wnm-terms__toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid rgba(10, 10, 11, 0.08);
}
.nexin-root .wnm-terms__toc li { margin: 0; }
.nexin-root .wnm-terms__toc a {
  display: block;
  padding: 9px 16px;
  font-size: 13.5px;
  color: rgba(10, 10, 11, 0.6);
  text-decoration: none;
  border-left: 2px solid transparent;
  margin-left: -1px;
  transition: all 0.2s;
  line-height: 1.4;
}
.nexin-root .wnm-terms__toc a:hover {
  color: #0a0a0b;
  background: rgba(199, 255, 30, 0.12);
  border-left-color: #c7ff1e;
}
.nexin-root .wnm-terms__toc-cta {
  margin-top: 24px;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fafaf8 0%, rgba(199, 255, 30, 0.08) 100%);
  border: 1px solid rgba(10, 10, 11, 0.08);
}
.nexin-root .wnm-terms__toc-cta p {
  margin: 0 0 6px;
  font-size: 13px;
  color: rgba(10, 10, 11, 0.65);
}
.nexin-root .wnm-terms__toc-cta a {
  font-size: 13.5px;
  font-weight: 600;
  color: #0a0a0b;
  text-decoration: none;
  border-bottom: 2px solid #c7ff1e;
  display: inline-block;
}

/* Body */
.nexin-root .wnm-terms__body {
  max-width: 760px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .wnm-terms__section {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px dashed rgba(10, 10, 11, 0.1);
  scroll-margin-top: 100px;
}
.nexin-root .wnm-terms__section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 24px;
}
.nexin-root .wnm-terms__section-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  color: #0a0a0b;
  margin: 0 0 18px;
  letter-spacing: -0.005em;
  position: relative;
  padding-left: 16px;
}
.nexin-root .wnm-terms__section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 4px;
  border-radius: 2px;
  background: #c7ff1e;
}
.nexin-root .wnm-terms__p {
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(10, 10, 11, 0.75);
  margin: 0 0 16px;
}
.nexin-root .wnm-terms__p:last-child { margin-bottom: 0; }
.nexin-root .wnm-terms__p strong {
  color: #0a0a0b;
  font-weight: 600;
}
.nexin-root .wnm-terms__p a {
  color: #0a0a0b;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1.5px solid #c7ff1e;
  transition: background 0.2s;
}
.nexin-root .wnm-terms__p a:hover {
  background: rgba(199, 255, 30, 0.3);
}
.nexin-root .wnm-terms__list-marker {
  color: #c7ff1e;
  font-weight: 700;
  margin-right: 6px;
}

.nexin-root .wnm-terms__signoff {
  margin-top: 48px;
  padding: 32px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0a0a0b 0%, #1a1a1d 100%);
  color: #f9f9f9;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .wnm-terms__signoff p {
  margin: 0;
  font-size: 14.5px;
  color: rgba(249, 249, 249, 0.72);
}
.nexin-root .wnm-terms__signature {
  margin-top: 18px !important;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nexin-root .wnm-terms__signature em {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
  color: #f9f9f9;
  letter-spacing: -0.005em;
}
.nexin-root .wnm-terms__signature span {
  font-size: 12.5px;
  color: rgba(249, 249, 249, 0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

@media (max-width: 991px) {
  .nexin-root .wnm-terms__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .nexin-root .wnm-terms__toc {
    position: static;
    background: #fafaf8;
    padding: 24px;
    border-radius: 18px;
  }
  .nexin-root .wnm-terms__toc ol {
    columns: 2;
    column-gap: 16px;
  }
}
@media (max-width: 640px) {
  .nexin-root .wnm-terms__hero { padding: 64px 0 40px; }
  .nexin-root .wnm-terms__lead { font-size: 16px; }
  .nexin-root .wnm-terms__content { padding: 40px 0 64px; }
  .nexin-root .wnm-terms__toc ol { columns: 1; }
  .nexin-root .wnm-terms__section-title { font-size: 19px; padding-left: 12px; }
  .nexin-root .wnm-terms__p { font-size: 15px; line-height: 1.7; }
  .nexin-root .wnm-terms__signoff { padding: 24px; }
  .nexin-root .wnm-terms__signature em { font-size: 22px; }
}

/* Cookies — visual cards with chip + table */
.nexin-root .wnm-cookies__container { max-width: 920px; }
.nexin-root .wnm-cookies__cards {
  display: grid;
  gap: 24px;
  margin-bottom: 56px;
}
.nexin-root .wnm-cookies__card {
  background: #fff;
  border: 1px solid rgba(10, 10, 11, 0.08);
  border-radius: 20px;
  padding: 32px;
  transition: box-shadow 0.3s, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-cookies__card:hover {
  box-shadow: 0 16px 40px -16px rgba(10, 10, 11, 0.15);
  transform: translateY(-3px);
}
.nexin-root .wnm-cookies__card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.nexin-root .wnm-cookies__card-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #0a0a0b;
  margin: 0;
  letter-spacing: -0.005em;
}
.nexin-root .wnm-cookies__chip {
  padding: 5px 12px;
  border-radius: 99px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0a0a0b;
}
.nexin-root .wnm-cookies__purpose {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(10, 10, 11, 0.72);
  margin: 0 0 22px;
}
.nexin-root .wnm-cookies__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13.5px;
  border: 1px solid rgba(10, 10, 11, 0.08);
  border-radius: 12px;
  overflow: hidden;
}
.nexin-root .wnm-cookies__table th,
.nexin-root .wnm-cookies__table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(10, 10, 11, 0.06);
}
.nexin-root .wnm-cookies__table tr:last-child td { border-bottom: none; }
.nexin-root .wnm-cookies__table th {
  font-weight: 600;
  color: rgba(10, 10, 11, 0.55);
  background: rgba(10, 10, 11, 0.025);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nexin-root .wnm-cookies__table td { color: rgba(10, 10, 11, 0.78); }
.nexin-root .wnm-cookies__table code {
  background: rgba(199, 255, 30, 0.14);
  color: #0a0a0b;
  padding: 2px 8px;
  border-radius: 5px;
  font-family: "JetBrains Mono", "SF Mono", "Menlo", monospace;
  font-size: 12.5px;
  font-weight: 600;
}
.nexin-root .wnm-cookies__manage {
  background: linear-gradient(135deg, #0a0a0b 0%, #1a1a1d 100%);
  color: #f9f9f9;
  padding: 36px;
  border-radius: 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .wnm-cookies__manage h2 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 28px;
  color: #f9f9f9;
  margin: 0 0 14px;
}
.nexin-root .wnm-cookies__manage p {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(249, 249, 249, 0.72);
  margin: 0 0 18px;
}
.nexin-root .wnm-cookies__manage code {
  background: rgba(255, 255, 255, 0.08);
  color: #c7ff1e;
  padding: 1px 7px;
  border-radius: 4px;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
}
.nexin-root .wnm-cookies__manage-btn {
  all: unset;
  cursor: not-allowed;
  display: inline-flex;
  padding: 12px 24px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(249, 249, 249, 0.55);
  font-weight: 600;
  font-size: 14px;
  margin-top: 4px;
}
.nexin-root .wnm-cookies__related {
  margin-top: 22px !important;
  font-size: 13px !important;
  color: rgba(249, 249, 249, 0.55) !important;
}
.nexin-root .wnm-cookies__related a {
  color: #c7ff1e;
  text-decoration: none;
  border-bottom: 1px solid rgba(199, 255, 30, 0.4);
  transition: border-color 0.2s;
}
.nexin-root .wnm-cookies__related a:hover { border-color: #c7ff1e; }

@media (max-width: 640px) {
  .nexin-root .wnm-cookies__card { padding: 22px; }
  .nexin-root .wnm-cookies__card-head { flex-wrap: wrap; gap: 10px; }
  .nexin-root .wnm-cookies__table { font-size: 12.5px; }
  .nexin-root .wnm-cookies__table th,
  .nexin-root .wnm-cookies__table td { padding: 10px 12px; }
  .nexin-root .wnm-cookies__manage { padding: 24px; }
}

/* ═══════════════════════════════════════════════════════════════════
   SLUŽBY — Hero + 5 service rows + combine CTA
   Per-service accent color, editorial layout, hover lift
   ═══════════════════════════════════════════════════════════════════ */
.nexin-root .wnm-srv__hero {
  background: #fafaf8;
  color: #0a0a0b;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.nexin-root .wnm-srv__hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.nexin-root .wnm-srv__hero-bg svg { width: 100%; height: 100%; }
.nexin-root .wnm-srv__hero > .container { position: relative; z-index: 1; }
.nexin-root .wnm-srv__hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 32px;
}
.nexin-root .wnm-srv__title {
  font-family: "Fraunces", "Marcellus", serif;
  font-weight: 400;
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 1.02;
  margin: 14px 0 0;
  color: #0a0a0b;
  letter-spacing: -0.02em;
}
.nexin-root .wnm-srv__title em {
  font-style: italic;
  background: linear-gradient(120deg, transparent 0%, transparent 8%, rgba(199, 255, 30, 0.6) 8%, rgba(199, 255, 30, 0.6) 92%, transparent 92%);
  background-size: 100% 60%;
  background-repeat: no-repeat;
  background-position: 0 78%;
  padding: 0 6px;
}
.nexin-root .wnm-srv__lead {
  margin: 28px 0 0;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(10, 10, 11, 0.7);
  max-width: 540px;
}
.nexin-root .wnm-srv__hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
.nexin-root .wnm-srv__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 99px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.nexin-root .wnm-srv__btn--primary {
  background: #c7ff1e;
  color: #0a0a0b;
  box-shadow: 0 8px 24px -8px rgba(199, 255, 30, 0.45);
}
.nexin-root .wnm-srv__btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -10px rgba(199, 255, 30, 0.6);
  color: #0a0a0b;
}
.nexin-root .wnm-srv__btn--ghost {
  background: transparent;
  color: #0a0a0b;
  border: 1.5px solid rgba(10, 10, 11, 0.18);
}
.nexin-root .wnm-srv__btn--ghost:hover {
  background: #0a0a0b;
  color: #fff;
  border-color: #0a0a0b;
}
.nexin-root .wnm-srv__btn--lg {
  padding: 16px 30px;
  font-size: 15.5px;
}

/* Hero stack — visual representation of 5 packages */
.nexin-root .wnm-srv__hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.nexin-root .wnm-srv__hero-stack {
  position: relative;
  width: 100%;
  max-width: 360px;
  height: 380px;
}
.nexin-root .wnm-srv__hero-card {
  position: absolute;
  inset: 0;
  background: #fff;
  border: 1px solid rgba(10, 10, 11, 0.08);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 24px 60px -28px rgba(10, 10, 11, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-srv__hero-stack:hover .wnm-srv__hero-card {
  /* Spread out on hover */
}
/* Idle float animation — cards drift continuously so they never feel static */
.nexin-root .wnm-srv__hero-card--1 {
  z-index: 5;
  background: #c7ff1e;
  animation: wnmSrvFloat1 7s ease-in-out infinite;
}
.nexin-root .wnm-srv__hero-card--2 {
  z-index: 4;
  background: #fff;
  animation: wnmSrvFloat2 7s ease-in-out infinite 0.4s;
}
.nexin-root .wnm-srv__hero-card--3 {
  z-index: 3;
  background: rgba(255,209,192,0.55);
  animation: wnmSrvFloat3 7s ease-in-out infinite 0.8s;
}
.nexin-root .wnm-srv__hero-card--4 {
  z-index: 2;
  background: rgba(201,164,255,0.55);
  animation: wnmSrvFloat4 7s ease-in-out infinite 1.2s;
}
.nexin-root .wnm-srv__hero-card--5 {
  z-index: 1;
  background: rgba(160,217,255,0.5);
  animation: wnmSrvFloat5 7s ease-in-out infinite 1.6s;
}
@keyframes wnmSrvFloat1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-3px, -6px) rotate(-1deg); }
}
@keyframes wnmSrvFloat2 {
  0%, 100% { transform: translate(8px, 8px) rotate(2deg); }
  50% { transform: translate(10px, 4px) rotate(3deg); }
}
@keyframes wnmSrvFloat3 {
  0%, 100% { transform: translate(16px, 16px) rotate(4deg); }
  50% { transform: translate(20px, 14px) rotate(5deg); }
}
@keyframes wnmSrvFloat4 {
  0%, 100% { transform: translate(24px, 24px) rotate(6deg); }
  50% { transform: translate(28px, 22px) rotate(7deg); }
}
@keyframes wnmSrvFloat5 {
  0%, 100% { transform: translate(32px, 32px) rotate(8deg); }
  50% { transform: translate(36px, 30px) rotate(9deg); }
}
.nexin-root .wnm-srv__hero-stack:hover .wnm-srv__hero-card { animation-play-state: paused; }
.nexin-root .wnm-srv__hero-stack:hover .wnm-srv__hero-card--1 { transform: translate(-16px, -16px) rotate(-3deg); }
.nexin-root .wnm-srv__hero-stack:hover .wnm-srv__hero-card--5 { transform: translate(64px, 64px) rotate(14deg); }
.nexin-root .wnm-srv__hero-card-num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 36px;
  font-weight: 400;
  color: #0a0a0b;
}
.nexin-root .wnm-srv__hero-card-label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #0a0a0b;
}

/* SERVICE LIST — editorial rows */
.nexin-root .wnm-srv__list-sec {
  background: #fff;
  padding: 80px 0;
  border-top: 1px solid rgba(10, 10, 11, 0.05);
}
.nexin-root .wnm-srv__row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  padding: 56px 0;
  position: relative;
  border-top: 1px solid rgba(10, 10, 11, 0.06);
  transition: background 0.4s;
}
.nexin-root .wnm-srv__row:first-of-type { border-top: none; padding-top: 0; }
.nexin-root .wnm-srv__row:hover {
  background: var(--srv-bg);
}
.nexin-root .wnm-srv__rail {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 100px;
  align-self: start;
}
.nexin-root .wnm-srv__num {
  font-family: "Fraunces", "Marcellus", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 88px;
  line-height: 0.85;
  color: var(--srv-accent);
  letter-spacing: -0.04em;
  text-shadow: 0 0 28px rgba(0, 0, 0, 0.04);
}
.nexin-root .wnm-srv__name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.15;
  color: #0a0a0b;
  margin: 0;
  letter-spacing: -0.01em;
}
.nexin-root .wnm-srv__tagline {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 17px;
  font-weight: 400;
  color: rgba(10, 10, 11, 0.55);
  margin: 4px 0 0;
}
.nexin-root .wnm-srv__body {
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .wnm-srv__summary {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(10, 10, 11, 0.78);
  margin: 0 0 28px;
  max-width: 720px;
}
.nexin-root .wnm-srv__deliv {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}
.nexin-root .wnm-srv__deliv-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(10, 10, 11, 0.78);
}
.nexin-root .wnm-srv__deliv-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--srv-accent);
  color: #0a0a0b;
  margin-top: 1px;
}
.nexin-root .wnm-srv__meta {
  display: grid;
  grid-template-columns: 140px 140px 1fr;
  gap: 24px;
  padding: 22px 24px;
  border: 1px solid rgba(10, 10, 11, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 24px;
}
.nexin-root .wnm-srv__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nexin-root .wnm-srv__meta-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.5);
  font-weight: 600;
}
.nexin-root .wnm-srv__meta-val {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 22px;
  color: #0a0a0b;
  line-height: 1.2;
}
.nexin-root .wnm-srv__meta-item--wide .wnm-srv__meta-val {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(10, 10, 11, 0.7);
}
.nexin-root .wnm-srv__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 99px;
  background: #0a0a0b;
  color: #fff;
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-srv__cta:hover {
  background: var(--srv-accent);
  color: #0a0a0b;
  transform: translateX(4px);
}
.nexin-root .wnm-srv__cta:hover svg { transform: translate(3px, -3px); }
.nexin-root .wnm-srv__cta svg { transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.nexin-root .wnm-srv__glow {
  position: absolute;
  top: 50%;
  left: -100px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--srv-accent), transparent 70%);
  opacity: 0;
  transform: translateY(-50%);
  filter: blur(60px);
  transition: opacity 0.6s;
  pointer-events: none;
}
.nexin-root .wnm-srv__row:hover .wnm-srv__glow { opacity: 0.5; }


/* ═══════════════════════════════════════════════════════════════════
   CTA3 — compact editorial closing band
   Restrained, ~200px tall, single-row layout. Premium feel via restraint.
   ═══════════════════════════════════════════════════════════════════ */
.nexin-root .wnm-cta3 {
  --cta-accent: #c7ff1e;
  background: #fafaf8;
  padding: clamp(48px, 6vw, 72px) 0 clamp(48px, 6vw, 72px);
  border-top: 1px solid rgba(10, 10, 11, 0.08);
}
.nexin-root .wnm-cta3__band {
  display: grid;
  grid-template-columns: clamp(120px, 12vw, 160px) minmax(0, 1.6fr) minmax(0, 1.4fr);
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  padding: clamp(32px, 4vw, 48px) clamp(24px, 3vw, 40px);
  position: relative;
  background: #fff;
  border: 1px solid rgba(10, 10, 11, 0.08);
  border-radius: 14px;
  overflow: hidden;
}
.nexin-root .wnm-cta3__band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 2px;
  background: var(--cta-accent);
  filter: brightness(0.85) saturate(1.4);
}
.nexin-root .wnm-cta3__rail {
  display: none;
}
.nexin-root .wnm-cta3__eyebrow {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.55);
  align-self: start;
  padding-top: 4px;
}
.nexin-root .wnm-cta3__h {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #0a0a0b;
  margin: 0 0 8px;
}
.nexin-root .wnm-cta3__h em {
  font-style: italic;
  font-weight: 300;
  color: #0a0a0b;
  background: linear-gradient(transparent 64%, color-mix(in oklab, var(--cta-accent) 55%, transparent) 64%, color-mix(in oklab, var(--cta-accent) 55%, transparent) 92%, transparent 92%);
  padding: 0 0.04em;
}
.nexin-root .wnm-cta3__lead {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(10, 10, 11, 0.6);
  margin: 0;
  max-width: 50ch;
}
.nexin-root .wnm-cta3__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-self: end;
  flex-wrap: wrap;
}
.nexin-root .wnm-cta3__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px 12px 20px;
  background: #0a0a0b;
  color: var(--cta-accent);
  border-radius: 99px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: gap 0.25s, background 0.25s;
}
.nexin-root .wnm-cta3__cta:hover { gap: 14px; }
.nexin-root .wnm-cta3__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cta-accent);
  color: #0a0a0b;
  filter: brightness(0.9) saturate(1.2);
  transition: transform 0.25s;
}
.nexin-root .wnm-cta3__cta:hover .wnm-cta3__cta-arrow { transform: translateX(2px); }
.nexin-root .wnm-cta3__divider {
  display: inline-block;
  width: 1px;
  height: 32px;
  background: rgba(10, 10, 11, 0.18);
}
.nexin-root .wnm-cta3__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .wnm-cta3__meta-line {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.5);
}
.nexin-root .wnm-cta3__mail {
  font-size: 13px;
  font-weight: 600;
  color: #0a0a0b;
  text-decoration: none;
  transition: color 0.2s;
}
.nexin-root .wnm-cta3__mail:hover {
  color: color-mix(in oklab, var(--cta-accent) 70%, #0a0a0b);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 991px) {
  .nexin-root .wnm-cta3__band {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 28px 24px;
  }
  .nexin-root .wnm-cta3__actions {
    justify-self: start;
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(10, 10, 11, 0.08);
    width: 100%;
  }
}


@media (max-width: 991px) {
  .nexin-root .wnm-srv__hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .nexin-root .wnm-srv__hero-right { min-height: 280px; }
  .nexin-root .wnm-srv__row { grid-template-columns: 1fr; gap: 24px; }
  .nexin-root .wnm-srv__rail { position: static; flex-direction: row; align-items: flex-end; gap: 20px; }
  .nexin-root .wnm-srv__num { font-size: 64px; }
  .nexin-root .wnm-srv__deliv { grid-template-columns: 1fr; }
  .nexin-root .wnm-srv__meta { grid-template-columns: 1fr 1fr; }
  .nexin-root .wnm-srv__meta-item--wide { grid-column: span 2; }
}
@media (max-width: 640px) {
  .nexin-root .wnm-srv__hero-cta { flex-direction: column; align-items: stretch; }
  .nexin-root .wnm-srv__btn { justify-content: center; }
  .nexin-root .wnm-srv__row { padding: 36px 0; }
  .nexin-root .wnm-srv__rail { flex-direction: column; align-items: flex-start; gap: 8px; }
  .nexin-root .wnm-srv__name { font-size: 24px; }
  .nexin-root .wnm-srv__summary { font-size: 15.5px; }
  .nexin-root .wnm-srv__meta { grid-template-columns: 1fr; padding: 18px; }
  .nexin-root .wnm-srv__meta-item--wide { grid-column: span 1; }
  /* Mobile stack — show only top 3 cards, smaller offsets, more visible animation */
  .nexin-root .wnm-srv__hero-right { min-height: 260px; }
  .nexin-root .wnm-srv__hero-stack { max-width: 280px; height: 280px; margin: 0 auto; }
  .nexin-root .wnm-srv__hero-card { padding: 22px; border-radius: 18px; }
  .nexin-root .wnm-srv__hero-card-num { font-size: 30px; }
  .nexin-root .wnm-srv__hero-card-label { font-size: 16px; }
  .nexin-root .wnm-srv__hero-card--4,
  .nexin-root .wnm-srv__hero-card--5 { display: none; }
  @keyframes wnmSrvFloat1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-4px, -8px) rotate(-2deg); }
  }
  @keyframes wnmSrvFloat2 {
    0%, 100% { transform: translate(10px, 10px) rotate(3deg); }
    50% { transform: translate(14px, 6px) rotate(5deg); }
  }
  @keyframes wnmSrvFloat3 {
    0%, 100% { transform: translate(20px, 20px) rotate(6deg); }
    50% { transform: translate(24px, 16px) rotate(8deg); }
  }
}

/* ═══════════════════════════════════════════════════════════════════
   CENNÍK — Hero + 3 tier cards + Comparison table
   ═══════════════════════════════════════════════════════════════════ */
.nexin-root .wnm-pri__hero {
  background: #fafaf8;
  color: #0a0a0b;
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.nexin-root .wnm-pri__hero > .container { position: relative; z-index: 1; }
.nexin-root .wnm-pri__title {
  font-family: "Fraunces", "Marcellus", serif;
  font-weight: 400;
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 1.02;
  margin: 14px 0 0;
  color: #0a0a0b;
  letter-spacing: -0.02em;
  max-width: 880px;
}
.nexin-root .wnm-pri__title em {
  font-style: italic;
  background: linear-gradient(120deg, transparent 0%, transparent 8%, rgba(199, 255, 30, 0.6) 8%, rgba(199, 255, 30, 0.6) 92%, transparent 92%);
  background-size: 100% 60%;
  background-repeat: no-repeat;
  background-position: 0 78%;
  padding: 0 6px;
}
.nexin-root .wnm-pri__lead {
  margin: 28px 0 0;
  font-size: 17.5px;
  line-height: 1.65;
  color: rgba(10, 10, 11, 0.7);
  max-width: 720px;
}

/* Guarantees strip */
.nexin-root .wnm-pri__guarantees {
  background: #fff;
  padding: 0 0 48px;
  border-top: 1px solid rgba(10, 10, 11, 0.04);
}
.nexin-root .wnm-pri__guarantees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: -32px;
  position: relative;
  z-index: 2;
}
.nexin-root .wnm-pri__guarantee {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 24px;
  background: #c7ff1e;
  color: #0a0a0b;
  border-radius: 18px;
  box-shadow: 0 16px 40px -16px rgba(199, 255, 30, 0.45);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-pri__guarantee:hover { transform: translateY(-3px); }
.nexin-root .wnm-pri__guarantee-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #0a0a0b;
  color: #c7ff1e;
  display: grid;
  place-items: center;
}
.nexin-root .wnm-pri__guarantee-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.005em;
}
.nexin-root .wnm-pri__guarantee-body {
  font-size: 13px;
  color: rgba(10, 10, 11, 0.78);
  line-height: 1.5;
  margin-top: 4px;
}

/* Tier cards */
.nexin-root .wnm-pri__tiers-sec {
  background: #fff;
  padding: 56px 0 80px;
}
.nexin-root .wnm-pri__tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.nexin-root .wnm-pri__tier {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 36px 32px 32px;
  border-radius: 24px;
  border: 1px solid rgba(10, 10, 11, 0.08);
  background: #fff;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .wnm-pri__tier:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px -20px rgba(10, 10, 11, 0.18);
}
.nexin-root .wnm-pri__tier--sand {
  background: #fafaf8;
}
.nexin-root .wnm-pri__tier--ink {
  background: linear-gradient(180deg, #0a0a0b 0%, #1a1a1d 100%);
  color: #f9f9f9;
  border-color: transparent;
}
.nexin-root .wnm-pri__tier--hl {
  background: linear-gradient(180deg, #c7ff1e 0%, #d4ff44 100%);
  color: #0a0a0b;
  border-color: transparent;
  transform: scale(1.03);
  box-shadow: 0 24px 60px -20px rgba(199, 255, 30, 0.6);
  z-index: 1;
}
.nexin-root .wnm-pri__tier--hl:hover { transform: scale(1.03) translateY(-6px); }
.nexin-root .wnm-pri__tier-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #0a0a0b;
  color: #c7ff1e;
  padding: 7px 16px;
  border-radius: 99px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nexin-root .wnm-pri__tier-head { }
.nexin-root .wnm-pri__tier-name {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.01em;
}
.nexin-root .wnm-pri__tier-tagline {
  font-size: 14px;
  margin: 6px 0 0;
  opacity: 0.7;
}

.nexin-root .wnm-pri__tier-price-box {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  border-color: rgba(10, 10, 11, 0.1);
}
.nexin-root .wnm-pri__tier--ink .wnm-pri__tier-price-box,
.nexin-root .wnm-pri__tier--hl .wnm-pri__tier-price-box {
  border-color: rgba(255, 255, 255, 0.18);
}
.nexin-root .wnm-pri__tier--hl .wnm-pri__tier-price-box {
  border-color: rgba(10, 10, 11, 0.18);
}
.nexin-root .wnm-pri__tier-currency {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 28px;
  opacity: 0.6;
}
.nexin-root .wnm-pri__tier-price {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.03em;
}
.nexin-root .wnm-pri__tier-detail {
  font-size: 13px;
  opacity: 0.6;
  margin-left: 8px;
  white-space: nowrap;
}
.nexin-root .wnm-pri__tier-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
}
.nexin-root .wnm-pri__tier-meta-lbl {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 2px;
  font-weight: 600;
}
.nexin-root .wnm-pri__tier-meta-val {
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.4;
}
.nexin-root .wnm-pri__tier-payback {
  font-style: italic;
  font-family: "Fraunces", serif;
  font-size: 13.5px;
  margin: 0;
  opacity: 0.78;
}
.nexin-root .wnm-pri__tier-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}
.nexin-root .wnm-pri__tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.55;
}
.nexin-root .wnm-pri__tier-features li > span {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(10, 10, 11, 0.08);
  color: #0a0a0b;
  margin-top: 1px;
}
.nexin-root .wnm-pri__tier--ink .wnm-pri__tier-features li > span {
  background: rgba(199, 255, 30, 0.18);
  color: #c7ff1e;
}
.nexin-root .wnm-pri__tier--hl .wnm-pri__tier-features li > span {
  background: rgba(10, 10, 11, 0.12);
  color: #0a0a0b;
}
.nexin-root .wnm-pri__tier-no { opacity: 0.45; text-decoration: line-through; }
.nexin-root .wnm-pri__tier-no > span {
  background: transparent !important;
  border: 1px solid currentColor !important;
}

.nexin-root .wnm-pri__tier-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 99px;
  background: #0a0a0b;
  color: #f9f9f9;
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-pri__tier-cta svg { transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.nexin-root .wnm-pri__tier-cta:hover svg { transform: translate(3px, -3px); }
.nexin-root .wnm-pri__tier--ink .wnm-pri__tier-cta {
  background: #c7ff1e;
  color: #0a0a0b;
}
.nexin-root .wnm-pri__tier--hl .wnm-pri__tier-cta {
  background: #0a0a0b;
  color: #c7ff1e;
}
.nexin-root .wnm-pri__tier-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -12px rgba(0, 0, 0, 0.35);
  color: #f9f9f9;
}
.nexin-root .wnm-pri__tier--ink .wnm-pri__tier-cta:hover { color: #0a0a0b; }
.nexin-root .wnm-pri__tier--hl .wnm-pri__tier-cta:hover { color: #c7ff1e; }

.nexin-root .wnm-pri__tiers-note {
  margin: 32px 0 0;
  text-align: center;
  font-size: 13px;
  color: rgba(10, 10, 11, 0.55);
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .wnm-pri__tiers-note strong { color: #0a0a0b; font-weight: 600; }

/* Comparison table */
.nexin-root .wnm-pri__compare {
  background: #fafaf8;
  padding: 80px 0;
}
.nexin-root .wnm-pri__compare-head { margin-bottom: 40px; }
.nexin-root .wnm-pri__compare-title {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  margin: 12px 0 0;
  color: #0a0a0b;
}
.nexin-root .wnm-pri__compare-title em {
  font-style: italic;
  background: linear-gradient(120deg, transparent 0%, transparent 8%, rgba(199, 255, 30, 0.6) 8%, rgba(199, 255, 30, 0.6) 92%, transparent 92%);
  background-size: 100% 60%;
  background-repeat: no-repeat;
  background-position: 0 78%;
  padding: 0 6px;
}
.nexin-root .wnm-pri__table-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 12px;
  box-shadow: 0 16px 40px -20px rgba(10, 10, 11, 0.12);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  /* Scroll hint — fade gradient on right edge tells user they can scroll. */
  position: relative;
  background:
    linear-gradient(to right, #fff 30%, transparent),
    linear-gradient(to right, transparent, #fff 70%) 100% 0,
    radial-gradient(farthest-side at 0 50%, rgba(10, 10, 11, 0.12), transparent),
    radial-gradient(farthest-side at 100% 50%, rgba(10, 10, 11, 0.12), transparent) 100% 0;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 40px 100%, 40px 100%, 14px 100%, 14px 100%;
  background-attachment: local, local, scroll, scroll;
}
.nexin-root .wnm-pri__table th,
.nexin-root .wnm-pri__table td {
  scroll-snap-align: start;
}
@media (max-width: 640px) {
  /* Compact the table on small mobile — tighter padding so fewer pixels
     get clipped behind the scroll, and the columns feel less arbitrary. */
  .nexin-root .wnm-pri__table { min-width: 560px; }
  .nexin-root .wnm-pri__table th,
  .nexin-root .wnm-pri__table td { padding: 12px 10px; }
  .nexin-root .wnm-pri__th-name { font-size: 18px; }
}
.nexin-root .wnm-pri__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  min-width: 640px;
}
.nexin-root .wnm-pri__table th,
.nexin-root .wnm-pri__table td {
  padding: 14px 18px;
  text-align: center;
  border-bottom: 1px solid rgba(10, 10, 11, 0.05);
}
.nexin-root .wnm-pri__table tr:last-child td { border-bottom: none; }
.nexin-root .wnm-pri__table th:first-child,
.nexin-root .wnm-pri__table td:first-child { text-align: left; }
.nexin-root .wnm-pri__th-name {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 22px;
  color: #0a0a0b;
}
.nexin-root .wnm-pri__th-price {
  font-size: 13px;
  color: rgba(10, 10, 11, 0.55);
  margin-top: 2px;
}
.nexin-root .wnm-pri__th--hl {
  background: rgba(199, 255, 30, 0.16);
  border-radius: 12px 12px 0 0;
  position: relative;
  padding-top: 44px !important;
}
.nexin-root .wnm-pri__th--hl::before {
  content: "Najpopulárnejší";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0a0a0b;
  background: #c7ff1e;
  padding: 4px 12px;
  border-radius: 99px;
  white-space: nowrap;
  box-shadow: 0 4px 12px -4px rgba(199, 255, 30, 0.5);
}
.nexin-root .wnm-pri__td-label {
  font-size: 14px;
  font-weight: 500;
  color: #0a0a0b;
}
.nexin-root .wnm-pri__td--hl {
  background: rgba(199, 255, 30, 0.08);
}
.nexin-root .wnm-pri__cell-yes,
.nexin-root .wnm-pri__cell-no {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
}
.nexin-root .wnm-pri__cell-yes {
  background: #c7ff1e;
  color: #0a0a0b;
}
.nexin-root .wnm-pri__cell-no {
  background: rgba(10, 10, 11, 0.06);
  color: rgba(10, 10, 11, 0.4);
}
.nexin-root .wnm-pri__cell-text {
  font-size: 13px;
  color: rgba(10, 10, 11, 0.78);
  font-weight: 500;
}

@media (max-width: 991px) {
  .nexin-root .wnm-pri__guarantees-grid { grid-template-columns: 1fr; }
  .nexin-root .wnm-pri__tiers { grid-template-columns: 1fr; gap: 32px; }
  .nexin-root .wnm-pri__tier--hl { transform: scale(1); }
  .nexin-root .wnm-pri__tier--hl:hover { transform: translateY(-6px); }
}
@media (max-width: 640px) {
  .nexin-root .wnm-pri__hero { padding: 56px 0 48px; }
  .nexin-root .wnm-pri__compare { padding: 56px 0; }
  .nexin-root .wnm-pri__tier { padding: 28px 24px; }
  .nexin-root .wnm-pri__tier-name { font-size: 26px; }
  .nexin-root .wnm-pri__tier-price { font-size: 52px; }
}

/* Related reads section — internal linking SEO booster */
.nexin-root .wnm-pri__related {
  background: #fff;
  padding: 72px 0;
  border-top: 1px solid rgba(10, 10, 11, 0.05);
}
.nexin-root .wnm-pri__related-head { margin-bottom: 36px; }
.nexin-root .wnm-pri__related-tag {
  display: inline-block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.55);
  margin-bottom: 8px;
}
.nexin-root .wnm-pri__related-title {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.05;
  margin: 0;
  color: #0a0a0b;
  letter-spacing: -0.015em;
}
.nexin-root .wnm-pri__related-title em {
  font-style: italic;
  background: linear-gradient(120deg, transparent 8%, rgba(199, 255, 30, 0.55) 8%, rgba(199, 255, 30, 0.55) 92%, transparent 92%);
  background-size: 100% 56%;
  background-repeat: no-repeat;
  background-position: 0 78%;
  padding: 0 4px;
}
.nexin-root .wnm-pri__related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.nexin-root .wnm-pri__related-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px 24px 22px;
  background: #f9f9f9;
  border: 1px solid rgba(10, 10, 11, 0.06);
  border-radius: 18px;
  text-decoration: none;
  color: #0a0a0b;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.nexin-root .wnm-pri__related-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #c7ff1e;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-pri__related-card:hover {
  background: #fff;
  border-color: #c7ff1e;
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -16px rgba(10, 10, 11, 0.15);
  color: #0a0a0b;
}
.nexin-root .wnm-pri__related-card:hover::before { transform: scaleX(1); }
.nexin-root .wnm-pri__related-cat {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.55);
}
.nexin-root .wnm-pri__related-card h3 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.2;
  margin: 0;
  color: #0a0a0b;
  letter-spacing: -0.005em;
}
.nexin-root .wnm-pri__related-card p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(10, 10, 11, 0.65);
  margin: 0;
  flex-grow: 1;
}
.nexin-root .wnm-pri__related-arrow {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #0a0a0b;
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px dashed rgba(10, 10, 11, 0.12);
  transition: transform 0.3s;
}
.nexin-root .wnm-pri__related-card:hover .wnm-pri__related-arrow { transform: translateX(4px); }
@media (max-width: 991px) {
  .nexin-root .wnm-pri__related-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════════
   /KALKULACKA v4 — Aurora Configurator + neo-tactile cards
   - Hero: warm gradient mesh (sunset coral + amber + lime spark) +
     kinetic morphing price counter
   - Body: cards with click ripple, breathing on selected, conic progress
     ring around the sticky price card, slot-pop on number change
   ═══════════════════════════════════════════════════════════════════ */

/* ── HERO ─────────────────────────────────────────────────────────── */
.nexin-root .wnm-calc4__hero {
  position: relative;
  min-height: clamp(560px, 75vh, 760px);
  padding: clamp(120px, 14vw, 180px) 0 clamp(64px, 8vw, 96px);
  background: #0e0a08;
  color: #fbf6ec;
  overflow: hidden;
  isolation: isolate;
}

/* Gradient mesh — sunset/dawn warm aurora */
.nexin-root .wnm-calc4__hero-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.nexin-root .wnm-calc4__hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.85;
  mix-blend-mode: screen;
}
.nexin-root .wnm-calc4__hero-blob--1 {
  top: -10%;
  left: -8%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, #ff6b3d 0%, #ff8e64 40%, transparent 70%);
  animation: wnmCalc4Blob1 18s ease-in-out infinite;
}
.nexin-root .wnm-calc4__hero-blob--2 {
  top: 20%;
  right: -15%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, #ffc28a 0%, #ffa55c 40%, transparent 70%);
  animation: wnmCalc4Blob2 22s ease-in-out infinite;
}
.nexin-root .wnm-calc4__hero-blob--3 {
  bottom: -20%;
  left: 30%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(199, 255, 30, 0.6) 0%, rgba(199, 255, 30, 0.2) 40%, transparent 70%);
  animation: wnmCalc4Blob3 16s ease-in-out infinite;
}
@keyframes wnmCalc4Blob1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(8%, 10%) scale(1.1); }
}
@keyframes wnmCalc4Blob2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-10%, 5%) scale(0.92); }
}
@keyframes wnmCalc4Blob3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.85; }
  50% { transform: translate(15%, -8%) scale(1.15); opacity: 1; }
}
.nexin-root .wnm-calc4__hero-grain {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.5;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.nexin-root .wnm-calc4__hero-inner {
  position: relative;
  z-index: 2;
}

.nexin-root .wnm-calc4__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251, 246, 236, 0.6);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.2s;
}
.nexin-root .wnm-calc4__back:hover { color: #c7ff1e; }

.nexin-root .wnm-calc4__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 99px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fbf6ec;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nexin-root .wnm-calc4__chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c7ff1e;
  box-shadow: 0 0 10px #c7ff1e, 0 0 20px rgba(199, 255, 30, 0.6);
  animation: wnmCalc4Pulse 1.4s ease-in-out infinite;
}
@keyframes wnmCalc4Pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.7; }
}

.nexin-root .wnm-calc4__h1 {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(48px, 8vw, 128px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: #fbf6ec;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: clamp(2px, 0.5vw, 8px);
}
.nexin-root .wnm-calc4__h1-line {
  display: flex;
  align-items: baseline;
  gap: clamp(16px, 2vw, 32px);
  flex-wrap: wrap;
}
.nexin-root .wnm-calc4__h1-line--em {
  font-style: italic;
  font-weight: 300;
  color: rgba(251, 246, 236, 0.6);
  padding-left: clamp(40px, 6vw, 100px);
}

/* Kinetic morphing counter */
.nexin-root .wnm-calc4__counter {
  display: inline-flex;
  align-items: baseline;
  height: 0.95em;
  overflow: hidden;
  position: relative;
  min-width: 5ch;
}
.nexin-root .wnm-calc4__counter-val {
  display: inline-block;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  color: #c7ff1e;
  text-shadow: 0 0 30px rgba(199, 255, 30, 0.4);
  animation: wnmCalc4CounterIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}
@keyframes wnmCalc4CounterIn {
  0% { transform: translateY(100%); opacity: 0; filter: blur(8px); }
  60% { opacity: 1; filter: blur(0); }
  100% { transform: translateY(0); opacity: 1; filter: blur(0); }
}

.nexin-root .wnm-calc4__lead {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
  color: rgba(251, 246, 236, 0.78);
  margin: 0 0 36px;
  max-width: 56ch;
}

.nexin-root .wnm-calc4__hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.nexin-root .wnm-calc4__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 14px 14px 24px;
  background: #c7ff1e;
  color: #0a0a0b;
  border-radius: 99px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: gap 0.25s, box-shadow 0.25s, transform 0.25s;
  box-shadow: 0 0 0 0 rgba(199, 255, 30, 0.5);
}
.nexin-root .wnm-calc4__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.nexin-root .wnm-calc4__cta:hover {
  gap: 18px;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -8px rgba(199, 255, 30, 0.5);
}
.nexin-root .wnm-calc4__cta:hover::before {
  transform: translateX(100%);
}
.nexin-root .wnm-calc4__cta-label { position: relative; z-index: 1; }
.nexin-root .wnm-calc4__cta-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0a0a0b;
  color: #c7ff1e;
}

.nexin-root .wnm-calc4__hero-meta {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12.5px;
  color: rgba(251, 246, 236, 0.55);
  letter-spacing: 0.04em;
}
.nexin-root .wnm-calc4__hero-meta strong {
  color: #fbf6ec;
  font-weight: 700;
}

.nexin-root .wnm-calc4__hero-rule {
  width: clamp(48px, 6vw, 96px);
  height: 1px;
  background: linear-gradient(90deg, #c7ff1e, transparent);
  margin: 0 0 24px;
  filter: brightness(0.85) saturate(1.4);
}

.nexin-root .wnm-calc4__hero-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: clamp(28px, 4vw, 56px);
  flex-wrap: wrap;
}
.nexin-root .wnm-calc4__hero-points li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  color: rgba(251, 246, 236, 0.7);
  letter-spacing: 0.01em;
}
.nexin-root .wnm-calc4__hero-points-num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 24px;
  color: #c7ff1e;
  letter-spacing: -0.04em;
  filter: brightness(0.85) saturate(1.4);
}

@media (prefers-reduced-motion: reduce) {
  .nexin-root .wnm-calc4__hero-blob,
  .nexin-root .wnm-calc4__chip-dot,
  .nexin-root .wnm-calc4__counter-val { animation: none !important; }
}

/* ── BODY ─────────────────────────────────────────────────────────── */
.nexin-root .wnm-calc4__app {
  background: #fafaf8;
  padding: clamp(56px, 7vw, 96px) 0 clamp(80px, 9vw, 130px);
}
.nexin-root .wnm-calc4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  max-width: 1280px;
  margin: 0 auto;
}
.nexin-root .wnm-calc4__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(320px, 1fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

/* Questions head */
.nexin-root .wnm-calc4__qs-head { margin-bottom: 36px; }
.nexin-root .wnm-calc4__qs-pre {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.55);
  margin-bottom: 14px;
}
.nexin-root .wnm-calc4__qs-h {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #0a0a0b;
  margin: 0 0 12px;
}
.nexin-root .wnm-calc4__qs-h em {
  font-style: italic;
  font-weight: 300;
  color: rgba(10, 10, 11, 0.5);
}
.nexin-root .wnm-calc4__qs-lead {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(10, 10, 11, 0.6);
  margin: 0;
  max-width: 60ch;
}

/* Questions list */
.nexin-root .wnm-calc4__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nexin-root .wnm-calc4__q {
  padding: 36px 0;
  border-top: 1px solid rgba(10, 10, 11, 0.12);
}
.nexin-root .wnm-calc4__q:first-child { border-top: 0; padding-top: 8px; }
.nexin-root .wnm-calc4__q-head {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 16px;
  align-items: start;
  margin-bottom: 24px;
}
.nexin-root .wnm-calc4__q-num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: rgba(10, 10, 11, 0.32);
  transition: color 0.4s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nexin-root .wnm-calc4__q--done .wnm-calc4__q-num {
  color: #0a0a0b;
  transform: rotate(-4deg);
}
.nexin-root .wnm-calc4__q-text { padding-top: 8px; }
.nexin-root .wnm-calc4__q-label {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.25;
  margin: 0 0 4px;
  color: #0a0a0b;
  letter-spacing: -0.005em;
}
.nexin-root .wnm-calc4__q-hint {
  margin: 0;
  font-size: 13px;
  color: rgba(10, 10, 11, 0.55);
  line-height: 1.55;
}
.nexin-root .wnm-calc4__q-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #c7ff1e;
  color: #0a0a0b;
  filter: brightness(0.85) saturate(1.4);
  margin-top: 4px;
  animation: wnmCalc4CheckIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}
@keyframes wnmCalc4CheckIn {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Visual option cards with neo-tactile feel */
.nexin-root .wnm-calc4__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding-left: 72px;
}
.nexin-root .wnm-calc4__card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1.5px solid rgba(10, 10, 11, 0.10);
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 0.18s,
              box-shadow 0.25s,
              background-color 0.25s;
}
.nexin-root .wnm-calc4__card:hover {
  border-color: rgba(10, 10, 11, 0.30);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -10px rgba(10, 10, 11, 0.22);
}
.nexin-root .wnm-calc4__card:active { transform: scale(0.97); }
.nexin-root .wnm-calc4__card--selected {
  background: #0a0a0b;
  border-color: #0a0a0b;
  box-shadow: 0 16px 36px -10px rgba(10, 10, 11, 0.45),
    0 0 0 4px rgba(199, 255, 30, 0.14);
  animation: wnmCalc4SelectedBreath 4s ease-in-out infinite;
}
@keyframes wnmCalc4SelectedBreath {
  0%, 100% {
    box-shadow: 0 16px 36px -10px rgba(10, 10, 11, 0.45),
      0 0 0 4px rgba(199, 255, 30, 0.14);
  }
  50% {
    box-shadow: 0 16px 36px -10px rgba(10, 10, 11, 0.45),
      0 0 0 7px rgba(199, 255, 30, 0.22);
  }
}
.nexin-root .wnm-calc4__card--selected:hover { transform: translateY(-3px); }

/* Click ripple — Material Design style, scales out from click point */
.nexin-root .wnm-calc4__card-ripple {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(199, 255, 30, 0.8);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: wnmCalc4Ripple 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  z-index: 0;
}
@keyframes wnmCalc4Ripple {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(60); opacity: 0; }
}

.nexin-root .wnm-calc4__card-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.nexin-root .wnm-calc4__card-radio {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(10, 10, 11, 0.20);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  position: relative;
  z-index: 1;
  transition: all 0.2s;
}
.nexin-root .wnm-calc4__card--selected .wnm-calc4__card-radio {
  background: #c7ff1e;
  border-color: #c7ff1e;
  color: #0a0a0b;
  filter: brightness(0.92) saturate(1.25);
  transform: scale(1.05);
}
.nexin-root .wnm-calc4__card-text {
  flex: 1 1 auto;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  color: #0a0a0b;
  letter-spacing: -0.005em;
  position: relative;
  z-index: 1;
  transition: color 0.25s;
}
.nexin-root .wnm-calc4__card--selected .wnm-calc4__card-text { color: #fafaf8; }
.nexin-root .wnm-calc4__card-price {
  flex-shrink: 0;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 13px;
  font-weight: 400;
  color: rgba(10, 10, 11, 0.5);
  letter-spacing: -0.005em;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  transition: color 0.25s;
}
.nexin-root .wnm-calc4__card--selected .wnm-calc4__card-price { color: #c7ff1e; }

/* Sticky price column with conic progress ring */
.nexin-root .wnm-calc4__price {
  position: sticky;
  top: 100px;
}
.nexin-root .wnm-calc4__price-card {
  background: #fff;
  border: 1px solid rgba(10, 10, 11, 0.10);
  border-radius: 20px;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.5s, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nexin-root .wnm-calc4__price-card--ready {
  box-shadow: 0 24px 48px -16px rgba(199, 255, 30, 0.35),
    0 0 0 1px rgba(199, 255, 30, 0.25);
  border-color: rgba(199, 255, 30, 0.4);
}
.nexin-root .wnm-calc4__price-ring {
  position: absolute;
  inset: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  pointer-events: none;
  z-index: 1;
  border-radius: 22px;
  display: none; /* Replaced with simpler border progress */
}
.nexin-root .wnm-calc4__price-inner {
  padding: 28px;
  position: relative;
  z-index: 2;
}
.nexin-root .wnm-calc4__price-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 2px;
  background: #c7ff1e;
  filter: brightness(0.85) saturate(1.4);
}

.nexin-root .wnm-calc4__price-progress {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.nexin-root .wnm-calc4__price-progress-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.55);
}
.nexin-root .wnm-calc4__price-ready {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: #0a0a0b;
  color: #c7ff1e;
  border-radius: 99px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  filter: brightness(0.92) saturate(1.25);
  animation: wnmCalc4ReadyIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}
@keyframes wnmCalc4ReadyIn {
  0% { transform: scale(0) rotate(-12deg); opacity: 0; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}
.nexin-root .wnm-calc4__price-ready-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c7ff1e;
  filter: brightness(0.92) saturate(1.25);
  animation: wnmCalc4Pulse 1.4s ease-in-out infinite;
}

.nexin-root .wnm-calc4__price-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.5);
  margin-bottom: 10px;
}

.nexin-root .wnm-calc4__price-num {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #0a0a0b;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.nexin-root .wnm-calc4__price-num-sep {
  color: rgba(10, 10, 11, 0.35);
  font-style: normal;
}
.nexin-root .wnm-calc4__price-num em {
  font-size: 0.55em;
  color: rgba(10, 10, 11, 0.55);
  margin-left: 2px;
}
.nexin-root .wnm-calc4__price-num--placeholder {
  color: rgba(10, 10, 11, 0.4);
  margin-bottom: 12px;
}
/* Pop animation when number changes — re-mount via key triggers replay */
.nexin-root .wnm-calc4__price-num--pop {
  animation: wnmCalc4NumPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes wnmCalc4NumPop {
  0% { transform: scale(0.94); filter: brightness(1); }
  50% { transform: scale(1.04); filter: brightness(1.1); color: #c7ff1e; }
  100% { transform: scale(1); filter: brightness(1); }
}

.nexin-root .wnm-calc4__price-empty p {
  font-size: 12.5px;
  color: rgba(10, 10, 11, 0.55);
  font-style: italic;
  margin: 4px 0 16px;
}
.nexin-root .wnm-calc4__price-monthly {
  font-size: 12.5px;
  color: rgba(10, 10, 11, 0.65);
  margin-bottom: 16px;
}
.nexin-root .wnm-calc4__price-monthly strong {
  color: #0a0a0b;
  font-weight: 700;
}

.nexin-root .wnm-calc4__price-breakdown {
  list-style: none;
  margin: 12px 0 18px;
  padding: 14px 0 0;
  border-top: 1px dashed rgba(10, 10, 11, 0.14);
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 280px;
  overflow-y: auto;
}
.nexin-root .wnm-calc4__price-breakdown li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 12.5px;
  color: rgba(10, 10, 11, 0.65);
  gap: 12px;
  animation: wnmCalc4BreakdownIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
@keyframes wnmCalc4BreakdownIn {
  0% { transform: translateX(-8px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}
.nexin-root .wnm-calc4__price-breakdown li span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nexin-root .wnm-calc4__price-breakdown li strong {
  color: #0a0a0b;
  font-weight: 700;
  font-family: "Fraunces", serif;
  font-style: italic;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.nexin-root .wnm-calc4__price-note {
  font-size: 11px;
  color: rgba(10, 10, 11, 0.5);
  line-height: 1.55;
  margin: 0 0 18px;
}
.nexin-root .wnm-calc4__price-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 14px 14px 20px;
  background: rgba(10, 10, 11, 0.06);
  color: rgba(10, 10, 11, 0.55);
  border: 1.5px solid rgba(10, 10, 11, 0.12);
  border-radius: 99px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all 0.25s;
}
.nexin-root .wnm-calc4__price-cta:hover {
  background: rgba(10, 10, 11, 0.10);
  color: #0a0a0b;
}
.nexin-root .wnm-calc4__price-cta--ready {
  background: #0a0a0b;
  color: #c7ff1e;
  border-color: #0a0a0b;
}
.nexin-root .wnm-calc4__price-cta--ready:hover {
  background: #c7ff1e;
  color: #0a0a0b;
  border-color: #c7ff1e;
  filter: brightness(0.92) saturate(1.25);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -8px rgba(199, 255, 30, 0.5);
}
.nexin-root .wnm-calc4__price-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(10, 10, 11, 0.08);
  flex-shrink: 0;
  transition: transform 0.25s;
}
.nexin-root .wnm-calc4__price-cta--ready .wnm-calc4__price-cta-arrow {
  background: #c7ff1e;
  color: #0a0a0b;
  filter: brightness(0.92) saturate(1.25);
}
.nexin-root .wnm-calc4__price-cta:hover .wnm-calc4__price-cta-arrow {
  transform: translateX(3px);
}

@media (max-width: 991px) {
  .nexin-root .wnm-calc4__shell { grid-template-columns: 1fr; gap: 32px; }
  .nexin-root .wnm-calc4__price { position: static; }
  .nexin-root .wnm-calc4__cards { padding-left: 0; }
}
@media (max-width: 640px) {
  .nexin-root .wnm-calc4__cards { grid-template-columns: 1fr; }
  .nexin-root .wnm-calc4__q-head { grid-template-columns: 40px 1fr auto; gap: 12px; }
  .nexin-root .wnm-calc4__q-num { font-size: 32px; }
  .nexin-root .wnm-calc4__h1-line--em { padding-left: 0; }
  .nexin-root .wnm-calc4__hero-points { gap: 14px; }
  .nexin-root .wnm-calc4__hero-points li { font-size: 12px; }
}


/* ═══════════════════════════════════════════════════════════════════
   KALKULAČKA LAB — 6 mobile-first variants at /lab/kalkulacka/v[1-6]
   Each variant has its own visual language. Shared questions config
   lives in src/app/(nexin)/lab/kalkulacka/_data.ts.
   ═══════════════════════════════════════════════════════════════════ */

/* ── Lab index ────────────────────────────────────────────────────── */
.nexin-root .kalk-lab-nav {
  background: #0e0c08;
  color: #f3eee0;
  padding: clamp(80px, 12vw, 140px) 0 clamp(40px, 6vw, 60px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.nexin-root .kalk-lab-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 20%, rgba(255, 107, 61, 0.18), transparent 60%),
    radial-gradient(ellipse 70% 50% at 80% 80%, rgba(199, 255, 30, 0.10), transparent 60%);
  z-index: -1;
}
.nexin-root .kalk-lab-nav__back {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 238, 224, 0.7);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 32px;
  transition: color 0.25s;
}
.nexin-root .kalk-lab-nav__back:hover { color: #c7ff1e; }
.nexin-root .kalk-lab-nav__chip {
  display: inline-block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid rgba(243, 238, 224, 0.25);
  border-radius: 999px;
  color: rgba(243, 238, 224, 0.7);
  margin-bottom: 24px;
}
.nexin-root .kalk-lab-nav__h1 {
  font-family: "Fraunces", serif;
  font-weight: 380;
  font-size: clamp(38px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: #f3eee0;
}
.nexin-root .kalk-lab-nav__h1 em {
  font-style: italic;
  font-variation-settings: "opsz" 144;
  color: #ffc28a;
}
.nexin-root .kalk-lab-nav__lead {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.6;
  color: rgba(243, 238, 224, 0.7);
  max-width: 580px;
  margin: 0;
}
.nexin-root .kalk-lab-grid {
  background: #faf6ee;
  padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 120px);
}
.nexin-root .kalk-lab-grid__inner {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.nexin-root .kalk-lab-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid #eae3d2;
  border-radius: 18px;
  text-decoration: none;
  color: #1a1a1a;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s, border-color 0.4s;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.nexin-root .kalk-lab-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -16px rgba(20, 14, 8, 0.18);
  border-color: #d4502b;
}
.nexin-root .kalk-lab-card__head {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.nexin-root .kalk-lab-card__id {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #d4502b;
}
.nexin-root .kalk-lab-card__name {
  font-family: "Fraunces", serif;
  font-weight: 420;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: #1a1a1a;
}
.nexin-root .kalk-lab-card__desc {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: #4a4036;
  margin: 0;
}
.nexin-root .kalk-lab-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed #e6dec9;
}
.nexin-root .kalk-lab-card__swatches {
  display: flex;
  gap: 6px;
}
.nexin-root .kalk-lab-card__swatch {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}
.nexin-root .kalk-lab-card__typo {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #80735f;
  text-align: right;
}
.nexin-root .kalk-lab-card__cta {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d4502b;
  margin-top: 4px;
  transition: color 0.25s;
}
.nexin-root .kalk-lab-card:hover .kalk-lab-card__cta { color: #1a1a1a; }


/* ═══════════════════════════════════════════════════════════════════
   V1 — EDITION MAGAZINE
   Cream paper, ink, terracotta accent. Fraunces serif XL.
   No cards — questions are numbered article sections, options inline.
   ═══════════════════════════════════════════════════════════════════ */
.nexin-root .wnm-kx1 {
  --kx1-paper: #f5eee0;
  --kx1-ink: #1a1413;
  --kx1-ink-soft: #6b5e54;
  --kx1-rule: #d8cdb6;
  --kx1-acc: #d4502b;
  background: var(--kx1-paper);
  color: var(--kx1-ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  min-height: 100vh;
  padding-bottom: 80px;
}
.nexin-root .wnm-kx1__top {
  padding: 18px clamp(20px, 5vw, 60px);
  border-bottom: 1px solid var(--kx1-rule);
  display: flex;
  justify-content: space-between;
}
.nexin-root .wnm-kx1__back {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kx1-ink-soft);
  text-decoration: none;
}
.nexin-root .wnm-kx1__back:hover { color: var(--kx1-acc); }
.nexin-root .wnm-kx1__hero {
  padding: clamp(40px, 8vw, 90px) clamp(20px, 5vw, 60px) clamp(32px, 5vw, 60px);
  border-bottom: 1px solid var(--kx1-rule);
  max-width: 920px;
}
.nexin-root .wnm-kx1__hero-rail {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--kx1-ink-soft);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--kx1-rule);
}
.nexin-root .wnm-kx1__hero-pre { color: var(--kx1-acc); }
.nexin-root .wnm-kx1__hero-h1 {
  font-family: "Fraunces", serif;
  font-weight: 350;
  font-size: clamp(48px, 12vw, 116px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
  color: var(--kx1-ink);
}
.nexin-root .wnm-kx1__hero-h1 em {
  font-style: italic;
  font-variation-settings: "opsz" 144;
  color: var(--kx1-acc);
  font-weight: 360;
}
.nexin-root .wnm-kx1__hero-lead {
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.5;
  color: var(--kx1-ink-soft);
  max-width: 540px;
  margin: 0 0 24px;
}
.nexin-root .wnm-kx1__hero-rule {
  height: 1px;
  background: var(--kx1-ink);
  width: 80px;
  margin-bottom: 16px;
}
.nexin-root .wnm-kx1__hero-meta {
  display: flex;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--kx1-ink-soft);
}
.nexin-root .wnm-kx1__body {
  padding: clamp(40px, 6vw, 60px) clamp(20px, 5vw, 60px) 0;
}
.nexin-root .wnm-kx1__shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1180px;
}
.nexin-root .wnm-kx1__qs { display: grid; gap: 0; }
.nexin-root .wnm-kx1__q {
  padding: clamp(28px, 4vw, 44px) 0;
  border-bottom: 1px solid var(--kx1-rule);
}
.nexin-root .wnm-kx1__q:last-child { border-bottom: none; }
.nexin-root .wnm-kx1__q-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: baseline;
  margin-bottom: 22px;
}
.nexin-root .wnm-kx1__q-num {
  font-family: "Fraunces", serif;
  font-weight: 350;
  font-size: clamp(36px, 5vw, 56px);
  font-variation-settings: "opsz" 144;
  color: var(--kx1-acc);
  line-height: 1;
}
.nexin-root .wnm-kx1__q-h {
  font-family: "Fraunces", serif;
  font-weight: 380;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--kx1-ink);
}
.nexin-root .wnm-kx1__q-hint {
  font-size: 14px;
  line-height: 1.5;
  color: var(--kx1-ink-soft);
  margin: 0;
}
.nexin-root .wnm-kx1__opts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1px;
  background: var(--kx1-rule);
}
.nexin-root .wnm-kx1__opt {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px 4px;
  background: var(--kx1-paper);
  cursor: pointer;
  position: relative;
}
.nexin-root .wnm-kx1__opt input { position: absolute; opacity: 0; pointer-events: none; }
.nexin-root .wnm-kx1__opt-bullet {
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--kx1-ink);
  border-radius: 50%;
  background: transparent;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}
.nexin-root .wnm-kx1__opt.is-sel .wnm-kx1__opt-bullet {
  background: var(--kx1-acc);
  border-color: var(--kx1-acc);
  box-shadow: inset 0 0 0 3px var(--kx1-paper);
}
.nexin-root .wnm-kx1__opt-text {
  font-size: 16px;
  line-height: 1.4;
  color: var(--kx1-ink);
  font-weight: 500;
}
.nexin-root .wnm-kx1__opt.is-sel .wnm-kx1__opt-text { color: var(--kx1-acc); }
.nexin-root .wnm-kx1__opt-rule {
  display: none;
}
.nexin-root .wnm-kx1__opt-price {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--kx1-ink-soft);
  font-variant-numeric: tabular-nums;
}
.nexin-root .wnm-kx1__quote {
  margin-top: 32px;
}
.nexin-root .wnm-kx1__quote-card {
  padding: 32px 24px;
  background: #faf3e3;
  border: 1px solid var(--kx1-rule);
}
.nexin-root .wnm-kx1__quote-pre {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kx1-acc);
}
.nexin-root .wnm-kx1__quote-figure {
  font-family: "Fraunces", serif;
  font-weight: 350;
  font-size: clamp(40px, 8vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--kx1-ink);
  margin: 14px 0 8px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  font-variant-numeric: tabular-nums;
}
.nexin-root .wnm-kx1__quote-dash { font-size: 0.5em; color: var(--kx1-ink-soft); font-style: normal; }
.nexin-root .wnm-kx1__quote-cur { font-size: 0.55em; font-style: italic; color: var(--kx1-acc); font-variation-settings: "opsz" 144; }
.nexin-root .wnm-kx1__quote-placeholder {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 350;
  font-size: clamp(28px, 5vw, 48px);
  color: var(--kx1-ink-soft);
}
.nexin-root .wnm-kx1__quote-monthly {
  font-size: 13px;
  color: var(--kx1-ink-soft);
  margin-bottom: 16px;
}
.nexin-root .wnm-kx1__quote-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--kx1-ink-soft);
  margin: 18px 0;
}
.nexin-root .wnm-kx1__quote-progress-bar {
  flex: 1;
  height: 2px;
  background: var(--kx1-rule);
  position: relative;
}
.nexin-root .wnm-kx1__quote-progress-bar > span {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--kx1-acc);
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-kx1__quote-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  border-top: 1px solid var(--kx1-rule);
  padding-top: 14px;
  display: grid;
  gap: 8px;
}
.nexin-root .wnm-kx1__quote-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: baseline;
  font-size: 13px;
  color: var(--kx1-ink-soft);
}
.nexin-root .wnm-kx1__quote-list li strong {
  font-family: "Fraunces", serif;
  font-weight: 450;
  color: var(--kx1-ink);
  font-variant-numeric: tabular-nums;
}
.nexin-root .wnm-kx1__quote-list-dots {
  border-bottom: 1px dotted var(--kx1-rule);
  height: 1px;
  align-self: end;
  transform: translateY(-3px);
}
.nexin-root .wnm-kx1__quote-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--kx1-ink);
  color: var(--kx1-paper);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: background 0.25s, color 0.25s;
}
.nexin-root .wnm-kx1__quote-cta:hover { background: var(--kx1-acc); }
.nexin-root .wnm-kx1__quote-fine {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--kx1-ink-soft);
  text-align: center;
  margin: 12px 0 0;
}
@media (min-width: 900px) {
  .nexin-root .wnm-kx1__shell {
    grid-template-columns: 1fr 380px;
    gap: 60px;
  }
  .nexin-root .wnm-kx1__quote {
    margin-top: 0;
    position: sticky;
    top: 32px;
    align-self: start;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   V2 — BRUTALIST STATEMENT v2.0
   Alternating dark/light bands with offset-shadow brutalism. Kinetic
   hero counter. Massive Fraunces display. Vertical progress rail.
   FIX: explicit `color` everywhere (no inheritance), `background-color`
   longhand to avoid shorthand var() quirks, literal hex on selected.
   ═══════════════════════════════════════════════════════════════════ */
.nexin-root .wnm-kx2 {
  --kx2-dark: #0c0a08;
  --kx2-dark-2: #15110d;
  --kx2-light: #f8f4ec;
  --kx2-light-2: #ede6d4;
  --kx2-light-soft: rgba(248, 244, 236, 0.7);
  --kx2-light-faint: rgba(248, 244, 236, 0.16);
  --kx2-dark-soft: rgba(12, 10, 8, 0.65);
  --kx2-dark-faint: rgba(12, 10, 8, 0.14);
  --kx2-acc: #d8ff36;
  --kx2-acc-deep: #a3c91d;
  background-color: var(--kx2-light);
  color: var(--kx2-dark);
  font-family: "Plus Jakarta Sans", sans-serif;
  min-height: 100vh;
  position: relative;
  isolation: isolate;
}

/* ── Top nav ─────────────────────────────────────────────────────── */
.nexin-root .wnm-kx2__top {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 20px;
  background-color: var(--kx2-dark);
  color: var(--kx2-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(216, 255, 54, 0.2);
}
.nexin-root .wnm-kx2__back {
  color: var(--kx2-light);
  text-decoration: none;
  transition: color 0.15s;
}
.nexin-root .wnm-kx2__back:hover { color: var(--kx2-acc); }
.nexin-root .wnm-kx2__top-id { color: var(--kx2-acc); }

/* ── Hero ─────────────────────────────────────────────────────────── */
.nexin-root .wnm-kx2__hero {
  position: relative;
  padding: clamp(56px, 11vw, 120px) clamp(20px, 5vw, 60px) clamp(48px, 8vw, 90px);
  background-color: var(--kx2-dark);
  color: var(--kx2-light);
  overflow: hidden;
  isolation: isolate;
}
/* Hero grid pattern — brutalist hatch */
.nexin-root .wnm-kx2__hero-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
}
.nexin-root .wnm-kx2__hero-grid > span {
  border-right: 1px solid var(--kx2-light);
  height: 100%;
}
.nexin-root .wnm-kx2__hero-grid > span:last-child { border-right: none; }
.nexin-root .wnm-kx2__hero > * { position: relative; z-index: 1; }

.nexin-root .wnm-kx2__hero-rail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(28px, 4vw, 44px);
  padding-bottom: 18px;
  border-bottom: 2px solid var(--kx2-acc);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--kx2-light-soft);
}
.nexin-root .wnm-kx2__hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background-color: var(--kx2-acc);
  color: var(--kx2-dark);
  font-weight: 700;
}
.nexin-root .wnm-kx2__hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--kx2-dark);
  animation: wnmKx2Pulse 1.4s ease-in-out infinite;
}
@keyframes wnmKx2Pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.55; }
}
.nexin-root .wnm-kx2__hero-meta {
  color: var(--kx2-light-soft);
  font-weight: 600;
}

.nexin-root .wnm-kx2__hero-h1 {
  font-family: "Fraunces", serif;
  font-weight: 380;
  font-size: clamp(46px, 13vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 0 0 clamp(24px, 4vw, 44px);
  color: var(--kx2-light);
  font-feature-settings: "ss01";
}
.nexin-root .wnm-kx2__hero-h1-line {
  display: block;
  color: var(--kx2-light);
}
.nexin-root .wnm-kx2__hero-h1-line--em {
  display: flex;
  align-items: baseline;
  gap: 0.18em;
  flex-wrap: wrap;
}
.nexin-root .wnm-kx2__hero-h1-em-text {
  font-style: italic;
  font-variation-settings: "opsz" 144;
  color: var(--kx2-acc);
  font-weight: 400;
}
.nexin-root .wnm-kx2__hero-counter {
  display: inline-flex;
  align-items: baseline;
  padding: 0 0.18em;
  background-color: var(--kx2-acc);
  color: var(--kx2-dark);
  font-style: italic;
  font-weight: 380;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  position: relative;
  overflow: hidden;
  min-width: 4ch;
  transform: skewX(-3deg);
  /* Hard offset-shadow — brutalist signature */
  box-shadow: 8px 8px 0 0 var(--kx2-light);
}
.nexin-root .wnm-kx2__hero-counter-val {
  display: inline-block;
  animation: wnmKx2CounterIn 0.4s cubic-bezier(0.5, 0, 0.5, 1);
  font-style: italic;
}
@keyframes wnmKx2CounterIn {
  from { transform: translateY(20%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.nexin-root .wnm-kx2__hero-foot {
  display: grid;
  gap: 24px;
  align-items: end;
}
.nexin-root .wnm-kx2__hero-lead {
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.5;
  color: var(--kx2-light-soft);
  max-width: 520px;
  margin: 0;
}
.nexin-root .wnm-kx2__hero-lead em {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--kx2-acc);
  font-variation-settings: "opsz" 144;
}
.nexin-root .wnm-kx2__hero-jump {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background-color: var(--kx2-acc);
  color: var(--kx2-dark);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  width: fit-content;
  box-shadow: 6px 6px 0 0 var(--kx2-light);
  transition: transform 0.18s, box-shadow 0.18s;
}
.nexin-root .wnm-kx2__hero-jump:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 0 var(--kx2-light);
  color: var(--kx2-dark);
}
.nexin-root .wnm-kx2__hero-jump-arrow {
  display: inline-block;
  font-size: 16px;
  animation: wnmKx2BounceY 1.6s ease-in-out infinite;
}
@keyframes wnmKx2BounceY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}
@media (min-width: 700px) {
  .nexin-root .wnm-kx2__hero-foot {
    grid-template-columns: 1fr auto;
    gap: 40px;
  }
}

/* ── Vertical progress rail ──────────────────────────────────────── */
.nexin-root .wnm-kx2__rail {
  position: fixed;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 30;
  background-color: var(--kx2-dark);
  padding: 10px 6px;
  border: 1.5px solid var(--kx2-acc);
}
.nexin-root .wnm-kx2__rail-fill {
  position: absolute;
  left: 6px;
  right: 6px;
  top: 10px;
  background-color: var(--kx2-acc);
  width: 4px;
  transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}
.nexin-root .wnm-kx2__rail-tick {
  position: relative;
  z-index: 1;
  display: block;
  width: 4px;
  height: 18px;
  background-color: rgba(216, 255, 54, 0.2);
  transition: background-color 0.25s;
}
.nexin-root .wnm-kx2__rail-tick.is-done { background-color: var(--kx2-acc); }
@media (max-width: 800px) {
  .nexin-root .wnm-kx2__rail { display: none; }
}

/* ── Bands ───────────────────────────────────────────────────────── */
.nexin-root .wnm-kx2__bands { display: block; }
.nexin-root .wnm-kx2__band {
  position: relative;
  padding: clamp(48px, 8vw, 90px) clamp(20px, 5vw, 60px) clamp(48px, 8vw, 90px);
  border-bottom: 4px solid;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  isolation: isolate;
}
.nexin-root .wnm-kx2__band--dark {
  background-color: var(--kx2-dark);
  color: var(--kx2-light);
  border-bottom-color: var(--kx2-acc);
}
.nexin-root .wnm-kx2__band--light {
  background-color: var(--kx2-light);
  color: var(--kx2-dark);
  border-bottom-color: var(--kx2-dark);
}

.nexin-root .wnm-kx2__band-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: "Fraunces", serif;
  font-weight: 360;
  font-style: italic;
  font-variant-numeric: tabular-nums;
  font-variation-settings: "opsz" 144;
  line-height: 1;
  font-size: clamp(56px, 14vw, 120px);
  letter-spacing: -0.04em;
  margin: 0 0 -8px;
}
.nexin-root .wnm-kx2__band--dark .wnm-kx2__band-tag { color: var(--kx2-acc); }
.nexin-root .wnm-kx2__band--light .wnm-kx2__band-tag { color: var(--kx2-dark); }
.nexin-root .wnm-kx2__band-tag-num { display: inline-block; }
.nexin-root .wnm-kx2__band-tag-of {
  font-size: 0.32em;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-style: normal;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-left: 4px;
  vertical-align: top;
  transform: translateY(0.6em);
  display: inline-block;
}
.nexin-root .wnm-kx2__band--dark .wnm-kx2__band-tag-of { color: var(--kx2-light-soft); }
.nexin-root .wnm-kx2__band--light .wnm-kx2__band-tag-of { color: var(--kx2-dark-soft); }

.nexin-root .wnm-kx2__band-head { max-width: 720px; }
.nexin-root .wnm-kx2__band-h {
  font-family: "Fraunces", serif;
  font-weight: 380;
  font-size: clamp(28px, 6vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  font-feature-settings: "ss01";
}
.nexin-root .wnm-kx2__band--dark .wnm-kx2__band-h { color: var(--kx2-light); }
.nexin-root .wnm-kx2__band--light .wnm-kx2__band-h { color: var(--kx2-dark); }
.nexin-root .wnm-kx2__band-hint {
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  max-width: 520px;
}
.nexin-root .wnm-kx2__band--dark .wnm-kx2__band-hint { color: var(--kx2-light-soft); }
.nexin-root .wnm-kx2__band--light .wnm-kx2__band-hint { color: var(--kx2-dark-soft); }

.nexin-root .wnm-kx2__opts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.nexin-root .wnm-kx2__opts li { display: block; position: relative; }

.nexin-root .wnm-kx2__opt {
  appearance: none;
  -webkit-appearance: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  /* No transition: brutalist aesthetic = hard snap. Also CSS transitions
     conflict with !important on .is-sel and get stuck in permanent
     running state, blocking the styles from applying. */
  border-style: solid;
  border-width: 2px;
  border-radius: 0;
}
.nexin-root .wnm-kx2__band--dark .wnm-kx2__opt {
  background-color: var(--kx2-dark);
  border-color: rgba(248, 244, 236, 0.18);
  color: var(--kx2-light);
}
.nexin-root .wnm-kx2__band--light .wnm-kx2__opt {
  background-color: var(--kx2-light);
  border-color: rgba(12, 10, 8, 0.16);
  color: var(--kx2-dark);
}
.nexin-root .wnm-kx2__band--dark .wnm-kx2__opt:hover {
  background-color: var(--kx2-dark-2);
  border-color: var(--kx2-acc);
  color: var(--kx2-light);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 0 var(--kx2-acc);
}
.nexin-root .wnm-kx2__band--light .wnm-kx2__opt:hover {
  background-color: var(--kx2-light-2);
  border-color: var(--kx2-dark);
  color: var(--kx2-dark);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 0 var(--kx2-dark);
}
/* SELECTED — explicit longhand backgrounds + colors, literal hex */
/* SELECTED — !important defends against Tailwind v4 @layer base preflight
   on `button` (sets background-color: transparent in base layer, and despite
   cascade-layer precedence rules ends up winning under Turbopack inlining).
   Selectors split (no comma list) to dodge Chrome quirks with list-rule. */
.nexin-root .wnm-kx2__band--dark .wnm-kx2__opt.is-sel {
  background-color: #d8ff36 !important;
  border-color: #d8ff36 !important;
  color: #0c0a08 !important;
  transform: translate(-3px, -3px) !important;
  box-shadow: 6px 6px 0 0 #f8f4ec !important;
}
.nexin-root .wnm-kx2__band--dark .wnm-kx2__opt.is-sel:hover {
  background-color: #d8ff36 !important;
  border-color: #d8ff36 !important;
  color: #0c0a08 !important;
  transform: translate(-3px, -3px) !important;
  box-shadow: 6px 6px 0 0 #f8f4ec !important;
}
.nexin-root .wnm-kx2__band--light .wnm-kx2__opt.is-sel {
  background-color: #0c0a08 !important;
  border-color: #0c0a08 !important;
  color: #d8ff36 !important;
  transform: translate(-3px, -3px) !important;
  box-shadow: 6px 6px 0 0 #d8ff36 !important;
}
.nexin-root .wnm-kx2__band--light .wnm-kx2__opt.is-sel:hover {
  background-color: #0c0a08 !important;
  border-color: #0c0a08 !important;
  color: #d8ff36 !important;
  transform: translate(-3px, -3px) !important;
  box-shadow: 6px 6px 0 0 #d8ff36 !important;
}
.nexin-root .wnm-kx2__opt-mark {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  line-height: 1;
  display: inline-flex;
  width: 16px;
  justify-content: center;
}
.nexin-root .wnm-kx2__band--dark .wnm-kx2__opt .wnm-kx2__opt-mark { color: var(--kx2-light-soft); }
.nexin-root .wnm-kx2__band--light .wnm-kx2__opt .wnm-kx2__opt-mark { color: var(--kx2-dark-soft); }
.nexin-root .wnm-kx2__band--dark .wnm-kx2__opt.is-sel .wnm-kx2__opt-mark { color: #0c0a08; }
.nexin-root .wnm-kx2__band--light .wnm-kx2__opt.is-sel .wnm-kx2__opt-mark { color: #d8ff36; }
.nexin-root .wnm-kx2__opt-text {
  line-height: 1.35;
  letter-spacing: -0.005em;
}
.nexin-root .wnm-kx2__opt-price {
  font-family: "Fraunces", serif;
  font-weight: 460;
  font-size: 15px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.005em;
}
.nexin-root .wnm-kx2__band--dark .wnm-kx2__opt .wnm-kx2__opt-price { color: var(--kx2-acc); }
.nexin-root .wnm-kx2__band--light .wnm-kx2__opt .wnm-kx2__opt-price { color: var(--kx2-dark-soft); }
.nexin-root .wnm-kx2__band--dark .wnm-kx2__opt.is-sel .wnm-kx2__opt-price { color: #0c0a08; }
.nexin-root .wnm-kx2__band--light .wnm-kx2__opt.is-sel .wnm-kx2__opt-price { color: #d8ff36; }

/* Tablet+: side-by-side band layout */
@media (min-width: 900px) {
  .nexin-root .wnm-kx2__band {
    grid-template-columns: 220px 1fr;
    gap: 60px;
    align-items: start;
    padding: clamp(70px, 9vw, 120px) clamp(40px, 6vw, 80px);
  }
  .nexin-root .wnm-kx2__band-tag { grid-row: span 2; }
  .nexin-root .wnm-kx2__opts {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ── Total ──────────────────────────────────────────────────────── */
.nexin-root .wnm-kx2__total {
  position: sticky;
  bottom: 0;
  padding: 0;
  background-color: var(--kx2-acc);
  color: var(--kx2-dark);
  border-top: 4px solid var(--kx2-dark);
  z-index: 40;
  box-shadow: 0 -8px 24px -12px rgba(12, 10, 8, 0.45);
}
.nexin-root .wnm-kx2__total-inner {
  padding: 22px clamp(20px, 5vw, 60px) 24px;
  display: grid;
  gap: 12px;
}
.nexin-root .wnm-kx2__total-rail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--kx2-dark);
}
.nexin-root .wnm-kx2__total-rail-num {
  padding: 4px 10px;
  background-color: var(--kx2-dark);
  color: var(--kx2-acc);
}
.nexin-root .wnm-kx2__total-rail-rule {
  flex: 1;
  height: 2px;
  background-color: var(--kx2-dark);
}
.nexin-root .wnm-kx2__total-rail-lbl { color: var(--kx2-dark); }

.nexin-root .wnm-kx2__total-figure {
  font-family: "Fraunces", serif;
  font-weight: 380;
  font-size: clamp(36px, 9vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  display: flex;
  gap: 8px;
  align-items: baseline;
  flex-wrap: wrap;
  font-variant-numeric: tabular-nums;
  color: var(--kx2-dark);
}
.nexin-root .wnm-kx2__total-figure > span {
  display: inline-block;
  animation: wnmKx2NumPop 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes wnmKx2NumPop {
  0% { transform: translateY(8px); opacity: 0.6; }
  60% { transform: translateY(-2px); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.nexin-root .wnm-kx2__total-figure-dash {
  font-style: normal;
  font-size: 0.5em;
  color: rgba(12, 10, 8, 0.55);
}
.nexin-root .wnm-kx2__total-figure-cur {
  font-style: italic;
  font-size: 0.55em;
  font-variation-settings: "opsz" 144;
  color: var(--kx2-dark);
}
.nexin-root .wnm-kx2__total-placeholder {
  font-style: italic;
  font-weight: 380;
  font-size: 0.65em;
  color: rgba(12, 10, 8, 0.55);
  font-variation-settings: "opsz" 144;
}
.nexin-root .wnm-kx2__total-monthly {
  font-size: 13px;
  font-weight: 600;
  color: var(--kx2-dark);
}
.nexin-root .wnm-kx2__total-monthly strong {
  color: var(--kx2-dark);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.nexin-root .wnm-kx2__total-breakdown {
  list-style: none;
  padding: 12px 0 0;
  margin: 0;
  display: none;
  border-top: 1px dashed rgba(12, 10, 8, 0.3);
  gap: 4px;
}
.nexin-root .wnm-kx2__total-breakdown li {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--kx2-dark);
}
.nexin-root .wnm-kx2__total-breakdown li strong {
  color: var(--kx2-dark);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
@media (min-width: 700px) {
  .nexin-root .wnm-kx2__total-breakdown { display: grid; }
}

/* CTA — marquee underlay reveals on hover */
.nexin-root .wnm-kx2__total-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 24px;
  background-color: var(--kx2-dark);
  color: var(--kx2-acc);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-decoration: none;
  border: 2px solid var(--kx2-dark);
  overflow: hidden;
  transition: background-color 0.2s, color 0.2s;
}
.nexin-root .wnm-kx2__total-cta:hover {
  background-color: var(--kx2-dark-2);
  color: var(--kx2-acc);
}
.nexin-root .wnm-kx2__total-cta-marquee {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--kx2-acc);
  opacity: 0;
  transition: opacity 0.2s;
  animation: wnmKx2Marquee 14s linear infinite;
  animation-play-state: paused;
}
.nexin-root .wnm-kx2__total-cta:hover .wnm-kx2__total-cta-marquee {
  opacity: 0.18;
  animation-play-state: running;
}
@keyframes wnmKx2Marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.nexin-root .wnm-kx2__total-cta-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
  color: var(--kx2-acc);
}
.nexin-root .wnm-kx2__total-cta-arrow {
  display: inline-block;
  font-size: 18px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-kx2__total-cta:hover .wnm-kx2__total-cta-arrow {
  transform: translateX(6px);
}
.nexin-root .wnm-kx2__total-fine {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(12, 10, 8, 0.65);
  margin: 4px 0 0;
  text-align: center;
}

@media (min-width: 700px) {
  .nexin-root .wnm-kx2__total-inner {
    grid-template-columns: 1fr auto;
    gap: 20px 32px;
    align-items: center;
  }
  .nexin-root .wnm-kx2__total-rail { grid-column: 1 / -1; }
  .nexin-root .wnm-kx2__total-figure { grid-column: 1; }
  .nexin-root .wnm-kx2__total-monthly { grid-column: 1; }
  .nexin-root .wnm-kx2__total-breakdown { grid-column: 1 / -1; }
  .nexin-root .wnm-kx2__total-cta {
    grid-column: 2;
    grid-row: 2 / 4;
    width: auto;
    align-self: center;
    padding: 20px 32px;
  }
  .nexin-root .wnm-kx2__total-fine { grid-column: 1 / -1; text-align: left; }
}


/* ═══════════════════════════════════════════════════════════════════
   V3 — SAGE WELLNESS
   Cream + sage + dusty blush. Pill-shape options. Soft cushion cards.
   Fraunces italic for accents. Friendly tone, soft drop shadows.
   ═══════════════════════════════════════════════════════════════════ */
.nexin-root .wnm-kx3 {
  --kx3-cream: #faf6ee;
  --kx3-cream-deep: #f3ecdd;
  --kx3-ink: #34302a;
  --kx3-ink-soft: #756e63;
  --kx3-sage: #92a692;
  --kx3-sage-deep: #6f8470;
  --kx3-blush: #dfc5b8;
  background: var(--kx3-cream);
  color: var(--kx3-ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  min-height: 100vh;
  padding-bottom: 60px;
}
.nexin-root .wnm-kx3__top {
  padding: 18px clamp(20px, 5vw, 50px);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kx3-ink-soft);
}
.nexin-root .wnm-kx3__back { color: var(--kx3-ink-soft); text-decoration: none; }
.nexin-root .wnm-kx3__back:hover { color: var(--kx3-sage-deep); }
.nexin-root .wnm-kx3__hero {
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 50px);
  text-align: center;
  position: relative;
}
.nexin-root .wnm-kx3__hero::before {
  content: "";
  position: absolute;
  inset: 30px clamp(20px, 5vw, 50px) 30px;
  background: radial-gradient(circle at 50% 50%, var(--kx3-blush), transparent 70%);
  opacity: 0.3;
  z-index: -1;
  border-radius: 200px;
}
.nexin-root .wnm-kx3__hero-leaf {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--kx3-sage);
  color: var(--kx3-cream);
  margin-bottom: 24px;
}
.nexin-root .wnm-kx3__hero-h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: clamp(34px, 8vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.nexin-root .wnm-kx3__hero-h1 em {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 380;
  color: var(--kx3-sage-deep);
  font-variation-settings: "opsz" 144;
}
.nexin-root .wnm-kx3__hero-lead {
  font-size: 15px;
  line-height: 1.6;
  color: var(--kx3-ink-soft);
  max-width: 500px;
  margin: 0 auto 18px;
}
.nexin-root .wnm-kx3__hero-meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--kx3-sage-deep);
}
.nexin-root .wnm-kx3__shell {
  padding: 20px clamp(20px, 5vw, 50px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.nexin-root .wnm-kx3__qs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}
.nexin-root .wnm-kx3__q {
  background: #fff;
  border: 1px solid var(--kx3-cream-deep);
  border-radius: 24px;
  padding: 24px 22px;
  box-shadow: 0 1px 0 rgba(52, 48, 42, 0.04), 0 8px 24px -16px rgba(52, 48, 42, 0.10);
  transition: border-color 0.3s;
}
.nexin-root .wnm-kx3__q.is-done {
  border-color: var(--kx3-sage);
  box-shadow: 0 1px 0 rgba(52, 48, 42, 0.04), 0 16px 32px -16px rgba(146, 166, 146, 0.32);
}
.nexin-root .wnm-kx3__q-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 6px;
}
.nexin-root .wnm-kx3__q-num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 380;
  font-size: 22px;
  color: var(--kx3-sage-deep);
  font-variation-settings: "opsz" 144;
}
.nexin-root .wnm-kx3__q-h {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  margin: 0;
  color: var(--kx3-ink);
}
.nexin-root .wnm-kx3__q-hint {
  font-size: 13px;
  line-height: 1.5;
  color: var(--kx3-ink-soft);
  margin: 0 0 16px;
  padding-left: 38px;
}
.nexin-root .wnm-kx3__opts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.nexin-root .wnm-kx3__opt {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--kx3-cream);
  border: 1px solid var(--kx3-cream-deep);
  border-radius: 999px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--kx3-ink);
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
}
.nexin-root .wnm-kx3__opt:hover {
  border-color: var(--kx3-sage);
  background: #fff;
  transform: translateY(-1px);
}
.nexin-root .wnm-kx3__opt.is-sel {
  background: var(--kx3-sage);
  border-color: var(--kx3-sage-deep);
  color: var(--kx3-cream);
}
.nexin-root .wnm-kx3__opt-price {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.75;
  font-variant-numeric: tabular-nums;
}
.nexin-root .wnm-kx3__opt.is-sel .wnm-kx3__opt-price { opacity: 1; }
.nexin-root .wnm-kx3__sum-card {
  background: linear-gradient(180deg, #fff, var(--kx3-cream));
  border: 1px solid var(--kx3-cream-deep);
  border-radius: 28px;
  padding: 28px 24px;
  box-shadow: 0 4px 24px -8px rgba(52, 48, 42, 0.10);
  text-align: center;
}
.nexin-root .wnm-kx3__sum-progress {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
}
.nexin-root .wnm-kx3__sum-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--kx3-cream-deep);
  transition: background 0.3s, transform 0.3s;
}
.nexin-root .wnm-kx3__sum-dot.is-on {
  background: var(--kx3-sage);
  transform: scale(1.2);
}
.nexin-root .wnm-kx3__sum-pre {
  display: block;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 380;
  font-size: 14px;
  color: var(--kx3-sage-deep);
  margin-bottom: 10px;
  font-variation-settings: "opsz" 144;
}
.nexin-root .wnm-kx3__sum-figure {
  font-family: "Fraunces", serif;
  font-weight: 360;
  font-size: clamp(40px, 9vw, 64px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--kx3-ink);
  display: flex;
  align-items: baseline;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  font-variant-numeric: tabular-nums;
}
.nexin-root .wnm-kx3__sum-figure em {
  font-style: italic;
  font-size: 0.5em;
  color: var(--kx3-blush);
  font-variation-settings: "opsz" 144;
}
.nexin-root .wnm-kx3__sum-dash { color: var(--kx3-ink-soft); font-style: normal; font-size: 0.55em; }
.nexin-root .wnm-kx3__sum-placeholder {
  font-style: italic;
  font-weight: 380;
  font-size: 0.7em;
  color: var(--kx3-ink-soft);
}
.nexin-root .wnm-kx3__sum-monthly {
  font-size: 13px;
  color: var(--kx3-ink-soft);
  margin-top: 8px;
}
.nexin-root .wnm-kx3__sum-list {
  list-style: none;
  padding: 18px 0 0;
  margin: 18px 0;
  border-top: 1px dashed var(--kx3-cream-deep);
  display: grid;
  gap: 10px;
  text-align: left;
}
.nexin-root .wnm-kx3__sum-list li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--kx3-ink-soft);
}
.nexin-root .wnm-kx3__sum-list li strong { color: var(--kx3-ink); font-weight: 600; font-variant-numeric: tabular-nums; }
.nexin-root .wnm-kx3__sum-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--kx3-ink);
  color: var(--kx3-cream);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.25s;
  margin-top: 8px;
}
.nexin-root .wnm-kx3__sum-cta:hover { background: var(--kx3-sage-deep); color: var(--kx3-cream); }
.nexin-root .wnm-kx3__sum-fine {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--kx3-ink-soft);
  margin: 14px 0 0;
}
@media (min-width: 1024px) {
  .nexin-root .wnm-kx3__shell {
    grid-template-columns: 1fr 360px;
    gap: 32px;
  }
  .nexin-root .wnm-kx3__sum {
    position: sticky;
    top: 24px;
    align-self: start;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   V4 — BANKING LEDGER
   Bone white + charcoal + precise orange accent. Tabular nums.
   Thin 1px rules. Receipt-style breakdown. Right-aligned numbers.
   ═══════════════════════════════════════════════════════════════════ */
.nexin-root .wnm-kx4 {
  --kx4-bone: #fbf9f5;
  --kx4-bone-deep: #ede9e0;
  --kx4-ink: #1f1d1b;
  --kx4-ink-soft: #6a655d;
  --kx4-rule: #e2ddd1;
  --kx4-orange: #ff6b3d;
  background: var(--kx4-bone);
  color: var(--kx4-ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  min-height: 100vh;
  font-feature-settings: "ss01", "tnum";
}
.nexin-root .wnm-kx4__top {
  padding: 14px 20px;
  border-bottom: 1px solid var(--kx4-rule);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--kx4-ink-soft);
}
.nexin-root .wnm-kx4__back { color: var(--kx4-ink-soft); text-decoration: none; }
.nexin-root .wnm-kx4__back:hover { color: var(--kx4-orange); }
.nexin-root .wnm-kx4__hero {
  padding: clamp(40px, 6vw, 80px) 20px clamp(28px, 4vw, 50px);
  border-bottom: 1px solid var(--kx4-rule);
  max-width: 760px;
}
.nexin-root .wnm-kx4__hero-meta {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  font-size: 12px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--kx4-rule);
}
.nexin-root .wnm-kx4__hero-meta-key {
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--kx4-ink-soft);
}
.nexin-root .wnm-kx4__hero-meta-val { color: var(--kx4-ink); }
.nexin-root .wnm-kx4__hero-h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
}
.nexin-root .wnm-kx4__hero-lead {
  font-size: 15px;
  line-height: 1.55;
  color: var(--kx4-ink-soft);
  max-width: 560px;
  margin: 0 0 20px;
}
.nexin-root .wnm-kx4__hero-rule {
  height: 1px;
  width: 60px;
  background: var(--kx4-orange);
}
.nexin-root .wnm-kx4__shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 1180px;
}
.nexin-root .wnm-kx4__qs { padding: 0 20px; }
.nexin-root .wnm-kx4__q {
  padding: clamp(28px, 4vw, 40px) 0;
  border-bottom: 1px solid var(--kx4-rule);
}
.nexin-root .wnm-kx4__q-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
.nexin-root .wnm-kx4__q-key {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--kx4-orange);
  padding: 4px 8px;
  border: 1px solid var(--kx4-orange);
  height: fit-content;
}
.nexin-root .wnm-kx4__q-h {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.nexin-root .wnm-kx4__q-hint {
  font-size: 13px;
  color: var(--kx4-ink-soft);
}
.nexin-root .wnm-kx4__opts {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--kx4-rule);
}
.nexin-root .wnm-kx4__opts td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--kx4-rule);
  font-size: 14px;
}
.nexin-root .wnm-kx4__opts tr:last-child td { border-bottom: none; }
.nexin-root .wnm-kx4__opt-row { transition: background 0.2s; }
.nexin-root .wnm-kx4__opt-row:hover { background: rgba(255, 107, 61, 0.05); }
.nexin-root .wnm-kx4__opt-row.is-sel { background: rgba(255, 107, 61, 0.1); }
.nexin-root .wnm-kx4__opt-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  position: relative;
}
.nexin-root .wnm-kx4__opt-label input { position: absolute; opacity: 0; pointer-events: none; }
.nexin-root .wnm-kx4__opt-radio {
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--kx4-ink-soft);
  border-radius: 50%;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.nexin-root .wnm-kx4__opt-row.is-sel .wnm-kx4__opt-radio {
  background: var(--kx4-orange);
  border-color: var(--kx4-orange);
  box-shadow: inset 0 0 0 3px var(--kx4-bone);
}
.nexin-root .wnm-kx4__opt-price {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  color: var(--kx4-ink-soft);
  width: 28%;
}
.nexin-root .wnm-kx4__opt-row.is-sel .wnm-kx4__opt-price { color: var(--kx4-orange); font-weight: 600; }
.nexin-root .wnm-kx4__rec {
  padding: 24px 20px 60px;
  background: var(--kx4-bone-deep);
  border-top: 1px solid var(--kx4-rule);
}
.nexin-root .wnm-kx4__rec-card {
  background: #fff;
  border: 1px solid var(--kx4-rule);
  padding: 24px;
}
.nexin-root .wnm-kx4__rec-head {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--kx4-ink-soft);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--kx4-rule);
  margin-bottom: 16px;
}
.nexin-root .wnm-kx4__rec-lines {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 8px;
}
.nexin-root .wnm-kx4__rec-lines li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: baseline;
  font-size: 13px;
}
.nexin-root .wnm-kx4__rec-lbl { color: var(--kx4-ink-soft); }
.nexin-root .wnm-kx4__rec-dot {
  border-bottom: 1px dotted var(--kx4-rule);
  align-self: end;
  height: 1px;
  transform: translateY(-3px);
}
.nexin-root .wnm-kx4__rec-val {
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}
.nexin-root .wnm-kx4__rec-empty {
  font-size: 13px;
  color: var(--kx4-ink-soft);
  margin: 0 0 18px;
  font-style: italic;
}
.nexin-root .wnm-kx4__rec-rule {
  height: 1px;
  background: var(--kx4-ink);
  margin: 18px 0;
}
.nexin-root .wnm-kx4__rec-totals { display: grid; gap: 8px; margin-bottom: 20px; }
.nexin-root .wnm-kx4__rec-totals > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.nexin-root .wnm-kx4__rec-totals > div span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--kx4-ink-soft);
}
.nexin-root .wnm-kx4__rec-totals > div strong {
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--kx4-orange);
}
.nexin-root .wnm-kx4__rec-monthly strong { font-size: 16px !important; color: var(--kx4-ink) !important; }
.nexin-root .wnm-kx4__rec-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--kx4-orange);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.nexin-root .wnm-kx4__rec-cta:hover { background: var(--kx4-ink); color: var(--kx4-orange); }
.nexin-root .wnm-kx4__rec-fine {
  font-size: 11px;
  color: var(--kx4-ink-soft);
  margin: 12px 0 0;
}
@media (min-width: 1024px) {
  .nexin-root .wnm-kx4__shell {
    grid-template-columns: 1fr 380px;
  }
  .nexin-root .wnm-kx4__rec {
    border-top: none;
    border-left: 1px solid var(--kx4-rule);
    background: transparent;
    padding: clamp(28px, 4vw, 40px) 28px;
  }
  .nexin-root .wnm-kx4__rec-card { position: sticky; top: 24px; }
}


/* ═══════════════════════════════════════════════════════════════════
   V5 — STUDIO SAND
   Sand canvas + deep brown ink + olive accent. Generous whitespace.
   No cards — bordered tiles. Asymmetric, serif numbers as anchors.
   ═══════════════════════════════════════════════════════════════════ */
.nexin-root .wnm-kx5 {
  --kx5-sand: #e7dccd;
  --kx5-sand-deep: #d3c5b1;
  --kx5-paper: #f3eadb;
  --kx5-ink: #3a2a1c;
  --kx5-ink-soft: #76624c;
  --kx5-olive: #7a8b3c;
  --kx5-olive-deep: #5e6c2c;
  background: var(--kx5-sand);
  color: var(--kx5-ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  min-height: 100vh;
  padding-bottom: 60px;
}
.nexin-root .wnm-kx5__top {
  padding: 18px clamp(20px, 5vw, 50px);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kx5-ink-soft);
}
.nexin-root .wnm-kx5__back { color: var(--kx5-ink-soft); text-decoration: none; }
.nexin-root .wnm-kx5__back:hover { color: var(--kx5-olive); }
.nexin-root .wnm-kx5__hero {
  padding: clamp(50px, 8vw, 100px) clamp(20px, 5vw, 50px) clamp(32px, 5vw, 60px);
  position: relative;
}
.nexin-root .wnm-kx5__hero-pre {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kx5-olive);
  display: block;
  margin-bottom: 18px;
}
.nexin-root .wnm-kx5__hero-h1 {
  font-family: "Fraunces", serif;
  font-weight: 360;
  font-size: clamp(44px, 11vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0 0 22px;
  color: var(--kx5-ink);
  max-width: 14ch;
}
.nexin-root .wnm-kx5__hero-h1 em {
  font-style: italic;
  color: var(--kx5-olive);
  font-variation-settings: "opsz" 144;
}
.nexin-root .wnm-kx5__hero-lead {
  font-size: 15px;
  line-height: 1.6;
  color: var(--kx5-ink-soft);
  max-width: 480px;
  margin: 0;
}
.nexin-root .wnm-kx5__hero-grid {
  position: absolute;
  right: clamp(20px, 5vw, 50px);
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, 14px);
  gap: 8px;
  opacity: 0.7;
}
.nexin-root .wnm-kx5__hero-grid > span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--kx5-olive);
  opacity: 0.4;
}
.nexin-root .wnm-kx5__hero-grid > span:nth-child(2) { opacity: 0.7; }
.nexin-root .wnm-kx5__hero-grid > span:nth-child(3) { opacity: 1; }
.nexin-root .wnm-kx5__shell {
  padding: 0 clamp(20px, 5vw, 50px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
}
.nexin-root .wnm-kx5__qs { display: grid; gap: 20px; }
.nexin-root .wnm-kx5__q {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 24px 22px;
  background: var(--kx5-paper);
  border: 1px solid var(--kx5-sand-deep);
}
.nexin-root .wnm-kx5__q-num {
  font-family: "Fraunces", serif;
  font-weight: 360;
  font-style: italic;
  font-size: 56px;
  line-height: 0.85;
  color: var(--kx5-olive);
  font-variation-settings: "opsz" 144;
  grid-row: span 2;
}
.nexin-root .wnm-kx5__q-head { padding-top: 8px; }
.nexin-root .wnm-kx5__q-h {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--kx5-ink);
}
.nexin-root .wnm-kx5__q-hint {
  font-size: 13px;
  line-height: 1.5;
  color: var(--kx5-ink-soft);
  margin: 0;
}
.nexin-root .wnm-kx5__opts {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  margin-top: 8px;
}
.nexin-root .wnm-kx5__opt {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid var(--kx5-sand-deep);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--kx5-ink);
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.nexin-root .wnm-kx5__opt:hover {
  background: var(--kx5-sand);
  border-color: var(--kx5-olive);
}
.nexin-root .wnm-kx5__opt.is-sel {
  background: var(--kx5-olive);
  border-color: var(--kx5-olive-deep);
  color: var(--kx5-paper);
}
.nexin-root .wnm-kx5__opt-mark {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--kx5-sand-deep);
  font-family: "Fraunces", serif;
  font-size: 13px;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.nexin-root .wnm-kx5__opt.is-sel .wnm-kx5__opt-mark {
  background: var(--kx5-paper);
  border-color: var(--kx5-paper);
  color: var(--kx5-olive-deep);
}
.nexin-root .wnm-kx5__opt-price {
  font-family: "Fraunces", serif;
  font-weight: 420;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  color: var(--kx5-ink-soft);
}
.nexin-root .wnm-kx5__opt.is-sel .wnm-kx5__opt-price { color: var(--kx5-paper); }
.nexin-root .wnm-kx5__sum-card {
  background: var(--kx5-ink);
  color: var(--kx5-paper);
  padding: 28px 24px;
  border: 4px double var(--kx5-olive);
}
.nexin-root .wnm-kx5__sum-pre {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 360;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--kx5-olive);
  display: block;
  margin-bottom: 12px;
  font-variation-settings: "opsz" 144;
}
.nexin-root .wnm-kx5__sum-figure {
  font-family: "Fraunces", serif;
  font-weight: 350;
  font-size: clamp(40px, 9vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--kx5-paper);
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  font-variant-numeric: tabular-nums;
  margin-bottom: 14px;
}
.nexin-root .wnm-kx5__sum-figure em {
  font-style: italic;
  font-size: 0.5em;
  font-variation-settings: "opsz" 144;
}
.nexin-root .wnm-kx5__sum-dash { color: rgba(243, 234, 219, 0.5); font-style: normal; font-size: 0.55em; }
.nexin-root .wnm-kx5__sum-cur { color: var(--kx5-olive); }
.nexin-root .wnm-kx5__sum-placeholder {
  font-style: italic;
  font-weight: 360;
  font-size: 0.7em;
  color: rgba(243, 234, 219, 0.55);
}
.nexin-root .wnm-kx5__sum-monthly {
  font-size: 14px;
  margin-bottom: 18px;
}
.nexin-root .wnm-kx5__sum-monthly em { color: var(--kx5-olive); font-style: normal; font-weight: 600; }
.nexin-root .wnm-kx5__sum-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(243, 234, 219, 0.65);
  margin-bottom: 18px;
}
.nexin-root .wnm-kx5__sum-bar {
  flex: 1;
  height: 2px;
  background: rgba(243, 234, 219, 0.15);
  position: relative;
}
.nexin-root .wnm-kx5__sum-bar > span {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--kx5-olive);
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-kx5__sum-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  border-top: 1px solid rgba(243, 234, 219, 0.15);
  padding-top: 14px;
  display: grid;
  gap: 8px;
}
.nexin-root .wnm-kx5__sum-list li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(243, 234, 219, 0.7);
}
.nexin-root .wnm-kx5__sum-list li strong {
  font-family: "Fraunces", serif;
  font-weight: 450;
  color: var(--kx5-paper);
  font-variant-numeric: tabular-nums;
}
.nexin-root .wnm-kx5__sum-cta {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--kx5-olive);
  color: var(--kx5-paper);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: background 0.25s;
  border: 1px solid var(--kx5-olive-deep);
}
.nexin-root .wnm-kx5__sum-cta:hover { background: var(--kx5-olive-deep); color: var(--kx5-paper); }
.nexin-root .wnm-kx5__sum-fine {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(243, 234, 219, 0.5);
  text-align: center;
  margin: 14px 0 0;
}
@media (min-width: 1024px) {
  .nexin-root .wnm-kx5__shell {
    grid-template-columns: 1fr 380px;
    gap: 40px;
  }
  .nexin-root .wnm-kx5__sum {
    position: sticky;
    top: 24px;
    align-self: start;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   V6 — CHARCOAL STEEL
   Charcoal + brushed steel + bronze. Slim cards with thin borders.
   No glass effect. Marcellus serif for figure numbers.
   ═══════════════════════════════════════════════════════════════════ */
.nexin-root .wnm-kx6 {
  --kx6-charcoal: #1f2128;
  --kx6-charcoal-soft: #2a2c34;
  --kx6-steel: #a8b0bc;
  --kx6-steel-soft: #4f5560;
  --kx6-paper: #e8e9ec;
  --kx6-bronze: #c69961;
  --kx6-bronze-deep: #a07a44;
  background: var(--kx6-charcoal);
  color: var(--kx6-paper);
  font-family: "Plus Jakarta Sans", sans-serif;
  min-height: 100vh;
  padding-bottom: 60px;
}
.nexin-root .wnm-kx6__top {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(168, 176, 188, 0.14);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kx6-steel);
}
.nexin-root .wnm-kx6__back { color: var(--kx6-steel); text-decoration: none; }
.nexin-root .wnm-kx6__back:hover { color: var(--kx6-bronze); }
.nexin-root .wnm-kx6__hero {
  padding: clamp(48px, 8vw, 100px) clamp(20px, 5vw, 50px) clamp(40px, 6vw, 70px);
  border-bottom: 1px solid rgba(168, 176, 188, 0.14);
  position: relative;
  overflow: hidden;
}
.nexin-root .wnm-kx6__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(198, 153, 97, 0.06), transparent 60%),
    radial-gradient(ellipse 600px 300px at 80% 50%, rgba(198, 153, 97, 0.10), transparent 70%);
  pointer-events: none;
}
.nexin-root .wnm-kx6__hero > * { position: relative; z-index: 1; }
.nexin-root .wnm-kx6__hero-rail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kx6-steel);
  padding: 6px 14px;
  border: 1px solid rgba(168, 176, 188, 0.25);
  border-radius: 999px;
  margin-bottom: 26px;
}
.nexin-root .wnm-kx6__hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--kx6-bronze);
  box-shadow: 0 0 10px rgba(198, 153, 97, 0.7);
  animation: kx6Pulse 2.4s ease-in-out infinite;
}
@keyframes kx6Pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.nexin-root .wnm-kx6__hero-h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: clamp(34px, 7vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  max-width: 16ch;
  color: var(--kx6-paper);
}
.nexin-root .wnm-kx6__hero-h1 em {
  font-family: "Marcellus", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--kx6-bronze);
}
.nexin-root .wnm-kx6__hero-lead {
  font-size: 15px;
  line-height: 1.6;
  color: var(--kx6-steel);
  max-width: 520px;
  margin: 0 0 32px;
}
.nexin-root .wnm-kx6__hero-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid rgba(168, 176, 188, 0.18);
  padding-top: 24px;
}
.nexin-root .wnm-kx6__hero-grid > div { display: flex; flex-direction: column; gap: 4px; }
.nexin-root .wnm-kx6__hero-grid-num {
  font-family: "Marcellus", serif;
  font-size: clamp(20px, 3.5vw, 28px);
  letter-spacing: 0.02em;
  color: var(--kx6-bronze);
  font-variant-numeric: tabular-nums;
}
.nexin-root .wnm-kx6__hero-grid-lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--kx6-steel-soft);
}
.nexin-root .wnm-kx6__shell {
  padding: clamp(24px, 4vw, 40px) clamp(20px, 5vw, 50px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.nexin-root .wnm-kx6__qs { display: grid; gap: 14px; }
.nexin-root .wnm-kx6__q {
  background: var(--kx6-charcoal-soft);
  border: 1px solid rgba(168, 176, 188, 0.14);
  padding: 22px 20px;
  border-radius: 4px;
  transition: border-color 0.3s;
}
.nexin-root .wnm-kx6__q:hover { border-color: rgba(168, 176, 188, 0.24); }
.nexin-root .wnm-kx6__q-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
}
.nexin-root .wnm-kx6__q-num {
  font-family: "Marcellus", serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--kx6-bronze);
}
.nexin-root .wnm-kx6__q-h {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
}
.nexin-root .wnm-kx6__q-tick {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--kx6-bronze);
  color: var(--kx6-charcoal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nexin-root .wnm-kx6__q-hint {
  font-size: 13px;
  color: var(--kx6-steel);
  margin: 0 0 16px;
}
.nexin-root .wnm-kx6__opts { display: grid; gap: 6px; }
.nexin-root .wnm-kx6__opt {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 13px 16px;
  background: var(--kx6-charcoal);
  border: 1px solid rgba(168, 176, 188, 0.10);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--kx6-paper);
  cursor: pointer;
  text-align: left;
  width: 100%;
  border-radius: 3px;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.nexin-root .wnm-kx6__opt:hover {
  border-color: rgba(168, 176, 188, 0.32);
  background: rgba(198, 153, 97, 0.04);
}
.nexin-root .wnm-kx6__opt.is-sel {
  border-color: var(--kx6-bronze);
  background: linear-gradient(135deg, rgba(198, 153, 97, 0.16), rgba(198, 153, 97, 0.04));
  color: var(--kx6-paper);
  box-shadow: inset 0 0 0 1px rgba(198, 153, 97, 0.4);
}
.nexin-root .wnm-kx6__opt-price {
  font-family: "Marcellus", serif;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--kx6-steel);
  font-variant-numeric: tabular-nums;
}
.nexin-root .wnm-kx6__opt.is-sel .wnm-kx6__opt-price { color: var(--kx6-bronze); }
.nexin-root .wnm-kx6__sum-card {
  background: var(--kx6-charcoal-soft);
  border: 1px solid rgba(198, 153, 97, 0.3);
  padding: 26px 22px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.nexin-root .wnm-kx6__sum-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(198, 153, 97, 0.08), transparent 60%);
  pointer-events: none;
}
.nexin-root .wnm-kx6__sum-card > * { position: relative; z-index: 1; }
.nexin-root .wnm-kx6__sum-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--kx6-steel);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(168, 176, 188, 0.14);
  margin-bottom: 18px;
}
.nexin-root .wnm-kx6__sum-progress {
  position: relative;
  width: 64px;
  height: 4px;
  background: rgba(168, 176, 188, 0.16);
  border-radius: 2px;
  overflow: visible;
}
.nexin-root .wnm-kx6__sum-progress-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--kx6-bronze);
  border-radius: 2px;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-kx6__sum-progress-txt {
  position: absolute;
  right: 0;
  top: -22px;
  font-size: 11px;
  color: var(--kx6-bronze);
  font-variant-numeric: tabular-nums;
}
.nexin-root .wnm-kx6__sum-figure {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: clamp(40px, 8vw, 60px);
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--kx6-paper);
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  font-variant-numeric: tabular-nums;
  margin-bottom: 12px;
}
.nexin-root .wnm-kx6__sum-figure em {
  font-style: normal;
  font-size: 0.5em;
  color: var(--kx6-steel-soft);
}
.nexin-root .wnm-kx6__sum-figure strong {
  font-size: 0.5em;
  color: var(--kx6-bronze);
  font-weight: 400;
}
.nexin-root .wnm-kx6__sum-placeholder {
  font-family: "Marcellus", serif;
  font-style: italic;
  font-size: 0.7em;
  color: var(--kx6-steel-soft);
}
.nexin-root .wnm-kx6__sum-monthly {
  font-size: 13px;
  color: var(--kx6-steel);
  margin-bottom: 16px;
}
.nexin-root .wnm-kx6__sum-monthly strong {
  color: var(--kx6-bronze);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.nexin-root .wnm-kx6__sum-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  border-top: 1px solid rgba(168, 176, 188, 0.14);
  padding-top: 14px;
  display: grid;
  gap: 8px;
}
.nexin-root .wnm-kx6__sum-list li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--kx6-steel);
}
.nexin-root .wnm-kx6__sum-list li strong {
  color: var(--kx6-paper);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.nexin-root .wnm-kx6__sum-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--kx6-bronze);
  color: var(--kx6-charcoal);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}
.nexin-root .wnm-kx6__sum-cta:hover {
  background: var(--kx6-bronze-deep);
  color: var(--kx6-paper);
}
.nexin-root .wnm-kx6__sum-cta-arrow { font-size: 18px; }
.nexin-root .wnm-kx6__sum-fine {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--kx6-steel-soft);
  text-align: center;
  margin: 14px 0 0;
}
@media (min-width: 1024px) {
  .nexin-root .wnm-kx6__shell {
    grid-template-columns: 1fr 380px;
    gap: 32px;
  }
  .nexin-root .wnm-kx6__sum {
    position: sticky;
    top: 24px;
    align-self: start;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   KALKULAČKA LAB — Round 2 (V7-V12) — DESKTOP-FIRST
   IMPORTANT: All `.wnm-kx*__opt` rules avoid `transition` because of a
   confirmed conflict with !important + Tailwind v4 base preflight that
   leaves CSS transitions stuck running indefinitely. See V2 fix notes.
   ═══════════════════════════════════════════════════════════════════ */

/* ── Lab index — Round 2 group styling ───────────────────────────── */
.nexin-root .kalk-lab-grid__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 18px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .kalk-lab-grid__head--sub {
  margin-top: 56px;
}
.nexin-root .kalk-lab-grid__round {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d4502b;
}
.nexin-root .kalk-lab-grid__head--sub .kalk-lab-grid__round {
  color: #80735f;
}
.nexin-root .kalk-lab-grid__count {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #80735f;
}


/* ═══════════════════════════════════════════════════════════════════
   V7 — PRICING WIZARD (step-by-step)
   White paper canvas, ink black, warm orange accent. One question per
   screen, big focused card. Stripe-checkout calmness.
   ═══════════════════════════════════════════════════════════════════ */
.nexin-root .wnm-kx7 {
  --kx7-paper: #fdfbf7;
  --kx7-paper-deep: #f5f1e8;
  --kx7-ink: #1c1c1c;
  --kx7-ink-soft: #6b6661;
  --kx7-rule: #e6e1d4;
  --kx7-acc: #ee5a3b;
  --kx7-acc-deep: #c64327;
  background-color: var(--kx7-paper);
  color: var(--kx7-ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  min-height: 100vh;
  padding-bottom: 60px;
}
.nexin-root .wnm-kx7__top {
  padding: 18px clamp(20px, 5vw, 40px);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kx7-ink-soft);
  border-bottom: 1px solid var(--kx7-rule);
}
.nexin-root .wnm-kx7__back { color: var(--kx7-ink-soft); text-decoration: none; }
.nexin-root .wnm-kx7__back:hover { color: var(--kx7-acc); }
.nexin-root .wnm-kx7__top-id { color: var(--kx7-acc); }
.nexin-root .wnm-kx7__shell {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 70px) clamp(20px, 5vw, 40px) 20px;
}
.nexin-root .wnm-kx7__progress {
  margin-bottom: 32px;
}
.nexin-root .wnm-kx7__progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--kx7-ink-soft);
  margin-bottom: 10px;
}
.nexin-root .wnm-kx7__progress-meta strong {
  color: var(--kx7-ink);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.nexin-root .wnm-kx7__progress-time { color: var(--kx7-acc); }
.nexin-root .wnm-kx7__progress-track {
  height: 4px;
  border-radius: 999px;
  background-color: var(--kx7-paper-deep);
  overflow: hidden;
  margin-bottom: 10px;
}
.nexin-root .wnm-kx7__progress-fill {
  height: 100%;
  background-color: var(--kx7-acc);
  border-radius: 999px;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-kx7__progress-pips {
  display: flex;
  gap: 6px;
}
.nexin-root .wnm-kx7__progress-pip {
  flex: 1;
  height: 3px;
  border-radius: 999px;
  background-color: var(--kx7-paper-deep);
}
.nexin-root .wnm-kx7__progress-pip.is-done { background-color: var(--kx7-acc); }
.nexin-root .wnm-kx7__progress-pip.is-cur { background-color: var(--kx7-ink); }
.nexin-root .wnm-kx7__card {
  background-color: #fff;
  border: 1px solid var(--kx7-rule);
  border-radius: 24px;
  padding: clamp(32px, 5vw, 56px);
  box-shadow: 0 1px 0 rgba(28, 28, 28, 0.04), 0 24px 48px -32px rgba(28, 28, 28, 0.18);
}
.nexin-root .wnm-kx7__card-pre {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--kx7-acc);
  display: block;
  margin-bottom: 14px;
}
.nexin-root .wnm-kx7__card-h {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  color: var(--kx7-ink);
}
.nexin-root .wnm-kx7__card.is-summary .wnm-kx7__card-h {
  font-family: "Fraunces", serif;
  font-weight: 380;
  font-size: clamp(36px, 7vw, 64px);
  font-variant-numeric: tabular-nums;
}
.nexin-root .wnm-kx7__card-h-cur {
  font-style: italic;
  font-variation-settings: "opsz" 144;
  color: var(--kx7-acc);
  font-weight: 400;
}
.nexin-root .wnm-kx7__card-hint {
  font-size: 15px;
  line-height: 1.55;
  color: var(--kx7-ink-soft);
  margin: 0 0 28px;
}
.nexin-root .wnm-kx7__opts {
  display: grid;
  gap: 10px;
  margin-bottom: 32px;
}
.nexin-root .wnm-kx7__opt {
  appearance: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  background-color: var(--kx7-paper);
  border: 1.5px solid var(--kx7-rule);
  border-radius: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--kx7-ink);
  cursor: pointer;
}
.nexin-root .wnm-kx7__opt:hover {
  background-color: #fff;
  border-color: var(--kx7-ink-soft);
}
.nexin-root .wnm-kx7__opt.is-sel {
  background-color: #fff !important;
  border-color: var(--kx7-acc) !important;
  color: var(--kx7-ink) !important;
  box-shadow: inset 0 0 0 1.5px var(--kx7-acc), 0 4px 12px -8px rgba(238, 90, 59, 0.45);
}
.nexin-root .wnm-kx7__opt-radio {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--kx7-ink-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: #fff;
}
.nexin-root .wnm-kx7__opt.is-sel .wnm-kx7__opt-radio {
  border-color: var(--kx7-acc) !important;
}
.nexin-root .wnm-kx7__opt-radio-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: transparent;
}
.nexin-root .wnm-kx7__opt.is-sel .wnm-kx7__opt-radio-dot {
  background-color: var(--kx7-acc) !important;
}
.nexin-root .wnm-kx7__opt-text { line-height: 1.4; }
.nexin-root .wnm-kx7__opt-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--kx7-ink-soft);
  font-variant-numeric: tabular-nums;
}
.nexin-root .wnm-kx7__opt.is-sel .wnm-kx7__opt-price { color: var(--kx7-acc) !important; }
.nexin-root .wnm-kx7__nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}
.nexin-root .wnm-kx7__nav-running {
  text-align: center;
  font-size: 13px;
  color: var(--kx7-ink-soft);
}
.nexin-root .wnm-kx7__nav-running strong {
  color: var(--kx7-acc);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.nexin-root .wnm-kx7__btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  border-radius: 999px;
  cursor: pointer;
  border: 1.5px solid;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.nexin-root .wnm-kx7__btn--ghost {
  background-color: transparent;
  border-color: var(--kx7-rule);
  color: var(--kx7-ink-soft);
}
.nexin-root .wnm-kx7__btn--ghost:hover:not(:disabled) {
  border-color: var(--kx7-ink);
  color: var(--kx7-ink);
}
.nexin-root .wnm-kx7__btn--primary {
  background-color: var(--kx7-acc);
  border-color: var(--kx7-acc);
  color: #fff;
}
.nexin-root .wnm-kx7__btn--primary:hover:not(:disabled) {
  background-color: var(--kx7-acc-deep);
  border-color: var(--kx7-acc-deep);
  color: #fff;
}
.nexin-root .wnm-kx7__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.nexin-root .wnm-kx7__monthly {
  font-size: 14px;
  color: var(--kx7-ink-soft);
  margin-bottom: 18px;
}
.nexin-root .wnm-kx7__monthly strong {
  color: var(--kx7-ink);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.nexin-root .wnm-kx7__breakdown {
  list-style: none;
  padding: 18px 0;
  margin: 0 0 24px;
  border-top: 1px dashed var(--kx7-rule);
  border-bottom: 1px dashed var(--kx7-rule);
  display: grid;
  gap: 8px;
}
.nexin-root .wnm-kx7__breakdown li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--kx7-ink-soft);
}
.nexin-root .wnm-kx7__breakdown li strong {
  color: var(--kx7-ink);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.nexin-root .wnm-kx7__fine {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--kx7-ink-soft);
  margin: 24px 0 0;
}


/* ═══════════════════════════════════════════════════════════════════
   V8 — PRICING STUDIO (3-col Linear/Vercel pro-app)
   Slate gray + warm beige accent. Vertical Q tabs left, current Q middle,
   sticky price card right. Dense info, thin rules.
   ═══════════════════════════════════════════════════════════════════ */
.nexin-root .wnm-kx8 {
  --kx8-bg: #f7f7f5;
  --kx8-surface: #ffffff;
  --kx8-ink: #0f0f10;
  --kx8-ink-soft: #5d5d62;
  --kx8-rule: #e5e4e0;
  --kx8-rule-strong: #d2d0c8;
  --kx8-acc: #7a8c5c;
  --kx8-acc-deep: #5d6e44;
  --kx8-acc-soft: #eef0e4;
  background-color: var(--kx8-bg);
  color: var(--kx8-ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  min-height: 100vh;
}
.nexin-root .wnm-kx8__top {
  padding: 12px 24px;
  background-color: var(--kx8-surface);
  border-bottom: 1px solid var(--kx8-rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--kx8-ink-soft);
}
.nexin-root .wnm-kx8__top-l {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nexin-root .wnm-kx8__sep { color: var(--kx8-rule-strong); }
.nexin-root .wnm-kx8__back { color: var(--kx8-ink-soft); text-decoration: none; }
.nexin-root .wnm-kx8__back:hover { color: var(--kx8-acc); }
.nexin-root .wnm-kx8__top-id {
  color: var(--kx8-acc);
  font-weight: 600;
}
.nexin-root .wnm-kx8__top-doc { color: var(--kx8-ink); }
.nexin-root .wnm-kx8__top-r {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--kx8-acc);
}
.nexin-root .wnm-kx8__top-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--kx8-acc);
  box-shadow: 0 0 0 3px rgba(122, 140, 92, 0.18);
  animation: wnmKx8Pulse 1.8s ease-in-out infinite;
}
@keyframes wnmKx8Pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}
.nexin-root .wnm-kx8__shell {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - 49px);
}

/* Sidebar */
.nexin-root .wnm-kx8__nav {
  background-color: var(--kx8-surface);
  border-right: 1px solid var(--kx8-rule);
  padding: 24px 16px;
}
.nexin-root .wnm-kx8__nav-head {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kx8-ink-soft);
  padding: 0 8px;
  margin-bottom: 16px;
}
.nexin-root .wnm-kx8__nav-pre { color: var(--kx8-acc); }
.nexin-root .wnm-kx8__nav-progress {
  font-variant-numeric: tabular-nums;
  color: var(--kx8-ink);
}
.nexin-root .wnm-kx8__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 2px;
}
.nexin-root .wnm-kx8__nav-item {
  appearance: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  width: 100%;
  padding: 10px 12px;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-align: left;
  cursor: pointer;
  color: var(--kx8-ink);
}
.nexin-root .wnm-kx8__nav-item:hover {
  background-color: var(--kx8-bg);
  border-color: var(--kx8-rule);
}
.nexin-root .wnm-kx8__nav-item.is-active {
  background-color: var(--kx8-acc-soft) !important;
  border-color: var(--kx8-acc) !important;
}
.nexin-root .wnm-kx8__nav-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--kx8-ink-soft);
  font-variant-numeric: tabular-nums;
  width: 22px;
  text-align: right;
}
.nexin-root .wnm-kx8__nav-item.is-done .wnm-kx8__nav-num { color: var(--kx8-acc); }
.nexin-root .wnm-kx8__nav-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.nexin-root .wnm-kx8__nav-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--kx8-ink);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nexin-root .wnm-kx8__nav-sel {
  font-size: 11px;
  color: var(--kx8-ink-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nexin-root .wnm-kx8__nav-tick {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--kx8-acc);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Main */
.nexin-root .wnm-kx8__main {
  padding: clamp(28px, 4vw, 48px) clamp(20px, 4vw, 40px);
  background-color: var(--kx8-bg);
}
.nexin-root .wnm-kx8__main-head { margin-bottom: 28px; max-width: 640px; }
.nexin-root .wnm-kx8__main-step {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kx8-acc);
  padding: 4px 10px;
  border: 1px solid var(--kx8-acc);
  border-radius: 999px;
  margin-bottom: 14px;
}
.nexin-root .wnm-kx8__main-h {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--kx8-ink);
}
.nexin-root .wnm-kx8__main-hint {
  font-size: 14px;
  color: var(--kx8-ink-soft);
  margin: 0;
  line-height: 1.55;
}
.nexin-root .wnm-kx8__opts {
  display: grid;
  gap: 8px;
  margin-bottom: 28px;
  max-width: 640px;
}
.nexin-root .wnm-kx8__opt {
  appearance: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 14px 18px;
  background-color: var(--kx8-surface);
  border: 1px solid var(--kx8-rule);
  border-radius: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--kx8-ink);
  cursor: pointer;
}
.nexin-root .wnm-kx8__opt:hover { border-color: var(--kx8-rule-strong); }
.nexin-root .wnm-kx8__opt.is-sel {
  border-color: var(--kx8-acc) !important;
  background-color: var(--kx8-acc-soft) !important;
  color: var(--kx8-ink) !important;
  box-shadow: 0 0 0 1px var(--kx8-acc) !important;
}
.nexin-root .wnm-kx8__opt-mark {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--kx8-rule-strong);
  background-color: #fff;
  flex-shrink: 0;
  display: inline-block;
  position: relative;
}
.nexin-root .wnm-kx8__opt.is-sel .wnm-kx8__opt-mark {
  border-color: var(--kx8-acc) !important;
  background-color: var(--kx8-acc) !important;
  box-shadow: inset 0 0 0 3px #fff !important;
}
.nexin-root .wnm-kx8__opt-text { line-height: 1.4; }
.nexin-root .wnm-kx8__opt-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--kx8-ink-soft);
  font-variant-numeric: tabular-nums;
  font-family: "IBM Plex Mono", "JetBrains Mono", "Plus Jakarta Sans", monospace;
}
.nexin-root .wnm-kx8__opt.is-sel .wnm-kx8__opt-price { color: var(--kx8-acc-deep) !important; font-weight: 700; }
.nexin-root .wnm-kx8__main-foot {
  display: flex;
  gap: 8px;
  max-width: 640px;
}
.nexin-root .wnm-kx8__btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid;
}
.nexin-root .wnm-kx8__btn--ghost {
  background-color: var(--kx8-surface);
  border-color: var(--kx8-rule);
  color: var(--kx8-ink-soft);
}
.nexin-root .wnm-kx8__btn--ghost:hover:not(:disabled) {
  border-color: var(--kx8-rule-strong);
  color: var(--kx8-ink);
}
.nexin-root .wnm-kx8__btn--primary {
  background-color: var(--kx8-ink);
  border-color: var(--kx8-ink);
  color: #fff;
  margin-left: auto;
}
.nexin-root .wnm-kx8__btn--primary:hover:not(:disabled) {
  background-color: var(--kx8-acc);
  border-color: var(--kx8-acc);
  color: #fff;
}
.nexin-root .wnm-kx8__btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* Price card */
.nexin-root .wnm-kx8__price {
  background-color: var(--kx8-surface);
  border-left: 1px solid var(--kx8-rule);
  padding: 24px;
}
.nexin-root .wnm-kx8__price-card { display: grid; gap: 16px; }
.nexin-root .wnm-kx8__price-head {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kx8-ink-soft);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--kx8-rule);
}
.nexin-root .wnm-kx8__price-pre { color: var(--kx8-acc); }
.nexin-root .wnm-kx8__price-status {
  padding: 2px 8px;
  background-color: var(--kx8-acc-soft);
  color: var(--kx8-acc-deep);
  border-radius: 4px;
}
.nexin-root .wnm-kx8__price-figure {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: "IBM Plex Mono", "JetBrains Mono", monospace;
  font-variant-numeric: tabular-nums;
}
.nexin-root .wnm-kx8__price-num {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--kx8-ink);
}
.nexin-root .wnm-kx8__price-cur {
  font-size: 16px;
  font-weight: 600;
  color: var(--kx8-acc);
}
.nexin-root .wnm-kx8__price-placeholder {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--kx8-ink-soft);
  font-style: italic;
}
.nexin-root .wnm-kx8__price-monthly {
  font-size: 12px;
  color: var(--kx8-ink-soft);
}
.nexin-root .wnm-kx8__price-monthly strong {
  color: var(--kx8-ink);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.nexin-root .wnm-kx8__price-progress {
  display: grid;
  gap: 6px;
  font-size: 11px;
  color: var(--kx8-ink-soft);
  font-variant-numeric: tabular-nums;
}
.nexin-root .wnm-kx8__price-progress-track {
  height: 4px;
  border-radius: 999px;
  background-color: var(--kx8-rule);
  overflow: hidden;
}
.nexin-root .wnm-kx8__price-progress-fill {
  height: 100%;
  background-color: var(--kx8-acc);
  border-radius: 999px;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-kx8__price-list {
  list-style: none;
  padding: 12px 0;
  margin: 0;
  border-top: 1px dashed var(--kx8-rule);
  border-bottom: 1px dashed var(--kx8-rule);
  display: grid;
  gap: 6px;
}
.nexin-root .wnm-kx8__price-list li {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--kx8-ink-soft);
}
.nexin-root .wnm-kx8__price-list li span:last-child {
  font-family: "IBM Plex Mono", "JetBrains Mono", monospace;
  color: var(--kx8-ink);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.nexin-root .wnm-kx8__price-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background-color: var(--kx8-ink);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.2s;
}
.nexin-root .wnm-kx8__price-cta:hover {
  background-color: var(--kx8-acc-deep);
  color: #fff;
}
.nexin-root .wnm-kx8__price-fine {
  font-size: 11px;
  color: var(--kx8-ink-soft);
  margin: 0;
}

@media (min-width: 1024px) {
  .nexin-root .wnm-kx8__shell {
    grid-template-columns: 280px 1fr 320px;
  }
  .nexin-root .wnm-kx8__price {
    position: sticky;
    top: 49px;
    max-height: calc(100vh - 49px);
    overflow-y: auto;
  }
  .nexin-root .wnm-kx8__nav {
    position: sticky;
    top: 49px;
    max-height: calc(100vh - 49px);
    overflow-y: auto;
  }
}
@media (max-width: 1023px) {
  /* min-width:0 on grid cells lets them shrink below content width;
     without it the flex nav-list children expand cells beyond viewport. */
  .nexin-root .wnm-kx8__shell { min-width: 0; }
  .nexin-root .wnm-kx8__nav,
  .nexin-root .wnm-kx8__main,
  .nexin-root .wnm-kx8__price { min-width: 0; max-width: 100vw; }
  .nexin-root .wnm-kx8__nav {
    border-right: none;
    border-bottom: 1px solid var(--kx8-rule);
    padding: 16px;
    overflow: hidden;
  }
  .nexin-root .wnm-kx8__nav-list {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }
  .nexin-root .wnm-kx8__nav-list li { flex-shrink: 0; }
  .nexin-root .wnm-kx8__nav-item { min-width: 220px; }
  .nexin-root .wnm-kx8__price {
    border-left: none;
    border-top: 1px solid var(--kx8-rule);
  }
}


/* ═══════════════════════════════════════════════════════════════════
   V9 — PRICING CAFÉ
   Warm sand canvas + mocha ink + amber accent. Curved hand-drawn SVG
   dividers. Friendly italic accents. 2-col with sticky bill on desktop.
   ═══════════════════════════════════════════════════════════════════ */
.nexin-root .wnm-kx9 {
  --kx9-paper: #f5e9d4;
  --kx9-paper-deep: #ead8b8;
  --kx9-cream: #fbf3e0;
  --kx9-mocha: #3a201a;
  --kx9-mocha-soft: #7a5b4d;
  --kx9-amber: #c9722a;
  --kx9-amber-deep: #9a521b;
  --kx9-rule: #d4bf96;
  background-color: var(--kx9-paper);
  color: var(--kx9-mocha);
  font-family: "Plus Jakarta Sans", sans-serif;
  min-height: 100vh;
  position: relative;
}
.nexin-root .wnm-kx9::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201, 114, 42, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 80% 60%, rgba(58, 32, 26, 0.04) 1px, transparent 1px);
  background-size: 24px 24px, 32px 32px;
  pointer-events: none;
  z-index: 0;
}
.nexin-root .wnm-kx9 > * { position: relative; z-index: 1; }
.nexin-root .wnm-kx9__top {
  padding: 18px clamp(20px, 5vw, 50px);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kx9-mocha-soft);
}
.nexin-root .wnm-kx9__back { color: var(--kx9-mocha-soft); text-decoration: none; }
.nexin-root .wnm-kx9__back:hover { color: var(--kx9-amber); }
.nexin-root .wnm-kx9__top-id { color: var(--kx9-amber); }
.nexin-root .wnm-kx9__hero {
  padding: clamp(40px, 6vw, 70px) clamp(20px, 5vw, 50px) 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.nexin-root .wnm-kx9__hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--kx9-amber-deep);
  margin-bottom: 18px;
}
.nexin-root .wnm-kx9__hero-h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 6.5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  color: var(--kx9-mocha);
  max-width: 14ch;
}
.nexin-root .wnm-kx9__hero-h1 em {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 380;
  color: var(--kx9-amber);
  font-variation-settings: "opsz" 144;
}
.nexin-root .wnm-kx9__hero-lead {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.55;
  color: var(--kx9-mocha-soft);
  max-width: 540px;
  margin: 0 0 24px;
}
.nexin-root .wnm-kx9__hero-divider {
  width: 240px;
  height: 14px;
  color: var(--kx9-amber);
  display: block;
}
.nexin-root .wnm-kx9__shell {
  padding: 0 clamp(20px, 5vw, 50px) 60px;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.nexin-root .wnm-kx9__qs { display: grid; gap: 20px; }
.nexin-root .wnm-kx9__q {
  background-color: var(--kx9-cream);
  border: 1px solid var(--kx9-rule);
  border-radius: 18px;
  padding: clamp(24px, 3vw, 36px);
}
.nexin-root .wnm-kx9__q-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: baseline;
  margin-bottom: 18px;
}
.nexin-root .wnm-kx9__q-num {
  font-family: "Fraunces", serif;
  font-weight: 360;
  font-style: italic;
  font-size: 32px;
  line-height: 1;
  color: var(--kx9-amber);
  font-variation-settings: "opsz" 144;
}
.nexin-root .wnm-kx9__q-h {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.2;
  margin: 0 0 6px;
  color: var(--kx9-mocha);
}
.nexin-root .wnm-kx9__q-hint {
  font-size: 14px;
  line-height: 1.5;
  color: var(--kx9-mocha-soft);
  margin: 0;
}
.nexin-root .wnm-kx9__opts { display: grid; gap: 8px; }
.nexin-root .wnm-kx9__opt {
  appearance: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 14px 18px;
  background-color: var(--kx9-paper);
  border: 1.5px solid transparent;
  border-radius: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--kx9-mocha);
  cursor: pointer;
}
.nexin-root .wnm-kx9__opt:hover {
  background-color: var(--kx9-paper-deep);
  border-color: var(--kx9-amber);
}
.nexin-root .wnm-kx9__opt.is-sel {
  background-color: var(--kx9-amber) !important;
  border-color: var(--kx9-amber-deep) !important;
  color: var(--kx9-cream) !important;
}
.nexin-root .wnm-kx9__opt-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid var(--kx9-mocha-soft);
  background-color: transparent;
  flex-shrink: 0;
}
.nexin-root .wnm-kx9__opt.is-sel .wnm-kx9__opt-dot {
  background-color: var(--kx9-cream) !important;
  border-color: var(--kx9-cream) !important;
}
.nexin-root .wnm-kx9__opt-text { line-height: 1.4; }
.nexin-root .wnm-kx9__opt-price {
  font-family: "Fraunces", serif;
  font-weight: 460;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  color: var(--kx9-mocha-soft);
}
.nexin-root .wnm-kx9__opt.is-sel .wnm-kx9__opt-price { color: var(--kx9-cream) !important; }
.nexin-root .wnm-kx9__q-divider {
  width: 100%;
  height: 16px;
  color: var(--kx9-rule);
  margin: 4px 0;
}

/* Bill */
.nexin-root .wnm-kx9__bill-card {
  background-color: var(--kx9-mocha);
  color: var(--kx9-cream);
  border-radius: 18px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--kx9-mocha);
}
.nexin-root .wnm-kx9__bill-head {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(251, 243, 224, 0.6);
  margin-bottom: 18px;
}
.nexin-root .wnm-kx9__bill-pre { color: var(--kx9-amber); }
.nexin-root .wnm-kx9__bill-figure {
  font-family: "Fraunces", serif;
  font-weight: 360;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  font-variant-numeric: tabular-nums;
  color: var(--kx9-cream);
  margin-bottom: 14px;
}
.nexin-root .wnm-kx9__bill-figure-dash {
  font-style: normal;
  font-size: 0.5em;
  color: rgba(251, 243, 224, 0.5);
}
.nexin-root .wnm-kx9__bill-figure-cur {
  font-style: italic;
  font-size: 0.55em;
  font-variation-settings: "opsz" 144;
  color: var(--kx9-amber);
}
.nexin-root .wnm-kx9__bill-placeholder {
  font-style: italic;
  font-weight: 360;
  font-size: 0.7em;
  color: rgba(251, 243, 224, 0.55);
}
.nexin-root .wnm-kx9__bill-monthly {
  font-size: 14px;
  color: rgba(251, 243, 224, 0.75);
  margin-bottom: 16px;
}
.nexin-root .wnm-kx9__bill-monthly strong {
  color: var(--kx9-cream);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.nexin-root .wnm-kx9__bill-divider {
  width: 100%;
  height: 14px;
  color: rgba(251, 243, 224, 0.3);
  margin: 0;
}
.nexin-root .wnm-kx9__bill-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 10px;
}
.nexin-root .wnm-kx9__bill-list li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(251, 243, 224, 0.7);
}
.nexin-root .wnm-kx9__bill-list li strong {
  font-family: "Fraunces", serif;
  font-weight: 450;
  color: var(--kx9-cream);
  font-variant-numeric: tabular-nums;
}
.nexin-root .wnm-kx9__bill-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background-color: var(--kx9-amber);
  color: var(--kx9-mocha);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 999px;
  transition: background-color 0.2s, color 0.2s;
}
.nexin-root .wnm-kx9__bill-cta:hover {
  background-color: var(--kx9-cream);
  color: var(--kx9-mocha);
}
.nexin-root .wnm-kx9__bill-cta-arrow { font-size: 18px; }
.nexin-root .wnm-kx9__bill-fine {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(251, 243, 224, 0.5);
  text-align: center;
  margin: 14px 0 0;
}

@media (min-width: 1024px) {
  .nexin-root .wnm-kx9__shell {
    grid-template-columns: 1fr 380px;
    gap: 48px;
  }
  .nexin-root .wnm-kx9__bill {
    position: sticky;
    top: 24px;
    align-self: start;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   V10 — PRICING CHAT
   Conversational thread. Bot/user message bubbles. Quick-reply chips.
   Final receipt-style bill bubble.
   ═══════════════════════════════════════════════════════════════════ */
.nexin-root .wnm-kx10 {
  --kx10-bg: #f3f4f6;
  --kx10-surface: #ffffff;
  --kx10-bot: #ffffff;
  --kx10-user: #101828;
  --kx10-ink: #101828;
  --kx10-ink-soft: #4f5762;
  --kx10-rule: #e5e7eb;
  --kx10-acc: #22c55e;
  --kx10-acc-deep: #15803d;
  background-color: var(--kx10-bg);
  color: var(--kx10-ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  min-height: 100vh;
}
.nexin-root .wnm-kx10__top {
  padding: 14px clamp(20px, 5vw, 40px);
  background-color: var(--kx10-surface);
  border-bottom: 1px solid var(--kx10-rule);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kx10-ink-soft);
}
.nexin-root .wnm-kx10__back { color: var(--kx10-ink-soft); text-decoration: none; }
.nexin-root .wnm-kx10__back:hover { color: var(--kx10-acc); }
.nexin-root .wnm-kx10__top-id { color: var(--kx10-acc); }
.nexin-root .wnm-kx10__shell {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px) clamp(16px, 4vw, 32px) 60px;
}
.nexin-root .wnm-kx10__panel {
  background-color: var(--kx10-surface);
  border: 1px solid var(--kx10-rule);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(16, 24, 40, 0.04), 0 24px 60px -32px rgba(16, 24, 40, 0.18);
}
.nexin-root .wnm-kx10__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 24px;
  background-color: var(--kx10-surface);
  border-bottom: 1px solid var(--kx10-rule);
}
.nexin-root .wnm-kx10__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--kx10-acc);
  color: var(--kx10-surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  font-variation-settings: "opsz" 144;
}
.nexin-root .wnm-kx10__head-meta {
  display: grid;
  gap: 2px;
}
.nexin-root .wnm-kx10__head-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--kx10-ink);
}
.nexin-root .wnm-kx10__head-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--kx10-ink-soft);
}
.nexin-root .wnm-kx10__head-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--kx10-acc);
  animation: wnmKx10Pulse 1.6s ease-in-out infinite;
}
@keyframes wnmKx10Pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.nexin-root .wnm-kx10__thread {
  padding: 24px;
  background-color: var(--kx10-bg);
  display: grid;
  gap: 14px;
  max-height: clamp(420px, 60vh, 640px);
  overflow-y: auto;
  scroll-behavior: smooth;
}
.nexin-root .wnm-kx10__day {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--kx10-ink-soft);
}
.nexin-root .wnm-kx10__msg { display: flex; }
.nexin-root .wnm-kx10__msg--bot { justify-content: flex-start; }
.nexin-root .wnm-kx10__msg--user { justify-content: flex-end; }
.nexin-root .wnm-kx10__msg-bubble {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.45;
  animation: wnmKx10MsgIn 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes wnmKx10MsgIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.nexin-root .wnm-kx10__msg--bot .wnm-kx10__msg-bubble {
  background-color: var(--kx10-bot);
  color: var(--kx10-ink);
  border: 1px solid var(--kx10-rule);
  border-bottom-left-radius: 4px;
}
.nexin-root .wnm-kx10__msg--user .wnm-kx10__msg-bubble {
  background-color: var(--kx10-user);
  color: var(--kx10-surface);
  border-bottom-right-radius: 4px;
}
.nexin-root .wnm-kx10__msg-q {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
}
.nexin-root .wnm-kx10__msg-hint {
  display: block;
  font-size: 12px;
  color: var(--kx10-ink-soft);
}
.nexin-root .wnm-kx10__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-left: 0;
  justify-content: flex-end;
  animation: wnmKx10MsgIn 0.32s 0.1s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
.nexin-root .wnm-kx10__chip {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background-color: var(--kx10-surface);
  border: 1.5px solid var(--kx10-acc);
  border-radius: 999px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--kx10-acc-deep);
  cursor: pointer;
}
.nexin-root .wnm-kx10__chip:hover {
  background-color: var(--kx10-acc);
  color: var(--kx10-surface);
}
.nexin-root .wnm-kx10__chip-price {
  font-size: 12px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  opacity: 0.7;
}
.nexin-root .wnm-kx10__msg-bubble--bill {
  width: 100%;
  max-width: 100%;
}
.nexin-root .wnm-kx10__bill-figure {
  font-family: "Fraunces", serif;
  font-weight: 360;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--kx10-acc-deep);
  margin: 8px 0 6px;
  font-variant-numeric: tabular-nums;
}
.nexin-root .wnm-kx10__bill-monthly {
  font-size: 13px;
  color: var(--kx10-ink-soft);
  margin-bottom: 12px;
}
.nexin-root .wnm-kx10__bill-list {
  list-style: none;
  padding: 12px 0;
  margin: 0 0 14px;
  border-top: 1px dashed var(--kx10-rule);
  border-bottom: 1px dashed var(--kx10-rule);
  display: grid;
  gap: 6px;
}
.nexin-root .wnm-kx10__bill-list li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--kx10-ink-soft);
}
.nexin-root .wnm-kx10__bill-list li strong {
  color: var(--kx10-ink);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.nexin-root .wnm-kx10__bill-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background-color: var(--kx10-acc);
  color: var(--kx10-surface);
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  margin-right: 10px;
  transition: background-color 0.2s;
}
.nexin-root .wnm-kx10__bill-cta:hover { background-color: var(--kx10-acc-deep); color: var(--kx10-surface); }
.nexin-root .wnm-kx10__bill-restart {
  appearance: none;
  background-color: transparent;
  border: 1px solid var(--kx10-rule);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--kx10-ink-soft);
  cursor: pointer;
}
.nexin-root .wnm-kx10__bill-restart:hover {
  border-color: var(--kx10-ink);
  color: var(--kx10-ink);
}
.nexin-root .wnm-kx10__foot {
  padding: 14px 24px;
  background-color: var(--kx10-surface);
  border-top: 1px solid var(--kx10-rule);
  font-size: 12px;
  color: var(--kx10-ink-soft);
  text-align: center;
}
.nexin-root .wnm-kx10__foot strong {
  color: var(--kx10-acc-deep);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}


/* ═══════════════════════════════════════════════════════════════════
   V11 — PRICING BENTO
   2-col grid of question cards (asymmetric sizing). Wide price bar
   spans both cols. Notion-meets-Bauhaus geometric accents.
   ═══════════════════════════════════════════════════════════════════ */
.nexin-root .wnm-kx11 {
  --kx11-bg: #f7f6f2;
  --kx11-surface: #ffffff;
  --kx11-ink: #3a3a40;
  --kx11-ink-soft: #76767e;
  --kx11-rule: #e8e6dd;
  --kx11-acc: #4a8c3f;
  --kx11-acc-deep: #2d6a25;
  --kx11-acc-soft: #e6efe1;
  --kx11-second: #dad7e8;
  background-color: var(--kx11-bg);
  color: var(--kx11-ink);
  font-family: "Plus Jakarta Sans", sans-serif;
  min-height: 100vh;
}
.nexin-root .wnm-kx11__top {
  padding: 14px clamp(20px, 5vw, 40px);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kx11-ink-soft);
  border-bottom: 1px solid var(--kx11-rule);
}
.nexin-root .wnm-kx11__back { color: var(--kx11-ink-soft); text-decoration: none; }
.nexin-root .wnm-kx11__back:hover { color: var(--kx11-acc); }
.nexin-root .wnm-kx11__top-id { color: var(--kx11-acc); }
.nexin-root .wnm-kx11__hero {
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 40px) clamp(28px, 4vw, 50px);
  max-width: 1280px;
  margin: 0 auto;
}
.nexin-root .wnm-kx11__hero-pre {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--kx11-acc);
  margin-bottom: 18px;
}
.nexin-root .wnm-kx11__hero-h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
  color: var(--kx11-ink);
  max-width: 18ch;
}
.nexin-root .wnm-kx11__hero-h1 em {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 380;
  color: var(--kx11-acc);
  font-variation-settings: "opsz" 144;
}
.nexin-root .wnm-kx11__hero-lead {
  font-size: 15px;
  line-height: 1.55;
  color: var(--kx11-ink-soft);
  max-width: 540px;
  margin: 0;
}
.nexin-root .wnm-kx11__shell {
  padding: 0 clamp(20px, 5vw, 40px) 60px;
  max-width: 1280px;
  margin: 0 auto;
}
.nexin-root .wnm-kx11__bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.nexin-root .wnm-kx11__qcard {
  background-color: var(--kx11-surface);
  border: 1px solid var(--kx11-rule);
  border-radius: 18px;
  padding: clamp(20px, 2.5vw, 32px);
}
.nexin-root .wnm-kx11__qcard.is-done {
  border-color: var(--kx11-acc);
  background-color: var(--kx11-acc-soft);
}
.nexin-root .wnm-kx11__qcard-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: baseline;
  margin-bottom: 16px;
}
.nexin-root .wnm-kx11__qcard-num {
  font-family: "IBM Plex Mono", "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--kx11-acc);
  padding: 3px 8px;
  border: 1px solid var(--kx11-acc);
  border-radius: 4px;
}
.nexin-root .wnm-kx11__qcard-h {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.25;
  margin: 0 0 4px;
  color: var(--kx11-ink);
}
.nexin-root .wnm-kx11__qcard-hint {
  font-size: 13px;
  line-height: 1.5;
  color: var(--kx11-ink-soft);
  margin: 0;
}
.nexin-root .wnm-kx11__qcard-tick {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--kx11-acc);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nexin-root .wnm-kx11__qcard-opts { display: grid; gap: 6px; }
.nexin-root .wnm-kx11__opt {
  appearance: none;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  background-color: var(--kx11-bg);
  border: 1.5px solid transparent;
  border-radius: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--kx11-ink);
  cursor: pointer;
}
.nexin-root .wnm-kx11__opt:hover {
  background-color: #fff;
  border-color: var(--kx11-rule);
}
.nexin-root .wnm-kx11__opt.is-sel {
  background-color: var(--kx11-ink) !important;
  border-color: var(--kx11-ink) !important;
  color: #fff !important;
}
.nexin-root .wnm-kx11__opt-text { line-height: 1.35; }
.nexin-root .wnm-kx11__opt-price {
  font-family: "IBM Plex Mono", "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--kx11-ink-soft);
  font-variant-numeric: tabular-nums;
}
.nexin-root .wnm-kx11__opt.is-sel .wnm-kx11__opt-price { color: var(--kx11-acc) !important; }

/* Total bar */
.nexin-root .wnm-kx11__total {
  background-color: var(--kx11-ink);
  color: #fff;
  border-radius: 18px;
  padding: clamp(24px, 3vw, 36px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.nexin-root .wnm-kx11__total-shape {
  color: var(--kx11-acc);
  flex-shrink: 0;
}
.nexin-root .wnm-kx11__total-meta { display: grid; gap: 6px; }
.nexin-root .wnm-kx11__total-pre {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--kx11-acc);
}
.nexin-root .wnm-kx11__total-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-variant-numeric: tabular-nums;
}
.nexin-root .wnm-kx11__total-progress-track {
  flex: 1;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  overflow: hidden;
  display: block;
}
.nexin-root .wnm-kx11__total-progress-fill {
  display: block;
  height: 100%;
  background-color: var(--kx11-acc);
  border-radius: 999px;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-kx11__total-figure {
  grid-column: 1 / -1;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.025em;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  font-variant-numeric: tabular-nums;
}
.nexin-root .wnm-kx11__total-figure em {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 380;
  font-size: 0.55em;
  color: var(--kx11-acc);
  font-variation-settings: "opsz" 144;
}
.nexin-root .wnm-kx11__total-placeholder {
  font-style: italic;
  font-weight: 500;
  font-size: 0.65em;
  color: rgba(255, 255, 255, 0.5);
}
.nexin-root .wnm-kx11__total-monthly {
  grid-column: 1 / -1;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.nexin-root .wnm-kx11__total-monthly strong {
  color: var(--kx11-acc);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.nexin-root .wnm-kx11__total-cta {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  padding: 12px 22px;
  background-color: var(--kx11-acc);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  transition: background-color 0.2s;
  gap: 12px;
}
.nexin-root .wnm-kx11__total-cta:hover { background-color: var(--kx11-acc-deep); color: #fff; }

@media (min-width: 720px) {
  .nexin-root .wnm-kx11__bento {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .nexin-root .wnm-kx11__qcard--full { grid-column: 1 / -1; }
  .nexin-root .wnm-kx11__qcard--full .wnm-kx11__qcard-opts {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .nexin-root .wnm-kx11__total {
    grid-column: 1 / -1;
    grid-template-columns: 80px 1fr auto;
  }
  .nexin-root .wnm-kx11__total-figure {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
  }
  .nexin-root .wnm-kx11__total-monthly { grid-column: 2 / 3; }
  .nexin-root .wnm-kx11__total-cta {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
    align-self: center;
  }
  .nexin-root .wnm-kx11__total-meta { grid-column: 1 / 2; align-self: start; }
}


/* ═══════════════════════════════════════════════════════════════════
   V12 — PRICING PAD (pocket calculator)
   Off-white shell + matte black display panel + coral accent. IBM Plex.
   Compact narrow column even on desktop. Running total at top.
   ═══════════════════════════════════════════════════════════════════ */
.nexin-root .wnm-kx12 {
  --kx12-bg: #fbf9f4;
  --kx12-shell: #f0ece2;
  --kx12-display: #161616;
  --kx12-display-soft: #2a2a2a;
  --kx12-ink: #161616;
  --kx12-ink-soft: #6a6a6a;
  --kx12-rule: #d8d2c2;
  --kx12-coral: #ff5a52;
  --kx12-coral-deep: #d63d36;
  background-color: var(--kx12-bg);
  color: var(--kx12-ink);
  font-family: "IBM Plex Sans", "Plus Jakarta Sans", sans-serif;
  min-height: 100vh;
  padding-bottom: 60px;
}
.nexin-root .wnm-kx12__top {
  padding: 14px clamp(20px, 5vw, 40px);
  display: flex;
  justify-content: space-between;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--kx12-ink-soft);
  border-bottom: 1px solid var(--kx12-rule);
}
.nexin-root .wnm-kx12__back { color: var(--kx12-ink-soft); text-decoration: none; }
.nexin-root .wnm-kx12__back:hover { color: var(--kx12-coral); }
.nexin-root .wnm-kx12__top-id { color: var(--kx12-coral); }
.nexin-root .wnm-kx12__shell {
  max-width: 480px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px) 16px 0;
}
.nexin-root .wnm-kx12__device {
  background-color: var(--kx12-shell);
  border: 1px solid var(--kx12-rule);
  border-radius: 24px;
  padding: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 1px 0 rgba(22, 22, 22, 0.06),
    0 24px 48px -28px rgba(22, 22, 22, 0.20);
}
.nexin-root .wnm-kx12__display {
  background-color: var(--kx12-display);
  color: #fff;
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 16px;
}
.nexin-root .wnm-kx12__display-rail {
  display: flex;
  justify-content: space-between;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}
.nexin-root .wnm-kx12__display-pre { color: var(--kx12-coral); }
.nexin-root .wnm-kx12__display-progress {
  font-family: "IBM Plex Mono", monospace;
  color: rgba(255, 255, 255, 0.7);
}
.nexin-root .wnm-kx12__display-figure {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 7vw, 44px);
  line-height: 1;
  letter-spacing: -0.025em;
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-variant-numeric: tabular-nums;
}
.nexin-root .wnm-kx12__display-figure em {
  font-style: normal;
  font-size: 0.5em;
  color: rgba(255, 255, 255, 0.4);
}
.nexin-root .wnm-kx12__display-figure strong {
  font-size: 0.55em;
  color: var(--kx12-coral);
  font-weight: 600;
}
.nexin-root .wnm-kx12__display-placeholder {
  font-family: "IBM Plex Sans", sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.65em;
  color: rgba(255, 255, 255, 0.45);
}
.nexin-root .wnm-kx12__display-monthly {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
}

/* Body — questions */
.nexin-root .wnm-kx12__body {
  display: grid;
  gap: 6px;
  background-color: var(--kx12-bg);
  border-radius: 14px;
  padding: 8px;
  border: 1px solid var(--kx12-rule);
}
.nexin-root .wnm-kx12__q {
  border: none;
  margin: 0;
  padding: 8px 10px;
  background-color: transparent;
  border-radius: 10px;
}
.nexin-root .wnm-kx12__q.is-done {
  background-color: rgba(255, 90, 82, 0.04);
}
.nexin-root .wnm-kx12__q-legend {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--kx12-ink-soft);
  text-transform: uppercase;
  margin-bottom: 6px;
  width: 100%;
}
.nexin-root .wnm-kx12__q-num {
  color: var(--kx12-coral);
  font-weight: 700;
}
.nexin-root .wnm-kx12__q.is-done .wnm-kx12__q-num { color: var(--kx12-coral-deep); }
.nexin-root .wnm-kx12__q-label {
  color: var(--kx12-ink);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  font-family: "IBM Plex Sans", "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
}
.nexin-root .wnm-kx12__opts { display: grid; gap: 3px; }
.nexin-root .wnm-kx12__opt {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  font-family: "IBM Plex Sans", "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  color: var(--kx12-ink);
  cursor: pointer;
  position: relative;
}
.nexin-root .wnm-kx12__opt input { position: absolute; opacity: 0; pointer-events: none; }
.nexin-root .wnm-kx12__opt:hover {
  background-color: rgba(255, 90, 82, 0.04);
  border-color: var(--kx12-rule);
}
.nexin-root .wnm-kx12__opt.is-sel {
  background-color: rgba(255, 90, 82, 0.10) !important;
  border-color: var(--kx12-coral) !important;
  color: var(--kx12-ink) !important;
}
.nexin-root .wnm-kx12__opt-key {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1.5px solid var(--kx12-rule);
  background-color: #fff;
  flex-shrink: 0;
  display: inline-block;
  position: relative;
}
.nexin-root .wnm-kx12__opt.is-sel .wnm-kx12__opt-key {
  background-color: var(--kx12-coral) !important;
  border-color: var(--kx12-coral) !important;
}
.nexin-root .wnm-kx12__opt.is-sel .wnm-kx12__opt-key::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(45deg, transparent 45%, #fff 45%, #fff 55%, transparent 55%) 5px 4px / 4px 5px no-repeat,
    linear-gradient(-45deg, transparent 35%, #fff 35%, #fff 50%, transparent 50%) 4px 4px / 7px 7px no-repeat;
}
.nexin-root .wnm-kx12__opt-text { line-height: 1.35; }
.nexin-root .wnm-kx12__opt-price {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--kx12-ink-soft);
  font-variant-numeric: tabular-nums;
}
.nexin-root .wnm-kx12__opt.is-sel .wnm-kx12__opt-price { color: var(--kx12-coral-deep) !important; font-weight: 700; }

/* Foot */
.nexin-root .wnm-kx12__foot {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}
.nexin-root .wnm-kx12__break {
  background-color: var(--kx12-bg);
  border: 1px solid var(--kx12-rule);
  border-radius: 10px;
  padding: 10px 14px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  cursor: pointer;
}
.nexin-root .wnm-kx12__break summary {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  color: var(--kx12-ink);
  list-style: none;
  cursor: pointer;
}
.nexin-root .wnm-kx12__break summary::-webkit-details-marker { display: none; }
.nexin-root .wnm-kx12__break-count {
  background-color: var(--kx12-coral);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}
.nexin-root .wnm-kx12__break ul {
  list-style: none;
  padding: 10px 0 0;
  margin: 10px 0 0;
  border-top: 1px dashed var(--kx12-rule);
  display: grid;
  gap: 4px;
}
.nexin-root .wnm-kx12__break li {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--kx12-ink-soft);
}
.nexin-root .wnm-kx12__break li strong {
  color: var(--kx12-ink);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.nexin-root .wnm-kx12__cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background-color: var(--kx12-coral);
  color: #fff;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: background-color 0.2s;
}
.nexin-root .wnm-kx12__cta:hover { background-color: var(--kx12-coral-deep); color: #fff; }
.nexin-root .wnm-kx12__cta-arrow { font-size: 18px; }
.nexin-root .wnm-kx12__fine {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--kx12-ink-soft);
  text-align: center;
  margin: 0;
}


/* ═══════════════════════════════════════════════════════════════════
   V13 — PRICING STUDIO PRO (rev 2)
   Iteration after user feedback:
   - No orange text (lime + dark + cream only)
   - Single subtle lime aurora bg (no coral/amber)
   - Page scrollbar hidden on this route
   - Illustration auto-animates on step change (preview state with stagger)
   - Mobile: 6-dot stepper instead of horizontal scroll tabs
   - Mobile: illustration hidden, more space for form
   - Mobile: floating price FAB → modal with summary
   FIX: NO `transition` shorthand on opt rules (Tailwind v4 conflict).
   ═══════════════════════════════════════════════════════════════════ */
.nexin-root .wnm-kx13 {
  --kx13-lime: #c7ff1e;
  --kx13-lime-deep: #a3c91d;
  --kx13-lime-soft: rgba(199, 255, 30, 0.18);
  --kx13-dark: #0e0a08;
  --kx13-dark-2: #1a1410;
  --kx13-paper: #fbf6ec;
  --kx13-cream: #f8f4ec;
  --kx13-sand: #f0e9d6;
  --kx13-rule: #e0d8c2;
  --kx13-rule-deep: #c4b89c;
  --kx13-ink-soft: rgba(14, 10, 8, 0.62);
  background-color: var(--kx13-paper);
  color: var(--kx13-dark);
  font-family: "Plus Jakarta Sans", sans-serif;
  /* Explicit line-height resets the inherited 26px from Nexin theme.
     Without this, every small text inside V13 takes 2x its glyph height
     (e.g. 11px price-meta becomes 26px tall, 12px breakdown items same). */
  line-height: 1.4;
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  /* `overflow-x: clip` instead of `hidden` — clip prevents the element from
     becoming a scroll container, so descendant `position: sticky` elements
     keep binding to the viewport (not to .wnm-kx13's edge). With `hidden`,
     mobile sticky stepper rendered at viewport y=152 (= padding-top 76 +
     sticky top:76 stacked) instead of correct y=76. */
  overflow-x: clip;
  /* Hide page scrollbar so it doesn't visually clip the price card edge */
  scrollbar-width: none;
}
.nexin-root .wnm-kx13::-webkit-scrollbar { display: none; width: 0; }
/* Ensure the page-level scrollbar is hidden too while V13 is mounted.
   The lab route is full-page so this is safe. */
html:has(.nexin-root .wnm-kx13) { scrollbar-width: none; }
html:has(.nexin-root .wnm-kx13)::-webkit-scrollbar { display: none; width: 0; }
body:has(.nexin-root .wnm-kx13) { scrollbar-width: none; }
body:has(.nexin-root .wnm-kx13)::-webkit-scrollbar { display: none; width: 0; }
/* Hide the global app scroll-rail (right-edge "SCROLL" indicator) on
   pages mounting V13 — it visually collides with the sticky price card. */
body:has(.nexin-root .wnm-kx13) .wnm-scroll-rail { display: none; }

/* ── Background system — 5 variants toggleable via [data-bg] ──── */
.nexin-root .wnm-kx13__bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.nexin-root .wnm-kx13__bg > * {
  position: absolute;
  inset: 0;
  display: none;
}
.nexin-root .wnm-kx13__bg-blob {
  border-radius: 50%;
  filter: blur(110px);
  will-change: transform;
  inset: auto;
}

/* === Variant 1: Aurora lime (lime + soft dark, animated) === */
.nexin-root .wnm-kx13[data-bg="1"] .wnm-kx13__bg-blob--1,
.nexin-root .wnm-kx13[data-bg="1"] .wnm-kx13__bg-blob--2,
.nexin-root .wnm-kx13[data-bg="1"] .wnm-kx13__bg-blob--3,
.nexin-root .wnm-kx13[data-bg="1"] .wnm-kx13__bg-grain {
  display: block;
}
.nexin-root .wnm-kx13[data-bg="1"] .wnm-kx13__bg-blob--1 {
  width: 60vw; height: 60vw;
  top: -25vw; left: -20vw;
  background-color: var(--kx13-lime);
  opacity: 0.16;
  animation: wnmKx13Drift1 26s ease-in-out infinite alternate;
}
.nexin-root .wnm-kx13[data-bg="1"] .wnm-kx13__bg-blob--2 {
  width: 55vw; height: 55vw;
  bottom: -25vw; right: -15vw;
  background-color: var(--kx13-dark);
  opacity: 0.05;
  animation: wnmKx13Drift2 32s ease-in-out infinite alternate;
}
.nexin-root .wnm-kx13[data-bg="1"] .wnm-kx13__bg-blob--3 {
  width: 40vw; height: 40vw;
  top: 40%; left: 50%;
  background-color: var(--kx13-lime);
  opacity: 0.05;
  animation: wnmKx13Drift3 36s ease-in-out infinite alternate;
}
@keyframes wnmKx13Drift1 {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(12vw, 10vw, 0) scale(1.15); }
}
@keyframes wnmKx13Drift2 {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-10vw, -8vw, 0) scale(1.10); }
}
@keyframes wnmKx13Drift3 {
  0%   { transform: translate3d(0, 0, 0) scale(0.9); }
  100% { transform: translate3d(-15vw, 12vw, 0) scale(1.18); }
}

/* === Variant 2: Pure paper (just grain texture, solid bg) === */
.nexin-root .wnm-kx13[data-bg="2"] .wnm-kx13__bg-grain { display: block; }

/* Variant 1 + 2 share the grain element */
.nexin-root .wnm-kx13__bg-grain {
  background-image:
    radial-gradient(circle at 25% 25%, rgba(14, 10, 8, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, rgba(14, 10, 8, 0.03) 1px, transparent 1px);
  background-size: 14px 14px, 18px 18px;
  opacity: 0.55;
}

/* === Variant 3: Dot grid (geometric, Linear/Notion-style) === */
.nexin-root .wnm-kx13[data-bg="3"] .wnm-kx13__bg-dots { display: block; }
.nexin-root .wnm-kx13__bg-dots {
  background-image: radial-gradient(circle, rgba(14, 10, 8, 0.16) 1.4px, transparent 1.4px);
  background-size: 28px 28px;
  background-position: 0 0;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 90%);
}

/* === Variant 4: Diagonal hatch (subtle parallel lime lines) === */
.nexin-root .wnm-kx13[data-bg="4"] .wnm-kx13__bg-hatch { display: block; }
.nexin-root .wnm-kx13__bg-hatch {
  background-image: repeating-linear-gradient(
    -42deg,
    rgba(199, 255, 30, 0.10) 0,
    rgba(199, 255, 30, 0.10) 1.5px,
    transparent 1.5px,
    transparent 18px
  );
  animation: wnmKx13HatchDrift 24s linear infinite;
}
@keyframes wnmKx13HatchDrift {
  from { background-position: 0 0; }
  to { background-position: 60px 60px; }
}

/* === Variant 5: Topographic curves (organic contour map) === */
.nexin-root .wnm-kx13[data-bg="5"] .wnm-kx13__bg-topo { display: block; }
.nexin-root .wnm-kx13__bg-topo {
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

@media (prefers-reduced-motion: reduce) {
  .nexin-root .wnm-kx13__bg-blob,
  .nexin-root .wnm-kx13__bg-hatch { animation: none !important; }
}

/* ── Background switcher (dev tool) ─────────────────────────────── */
.nexin-root .wnm-kx13__bgswitch {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 70;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .wnm-kx13__bgswitch-toggle {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px 9px 11px;
  background-color: var(--kx13-dark);
  color: var(--kx13-cream);
  border: 1px solid rgba(199, 255, 30, 0.4);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 6px 16px -8px rgba(14, 10, 8, 0.4);
}
.nexin-root .wnm-kx13__bgswitch-toggle:hover {
  background-color: var(--kx13-dark-2);
  color: var(--kx13-lime);
}
.nexin-root .wnm-kx13__bgswitch-toggle-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  align-items: center;
  justify-content: center;
  color: var(--kx13-lime);
}
.nexin-root .wnm-kx13__bgswitch-panel {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  background-color: var(--kx13-dark);
  border: 1px solid rgba(199, 255, 30, 0.32);
  border-radius: 14px;
  padding: 8px;
  display: grid;
  gap: 4px;
  min-width: 220px;
  box-shadow: 0 18px 40px -16px rgba(14, 10, 8, 0.5);
}
.nexin-root .wnm-kx13__bgswitch-item {
  appearance: none;
  -webkit-appearance: none;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  background-color: transparent;
  border: 1px solid transparent;
  color: var(--kx13-cream);
  padding: 8px 10px;
  border-radius: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-align: left;
  cursor: pointer;
}
.nexin-root .wnm-kx13__bgswitch-item:hover {
  background-color: rgba(199, 255, 30, 0.08);
  border-color: rgba(199, 255, 30, 0.32);
}
.nexin-root .wnm-kx13__bgswitch-item.is-active {
  background-color: rgba(199, 255, 30, 0.18) !important;
  border-color: var(--kx13-lime) !important;
}
.nexin-root .wnm-kx13__bgswitch-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--kx13-lime);
  color: var(--kx13-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}
.nexin-root .wnm-kx13__bgswitch-item span:nth-of-type(2) {
  display: grid;
  gap: 1px;
}
.nexin-root .wnm-kx13__bgswitch-item strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--kx13-cream);
}
.nexin-root .wnm-kx13__bgswitch-desc {
  font-size: 10px;
  color: rgba(248, 244, 236, 0.55);
  letter-spacing: 0.04em;
}

/* ── Top nav ─────────────────────────────────────────────────────── */
.nexin-root .wnm-kx13__top {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px clamp(20px, 3vw, 36px);
  background-color: var(--kx13-dark);
  color: var(--kx13-cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(199, 255, 30, 0.18);
}
.nexin-root .wnm-kx13__top-l {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--kx13-cream);
}
.nexin-root .wnm-kx13__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--kx13-cream);
  text-decoration: none;
  transition: color 0.2s;
}
.nexin-root .wnm-kx13__back:hover { color: var(--kx13-lime); }
.nexin-root .wnm-kx13__sep { color: rgba(248, 244, 236, 0.3); }
.nexin-root .wnm-kx13__top-id { color: var(--kx13-lime); }
.nexin-root .wnm-kx13__top-r {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--kx13-lime);
  padding: 5px 12px;
  border: 1px solid rgba(199, 255, 30, 0.4);
  border-radius: 999px;
}
.nexin-root .wnm-kx13__top-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--kx13-lime);
  box-shadow: 0 0 8px rgba(199, 255, 30, 0.7);
  animation: wnmKx13Pulse 1.6s ease-in-out infinite;
}
@keyframes wnmKx13Pulse {
  0%, 100% { opacity: 0.65; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.18); }
}

/* ── Main shell ───────────────────────────────────────────────────── */
.nexin-root .wnm-kx13__shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  /* IMPORTANT: align-content:start prevents grid rows from stretching to fill
     min-height. Without it, the steppers row balloons to ~93px on mobile,
     creating huge empty space below the dots before the OTÁZKA pill. */
  align-content: start;
  min-height: calc(100vh - 49px);
}

/* ── DESKTOP sidebar — vertical Q list ───────────────────────────── */
.nexin-root .wnm-kx13__nav {
  background-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-right: 1px solid var(--kx13-rule);
  padding: 24px 14px;
  position: relative;
  scrollbar-width: none;
}
.nexin-root .wnm-kx13__nav::-webkit-scrollbar { display: none; }
.nexin-root .wnm-kx13__nav-head {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--kx13-ink-soft);
  padding: 0 10px;
  margin-bottom: 18px;
}
.nexin-root .wnm-kx13__nav-pre { color: var(--kx13-dark); }
.nexin-root .wnm-kx13__nav-progress {
  font-variant-numeric: tabular-nums;
  color: var(--kx13-dark);
  font-weight: 800;
}
.nexin-root .wnm-kx13__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 4px;
  position: relative;
}
.nexin-root .wnm-kx13__nav-list li { position: relative; z-index: 1; }
.nexin-root .wnm-kx13__nav-item {
  appearance: none;
  -webkit-appearance: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 12px 14px;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-align: left;
  cursor: pointer;
  color: var(--kx13-dark);
  position: relative;
  transition: color 0.2s, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-kx13__nav-item:hover { transform: translateX(2px); }
.nexin-root .wnm-kx13__nav-item:hover:not(.is-active) {
  background-color: rgba(199, 255, 30, 0.08);
  border-color: rgba(199, 255, 30, 0.32);
}
.nexin-root .wnm-kx13__nav-item.is-active {
  color: var(--kx13-cream) !important;
  background-color: var(--kx13-dark) !important;
  border-color: var(--kx13-dark) !important;
}
.nexin-root .wnm-kx13__nav-num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--kx13-ink-soft);
  font-variant-numeric: tabular-nums;
  width: 24px;
  text-align: right;
}
.nexin-root .wnm-kx13__nav-item.is-active .wnm-kx13__nav-num { color: var(--kx13-lime) !important; }
.nexin-root .wnm-kx13__nav-item.is-done:not(.is-active) .wnm-kx13__nav-num { color: var(--kx13-lime-deep); }
.nexin-root .wnm-kx13__nav-text { display: grid; gap: 2px; min-width: 0; }
.nexin-root .wnm-kx13__nav-label {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: inherit;
}
.nexin-root .wnm-kx13__nav-sel {
  font-size: 11px;
  color: rgba(14, 10, 8, 0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s, opacity 0.3s;
}
.nexin-root .wnm-kx13__nav-sel.is-shown { max-height: 16px; opacity: 1; }
.nexin-root .wnm-kx13__nav-item.is-active .wnm-kx13__nav-sel { color: rgba(248, 244, 236, 0.6) !important; }
.nexin-root .wnm-kx13__nav-tick {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--kx13-lime);
  color: var(--kx13-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: wnmKx13Stamp 0.5s cubic-bezier(0.5, 1.5, 0.4, 1);
}
.nexin-root .wnm-kx13__nav-item.is-active .wnm-kx13__nav-tick {
  background-color: var(--kx13-lime) !important;
  color: var(--kx13-dark) !important;
}
@keyframes wnmKx13Stamp {
  0% { transform: scale(0) rotate(-30deg); opacity: 0; }
  50% { transform: scale(1.3) rotate(10deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

/* ── MOBILE compact stepper (6 dots) — desktop hidden ─────────────── */
.nexin-root .wnm-kx13__steppers {
  display: none;
  position: sticky;
  top: 49px;
  z-index: 40;
  padding: 14px 20px;
  background-color: rgba(251, 246, 236, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--kx13-rule);
  gap: 10px;
  justify-content: center;
}
.nexin-root .wnm-kx13__stepper {
  appearance: none;
  -webkit-appearance: none;
  width: 28px;
  height: 6px;
  border-radius: 999px;
  border: none;
  background-color: var(--kx13-rule-deep);
  cursor: pointer;
  padding: 0;
  /* No transition — Tailwind v4 + Turbopack leaves CSS transitions
     stuck running indefinitely; the styles end up swapped. Snap is fine. */
}
.nexin-root .wnm-kx13__stepper.is-done { background-color: var(--kx13-lime-deep) !important; }
.nexin-root .wnm-kx13__stepper.is-active {
  background-color: var(--kx13-dark) !important;
  width: 56px !important;
}

/* ── Main column ─────────────────────────────────────────────────── */
.nexin-root .wnm-kx13__main {
  padding: clamp(24px, 4vw, 48px) clamp(20px, 4vw, 40px);
  position: relative;
}
.nexin-root .wnm-kx13__main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  animation: wnmKx13StepIn 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes wnmKx13StepIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.nexin-root .wnm-kx13__main-head { max-width: 540px; }
.nexin-root .wnm-kx13__main-step {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--kx13-dark);
  padding: 5px 12px;
  border: 1px solid var(--kx13-dark);
  border-radius: 999px;
  margin-bottom: 16px;
}
.nexin-root .wnm-kx13__main-step strong {
  color: var(--kx13-lime-deep);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.nexin-root .wnm-kx13__main-h {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
  color: var(--kx13-dark);
}
.nexin-root .wnm-kx13__main-h-em {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--kx13-dark);
  font-variation-settings: "opsz" 144;
  position: relative;
}
.nexin-root .wnm-kx13__main-h-em::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 4%;
  height: 0.18em;
  background-color: var(--kx13-lime);
  z-index: -1;
  border-radius: 2px;
  animation: wnmKx13UnderlineIn 0.6s 0.25s cubic-bezier(0.16, 1, 0.3, 1) backwards;
  transform-origin: left center;
}
@keyframes wnmKx13UnderlineIn {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.nexin-root .wnm-kx13__main-hint {
  font-size: 14px;
  color: var(--kx13-ink-soft);
  margin: 0;
  line-height: 1.55;
}

/* Illustration wrap */
.nexin-root .wnm-kx13__illu-wrap {
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--kx13-rule);
  border-radius: 18px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.nexin-root .wnm-kx13__illu-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at 70% 30%, rgba(199, 255, 30, 0.10), transparent 70%);
  pointer-events: none;
}
.nexin-root .wnm-kx13__illu {
  width: 100%;
  max-width: 240px;
  height: auto;
  display: block;
  position: relative;
}

/* ─── Illustration intro animations (auto-play on key change) ───── */
/* Type — papers slide+fade in */
/* Type — device frame draws in (stroke-dashoffset) + content rows fade */
.nexin-root .wnm-kx13__illu-device {
  animation: wnmKx13DeviceIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
@keyframes wnmKx13DeviceIn {
  0% { opacity: 0; transform: scale(0.92); transform-origin: 50% 50%; transform-box: fill-box; }
  100% { opacity: 1; transform: scale(1); }
}
.nexin-root .wnm-kx13__illu-row {
  animation: wnmKx13RowIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
@keyframes wnmKx13RowIn {
  from { opacity: 0; transform: translateX(-6px); }
  to   { opacity: 1; transform: translateX(0); }
}
.nexin-root .wnm-kx13__illu-tab {
  animation: wnmKx13TabPop 0.4s cubic-bezier(0.5, 1.5, 0.4, 1) backwards;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes wnmKx13TabPop {
  0% { transform: scale(0); }
  60% { transform: scale(1.4); }
  100% { transform: scale(1); }
}
/* Design — swatch pop */
.nexin-root .wnm-kx13__illu-swatch {
  animation: wnmKx13SwatchPop 0.55s cubic-bezier(0.5, 1.5, 0.4, 1) backwards;
}
@keyframes wnmKx13SwatchPop {
  from { transform: scale(0); }
  60% { transform: scale(1.18); }
  to { transform: scale(1); }
}
/* Content — text line draw */
.nexin-root .wnm-kx13__illu-textline {
  animation: wnmKx13LineDraw 0.5s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
@keyframes wnmKx13LineDraw {
  from { opacity: 0; transform: translateX(-6px); }
  to { opacity: 1; transform: translateX(0); }
}
/* SEO — bars grow from baseline */
.nexin-root .wnm-kx13__illu-bar {
  animation: wnmKx13BarGrow 0.6s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
@keyframes wnmKx13BarGrow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}
/* Extras — slot fade in */
.nexin-root .wnm-kx13__illu-slot {
  animation: wnmKx13SlotIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
@keyframes wnmKx13SlotIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Support — calendar cell pop */
.nexin-root .wnm-kx13__illu-cell {
  animation: wnmKx13CellIn 0.4s cubic-bezier(0.5, 1.5, 0.4, 1) backwards;
}
@keyframes wnmKx13CellIn {
  from { opacity: 0; transform: scale(0.6); }
  to { opacity: 1; transform: scale(1); }
}
/* Generic SVG content pop on click */
@keyframes wnmKx13Pop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .nexin-root .wnm-kx13__illu-device,
  .nexin-root .wnm-kx13__illu-row,
  .nexin-root .wnm-kx13__illu-tab,
  .nexin-root .wnm-kx13__illu-swatch,
  .nexin-root .wnm-kx13__illu-textline,
  .nexin-root .wnm-kx13__illu-bar,
  .nexin-root .wnm-kx13__illu-slot,
  .nexin-root .wnm-kx13__illu-cell {
    animation: none !important;
  }
}

/* Options */
.nexin-root .wnm-kx13__opts { display: grid; gap: 8px; }
.nexin-root .wnm-kx13__opt {
  appearance: none;
  -webkit-appearance: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  background-color: rgba(255, 255, 255, 0.85);
  border: 1.5px solid var(--kx13-rule);
  border-radius: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--kx13-dark);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  animation: wnmKx13OptIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes wnmKx13OptIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.nexin-root .wnm-kx13__opt:hover {
  background-color: #fff;
  border-color: var(--kx13-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px -8px rgba(14, 10, 8, 0.18);
}
.nexin-root .wnm-kx13__opt.is-sel {
  background-color: var(--kx13-dark) !important;
  border-color: var(--kx13-dark) !important;
  color: var(--kx13-cream) !important;
  box-shadow: 0 6px 24px -10px rgba(14, 10, 8, 0.28), inset 0 0 0 1px rgba(199, 255, 30, 0.4) !important;
}
.nexin-root .wnm-kx13__opt-radio {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--kx13-rule-deep);
  background-color: rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nexin-root .wnm-kx13__opt.is-sel .wnm-kx13__opt-radio {
  border-color: var(--kx13-lime) !important;
  background-color: transparent !important;
}
.nexin-root .wnm-kx13__opt-radio-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: transparent;
}
.nexin-root .wnm-kx13__opt.is-sel .wnm-kx13__opt-radio-dot {
  background-color: var(--kx13-lime) !important;
  box-shadow: 0 0 8px rgba(199, 255, 30, 0.6) !important;
  animation: wnmKx13DotPop 0.4s cubic-bezier(0.5, 1.5, 0.4, 1);
}
@keyframes wnmKx13DotPop {
  0% { transform: scale(0); }
  60% { transform: scale(1.4); }
  100% { transform: scale(1); }
}
.nexin-root .wnm-kx13__opt-text { line-height: 1.4; }
.nexin-root .wnm-kx13__opt-price {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--kx13-ink-soft);
  font-variant-numeric: tabular-nums;
}
.nexin-root .wnm-kx13__opt.is-sel .wnm-kx13__opt-price { color: var(--kx13-lime) !important; }
.nexin-root .wnm-kx13__opt-ripple {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(199, 255, 30, 0.5);
  transform: translate(-50%, -50%) scale(1);
  animation: wnmKx13Ripple 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  pointer-events: none;
  z-index: 0;
}
@keyframes wnmKx13Ripple {
  to { transform: translate(-50%, -50%) scale(50); opacity: 0; }
}

/* Foot nav */
.nexin-root .wnm-kx13__main-foot {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}
.nexin-root .wnm-kx13__main-foot-meta {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--kx13-ink-soft);
}
.nexin-root .wnm-kx13__btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  border: 1.5px solid;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.nexin-root .wnm-kx13__btn--ghost {
  background-color: transparent;
  border-color: var(--kx13-rule-deep);
  color: var(--kx13-ink-soft);
}
.nexin-root .wnm-kx13__btn--ghost:hover:not(:disabled) {
  border-color: var(--kx13-dark);
  color: var(--kx13-dark);
}
.nexin-root .wnm-kx13__btn--primary {
  background-color: var(--kx13-dark);
  border-color: var(--kx13-dark);
  color: var(--kx13-cream);
}
.nexin-root .wnm-kx13__btn--primary:hover:not(:disabled) {
  background-color: var(--kx13-lime);
  border-color: var(--kx13-lime);
  color: var(--kx13-dark);
  transform: translateX(2px);
}
.nexin-root .wnm-kx13__btn:disabled { opacity: 0.32; cursor: not-allowed; }

/* ── Desktop price card ──────────────────────────────────────────── */
.nexin-root .wnm-kx13__price {
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-left: 1px solid var(--kx13-rule);
  padding: 24px;
  position: relative;
  scrollbar-width: none;
}
.nexin-root .wnm-kx13__price::-webkit-scrollbar { display: none; }
.nexin-root .wnm-kx13__price-card {
  display: grid;
  /* CRITICAL: minmax(0, 1fr) — without this, default `grid-template-columns:
     auto` makes the column expand to max-content of the widest child
     (e.g. nowrap price figure or long breakdown labels), which then bursts
     past the card padding. children measured 286px wide vs expected 255px
     (= 311 card - 56 padding) until this was set. */
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  position: relative;
  /* Generous horizontal padding so long breakdown labels keep visible
     breathing from the card edge. Top stays bigger for ring clearance. */
  padding: 28px 28px 24px;
  border-radius: 20px;
  background-color: var(--kx13-dark);
  /* Subtle radial lime accent in top-right corner — no busy image */
  background-image:
    radial-gradient(circle at 100% 0%, rgba(199, 255, 30, 0.18), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(199, 255, 30, 0.06), transparent 60%);
  color: var(--kx13-cream);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(199, 255, 30, 0.18);
}
/* Hairline corner accent */
.nexin-root .wnm-kx13__price-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 90px;
  background-image: linear-gradient(135deg, transparent 50%, rgba(199, 255, 30, 0.08) 50%);
  pointer-events: none;
  z-index: 0;
}
/* No darkening overlay — card bg is solid dark already */
.nexin-root .wnm-kx13__price-card > * { position: relative; z-index: 1; }
.nexin-root .wnm-kx13__price-card.is-ready {
  animation: wnmKx13ReadyShake 0.6s cubic-bezier(0.5, 1.5, 0.4, 1);
}
@keyframes wnmKx13ReadyShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px) rotate(-0.5deg); }
  75% { transform: translateX(3px) rotate(0.5deg); }
}
.nexin-root .wnm-kx13__price-ring {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 56px;
  height: 56px;
  z-index: 2;
}
.nexin-root .wnm-kx13__price-meta {
  display: block;
  /* Reserve right space so meta text never wraps under the absolute ring
     (56px wide + 18px right offset = 74px, round up to 80). */
  padding-right: 80px;
  font-size: 11px;
  font-weight: 700;
  /* Reduced from 0.22em → 0.16em so "CENOVÁ KALKULÁCIA" fits on one line
     in the 311px price card without the spaced uppercase pushing wrap. */
  letter-spacing: 0.16em;
  text-transform: uppercase;
  /* Explicit line-height — Nexin theme inherits 26px which doubles the
     row height for 11px text. */
  line-height: 1.4;
  color: rgba(248, 244, 236, 0.62);
  padding-right: 76px;
}
.nexin-root .wnm-kx13__price-pre { color: var(--kx13-lime); }
/* Hotovo badge moved to its own row (between meta and figure) — was
   previously inline with meta which collided with the absolute ring. */
.nexin-root .wnm-kx13__price-ready-row {
  display: block;
  padding-right: 80px;
}
.nexin-root .wnm-kx13__price-ready {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--kx13-dark);
  background-color: var(--kx13-lime);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  animation: wnmKx13ReadyIn 0.5s cubic-bezier(0.5, 1.5, 0.4, 1);
}
.nexin-root .wnm-kx13__price-ready-spark {
  animation: wnmKx13Spin 2s linear infinite;
  display: inline-block;
}
@keyframes wnmKx13Spin {
  to { transform: rotate(360deg); }
}
@keyframes wnmKx13ReadyIn {
  0% { transform: scale(0) rotate(-180deg); opacity: 0; }
  60% { transform: scale(1.2) rotate(15deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}
.nexin-root .wnm-kx13__price-figure {
  font-family: "Fraunces", serif;
  font-weight: 380;
  /* Reduced max from 52→40 so 4-digit prices ("1 070–1 150") fit without
     wrap inside the 311px price card content area. */
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  display: flex;
  align-items: baseline;
  gap: 4px;
  /* No wrap — digits + dash + currency stay on one line. Padding-right
     reserves space so figure never collides with the absolute conic ring. */
  flex-wrap: nowrap;
  white-space: nowrap;
  padding-right: 76px;
  font-variant-numeric: tabular-nums;
  color: var(--kx13-cream);
  font-feature-settings: "ss01";
}
.nexin-root .wnm-kx13__price-figure.is-pop > span {
  display: inline-block;
  animation: wnmKx13NumPop 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes wnmKx13NumPop {
  0% { transform: translateY(8px); opacity: 0.5; filter: brightness(1.5); }
  60% { transform: translateY(-3px); opacity: 1; filter: brightness(1.2); }
  100% { transform: translateY(0); opacity: 1; filter: brightness(1); }
}
.nexin-root .wnm-kx13__price-figure-dash {
  font-style: normal;
  font-size: 0.5em;
  color: rgba(248, 244, 236, 0.5);
}
.nexin-root .wnm-kx13__price-figure-cur {
  font-style: italic;
  font-size: 0.55em;
  font-variation-settings: "opsz" 144;
  color: var(--kx13-lime);
}
.nexin-root .wnm-kx13__price-placeholder {
  font-style: italic;
  font-weight: 380;
  font-size: 0.65em;
  color: rgba(248, 244, 236, 0.55);
  font-variation-settings: "opsz" 144;
}
.nexin-root .wnm-kx13__price-monthly {
  font-size: 13px;
  color: rgba(248, 244, 236, 0.75);
}
.nexin-root .wnm-kx13__price-monthly strong {
  color: var(--kx13-lime);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.nexin-root .wnm-kx13__price-list {
  list-style: none;
  padding: 16px 0;
  margin: 0;
  border-top: 1px dashed rgba(248, 244, 236, 0.18);
  border-bottom: 1px dashed rgba(248, 244, 236, 0.18);
  display: grid;
  /* Same min-width: 0 trick — without it, the list expands the parent
     grid column when item content's intrinsic width exceeds available. */
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}
.nexin-root .wnm-kx13__price-list li {
  display: grid;
  /* minmax(0,1fr) lets the label wrap to 2 lines instead of pushing the
     price out. min-content on the price column reserves enough width for
     "1 290 €" type values. Larger gap (24) so even long labels keep clear
     visual separation from the price. */
  grid-template-columns: minmax(0, 1fr) min-content;
  gap: 6px 24px;
  align-items: baseline;
  font-size: 12.5px;
  line-height: 1.4;
  color: rgba(248, 244, 236, 0.78);
  animation: wnmKx13LineIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.nexin-root .wnm-kx13__price-list li > span {
  min-width: 0;
  /* Long labels wrap onto a second line instead of crashing into the price. */
  overflow-wrap: anywhere;
}
.nexin-root .wnm-kx13__price-list li > strong {
  white-space: nowrap;
  text-align: right;
}
@keyframes wnmKx13LineIn {
  from { opacity: 0; transform: translateX(8px); }
  to { opacity: 1; transform: translateX(0); }
}
.nexin-root .wnm-kx13__price-list li strong {
  color: var(--kx13-cream);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.nexin-root .wnm-kx13__price-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background-color: var(--kx13-lime);
  color: var(--kx13-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 999px;
  transition: background-color 0.2s, color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.nexin-root .wnm-kx13__price-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.45) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-kx13__price-cta:hover::after { transform: translateX(100%); }
.nexin-root .wnm-kx13__price-cta:hover {
  background-color: var(--kx13-cream);
  color: var(--kx13-dark);
  transform: translateY(-2px);
}
.nexin-root .wnm-kx13__price-cta.is-pulse {
  animation: wnmKx13CtaPulse 1.6s ease-in-out infinite;
}
@keyframes wnmKx13CtaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(199, 255, 30, 0.6); }
  50% { box-shadow: 0 0 0 14px rgba(199, 255, 30, 0); }
}
.nexin-root .wnm-kx13__price-cta-arrow {
  display: inline-block;
  font-size: 18px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-kx13__price-cta:hover .wnm-kx13__price-cta-arrow { transform: translateX(4px); }
.nexin-root .wnm-kx13__price-fine {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(248, 244, 236, 0.55);
  margin: 0;
}

/* Confetti */
.nexin-root .wnm-kx13__price-confetti {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 3;
}
.nexin-root .wnm-kx13__price-confetti > span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background-color: var(--kx13-lime);
  transform: translate(-50%, -50%);
  animation: wnmKx13Confetti 1s cubic-bezier(0.16, 1, 0.3, 1) var(--wnm-kx13-conf-delay) both;
}
.nexin-root .wnm-kx13__price-confetti > span:nth-child(3n) { background-color: var(--kx13-cream); }
.nexin-root .wnm-kx13__price-confetti > span:nth-child(5n) { background-color: var(--kx13-lime-deep); border-radius: 50%; }
@keyframes wnmKx13Confetti {
  0% { transform: translate(-50%, -50%) scale(0) rotate(0); opacity: 1; }
  100% {
    transform:
      translate(calc(-50% + var(--wnm-kx13-conf-x)), calc(-50% + var(--wnm-kx13-conf-y)))
      scale(1) rotate(180deg);
    opacity: 0;
  }
}

/* ── Mobile FAB (floating price button) ──────────────────────────── */
.nexin-root .wnm-kx13__fab {
  display: none;
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  appearance: none;
  -webkit-appearance: none;
  background-color: var(--kx13-dark);
  color: var(--kx13-cream);
  border: 1.5px solid var(--kx13-lime);
  border-radius: 999px;
  padding: 10px 18px 10px 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px -10px rgba(14, 10, 8, 0.45), 0 2px 8px -2px rgba(199, 255, 30, 0.3);
  cursor: pointer;
  animation: wnmKx13FabIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes wnmKx13FabIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.nexin-root .wnm-kx13__fab.is-ready {
  border-color: var(--kx13-lime);
  animation: wnmKx13FabPulse 1.6s ease-in-out infinite;
}
@keyframes wnmKx13FabPulse {
  0%, 100% { box-shadow: 0 8px 24px -10px rgba(14, 10, 8, 0.45), 0 0 0 0 rgba(199, 255, 30, 0.6); }
  50% { box-shadow: 0 8px 24px -10px rgba(14, 10, 8, 0.45), 0 0 0 12px rgba(199, 255, 30, 0); }
}
.nexin-root .wnm-kx13__fab-ring {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nexin-root .wnm-kx13__fab-ring svg { width: 100%; height: 100%; }
.nexin-root .wnm-kx13__fab-text {
  display: grid;
  gap: 1px;
  text-align: left;
  line-height: 1;
}
.nexin-root .wnm-kx13__fab-pre {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kx13-lime);
  font-variant-numeric: tabular-nums;
}
.nexin-root .wnm-kx13__fab-price {
  /* Fraunces italic at FAB scale (17px) is illegible — letter shapes get
     mushy under the 56px ring + dark pill. Switch to Plus Jakarta 700 at
     19px for clean sans-serif readability. */
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.015em;
  font-variant-numeric: tabular-nums;
  color: var(--kx13-cream);
  display: inline-block;
  animation: wnmKx13NumPop 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-kx13__fab-arrow {
  font-size: 14px;
  color: var(--kx13-lime);
  margin-left: 2px;
}

/* ── Mobile modal ────────────────────────────────────────────────── */
.nexin-root .wnm-kx13__modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background-color: rgba(14, 10, 8, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: wnmKx13ModalBgIn 0.25s ease-out;
}
@keyframes wnmKx13ModalBgIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.nexin-root .wnm-kx13__modal {
  background-color: var(--kx13-paper);
  width: 100%;
  max-width: 520px;
  border-radius: 24px 24px 0 0;
  padding: 14px;
  position: relative;
  max-height: 88vh;
  overflow-y: auto;
  scrollbar-width: none;
  /* No CSS animation — they get stuck running indefinitely under
     Tailwind v4 + Turbopack (same bug as V2). Modal just appears at
     final position; backdrop fade-in provides the entrance feel. */
}
.nexin-root .wnm-kx13__modal::-webkit-scrollbar { display: none; }
.nexin-root .wnm-kx13__modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  appearance: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--kx13-rule-deep);
  background-color: rgba(255, 255, 255, 0.85);
  color: var(--kx13-dark);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, color 0.2s;
}
.nexin-root .wnm-kx13__modal-close:hover {
  background-color: var(--kx13-dark);
  color: var(--kx13-cream);
}
.nexin-root .wnm-kx13__modal-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  position: relative;
  padding: 28px 28px 24px;
  border-radius: 18px;
  background-color: var(--kx13-dark);
  background-image:
    radial-gradient(circle at 100% 0%, rgba(199, 255, 30, 0.18), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(199, 255, 30, 0.06), transparent 60%);
  color: var(--kx13-cream);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(199, 255, 30, 0.18);
}
.nexin-root .wnm-kx13__modal-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 90px;
  background-image: linear-gradient(135deg, transparent 50%, rgba(199, 255, 30, 0.08) 50%);
  pointer-events: none;
  z-index: 0;
}
.nexin-root .wnm-kx13__modal-card > * { position: relative; z-index: 1; }
.nexin-root .wnm-kx13__modal-card.is-ready { animation: wnmKx13ReadyShake 0.6s cubic-bezier(0.5, 1.5, 0.4, 1); }

/* ── Prod modifier — site-header (76px fixed) clearance ─────────── */
/* Prod ships V13 without its lab-only top breadcrumb. SiteHeader is
   position:fixed at top, 76px tall. All sticky offsets that were 49px
   (V13 top breadcrumb height) become 76px to clip below SiteHeader. */
.nexin-root .wnm-kx13--prod {
  padding-top: 76px;
}
.nexin-root .wnm-kx13--prod .wnm-kx13__steppers {
  top: 76px;
}
@media (min-width: 1024px) {
  .nexin-root .wnm-kx13--prod .wnm-kx13__nav,
  .nexin-root .wnm-kx13--prod .wnm-kx13__price {
    top: 76px;
    max-height: calc(100vh - 76px);
  }
  .nexin-root .wnm-kx13--prod .wnm-kx13__shell {
    min-height: calc(100vh - 76px);
  }
}

/* ── Desktop layout (≥1024) ──────────────────────────────────────── */
@media (min-width: 1024px) {
  .nexin-root .wnm-kx13__shell {
    grid-template-columns: 280px 1fr 360px;
  }
  .nexin-root .wnm-kx13__nav {
    position: sticky;
    top: 49px;
    max-height: calc(100vh - 49px);
    overflow-y: auto;
    overflow-x: hidden;
  }
  .nexin-root .wnm-kx13__price {
    position: sticky;
    top: 49px;
    max-height: calc(100vh - 49px);
    overflow-y: auto;
    overflow-x: hidden;
  }
  .nexin-root .wnm-kx13__main-grid {
    grid-template-columns: 1fr 280px;
    gap: 40px;
    align-items: start;
  }
  .nexin-root .wnm-kx13__main-head { grid-column: 1 / -1; }
  .nexin-root .wnm-kx13__opts { grid-column: 1; }
  .nexin-root .wnm-kx13__illu-wrap {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    position: sticky;
    top: 70px;
  }
  .nexin-root .wnm-kx13__main-foot { grid-column: 1 / -1; }
}

/* ── Mobile layout (<1024) ───────────────────────────────────────── */
@media (max-width: 1023px) {
  .nexin-root .wnm-kx13__shell { min-width: 0; }
  .nexin-root .wnm-kx13__nav,
  .nexin-root .wnm-kx13__main,
  .nexin-root .wnm-kx13__price,
  .nexin-root .wnm-kx13__steppers { min-width: 0; max-width: 100vw; }
  /* Hide desktop sidebar tabs */
  .nexin-root .wnm-kx13__nav { display: none; }
  /* Hide V13 top breadcrumb on mobile — site header serves the same role
     and they overlap awkwardly behind it (taking ~93px of layout space). */
  .nexin-root .wnm-kx13__top { display: none; }
  /* Stepper sticks to viewport top now (no V13 top nav above) */
  .nexin-root .wnm-kx13__steppers { top: 0; }
  /* Show mobile stepper dots */
  .nexin-root .wnm-kx13__steppers { display: flex; }
  /* Hide desktop sticky price card */
  .nexin-root .wnm-kx13__price { display: none; }
  /* Show floating FAB */
  .nexin-root .wnm-kx13__fab { display: inline-flex; }
  /* Hide illustration on mobile (frees space for form) */
  .nexin-root .wnm-kx13__illu-wrap { display: none; }
  /* Bottom-padding for FAB clearance */
  .nexin-root .wnm-kx13__main { padding-bottom: 100px; }
}

/* ── Reduced motion ────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .nexin-root .wnm-kx13__opt,
  .nexin-root .wnm-kx13__main-grid,
  .nexin-root .wnm-kx13__nav-tick,
  .nexin-root .wnm-kx13__price-ready,
  .nexin-root .wnm-kx13__price-card,
  .nexin-root .wnm-kx13__modal-card,
  .nexin-root .wnm-kx13__price-cta,
  .nexin-root .wnm-kx13__price-confetti > span,
  .nexin-root .wnm-kx13__top-dot,
  .nexin-root .wnm-kx13__fab,
  .nexin-root .wnm-kx13__main-h-em::after,
  .nexin-root .wnm-kx13__modal,
  .nexin-root .wnm-kx13__modal-backdrop {
    animation: none !important;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   COMPARISON PAGES — /porovnanie/* — head-to-head buyer intent
   ═══════════════════════════════════════════════════════════════════ */
.nexin-root .wnm-cmp__hero {
  background: #f9f9f9;
  padding-bottom: 56px;
}
.nexin-root .wnm-cmp__title {
  font-family: "Fraunces", "Marcellus", serif;
  font-weight: 400;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.02;
  margin: 14px 0 0;
  color: #0a0a0b;
  letter-spacing: -0.02em;
}
.nexin-root .wnm-cmp__title em {
  font-style: italic;
  color: rgba(10, 10, 11, 0.45);
  background: linear-gradient(120deg, transparent 8%, rgba(199, 255, 30, 0.5) 8%, rgba(199, 255, 30, 0.5) 92%, transparent 92%);
  background-size: 100% 56%;
  background-repeat: no-repeat;
  background-position: 0 78%;
  padding: 0 8px;
  margin: 0 4px;
}
.nexin-root .wnm-cmp__lead {
  margin: 28px 0 0;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(10, 10, 11, 0.7);
  max-width: 720px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .wnm-cmp__verdict {
  margin: 32px 0 0;
  padding: 20px 24px;
  background: linear-gradient(135deg, #0a0a0b 0%, #1a1a1d 100%);
  color: #f9f9f9;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.nexin-root .wnm-cmp__verdict-label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c7ff1e;
  white-space: nowrap;
}
.nexin-root .wnm-cmp__verdict-text {
  margin: 0;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 18px;
  font-weight: 400;
  color: #f9f9f9;
}

/* Comparison table */
.nexin-root .wnm-cmp__table-sec {
  background: #fff;
  padding: 56px 0 80px;
}
.nexin-root .wnm-cmp__table {
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .wnm-cmp__table-head {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 2px solid #0a0a0b;
  margin-bottom: 24px;
  position: sticky;
  top: 76px;
  background: #fff;
  z-index: 5;
}
.nexin-root .wnm-cmp__col-h {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 18px;
  background: rgba(10, 10, 11, 0.04);
  border-radius: 14px;
}
.nexin-root .wnm-cmp__col-h--us {
  background: linear-gradient(135deg, rgba(199, 255, 30, 0.18) 0%, rgba(199, 255, 30, 0.06) 100%);
  border: 1px solid rgba(199, 255, 30, 0.5);
}
.nexin-root .wnm-cmp__col-h span {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 22px;
  color: #0a0a0b;
}
.nexin-root .wnm-cmp__col-h em {
  font-style: italic;
  font-size: 12px;
  color: rgba(10, 10, 11, 0.6);
  letter-spacing: 0.04em;
}
.nexin-root .wnm-cmp__row {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px dashed rgba(10, 10, 11, 0.12);
  align-items: stretch;
  position: relative;
}
.nexin-root .wnm-cmp__row-cat {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  color: #0a0a0b;
  letter-spacing: -0.005em;
  padding: 4px 0;
  align-self: start;
}
.nexin-root .wnm-cmp__cell {
  padding: 14px 18px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(10, 10, 11, 0.06);
  position: relative;
}
.nexin-root .wnm-cmp__cell p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(10, 10, 11, 0.78);
}
.nexin-root .wnm-cmp__cell--win {
  background: linear-gradient(135deg, rgba(199, 255, 30, 0.12) 0%, rgba(199, 255, 30, 0.04) 100%);
  border-color: rgba(199, 255, 30, 0.5);
}
.nexin-root .wnm-cmp__cell--win-wp {
  background: rgba(10, 10, 11, 0.04);
  border-color: rgba(10, 10, 11, 0.2);
}
.nexin-root .wnm-cmp__win-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 3px 9px;
  border-radius: 99px;
  background: #0a0a0b;
  color: #c7ff1e;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.nexin-root .wnm-cmp__cell--win-wp .wnm-cmp__win-badge {
  background: #c7ff1e;
  color: #0a0a0b;
}
.nexin-root .wnm-cmp__row-detail {
  grid-column: 1 / -1;
  font-size: 12.5px;
  font-style: italic;
  color: rgba(10, 10, 11, 0.55);
  padding: 8px 18px 0;
}

/* Verdict cards */
.nexin-root .wnm-cmp__verdict-sec {
  background: #f9f9f9;
  padding: 64px 0;
}
.nexin-root .wnm-cmp__verdict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.nexin-root .wnm-cmp__verdict-card {
  padding: 32px;
  background: #fff;
  border: 1px solid rgba(10, 10, 11, 0.08);
  border-radius: 22px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .wnm-cmp__verdict-card--us {
  background: linear-gradient(135deg, rgba(199, 255, 30, 0.18) 0%, rgba(199, 255, 30, 0.06) 100%);
  border-color: rgba(199, 255, 30, 0.5);
}
.nexin-root .wnm-cmp__verdict-card-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0a0a0b;
  background: #c7ff1e;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.nexin-root .wnm-cmp__verdict-card:not(.wnm-cmp__verdict-card--us) .wnm-cmp__verdict-card-tag {
  background: rgba(10, 10, 11, 0.06);
  color: rgba(10, 10, 11, 0.7);
}
.nexin-root .wnm-cmp__verdict-card p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.6;
  color: #0a0a0b;
}
.nexin-root .wnm-cmp__verdict-cta {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 700;
  color: #0a0a0b;
  border-bottom: 2px solid #c7ff1e;
  padding-bottom: 2px;
  text-decoration: none;
}

@media (max-width: 991px) {
  .nexin-root .wnm-cmp__table-head, .nexin-root .wnm-cmp__row {
    grid-template-columns: 1fr;
  }
  .nexin-root .wnm-cmp__row-cat {
    background: #0a0a0b;
    color: #c7ff1e;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
  }
  .nexin-root .wnm-cmp__table-head { position: static; }
  .nexin-root .wnm-cmp__verdict-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════
   KONTAKT — Hero with quick facts + 3 channel cards
   ═══════════════════════════════════════════════════════════════════ */
.nexin-root .wnm-kt__hero {
  background: #fafaf8;
  color: #0a0a0b;
  padding: 80px 0 56px;
  position: relative;
  overflow: hidden;
}
.nexin-root .wnm-kt__hero > .container { position: relative; z-index: 1; }
.nexin-root .wnm-kt__title {
  font-family: "Fraunces", "Marcellus", serif;
  font-weight: 400;
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 1.02;
  margin: 14px 0 0;
  color: #0a0a0b;
  letter-spacing: -0.02em;
}
.nexin-root .wnm-kt__title em {
  font-style: italic;
  background: linear-gradient(120deg, transparent 0%, transparent 8%, rgba(199, 255, 30, 0.6) 8%, rgba(199, 255, 30, 0.6) 92%, transparent 92%);
  background-size: 100% 60%;
  background-repeat: no-repeat;
  background-position: 0 78%;
  padding: 0 6px;
}
.nexin-root .wnm-kt__lead {
  margin: 28px 0 0;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(10, 10, 11, 0.7);
  max-width: 540px;
}
.nexin-root .wnm-kt__hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.nexin-root .wnm-kt__hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}
.nexin-root .wnm-kt__facts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
}
.nexin-root .wnm-kt__fact {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid rgba(10, 10, 11, 0.08);
  border-radius: 18px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.nexin-root .wnm-kt__fact::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #c7ff1e;
  transform: scaleY(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: bottom;
}
.nexin-root .wnm-kt__fact:hover {
  transform: translateX(4px);
  box-shadow: 0 16px 36px -16px rgba(10, 10, 11, 0.15);
  border-color: #c7ff1e;
}
.nexin-root .wnm-kt__fact:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}
.nexin-root .wnm-kt__fact-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(199, 255, 30, 0.18);
  color: #0a0a0b;
}
.nexin-root .wnm-kt__fact-body { display: flex; flex-direction: column; gap: 2px; font-family: "Plus Jakarta Sans", sans-serif; }
.nexin-root .wnm-kt__fact-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(10, 10, 11, 0.55);
}
.nexin-root .wnm-kt__fact-value {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 22px;
  color: #0a0a0b;
  line-height: 1.15;
}
.nexin-root .wnm-kt__fact-sub {
  font-size: 13px;
  color: rgba(10, 10, 11, 0.6);
}

/* Channels */
.nexin-root .wnm-kt__channels {
  background: #fff;
  padding: 56px 0;
  border-top: 1px solid rgba(10, 10, 11, 0.04);
}
.nexin-root .wnm-kt__channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.nexin-root .wnm-kt__channel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 32px 30px;
  background: #fafaf8;
  border: 1px solid rgba(10, 10, 11, 0.06);
  border-radius: 22px;
  text-decoration: none;
  color: #0a0a0b;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s, border-color 0.3s;
}
.nexin-root .wnm-kt__channel:hover {
  transform: translateY(-4px);
  border-color: var(--ch-accent);
  box-shadow: 0 24px 56px -20px rgba(10, 10, 11, 0.15);
}
.nexin-root .wnm-kt__channel-glow {
  position: absolute;
  top: -40%;
  right: -40%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, var(--ch-accent), transparent 70%);
  opacity: 0;
  filter: blur(48px);
  transition: opacity 0.5s;
  z-index: -1;
}
.nexin-root .wnm-kt__channel:hover .wnm-kt__channel-glow { opacity: 0.6; }
.nexin-root .wnm-kt__channel-type {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.55);
  font-weight: 600;
  margin-bottom: 4px;
}
.nexin-root .wnm-kt__channel-value {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  color: #0a0a0b;
  letter-spacing: -0.005em;
}
.nexin-root .wnm-kt__channel-note {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13.5px;
  color: rgba(10, 10, 11, 0.6);
  margin-top: 8px;
  line-height: 1.55;
}
.nexin-root .wnm-kt__channel-arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(10, 10, 11, 0.06);
  display: grid;
  place-items: center;
  color: #0a0a0b;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-kt__channel:hover .wnm-kt__channel-arrow {
  background: var(--ch-accent);
  transform: translate(3px, -3px);
}

@media (max-width: 991px) {
  .nexin-root .wnm-kt__hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .nexin-root .wnm-kt__channels-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nexin-root .wnm-kt__hero { padding: 56px 0 40px; }
  .nexin-root .wnm-kt__channel { padding: 24px; }
}

/* ═══════════════════════════════════════════════════════════════════
   UNIFIED MARKER HIGHLIGHT — single source of truth for em-highlight
   Covers full italic word, no clipping, multi-line safe.
   Apply to ALL section titles & footer titles consistently.
   ═══════════════════════════════════════════════════════════════════ */
.nexin-root .section-title__title em,
.nexin-root .wnm-footer__title em,
.nexin-root .wnm-mark {
  font-style: italic !important;
  font-weight: inherit;
  background-image: linear-gradient(
    transparent 62%,
    rgba(199, 255, 30, 0.55) 62%,
    rgba(199, 255, 30, 0.55) 95%,
    transparent 95%
  ) !important;
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important;
  background-position: 0 0 !important;
  padding: 0 0.08em !important;
  margin: 0 -0.04em !important;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  border-radius: 0;
  color: inherit !important;
}

/* ═══════════════════════════════════════════════════════════════════
   PROJEKTY LISTING
   ═══════════════════════════════════════════════════════════════════ */
.nexin-root .wnm-prj__hero {
  background: #fafaf8;
  padding: clamp(110px, 12vw, 160px) 0 clamp(48px, 5vw, 72px);
  position: relative;
  overflow: hidden;
}
.nexin-root .wnm-prj__hero > .container { position: relative; z-index: 1; }
.nexin-root .wnm-prj__title {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 1.02;
  margin: 14px 0 0;
  color: #0a0a0b;
  letter-spacing: -0.02em;
}
.nexin-root .wnm-prj__lead {
  margin: 24px 0 0;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(10, 10, 11, 0.7);
  max-width: 540px;
}
.nexin-root .wnm-prj__lead strong {
  color: #0a0a0b;
  background: linear-gradient(transparent 60%, rgba(199, 255, 30, 0.5) 60%);
  font-weight: 600;
}
.nexin-root .wnm-prj__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: end;
  margin-bottom: 56px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(10, 10, 11, 0.10);
}
/* Editorial stat trio — typographic, no dark card */
.nexin-root .wnm-prj__hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 0;
  background: transparent;
  color: inherit;
  border-radius: 0;
  position: static;
  overflow: visible;
}
.nexin-root .wnm-prj__hero-stats::before { content: none; }
.nexin-root .wnm-prj__hero-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(10, 10, 11, 0.10);
  position: relative;
  z-index: 1;
}
.nexin-root .wnm-prj__hero-stat:last-child { border-bottom: none; padding-bottom: 4px; }
.nexin-root .wnm-prj__hero-stat:first-child { padding-top: 0; }
.nexin-root .wnm-prj__hero-stat-val {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(38px, 4.5vw, 56px);
  line-height: 0.9;
  color: #0a0a0b;
  letter-spacing: -0.03em;
  min-width: 130px;
}
.nexin-root .wnm-prj__hero-stat-val em {
  font-size: 0.45em;
  font-style: italic;
  color: rgba(10, 10, 11, 0.4);
  margin-left: 2px;
  font-weight: 400;
}
.nexin-root .wnm-prj__hero-stat-lbl {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(10, 10, 11, 0.55);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

/* Filter band — stand-alone after hero */
.nexin-root .wnm-prj__filters {
  background: #fafaf8;
  padding: 28px 0;
  border-bottom: 1px solid rgba(10, 10, 11, 0.08);
}
.nexin-root .wnm-prj__filters .wnm-prj__filter-row {
  padding-top: 0;
  border-top: 0;
}
/* Filter row */
.nexin-root .wnm-prj__filter-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid rgba(10, 10, 11, 0.08);
}
.nexin-root .wnm-prj__filter-lbl {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.5);
  font-weight: 600;
  margin-right: 8px;
}
.nexin-root .wnm-prj__filter {
  all: unset;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 99px;
  background: transparent;
  border: 1.5px solid rgba(10, 10, 11, 0.12);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(10, 10, 11, 0.7);
  text-transform: capitalize;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-prj__filter:hover {
  border-color: #0a0a0b;
  color: #0a0a0b;
}
.nexin-root .wnm-prj__filter--active {
  background: #c7ff1e;
  border-color: #c7ff1e;
  color: #0a0a0b;
  font-weight: 700;
}

.nexin-root .wnm-prj__list {
  background: #fff;
  padding: 56px 0 80px;
  border-top: 1px solid rgba(10, 10, 11, 0.04);
}
.nexin-root .wnm-prj__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.nexin-root .wnm-prj__card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fafaf8;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
  border: 1px solid rgba(10, 10, 11, 0.06);
}
.nexin-root .wnm-prj__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px -20px rgba(10, 10, 11, 0.18);
  border-color: var(--prj-accent);
}
.nexin-root .wnm-prj__card--lg {
  grid-column: span 2;
  flex-direction: row;
  align-items: stretch;
}
.nexin-root .wnm-prj__card-img {
  background: #0a0a0b;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 10;
}
.nexin-root .wnm-prj__card--lg .wnm-prj__card-img {
  flex: 1.4;
  aspect-ratio: auto;
}
.nexin-root .wnm-prj__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-prj__card:hover .wnm-prj__card-img img { transform: scale(1.04); }
.nexin-root .wnm-prj__card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .wnm-prj__card--lg .wnm-prj__card-body {
  flex: 1;
  padding: 40px 36px;
  justify-content: center;
}
.nexin-root .wnm-prj__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.nexin-root .wnm-prj__card-cat {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.55);
  font-weight: 600;
}
.nexin-root .wnm-prj__card-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(10, 10, 11, 0.06);
  display: grid;
  place-items: center;
  color: #0a0a0b;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-prj__card:hover .wnm-prj__card-arrow {
  background: var(--prj-accent);
  transform: translate(3px, -3px);
}
.nexin-root .wnm-prj__card-name {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.1;
  margin: 0;
  color: #0a0a0b;
  letter-spacing: -0.01em;
}
.nexin-root .wnm-prj__card--lg .wnm-prj__card-name { font-size: 40px; }
.nexin-root .wnm-prj__card-summary {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(10, 10, 11, 0.7);
  margin: 0;
}
.nexin-root .wnm-prj__card-results {
  display: flex;
  gap: 20px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px dashed rgba(10, 10, 11, 0.1);
  flex-wrap: wrap;
}
.nexin-root .wnm-prj__card-result {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nexin-root .wnm-prj__card-result-val {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  line-height: 1;
}
.nexin-root .wnm-prj__card-result-lbl {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.55);
  font-weight: 600;
}

@media (max-width: 991px) {
  .nexin-root .wnm-prj__hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .nexin-root .wnm-prj__hero-stat-val { font-size: 36px; }
}
@media (max-width: 900px) {
  .nexin-root .wnm-prj__grid { grid-template-columns: 1fr; }
  .nexin-root .wnm-prj__card--lg { flex-direction: column; grid-column: span 1; }
  .nexin-root .wnm-prj__card--lg .wnm-prj__card-body { padding: 28px; }
  .nexin-root .wnm-prj__card--lg .wnm-prj__card-name { font-size: 30px; }
  .nexin-root .wnm-prj__card--lg .wnm-prj__card-img { aspect-ratio: 16/10; }
}
@media (max-width: 640px) {
  .nexin-root .wnm-prj__hero-stats { padding: 22px 24px; }
  .nexin-root .wnm-prj__filter-row { gap: 8px; }
  .nexin-root .wnm-prj__filter { padding: 6px 12px; font-size: 12px; }
  .nexin-root .wnm-prj__filter-lbl { width: 100%; margin: 0 0 4px; }
}

/* ═══════════════════════════════════════════════════════════════════
   CASE STUDY ([slug])
   ═══════════════════════════════════════════════════════════════════ */
.nexin-root .wnm-cs__hero {
  background: linear-gradient(180deg, #fafaf8 0%, #fff 100%);
  padding: 56px 0 64px;
  position: relative;
}
.nexin-root .wnm-cs__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(10, 10, 11, 0.6);
  text-decoration: none;
  margin-bottom: 32px;
  padding: 8px 14px;
  border-radius: 99px;
  background: rgba(10, 10, 11, 0.04);
  transition: all 0.25s;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .wnm-cs__back:hover {
  background: var(--cs-accent);
  color: #0a0a0b;
  transform: translateX(-3px);
}
.nexin-root .wnm-cs__hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.nexin-root .wnm-cs__meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-bottom: 18px;
}
.nexin-root .wnm-cs__chip {
  padding: 5px 12px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a0a0b;
}
.nexin-root .wnm-cs__year,
.nexin-root .wnm-cs__client {
  font-size: 13px;
  color: rgba(10, 10, 11, 0.55);
  font-weight: 500;
}
.nexin-root .wnm-cs__title {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 0.98;
  margin: 0;
  color: #0a0a0b;
  letter-spacing: -0.025em;
}
.nexin-root .wnm-cs__sector {
  margin: 12px 0 0;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 22px;
  color: rgba(10, 10, 11, 0.6);
}
.nexin-root .wnm-cs__summary {
  margin: 22px 0 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(10, 10, 11, 0.78);
  max-width: 560px;
}
.nexin-root .wnm-cs__hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.nexin-root .wnm-cs__hero-right {
  position: relative;
}
.nexin-root .wnm-cs__hero-right img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 32px 80px -28px rgba(10, 10, 11, 0.35);
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Results strip */
.nexin-root .wnm-cs__results {
  background: #0a0a0b;
  color: #f9f9f9;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.nexin-root .wnm-cs__results::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: var(--cs-accent, #c7ff1e);
  border-radius: 2px;
  box-shadow: 0 0 16px var(--cs-accent, rgba(199, 255, 30, 0.5));
}
.nexin-root .wnm-cs__results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.nexin-root .wnm-cs__result {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .wnm-cs__result-val {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.nexin-root .wnm-cs__result-lbl {
  font-size: 14px;
  font-weight: 600;
  color: #f9f9f9;
}
.nexin-root .wnm-cs__result-detail {
  font-size: 12.5px;
  color: rgba(249, 249, 249, 0.6);
}

/* Story */
.nexin-root .wnm-cs__story {
  background: #fff;
  padding: 96px 0;
}
.nexin-root .wnm-cs__story-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
}
.nexin-root .wnm-cs__block {
  margin-bottom: 56px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .wnm-cs__block:last-child { margin-bottom: 0; }
.nexin-root .wnm-cs__block-num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 64px;
  line-height: 1;
  display: block;
  letter-spacing: -0.03em;
}
.nexin-root .wnm-cs__block-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 30px;
  margin: 12px 0 18px;
  color: #0a0a0b;
  letter-spacing: -0.01em;
}
.nexin-root .wnm-cs__block-text {
  font-size: 16.5px;
  line-height: 1.75;
  color: rgba(10, 10, 11, 0.78);
  margin: 0;
  max-width: 640px;
}
.nexin-root .wnm-cs__sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 28px;
  background: #fafaf8;
  border-radius: 18px;
  border: 1px solid rgba(10, 10, 11, 0.06);
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .wnm-cs__sidebar-block { display: flex; flex-direction: column; gap: 10px; }
.nexin-root .wnm-cs__sidebar-lbl {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.5);
  font-weight: 600;
}
.nexin-root .wnm-cs__sidebar-val {
  font-family: "Fraunces", serif;
  font-size: 22px;
  color: #0a0a0b;
}
.nexin-root .wnm-cs__sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nexin-root .wnm-cs__sidebar-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(10, 10, 11, 0.78);
}
.nexin-root .wnm-cs__sidebar-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.nexin-root .wnm-cs__sidebar-link {
  font-size: 14px;
  color: #0a0a0b;
  text-decoration: none;
  border-bottom: 1.5px solid var(--cs-accent, #c7ff1e);
  align-self: flex-start;
  transition: background 0.2s;
}
.nexin-root .wnm-cs__sidebar-link:hover {
  background: rgba(199, 255, 30, 0.18);
}

/* Quote */
.nexin-root .wnm-cs__quote {
  background: #fafaf8;
  padding: 80px 0;
}
.nexin-root .wnm-cs__quote-card {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  border-radius: 28px;
  padding: 56px 60px;
  position: relative;
  border: 1px solid rgba(10, 10, 11, 0.06);
  box-shadow: 0 16px 48px -20px rgba(10, 10, 11, 0.12);
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .wnm-cs__quote-mark {
  position: absolute;
  top: 24px;
  left: 32px;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 120px;
  line-height: 0.7;
  color: var(--cs-accent, #c7ff1e);
  opacity: 0.6;
}
.nexin-root .wnm-cs__quote-text {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.45;
  color: #0a0a0b;
  margin: 32px 0 24px;
  position: relative;
  z-index: 1;
}
.nexin-root .wnm-cs__quote-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px dashed rgba(10, 10, 11, 0.1);
  padding-top: 20px;
}
.nexin-root .wnm-cs__quote-name {
  font-weight: 600;
  font-size: 15.5px;
  color: #0a0a0b;
}
.nexin-root .wnm-cs__quote-role {
  font-size: 13px;
  color: rgba(10, 10, 11, 0.6);
}

/* Related */
.nexin-root .wnm-cs__related {
  background: #fff;
  padding: 80px 0;
}
.nexin-root .wnm-cs__related-title {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  margin: 12px 0 32px;
  color: #0a0a0b;
}
.nexin-root .wnm-cs__related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.nexin-root .wnm-cs__related-card {
  background: #fafaf8;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(10, 10, 11, 0.06);
}
.nexin-root .wnm-cs__related-card:hover {
  transform: translateY(-4px);
  border-color: var(--cs-accent);
  box-shadow: 0 16px 36px -16px rgba(10, 10, 11, 0.12);
}
.nexin-root .wnm-cs__related-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.nexin-root .wnm-cs__related-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .wnm-cs__related-cat {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.55);
  font-weight: 600;
}
.nexin-root .wnm-cs__related-name {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 22px;
  margin: 0;
  color: #0a0a0b;
  letter-spacing: -0.01em;
}
.nexin-root .wnm-cs__related-arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--cs-accent);
  font-size: 18px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-cs__related-card:hover .wnm-cs__related-arrow {
  transform: translate(3px, -3px);
}

@media (max-width: 991px) {
  .nexin-root .wnm-cs__hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .nexin-root .wnm-cs__results-grid { grid-template-columns: 1fr; gap: 28px; }
  .nexin-root .wnm-cs__story-grid { grid-template-columns: 1fr; gap: 40px; }
  .nexin-root .wnm-cs__sidebar { position: static; }
  .nexin-root .wnm-cs__related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nexin-root .wnm-cs__hero { padding: 40px 0 48px; }
  .nexin-root .wnm-cs__story { padding: 64px 0; }
  .nexin-root .wnm-cs__quote { padding: 56px 0; }
  .nexin-root .wnm-cs__quote-card { padding: 36px 28px; }
  .nexin-root .wnm-cs__quote-mark { font-size: 80px; left: 18px; top: 14px; }
  .nexin-root .wnm-cs__block-title { font-size: 24px; }
  .nexin-root .wnm-cs__block-text { font-size: 15.5px; }
  .nexin-root .wnm-cs__related { padding: 56px 0; }
}

/* ═══════════════════════════════════════════════════════════════════
   O NÁS — Hero + Stats + Manifesto + Timeline
   ═══════════════════════════════════════════════════════════════════ */
.nexin-root .wnm-ab__hero {
  background: #fafaf8;
  padding: 80px 0 96px;
  position: relative;
  overflow: hidden;
}
.nexin-root .wnm-ab__hero > .container { position: relative; z-index: 1; }
.nexin-root .wnm-ab__hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}
.nexin-root .wnm-ab__title {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 1.02;
  margin: 14px 0 0;
  color: #0a0a0b;
  letter-spacing: -0.02em;
}
.nexin-root .wnm-ab__lead {
  margin: 32px 0 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 17.5px;
  line-height: 1.7;
  color: rgba(10, 10, 11, 0.75);
  max-width: 560px;
}
.nexin-root .wnm-ab__lead strong {
  color: #0a0a0b;
  font-weight: 700;
}
.nexin-root .wnm-ab__hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* Hero card with M monogram */
.nexin-root .wnm-ab__hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nexin-root .wnm-ab__hero-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(10, 10, 11, 0.06);
  border-radius: 28px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 380px;
  box-shadow: 0 32px 80px -32px rgba(10, 10, 11, 0.25);
  z-index: 2;
}
.nexin-root .wnm-ab__hero-mark {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  background: linear-gradient(135deg, #c7ff1e 0%, #94d600 100%);
  color: #0a0a0b;
  display: grid;
  place-items: center;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 56px;
  letter-spacing: -0.02em;
  box-shadow: 0 16px 40px -16px rgba(199, 255, 30, 0.6);
}
.nexin-root .wnm-ab__hero-card-eyebrow {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #0a0a0b;
  background: #c7ff1e;
  padding: 6px 12px;
  border-radius: 99px;
  align-self: flex-start;
}
.nexin-root .wnm-ab__hero-card-num-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 4px 0 8px;
}
.nexin-root .wnm-ab__hero-card-num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 88px;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: #0a0a0b;
}
.nexin-root .wnm-ab__hero-card-num-lbl {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(10, 10, 11, 0.7);
  line-height: 1.25;
}
.nexin-root .wnm-ab__hero-card-list {
  list-style: none;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px dashed rgba(10, 10, 11, 0.12);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .wnm-ab__hero-card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(10, 10, 11, 0.78);
  font-weight: 500;
}
.nexin-root .wnm-ab__hero-card-list li > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c7ff1e;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(199, 255, 30, 0.18);
}
.nexin-root .wnm-ab__hero-loc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12.5px;
  color: rgba(10, 10, 11, 0.55);
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(10, 10, 11, 0.06);
}
.nexin-root .wnm-ab__hero-pulse {
  position: absolute;
  inset: 20px;
  border-radius: 32px;
  background: radial-gradient(circle, rgba(199, 255, 30, 0.25) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  animation: wnmAbPulse 6s ease-in-out infinite;
}
@keyframes wnmAbPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

/* Stats strip */
.nexin-root .wnm-ab__stats {
  background: #0a0a0b;
  color: #f9f9f9;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.nexin-root .wnm-ab__stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: #c7ff1e;
  border-radius: 2px;
  box-shadow: 0 0 16px rgba(199, 255, 30, 0.5);
}
.nexin-root .wnm-ab__stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.nexin-root .wnm-ab__stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .wnm-ab__stat-val {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(48px, 5.5vw, 64px);
  line-height: 1;
  color: #c7ff1e;
  letter-spacing: -0.02em;
}
.nexin-root .wnm-ab__stat-lbl {
  font-size: 13.5px;
  color: rgba(249, 249, 249, 0.7);
  font-weight: 500;
}

/* Section heads */
.nexin-root .wnm-ab__section-head { margin-bottom: 48px; }
.nexin-root .wnm-ab__section-title {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  margin: 12px 0 0;
  color: #0a0a0b;
}

/* Principles */
.nexin-root .wnm-ab__principles {
  background: #fff;
  padding: 96px 0;
}
.nexin-root .wnm-ab__principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.nexin-root .wnm-ab__principle {
  position: relative;
  background: #fafaf8;
  border: 1px solid rgba(10, 10, 11, 0.06);
  border-radius: 20px;
  padding: 36px 32px 32px;
  font-family: "Plus Jakarta Sans", sans-serif;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.3s;
}
.nexin-root .wnm-ab__principle:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 255, 30, 0.4);
  box-shadow: 0 16px 40px -16px rgba(10, 10, 11, 0.12);
}
.nexin-root .wnm-ab__principle-num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  color: rgba(10, 10, 11, 0.25);
}
.nexin-root .wnm-ab__principle-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #c7ff1e;
  color: #0a0a0b;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.nexin-root .wnm-ab__principle-icon svg { width: 24px; height: 24px; }
.nexin-root .wnm-ab__principle-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 10px;
  color: #0a0a0b;
  letter-spacing: -0.005em;
}
.nexin-root .wnm-ab__principle-body {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(10, 10, 11, 0.72);
  margin: 0;
}

/* Timeline */
.nexin-root .wnm-ab__timeline-sec {
  background: #fafaf8;
  padding: 96px 0;
  border-top: 1px solid rgba(10, 10, 11, 0.04);
}
.nexin-root .wnm-ab__timeline {
  list-style: none;
  margin: 0;
  padding: 0 0 0 32px;
  position: relative;
}
.nexin-root .wnm-ab__timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(10,10,11,0.12) 10%, rgba(10,10,11,0.12) 90%, transparent);
}
.nexin-root .wnm-ab__t-item {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 22px 0;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .wnm-ab__t-item::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 32px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fafaf8;
  border: 3px solid #c7ff1e;
  box-shadow: 0 0 0 4px #fafaf8, 0 0 16px rgba(199, 255, 30, 0.4);
}
.nexin-root .wnm-ab__t-year {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
  color: #0a0a0b;
  line-height: 1;
  letter-spacing: -0.02em;
}
.nexin-root .wnm-ab__t-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 8px;
  color: #0a0a0b;
}
.nexin-root .wnm-ab__t-text {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(10, 10, 11, 0.72);
  margin: 0;
  max-width: 540px;
}

@media (max-width: 991px) {
  .nexin-root .wnm-ab__hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .nexin-root .wnm-ab__hero-right { justify-content: flex-start; }
  .nexin-root .wnm-ab__stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 24px; }
  .nexin-root .wnm-ab__principles-grid { grid-template-columns: 1fr; }
  .nexin-root .wnm-ab__t-item { grid-template-columns: 90px 1fr; gap: 20px; }
  .nexin-root .wnm-ab__t-year { font-size: 28px; }
}
@media (max-width: 640px) {
  .nexin-root .wnm-ab__hero { padding: 56px 0 64px; }
  .nexin-root .wnm-ab__principles { padding: 64px 0; }
  .nexin-root .wnm-ab__timeline-sec { padding: 64px 0; }
  .nexin-root .wnm-ab__hero-card { padding: 28px; }
  .nexin-root .wnm-ab__hero-mark { width: 72px; height: 72px; font-size: 42px; }
  .nexin-root .wnm-ab__t-item { grid-template-columns: 1fr; gap: 6px; padding: 18px 0; }
  .nexin-root .wnm-ab__t-year { font-size: 24px; }
}

/* ═══════════════════════════════════════════════════════════════════
   BLOG LISTING + ARTICLE
   ═══════════════════════════════════════════════════════════════════ */
.nexin-root .wnm-bg__hero {
  background: #fafaf8;
  padding: 80px 0 56px;
}
.nexin-root .wnm-bg__title {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 1.02;
  margin: 14px 0 0;
  color: #0a0a0b;
  letter-spacing: -0.02em;
}
.nexin-root .wnm-bg__lead {
  margin: 24px 0 0;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(10, 10, 11, 0.7);
  max-width: 540px;
}
.nexin-root .wnm-bg__hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 36px;
}
.nexin-root .wnm-bg__hero-card {
  padding: 32px;
  background: linear-gradient(135deg, #0a0a0b 0%, #1a1a1d 100%);
  color: #f9f9f9;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .wnm-bg__hero-card::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199,255,30,0.16), transparent 70%);
  pointer-events: none;
}
.nexin-root .wnm-bg__hero-card-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #c7ff1e;
  z-index: 1;
}
.nexin-root .wnm-bg__hero-card-stat {
  display: flex;
  align-items: baseline;
  gap: 14px;
  z-index: 1;
}
.nexin-root .wnm-bg__hero-card-num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 72px;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: #f9f9f9;
}
.nexin-root .wnm-bg__hero-card-num-lbl {
  font-size: 13px;
  font-weight: 600;
  color: rgba(249,249,249,0.7);
  line-height: 1.25;
}
.nexin-root .wnm-bg__hero-card-list {
  list-style: none;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px dashed rgba(249,249,249,0.14);
  display: flex;
  flex-direction: column;
  gap: 9px;
  z-index: 1;
}
.nexin-root .wnm-bg__hero-card-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(249,249,249,0.78);
  font-weight: 500;
}
.nexin-root .wnm-bg__hero-card-list li > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c7ff1e;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(199,255,30,0.18);
}

/* Filter row — same pattern as projekty */
.nexin-root .wnm-bg__filter-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid rgba(10, 10, 11, 0.08);
}
.nexin-root .wnm-bg__filter-lbl {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.5);
  font-weight: 600;
  margin-right: 8px;
}
.nexin-root .wnm-bg__filter {
  all: unset;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 99px;
  background: transparent;
  border: 1.5px solid rgba(10, 10, 11, 0.12);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(10, 10, 11, 0.7);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-bg__filter:hover {
  border-color: #0a0a0b;
  color: #0a0a0b;
}
.nexin-root .wnm-bg__filter--active {
  background: #c7ff1e;
  border-color: #c7ff1e;
  color: #0a0a0b;
  font-weight: 700;
}
@media (max-width: 991px) {
  .nexin-root .wnm-bg__hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .nexin-root .wnm-bg__hero-card-num { font-size: 56px; }
}
@media (max-width: 640px) {
  .nexin-root .wnm-bg__hero-card { padding: 24px; }
  .nexin-root .wnm-bg__filter-row { gap: 8px; }
  .nexin-root .wnm-bg__filter { padding: 6px 12px; font-size: 12px; }
  .nexin-root .wnm-bg__filter-lbl { width: 100%; margin: 0 0 4px; }
}

/* Featured */
.nexin-root .wnm-bg__featured {
  background: #fff;
  padding: 56px 0;
  border-top: 1px solid rgba(10, 10, 11, 0.04);
}
.nexin-root .wnm-bg__featured-label {
  display: inline-block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0a0a0b;
  background: #c7ff1e;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
}
.nexin-root .wnm-bg__featured-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  background: linear-gradient(135deg, #0a0a0b 0%, #1a1a1d 100%);
  border-radius: 28px;
  overflow: hidden;
  text-decoration: none;
  color: #f9f9f9;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .wnm-bg__featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px -24px rgba(10, 10, 11, 0.4);
  color: #f9f9f9;
}
.nexin-root .wnm-bg__featured-body {
  padding: 56px 56px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.nexin-root .wnm-bg__featured-title {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.015em;
}
.nexin-root .wnm-bg__featured-desc {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(249, 249, 249, 0.78);
  margin: 0;
}
.nexin-root .wnm-bg__featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: #c7ff1e;
  color: #0a0a0b;
  border-radius: 99px;
  font-weight: 700;
  font-size: 14.5px;
  align-self: flex-start;
  margin-top: 8px;
  transition: transform 0.3s;
}
.nexin-root .wnm-bg__featured-card:hover .wnm-bg__featured-cta {
  transform: translateX(4px);
}
.nexin-root .wnm-bg__featured-side {
  position: relative;
  background: #c7ff1e;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.nexin-root .wnm-bg__featured-art {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.nexin-root .wnm-bg__featured-num {
  position: absolute;
  z-index: 2;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: clamp(120px, 16vw, 200px);
  font-weight: 400;
  color: #0a0a0b;
  letter-spacing: -0.04em;
  line-height: 1;
}

/* Post meta */
.nexin-root .wnm-bg__post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12.5px;
  color: rgba(10, 10, 11, 0.55);
  font-weight: 500;
}
.nexin-root .wnm-bg__featured-card .wnm-bg__post-meta {
  color: rgba(249, 249, 249, 0.65);
}
.nexin-root .wnm-bg__post-cat {
  background: rgba(199, 255, 30, 0.18);
  color: #0a0a0b;
  padding: 4px 10px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nexin-root .wnm-bg__featured-card .wnm-bg__post-cat {
  background: rgba(199, 255, 30, 0.25);
  color: #c7ff1e;
}
.nexin-root .wnm-bg__post-dot { color: rgba(10, 10, 11, 0.3); }

/* Grid */
.nexin-root .wnm-bg__grid-sec {
  background: #fff;
  padding: 56px 0 96px;
}
.nexin-root .wnm-bg__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.nexin-root .wnm-bg__post-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px 28px 28px;
  background: #fafaf8;
  border: 1px solid rgba(10, 10, 11, 0.06);
  border-radius: 22px;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .wnm-bg__post-card:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 255, 30, 0.5);
  box-shadow: 0 16px 40px -16px rgba(10, 10, 11, 0.12);
}
.nexin-root .wnm-bg__post-num-box {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  color: rgba(10, 10, 11, 0.18);
  line-height: 1;
}
.nexin-root .wnm-bg__post-title {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  color: #0a0a0b;
  margin: 0;
  letter-spacing: -0.005em;
}
.nexin-root .wnm-bg__post-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(10, 10, 11, 0.7);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nexin-root .wnm-bg__post-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed rgba(10, 10, 11, 0.1);
}
.nexin-root .wnm-bg__post-date {
  font-size: 12px;
  color: rgba(10, 10, 11, 0.5);
}
.nexin-root .wnm-bg__post-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(10, 10, 11, 0.06);
  display: grid;
  place-items: center;
  color: #0a0a0b;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-bg__post-card:hover .wnm-bg__post-arrow {
  background: #c7ff1e;
  transform: translate(3px, -3px);
}

@media (max-width: 991px) {
  .nexin-root .wnm-bg__featured-card { grid-template-columns: 1fr; }
  .nexin-root .wnm-bg__featured-side { aspect-ratio: 16/8; }
  .nexin-root .wnm-bg__featured-body { padding: 36px 32px; }
  .nexin-root .wnm-bg__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .nexin-root .wnm-bg__grid { grid-template-columns: 1fr; }
  .nexin-root .wnm-bg__featured-body { padding: 28px 24px; }
}

/* ═══════════════════════════════════════════════════════════════════
   BLOG ARTICLE ([slug])
   ═══════════════════════════════════════════════════════════════════ */
.nexin-root .wnm-bp__hero {
  background: #fafaf8;
  padding: 56px 0 40px;
}
.nexin-root .wnm-bp__hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0 18px;
  flex-wrap: wrap;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .wnm-bp__chip {
  padding: 5px 12px;
  background: #c7ff1e;
  color: #0a0a0b;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nexin-root .wnm-bp__date,
.nexin-root .wnm-bp__read {
  font-size: 13px;
  color: rgba(10, 10, 11, 0.55);
  font-weight: 500;
}
.nexin-root .wnm-bp__title {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  margin: 0;
  color: #0a0a0b;
  letter-spacing: -0.02em;
  max-width: 880px;
}
.nexin-root .wnm-bp__desc {
  margin: 22px 0 0;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: rgba(10, 10, 11, 0.65);
  max-width: 760px;
}

/* Content layout */
.nexin-root .wnm-bp__content {
  background: #fff;
  padding: 56px 0 96px;
  border-top: 1px solid rgba(10, 10, 11, 0.04);
}
.nexin-root .wnm-bp__layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  align-items: start;
}
.nexin-root .wnm-bp__toc {
  position: sticky;
  top: 100px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .wnm-bp__toc-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.45);
  margin-bottom: 14px;
}
.nexin-root .wnm-bp__toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid rgba(10, 10, 11, 0.08);
}
.nexin-root .wnm-bp__toc a {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  color: rgba(10, 10, 11, 0.6);
  text-decoration: none;
  border-left: 2px solid transparent;
  margin-left: -1px;
  transition: all 0.2s;
  line-height: 1.4;
}
.nexin-root .wnm-bp__toc a:hover {
  color: #0a0a0b;
  background: rgba(199, 255, 30, 0.12);
  border-left-color: #c7ff1e;
}
.nexin-root .wnm-bp__toc-share { margin-top: 24px; }
.nexin-root .wnm-bp__share-row {
  display: flex;
  gap: 8px;
}
.nexin-root .wnm-bp__share-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(10, 10, 11, 0.12);
  display: grid;
  place-items: center;
  color: rgba(10, 10, 11, 0.7);
  transition: all 0.3s;
}
.nexin-root .wnm-bp__share-row a:hover {
  background: #c7ff1e;
  border-color: #c7ff1e;
  color: #0a0a0b;
  transform: translateY(-2px);
}

/* Article body */
.nexin-root .wnm-bp__article {
  max-width: 760px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
/* TL;DR box — AEO/GEO citation magnet for LLMs (ChatGPT, Perplexity, Gemini) */
.nexin-root .wnm-bp__tldr {
  display: block;
  margin: 0 0 32px;
  padding: 22px 26px;
  background: linear-gradient(135deg, rgba(199, 255, 30, 0.12) 0%, rgba(199, 255, 30, 0.04) 100%);
  border: 1px solid rgba(199, 255, 30, 0.4);
  border-radius: 16px;
  position: relative;
}
.nexin-root .wnm-bp__tldr-label {
  display: inline-block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0a0a0b;
  background: #c7ff1e;
  padding: 4px 10px;
  border-radius: 99px;
  margin-bottom: 12px;
}
.nexin-root .wnm-bp__tldr-text {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15.5px;
  line-height: 1.6;
  color: #0a0a0b;
  font-weight: 500;
}

.nexin-root .wnm-bp__lead {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.55;
  color: rgba(10, 10, 11, 0.72);
  margin: 0 0 36px;
  padding-left: 20px;
  border-left: 4px solid #c7ff1e;
}
.nexin-root .wnm-bp__section {
  margin-bottom: 44px;
  scroll-margin-top: 100px;
}
.nexin-root .wnm-bp__h2 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.15;
  color: #0a0a0b;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
  position: relative;
  padding-left: 18px;
}
.nexin-root .wnm-bp__h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 4px;
  border-radius: 2px;
  background: #c7ff1e;
}
.nexin-root .wnm-bp__p {
  font-size: 16.5px;
  line-height: 1.78;
  color: rgba(10, 10, 11, 0.78);
  margin: 0 0 16px;
}
.nexin-root .wnm-bp__ul {
  margin: 0 0 18px;
  padding: 0 0 0 24px;
  list-style: none;
}
.nexin-root .wnm-bp__ul li {
  position: relative;
  padding-left: 4px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(10, 10, 11, 0.78);
}
.nexin-root .wnm-bp__ul li::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c7ff1e;
}
.nexin-root .wnm-bp__callout {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 22px 24px;
  border-radius: 16px;
  margin: 24px 0;
}
.nexin-root .wnm-bp__callout--info {
  background: rgba(160, 217, 255, 0.18);
  border-left: 4px solid #5fa8e0;
}
.nexin-root .wnm-bp__callout--tip {
  background: rgba(199, 255, 30, 0.15);
  border-left: 4px solid #c7ff1e;
}
.nexin-root .wnm-bp__callout--warning {
  background: rgba(255, 184, 74, 0.15);
  border-left: 4px solid #ffb84a;
}
.nexin-root .wnm-bp__callout-icon {
  font-size: 20px;
  line-height: 1;
  margin-top: 2px;
}
.nexin-root .wnm-bp__callout p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #0a0a0b;
}

.nexin-root .wnm-bp__author {
  margin-top: 56px;
  padding: 28px 32px;
  background: #fafaf8;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(10, 10, 11, 0.06);
}
.nexin-root .wnm-bp__author-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #c7ff1e;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 8px 24px -10px rgba(199, 255, 30, 0.6);
}
.nexin-root .wnm-bp__author-mark img {
  width: 88%;
  height: 88%;
  object-fit: contain;
}
.nexin-root .wnm-bp__author > div { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.nexin-root .wnm-bp__author-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #0a0a0b;
}
.nexin-root .wnm-bp__author-role {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  color: rgba(10, 10, 11, 0.6);
}
.nexin-root .wnm-bp__author-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: #0a0a0b;
  color: #fff;
  border-radius: 99px;
  font-weight: 600;
  font-size: 13.5px;
  text-decoration: none;
  transition: all 0.3s;
}
.nexin-root .wnm-bp__author-cta:hover {
  background: #c7ff1e;
  color: #0a0a0b;
}

/* Related */
.nexin-root .wnm-bp__related {
  background: #fafaf8;
  padding: 80px 0;
}
.nexin-root .wnm-bp__related-title {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  margin: 12px 0 32px;
  color: #0a0a0b;
}
.nexin-root .wnm-bp__related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .nexin-root .wnm-bp__layout { grid-template-columns: 1fr; gap: 32px; }
  .nexin-root .wnm-bp__toc { position: static; }
  .nexin-root .wnm-bp__related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nexin-root .wnm-bp__hero { padding: 40px 0 32px; }
  .nexin-root .wnm-bp__content { padding: 40px 0 64px; }
  .nexin-root .wnm-bp__h2 { font-size: 24px; }
  .nexin-root .wnm-bp__p { font-size: 15.5px; }
  .nexin-root .wnm-bp__lead { font-size: 18px; padding-left: 14px; }
  .nexin-root .wnm-bp__author { flex-direction: column; align-items: flex-start; padding: 24px; }
}

/* ═══════════════════════════════════════════════════════════════════
   CITY LANDING PAGES (/tvorba-webov-{mesto})
   ═══════════════════════════════════════════════════════════════════ */
.nexin-root .wnm-city__hero {
  background: #fafaf8;
  padding: 80px 0 80px;
  position: relative;
  overflow: hidden;
}
.nexin-root .wnm-city__title {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 1.02;
  margin: 14px 0 0;
  color: #0a0a0b;
  letter-spacing: -0.02em;
}
.nexin-root .wnm-city__lead {
  margin: 28px 0 0;
  font-size: 17.5px;
  line-height: 1.65;
  color: rgba(10, 10, 11, 0.7);
  max-width: 720px;
}
.nexin-root .wnm-city__hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.nexin-root .wnm-city__hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(10, 10, 11, 0.08);
  width: max-content;
  max-width: 100%;
}
.nexin-root .wnm-city__hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .wnm-city__hero-stat-val {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
  color: #0a0a0b;
  line-height: 1;
  letter-spacing: -0.02em;
}
.nexin-root .wnm-city__hero-stat-lbl {
  font-size: 12.5px;
  color: rgba(10, 10, 11, 0.55);
  font-weight: 500;
}

/* Insight */
.nexin-root .wnm-city__insight {
  background: #fff;
  padding: 64px 0;
  border-top: 1px solid rgba(10, 10, 11, 0.04);
}
.nexin-root .wnm-city__insight-card {
  background: linear-gradient(135deg, #0a0a0b 0%, #1a1a1d 100%);
  color: #f9f9f9;
  border-radius: 28px;
  padding: 56px;
  position: relative;
  overflow: hidden;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .wnm-city__insight-card::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 255, 30, 0.18), transparent 70%);
  pointer-events: none;
}
.nexin-root .wnm-city__insight-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #c7ff1e;
  margin-bottom: 18px;
}
.nexin-root .wnm-city__insight-text {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.45;
  color: #f9f9f9;
  margin: 0 0 32px;
  max-width: 880px;
  position: relative;
  z-index: 1;
}
.nexin-root .wnm-city__insight-industries {
  border-top: 1px solid rgba(249, 249, 249, 0.14);
  padding-top: 24px;
  position: relative;
  z-index: 1;
}
.nexin-root .wnm-city__insight-industries-lbl {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(249, 249, 249, 0.55);
  margin-bottom: 14px;
}
.nexin-root .wnm-city__insight-industries ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.nexin-root .wnm-city__insight-industries li {
  background: rgba(249, 249, 249, 0.06);
  color: #f9f9f9;
  padding: 7px 14px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
}

/* Highlights */
.nexin-root .wnm-city__highlights {
  background: #fff;
  padding: 80px 0;
}
.nexin-root .wnm-city__h-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.nexin-root .wnm-city__h-card {
  background: #fafaf8;
  border: 1px solid rgba(10, 10, 11, 0.06);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .wnm-city__h-card:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 255, 30, 0.4);
  box-shadow: 0 16px 40px -16px rgba(10, 10, 11, 0.12);
}
.nexin-root .wnm-city__h-num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
  color: #c7ff1e;
  display: block;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.nexin-root .wnm-city__h-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 19px;
  margin: 0 0 12px;
  color: #0a0a0b;
  letter-spacing: -0.005em;
}
.nexin-root .wnm-city__h-body {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(10, 10, 11, 0.72);
  margin: 0;
}

/* Tiers quick pick */
.nexin-root .wnm-city__tiers {
  background: #fafaf8;
  padding: 80px 0;
  border-top: 1px solid rgba(10, 10, 11, 0.04);
}
.nexin-root .wnm-city__tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.nexin-root .wnm-city__tier {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 28px 32px;
  background: #fff;
  border: 1px solid rgba(10, 10, 11, 0.06);
  border-radius: 18px;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .wnm-city__tier:hover {
  transform: translateY(-3px);
  border-color: #c7ff1e;
  box-shadow: 0 16px 36px -16px rgba(10, 10, 11, 0.12);
}
.nexin-root .wnm-city__tier--hl {
  background: linear-gradient(180deg, #c7ff1e 0%, #d4ff44 100%);
  border-color: transparent;
  box-shadow: 0 16px 40px -16px rgba(199, 255, 30, 0.45);
}
.nexin-root .wnm-city__tier-name {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 22px;
  color: #0a0a0b;
  letter-spacing: -0.01em;
}
.nexin-root .wnm-city__tier-price {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 36px;
  font-weight: 400;
  color: #0a0a0b;
  line-height: 1;
  margin: 6px 0;
  letter-spacing: -0.02em;
}
.nexin-root .wnm-city__tier-desc {
  font-size: 13.5px;
  color: rgba(10, 10, 11, 0.7);
  font-weight: 500;
}
.nexin-root .wnm-city__tier-dur {
  font-size: 12px;
  color: rgba(10, 10, 11, 0.55);
  margin-top: 2px;
}
.nexin-root .wnm-city__tiers-note {
  margin: 28px 0 0;
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  color: rgba(10, 10, 11, 0.55);
}
.nexin-root .wnm-city__tiers-note strong { color: #0a0a0b; }

/* FAQ on city page — uses .wnm-faq__ classes from FAQ component (details/summary native) */
.nexin-root .wnm-city__faq {
  background: #fff;
  padding: 80px 0;
}
.nexin-root .wnm-city__faq .wnm-faq__item details {
  padding: 0;
}
.nexin-root .wnm-city__faq .wnm-faq__item details summary {
  list-style: none;
  cursor: pointer;
}
.nexin-root .wnm-city__faq .wnm-faq__item details summary::-webkit-details-marker { display: none; }
.nexin-root .wnm-city__faq .wnm-faq__item details[open] .wnm-faq__icon {
  background: #c7ff1e;
  transform: rotate(135deg);
}
.nexin-root .wnm-city__faq .wnm-faq__item .wnm-faq__panel-inner p {
  padding: 0 28px 28px 82px;
  margin: -4px 0 0;
  color: rgba(10, 10, 11, 0.72);
  font-size: 15.5px;
  line-height: 1.7;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Other cities */
.nexin-root .wnm-city__other {
  background: #0a0a0b;
  color: #f9f9f9;
  padding: 56px 0 64px;
}
.nexin-root .wnm-city__other-label {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(249, 249, 249, 0.5);
  margin-bottom: 22px;
}
.nexin-root .wnm-city__other-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.nexin-root .wnm-city__other-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: rgba(249, 249, 249, 0.06);
  border: 1px solid rgba(249, 249, 249, 0.12);
  border-radius: 99px;
  color: #f9f9f9;
  text-decoration: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-city__other-link:hover {
  background: #c7ff1e;
  border-color: #c7ff1e;
  color: #0a0a0b;
  transform: translateY(-2px);
}
.nexin-root .wnm-city__other-link span {
  opacity: 0.5;
  transition: transform 0.3s, opacity 0.3s;
}
.nexin-root .wnm-city__other-link:hover span {
  opacity: 1;
  transform: translateX(3px);
}

@media (max-width: 991px) {
  .nexin-root .wnm-city__hero { padding: 56px 0 64px; }
  .nexin-root .wnm-city__hero-stats { grid-template-columns: repeat(3, 1fr); gap: 24px; width: 100%; }
  .nexin-root .wnm-city__insight-card { padding: 36px; }
  .nexin-root .wnm-city__h-grid { grid-template-columns: 1fr; }
  .nexin-root .wnm-city__tiers-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nexin-root .wnm-city__hero-stats { grid-template-columns: 1fr; gap: 18px; }
  .nexin-root .wnm-city__hero-stat-val { font-size: 28px; }
  .nexin-root .wnm-city__insight-card { padding: 28px; }
  .nexin-root .wnm-city__insight-text { font-size: 17px; }
  .nexin-root .wnm-city__h-card { padding: 24px; }
  .nexin-root .wnm-city__faq .wnm-faq__item .wnm-faq__panel-inner p {
    padding: 0 16px 20px 16px;
    font-size: 14px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   BLOG REDESIGN — Editorial magazine layout
   Hero · category chips · magazine cover featured · 3-col grid
   ═══════════════════════════════════════════════════════════════════ */

.nexin-root .wnm-bg2__hero {
  background: #f9f9f9;
  padding-top: clamp(120px, 14vh, 160px);
  padding-bottom: 56px;
  position: relative;
  overflow: hidden;
}
.nexin-root .wnm-bg2__hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.nexin-root .wnm-bg2__hero > .container {
  position: relative;
  z-index: 1;
}
.nexin-root .wnm-bg2__hero-inner {
  max-width: 880px;
}
.nexin-root .wnm-bg2__title {
  font-family: "Fraunces", "Marcellus", serif;
  font-weight: 400;
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 1.02;
  margin: 14px 0 0;
  color: #0a0a0b;
  letter-spacing: -0.02em;
}
.nexin-root .wnm-bg2__title em {
  font-style: italic;
  color: #c7ff1e;
  -webkit-text-stroke: 1px #0a0a0b;
}
.nexin-root .wnm-bg2__lead {
  margin: 28px 0 0;
  font-size: 17.5px;
  line-height: 1.65;
  color: rgba(10, 10, 11, 0.7);
  max-width: 720px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .wnm-bg2__hero-meta {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(10, 10, 11, 0.1);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.nexin-root .wnm-bg2__hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nexin-root .wnm-bg2__hero-meta-num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 0.9;
  color: #0a0a0b;
  letter-spacing: -0.03em;
}
.nexin-root .wnm-bg2__hero-meta-lbl {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(10, 10, 11, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* FILTER STRIP */
.nexin-root .wnm-bg2__filter {
  background: #fff;
  border-top: 1px solid rgba(10, 10, 11, 0.06);
  border-bottom: 1px solid rgba(10, 10, 11, 0.06);
  padding: 24px 0;
  position: sticky;
  top: 76px;
  z-index: 10;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.92);
}
.nexin-root .wnm-bg2__filter-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.nexin-root .wnm-bg2__filter-lbl {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.55);
}
.nexin-root .wnm-bg2__filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.nexin-root .wnm-bg2__chip {
  all: unset;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  border-radius: 99px;
  background: transparent;
  border: 1.5px solid rgba(10, 10, 11, 0.12);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(10, 10, 11, 0.75);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-bg2__chip em {
  font-style: normal;
  font-weight: 600;
  font-size: 11px;
  color: rgba(10, 10, 11, 0.5);
}
.nexin-root .wnm-bg2__chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}
.nexin-root .wnm-bg2__chip:hover {
  border-color: var(--chip-accent, #0a0a0b);
  color: #0a0a0b;
}
.nexin-root .wnm-bg2__chip--active {
  background: #0a0a0b;
  color: #f9f9f9;
  border-color: #0a0a0b;
  font-weight: 700;
}
.nexin-root .wnm-bg2__chip--active em {
  color: rgba(249, 249, 249, 0.55);
}

/* TOP — Magazine cover + second */
.nexin-root .wnm-bg2__top {
  background: #f9f9f9;
  padding: 56px 0;
}
.nexin-root .wnm-bg2__top-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 28px;
}
.nexin-root .wnm-bg2__cover {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 44px;
  background: var(--accent, #c7ff1e);
  border-radius: 28px;
  text-decoration: none;
  color: #0a0a0b;
  min-height: 520px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
  box-shadow: 0 18px 40px -22px rgba(10, 10, 11, 0.25);
}
.nexin-root .wnm-bg2__cover:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 64px -20px rgba(10, 10, 11, 0.35);
  color: #0a0a0b;
}
.nexin-root .wnm-bg2__cover-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
}
.nexin-root .wnm-bg2__cover-pattern svg {
  width: 100%;
  height: 100%;
}
.nexin-root .wnm-bg2__cover > * {
  position: relative;
  z-index: 1;
}
.nexin-root .wnm-bg2__cover-tag {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 2;
  padding: 6px 14px;
  border-radius: 99px;
  background: #0a0a0b;
  color: var(--accent, #c7ff1e);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.16em;
}
.nexin-root .wnm-bg2__cover-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(10, 10, 11, 0.7);
  text-transform: uppercase;
}
.nexin-root .wnm-bg2__cover-issue {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
}
.nexin-root .wnm-bg2__cover-cat {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0a0a0b;
}
.nexin-root .wnm-bg2__cat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0a0a0b;
}
.nexin-root .wnm-bg2__cover-title {
  font-family: "Fraunces", "Marcellus", serif;
  font-weight: 400;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.02;
  margin: 28px 0 18px;
  color: #0a0a0b;
  letter-spacing: -0.015em;
  max-width: 720px;
}
.nexin-root .wnm-bg2__cover-desc {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(10, 10, 11, 0.78);
  margin: 0 0 32px;
  max-width: 580px;
}
.nexin-root .wnm-bg2__cover-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(10, 10, 11, 0.18);
}
.nexin-root .wnm-bg2__cover-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 99px;
  background: #0a0a0b;
  color: var(--accent, #c7ff1e);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-bg2__cover:hover .wnm-bg2__cover-cta {
  transform: translateX(4px);
}
.nexin-root .wnm-bg2__cover:hover .wnm-bg2__cover-cta svg {
  transform: translate(3px, -3px);
}
.nexin-root .wnm-bg2__cover-cta svg { transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.nexin-root .wnm-bg2__cover-read {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(10, 10, 11, 0.55);
}

/* SECOND — vertical card */
.nexin-root .wnm-bg2__second {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 28px;
  text-decoration: none;
  color: #0a0a0b;
  overflow: hidden;
  border: 1px solid rgba(10, 10, 11, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-bg2__second:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px -22px rgba(10, 10, 11, 0.2);
  border-color: var(--accent, #c7ff1e);
  color: #0a0a0b;
}
.nexin-root .wnm-bg2__second-visual {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, color-mix(in oklab, var(--accent, #c7ff1e) 25%, #0a0a0b) 0%, #0a0a0b 100%);
  overflow: hidden;
  color: var(--accent, #c7ff1e);
}
.nexin-root .wnm-bg2__second-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.nexin-root .wnm-bg2__second-num {
  position: absolute;
  bottom: 16px;
  right: 22px;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 84px;
  line-height: 0.85;
  color: var(--accent, #c7ff1e);
  letter-spacing: -0.04em;
  z-index: 1;
}
.nexin-root .wnm-bg2__second-body {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
}
.nexin-root .wnm-bg2__second-title {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 26px);
  line-height: 1.15;
  margin: 0;
  color: #0a0a0b;
  letter-spacing: -0.005em;
}
.nexin-root .wnm-bg2__second-desc {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(10, 10, 11, 0.7);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nexin-root .wnm-bg2__second-foot {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed rgba(10, 10, 11, 0.12);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12.5px;
  color: rgba(10, 10, 11, 0.6);
}
.nexin-root .wnm-bg2__second-arrow {
  margin-left: auto;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--accent, #c7ff1e);
  font-weight: 700;
}
.nexin-root .wnm-bg2__second:hover .wnm-bg2__second-arrow {
  transform: translateX(4px);
}

/* GRID */
.nexin-root .wnm-bg2__grid-sec {
  background: #fff;
  padding: 56px 0 100px;
}
.nexin-root .wnm-bg2__grid-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(10, 10, 11, 0.06);
}
.nexin-root .wnm-bg2__grid-title {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  margin: 0;
  color: #0a0a0b;
  letter-spacing: -0.015em;
}
.nexin-root .wnm-bg2__grid-title em {
  font-style: italic;
  background: linear-gradient(120deg, transparent 8%, rgba(199, 255, 30, 0.55) 8%, rgba(199, 255, 30, 0.55) 92%, transparent 92%);
  background-size: 100% 56%;
  background-repeat: no-repeat;
  background-position: 0 78%;
  padding: 0 4px;
}
.nexin-root .wnm-bg2__grid-count {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(10, 10, 11, 0.55);
}
.nexin-root .wnm-bg2__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.nexin-root .wnm-bg2__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 28px 24px;
  background: #fff;
  border: 1px solid rgba(10, 10, 11, 0.08);
  border-radius: 22px;
  text-decoration: none;
  color: #0a0a0b;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  isolation: isolate;
}
.nexin-root .wnm-bg2__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent, #c7ff1e);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-bg2__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -20px rgba(10, 10, 11, 0.18);
  border-color: var(--accent, #c7ff1e);
  color: #0a0a0b;
}
.nexin-root .wnm-bg2__card:hover::before {
  transform: scaleX(1);
}
.nexin-root .wnm-bg2__card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.nexin-root .wnm-bg2__card-num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: rgba(10, 10, 11, 0.35);
  letter-spacing: -0.02em;
}
.nexin-root .wnm-bg2__card-title {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  margin: 0;
  color: #0a0a0b;
  letter-spacing: -0.005em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nexin-root .wnm-bg2__card-desc {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(10, 10, 11, 0.65);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nexin-root .wnm-bg2__card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed rgba(10, 10, 11, 0.12);
}
.nexin-root .wnm-bg2__card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  color: rgba(10, 10, 11, 0.55);
}
.nexin-root .wnm-bg2__card-arrow {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(10, 10, 11, 0.05);
  color: #0a0a0b;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-bg2__card:hover .wnm-bg2__card-arrow {
  background: var(--accent, #c7ff1e);
  transform: translate(3px, -3px);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .nexin-root .wnm-bg2__hero-meta { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .nexin-root .wnm-bg2__top-grid { grid-template-columns: 1fr; }
  .nexin-root .wnm-bg2__cover { padding: 32px; min-height: 420px; }
  .nexin-root .wnm-bg2__cover-title { font-size: clamp(28px, 5vw, 44px); }
  .nexin-root .wnm-bg2__grid { grid-template-columns: repeat(2, 1fr); }
  .nexin-root .wnm-bg2__filter { position: static; }
}
@media (max-width: 640px) {
  .nexin-root .wnm-bg2__hero { padding-bottom: 40px; }
  .nexin-root .wnm-bg2__hero-meta { gap: 16px; padding-top: 22px; margin-top: 32px; }
  .nexin-root .wnm-bg2__hero-meta-num { font-size: 28px; }
  .nexin-root .wnm-bg2__hero-meta-lbl { font-size: 10.5px; }
  .nexin-root .wnm-bg2__top { padding: 40px 0; }
  .nexin-root .wnm-bg2__cover { padding: 24px; min-height: 360px; border-radius: 22px; }
  .nexin-root .wnm-bg2__cover-tag { top: 16px; right: 16px; padding: 5px 10px; font-size: 9.5px; }
  .nexin-root .wnm-bg2__cover-title { font-size: clamp(24px, 6vw, 32px); margin: 20px 0 14px; }
  .nexin-root .wnm-bg2__cover-desc { font-size: 14.5px; margin-bottom: 22px; }
  .nexin-root .wnm-bg2__second-num { font-size: 56px; bottom: 12px; right: 16px; }
  .nexin-root .wnm-bg2__grid { grid-template-columns: 1fr; }
  .nexin-root .wnm-bg2__filter-chips { gap: 6px; }
  .nexin-root .wnm-bg2__chip { padding: 6px 10px 6px 8px; font-size: 12px; }
  .nexin-root .wnm-bg2__grid-sec { padding: 40px 0 64px; }
}

/* ═══════════════════════════════════════════════════════════════════
   BLOG V3 — BENTO with Nano Banana Pro thumbnails
   Per-article editorial illustration covers (4:3) drive bento layout
   ═══════════════════════════════════════════════════════════════════ */

/* HERO */
.nexin-root .wnm-bg3__hero {
  background: #f9f9f9;
  padding-bottom: 56px;
  position: relative;
}
.nexin-root .wnm-bg3__hero-inner { max-width: 880px; }
.nexin-root .wnm-bg3__title {
  font-family: "Fraunces", "Marcellus", serif;
  font-weight: 400;
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 1.02;
  margin: 14px 0 0;
  color: #0a0a0b;
  letter-spacing: -0.02em;
}
.nexin-root .wnm-bg3__title em {
  font-style: italic;
  color: #c7ff1e;
  -webkit-text-stroke: 1px #0a0a0b;
}
.nexin-root .wnm-bg3__lead {
  margin: 28px 0 0;
  font-size: 17.5px;
  line-height: 1.65;
  color: rgba(10, 10, 11, 0.7);
  max-width: 720px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .wnm-bg3__hero-meta {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(10, 10, 11, 0.1);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.nexin-root .wnm-bg3__hero-meta-item { display: flex; flex-direction: column; gap: 4px; }
.nexin-root .wnm-bg3__hero-meta-num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 0.9;
  color: #0a0a0b;
  letter-spacing: -0.03em;
}
.nexin-root .wnm-bg3__hero-meta-lbl {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(10, 10, 11, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* FILTER STRIP — sticky */
.nexin-root .wnm-bg3__filter {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(10, 10, 11, 0.06);
  border-bottom: 1px solid rgba(10, 10, 11, 0.06);
  padding: 20px 0;
  position: sticky;
  top: 76px;
  z-index: 10;
}
.nexin-root .wnm-bg3__filter-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.nexin-root .wnm-bg3__filter-lbl {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.55);
}
.nexin-root .wnm-bg3__filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.nexin-root .wnm-bg3__chip {
  all: unset;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 12px;
  border-radius: 99px;
  background: transparent;
  border: 1.5px solid rgba(10, 10, 11, 0.12);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(10, 10, 11, 0.75);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-bg3__chip em {
  font-style: normal;
  font-weight: 600;
  font-size: 11px;
  color: rgba(10, 10, 11, 0.5);
}
.nexin-root .wnm-bg3__chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}
.nexin-root .wnm-bg3__chip:hover {
  border-color: var(--chip-accent, #0a0a0b);
  color: #0a0a0b;
}
.nexin-root .wnm-bg3__chip--active {
  background: #0a0a0b;
  color: #f9f9f9;
  border-color: #0a0a0b;
  font-weight: 700;
}
.nexin-root .wnm-bg3__chip--active em {
  color: rgba(249, 249, 249, 0.55);
}

/* BENTO GRID */
.nexin-root .wnm-bg3__bento-sec {
  background: #f9f9f9;
  padding: 56px 0 80px;
}
.nexin-root .wnm-bg3__bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(240px, auto);
  gap: 18px;
}

/* SHARED TILE */
.nexin-root .wnm-bg3__tile {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(10, 10, 11, 0.08);
  text-decoration: none;
  color: #0a0a0b;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  isolation: isolate;
}
.nexin-root .wnm-bg3__tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px -22px rgba(10, 10, 11, 0.18);
  border-color: var(--accent, #c7ff1e);
  color: #0a0a0b;
}
.nexin-root .wnm-bg3__tile-thumb {
  position: relative;
  overflow: hidden;
  background: #f9f9f9;
}
.nexin-root .wnm-bg3__tile-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-bg3__tile:hover .wnm-bg3__tile-thumb img {
  transform: scale(1.05);
}
.nexin-root .wnm-bg3__tile-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 24px 22px;
  flex-grow: 1;
}

/* HERO TILE — 2x2 (full width with image left, body right side-by-side) */
.nexin-root .wnm-bg3__tile--hero {
  grid-column: span 2;
  grid-row: span 2;
  flex-direction: row;
}
.nexin-root .wnm-bg3__tile--hero .wnm-bg3__tile-thumb {
  width: 50%;
  flex-shrink: 0;
  aspect-ratio: auto;
}
.nexin-root .wnm-bg3__tile--hero .wnm-bg3__tile-body {
  padding: 36px 36px 32px;
  justify-content: space-between;
  gap: 20px;
}
.nexin-root .wnm-bg3__tile-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.nexin-root .wnm-bg3__hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 99px;
  background: #0a0a0b;
  color: var(--accent, #c7ff1e);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.16em;
}
.nexin-root .wnm-bg3__cat {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0a0a0b;
}
.nexin-root .wnm-bg3__cat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent, #c7ff1e);
}
.nexin-root .wnm-bg3__hero-title {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.01em;
  color: #0a0a0b;
}
.nexin-root .wnm-bg3__hero-desc {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(10, 10, 11, 0.7);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nexin-root .wnm-bg3__hero-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px dashed rgba(10, 10, 11, 0.12);
  margin-top: auto;
}
.nexin-root .wnm-bg3__hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 99px;
  background: #0a0a0b;
  color: var(--accent, #c7ff1e);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-bg3__tile--hero:hover .wnm-bg3__hero-cta { transform: translateX(4px); }
.nexin-root .wnm-bg3__hero-cta svg { transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.nexin-root .wnm-bg3__tile--hero:hover .wnm-bg3__hero-cta svg { transform: translate(3px, -3px); }
.nexin-root .wnm-bg3__hero-meta-info {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12.5px;
  color: rgba(10, 10, 11, 0.55);
  font-weight: 500;
}

/* MEDIUM TILES — 2x1 */
.nexin-root .wnm-bg3__tile--med {
  grid-column: span 2;
  grid-row: span 1;
  flex-direction: row;
}
.nexin-root .wnm-bg3__tile--med .wnm-bg3__tile-thumb {
  width: 45%;
  flex-shrink: 0;
}
.nexin-root .wnm-bg3__tile--med .wnm-bg3__tile-body {
  padding: 22px 22px 20px;
  justify-content: space-between;
  gap: 12px;
}

/* WIDE TILE — 2x1 alternative */
.nexin-root .wnm-bg3__tile--wide {
  grid-column: span 2;
  grid-row: span 1;
  flex-direction: row;
}
.nexin-root .wnm-bg3__tile--wide .wnm-bg3__tile-thumb {
  width: 45%;
  flex-shrink: 0;
}
.nexin-root .wnm-bg3__tile--wide .wnm-bg3__tile-body {
  padding: 22px 22px 20px;
  justify-content: space-between;
  gap: 12px;
}

.nexin-root .wnm-bg3__med-title {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.005em;
  color: #0a0a0b;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

/* SMALL TILES — 1x1 */
.nexin-root .wnm-bg3__tile--sm {
  grid-column: span 1;
  grid-row: span 1;
  flex-direction: column;
}
.nexin-root .wnm-bg3__tile--sm .wnm-bg3__tile-thumb {
  aspect-ratio: 4 / 3;
}
.nexin-root .wnm-bg3__sm-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  margin: 0;
  color: #0a0a0b;
  letter-spacing: -0.005em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

/* Tile foot — shared */
.nexin-root .wnm-bg3__tile-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px dashed rgba(10, 10, 11, 0.12);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11.5px;
  color: rgba(10, 10, 11, 0.55);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: auto;
}
.nexin-root .wnm-bg3__tile-arrow {
  font-size: 16px;
  color: var(--accent, #c7ff1e);
  -webkit-text-stroke: 0.5px #0a0a0b;
  font-weight: 700;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .wnm-bg3__tile:hover .wnm-bg3__tile-arrow {
  transform: translateX(4px);
}

/* TAIL — 3-col grid below bento */
.nexin-root .wnm-bg3__tail {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(10, 10, 11, 0.08);
}
.nexin-root .wnm-bg3__tail-title {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.05;
  margin: 0 0 32px;
  color: #0a0a0b;
  letter-spacing: -0.015em;
}
.nexin-root .wnm-bg3__tail-title em {
  font-style: italic;
  background: linear-gradient(120deg, transparent 8%, rgba(199, 255, 30, 0.55) 8%, rgba(199, 255, 30, 0.55) 92%, transparent 92%);
  background-size: 100% 56%;
  background-repeat: no-repeat;
  background-position: 0 78%;
  padding: 0 4px;
}
.nexin-root .wnm-bg3__tail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 991px) {
  .nexin-root .wnm-bg3__hero-meta { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .nexin-root .wnm-bg3__bento { grid-template-columns: repeat(2, 1fr); }
  .nexin-root .wnm-bg3__tile--hero,
  .nexin-root .wnm-bg3__tile--med,
  .nexin-root .wnm-bg3__tile--wide {
    grid-column: span 2;
    grid-row: span 1;
    flex-direction: column;
  }
  .nexin-root .wnm-bg3__tile--hero .wnm-bg3__tile-thumb,
  .nexin-root .wnm-bg3__tile--med .wnm-bg3__tile-thumb,
  .nexin-root .wnm-bg3__tile--wide .wnm-bg3__tile-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
  }
  .nexin-root .wnm-bg3__tail-grid { grid-template-columns: repeat(2, 1fr); }
  .nexin-root .wnm-bg3__filter { position: static; }
}
@media (max-width: 640px) {
  .nexin-root .wnm-bg3__hero { padding-bottom: 40px; }
  .nexin-root .wnm-bg3__hero-meta { gap: 16px; padding-top: 22px; margin-top: 32px; }
  .nexin-root .wnm-bg3__hero-meta-num { font-size: 28px; }
  .nexin-root .wnm-bg3__hero-meta-lbl { font-size: 10.5px; }
  .nexin-root .wnm-bg3__bento-sec { padding: 40px 0 64px; }
  .nexin-root .wnm-bg3__bento { grid-template-columns: 1fr; gap: 14px; }
  .nexin-root .wnm-bg3__tile--hero,
  .nexin-root .wnm-bg3__tile--med,
  .nexin-root .wnm-bg3__tile--wide,
  .nexin-root .wnm-bg3__tile--sm { grid-column: span 1; }
  .nexin-root .wnm-bg3__tile--hero .wnm-bg3__tile-body { padding: 24px; }
  .nexin-root .wnm-bg3__hero-title { font-size: clamp(22px, 5vw, 28px); }
  .nexin-root .wnm-bg3__tail-grid { grid-template-columns: 1fr; }
  .nexin-root .wnm-bg3__filter-chips { gap: 6px; }
  .nexin-root .wnm-bg3__chip { padding: 6px 10px 6px 8px; font-size: 12px; }
}

/* ═══════════════════════════════════════════════════════════════════
   LAB PAGES — internal preview, not for production
   ═══════════════════════════════════════════════════════════════════ */
.nexin-root .lab-nav {
  background: #0a0a0b;
  color: #f9f9f9;
  padding: clamp(110px, 12vw, 150px) 0 clamp(40px, 5vw, 60px);
  border-bottom: 1px solid rgba(199, 255, 30, 0.2);
}
.nexin-root .lab-nav__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(249, 249, 249, 0.5);
  text-decoration: none;
  margin-bottom: 22px;
}
.nexin-root .lab-nav__back:hover { color: #c7ff1e; }
.nexin-root .lab-nav__h1 {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.nexin-root .lab-nav__lead {
  color: rgba(249, 249, 249, 0.7);
  font-size: 15px;
  margin: 0 0 28px;
}
.nexin-root .lab-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.nexin-root .lab-nav__list a {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(199, 255, 30, 0.10);
  border: 1px solid rgba(199, 255, 30, 0.3);
  color: #c7ff1e;
  border-radius: 99px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
  transition: background 0.2s;
}
.nexin-root .lab-nav__list a:hover { background: rgba(199, 255, 30, 0.25); }

.nexin-root .lab-variant {
  position: relative;
  scroll-margin-top: 80px;
  border-bottom: 1px dashed rgba(10, 10, 11, 0.18);
}
.nexin-root .lab-variant__label {
  position: sticky;
  top: 80px;
  z-index: 10;
  background: #fff;
  padding: 14px 22px;
  margin: 0 auto;
  max-width: 480px;
  border-radius: 0 0 14px 14px;
  border: 1px solid rgba(10, 10, 11, 0.12);
  border-top: 0;
  box-shadow: 0 12px 28px -16px rgba(10, 10, 11, 0.18);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .lab-variant__id {
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.18em;
  background: #c7ff1e;
  color: #0a0a0b;
  padding: 4px 10px;
  border-radius: 99px;
}
.nexin-root .lab-variant__title { font-weight: 700; font-size: 14px; color: #0a0a0b; }
.nexin-root .lab-variant__desc { font-size: 12px; color: rgba(10, 10, 11, 0.55); margin-left: auto; }

.nexin-root .lab-foot {
  background: #0a0a0b;
  color: #f9f9f9;
  padding: 60px 0;
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  letter-spacing: 0.04em;
}
/* ═══════════════════════════════════════════════════════════════════
   /O-NAS HERO V2 — manifesto-style typographic hero (no card)
   ═══════════════════════════════════════════════════════════════════ */
.nexin-root .wnm-ab2__hero {
  background: #fafaf8;
  padding: clamp(140px, 16vw, 200px) 0 clamp(72px, 9vw, 120px);
  position: relative;
  overflow: hidden;
}
.nexin-root .wnm-ab2__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 30%, rgba(199, 255, 30, 0.10) 0%, transparent 32%),
    radial-gradient(circle at 90% 70%, rgba(10, 10, 11, 0.05) 0%, transparent 38%);
  pointer-events: none;
}
.nexin-root .wnm-ab2__hero > .container { position: relative; z-index: 1; }
.nexin-root .wnm-ab2__hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 10px;
  border: 1px solid rgba(10, 10, 11, 0.14);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.7);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(10, 10, 11, 0.7);
  margin-bottom: 36px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.nexin-root .wnm-ab2__hero-loc {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #0a0a0b;
  font-weight: 600;
}
.nexin-root .wnm-ab2__hero-dot { color: rgba(10, 10, 11, 0.3); }
.nexin-root .wnm-ab2__hero-since { font-weight: 600; }
.nexin-root .wnm-ab2__hero-count { color: #0a0a0b; font-weight: 600; }

.nexin-root .wnm-ab2__manifesto {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(40px, 6.5vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: #0a0a0b;
  margin: 0 0 56px;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1vw, 18px);
  max-width: 1100px;
}
.nexin-root .wnm-ab2__line { display: block; }
.nexin-root .wnm-ab2__line--em {
  padding-left: clamp(40px, 5vw, 80px);
}
.nexin-root .wnm-ab2__line em {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(transparent 64%, rgba(199, 255, 30, 0.55) 64%, rgba(199, 255, 30, 0.55) 92%, transparent 92%);
  padding: 0 0.04em;
}

.nexin-root .wnm-ab2__hero-foot {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  padding-top: 36px;
  border-top: 1px solid rgba(10, 10, 11, 0.10);
}
.nexin-root .wnm-ab2__hero-lede {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
  color: rgba(10, 10, 11, 0.7);
  margin: 0;
  max-width: 560px;
}
.nexin-root .wnm-ab2__hero-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.nexin-root .wnm-ab2__hero-link {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(10, 10, 11, 0.6);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nexin-root .wnm-ab2__hero-link:hover { color: #0a0a0b; text-decoration: underline; text-underline-offset: 4px; }

.nexin-root .wnm-ab2__hero-marquee {
  list-style: none;
  margin: 56px 0 0;
  padding: 18px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  border-top: 1px dashed rgba(10, 10, 11, 0.16);
  border-bottom: 1px dashed rgba(10, 10, 11, 0.16);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(10, 10, 11, 0.6);
  letter-spacing: 0.01em;
}
.nexin-root .wnm-ab2__hero-marquee li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.nexin-root .wnm-ab2__hero-marquee li span {
  color: #c7ff1e;
  font-weight: 700;
  text-shadow: 0 0 4px rgba(199, 255, 30, 0.5);
}

@media (max-width: 991px) {
  .nexin-root .wnm-ab2__hero { padding-top: 110px; }
  .nexin-root .wnm-ab2__line--em { padding-left: 0; }
  .nexin-root .wnm-ab2__hero-foot { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 640px) {
  .nexin-root .wnm-ab2__hero-marquee { gap: 8px 16px; font-size: 11.5px; }
}

/* ═══════════════════════════════════════════════════════════════════
   CASE STUDY V2 — editorial article layout (sidebar + flowing prose)
   Replaces banner-heavy v1. Hero + results strip kept (.wnm-cs__*).
   ═══════════════════════════════════════════════════════════════════ */
.nexin-root .wnm-cs2__article {
  background: #fafaf8;
  padding: clamp(72px, 9vw, 130px) 0 clamp(80px, 9vw, 140px);
  position: relative;
  /* No overflow:hidden — would break position:sticky on the sidebar.
     The decor div has its own overflow:hidden, so aurora glow still clips
     within its bounds without affecting sticky behavior of the sidebar. */
}
.nexin-root .wnm-cs2__article > .container { position: relative; z-index: 1; }

/* Premium decoration — aurora gradient mesh + typographic watermark only.
   No primitive shapes. Category is signalled by italic display-type
   watermark at very low opacity, plus a thin accent rule + sector tag. */
.nexin-root .wnm-cs2__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.nexin-root .wnm-cs2__decor svg { position: absolute; display: block; }

/* Aurora — full-bleed gradient mesh */
.nexin-root .wnm-cs2__aurora {
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
  animation: wnmCs2Aurora 24s ease-in-out infinite;
}
@keyframes wnmCs2Aurora {
  0%, 100% { transform: scale(1) translate(0, 0); }
  33% { transform: scale(1.04) translate(-1.5%, 1.2%); }
  66% { transform: scale(1.02) translate(2%, -1%); }
}

/* Editorial sector tag — top-right corner */
.nexin-root .wnm-cs2__sector {
  position: absolute;
  top: clamp(40px, 5vw, 80px);
  right: clamp(20px, 4vw, 56px);
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.45);
  z-index: 0;
}
.nexin-root .wnm-cs2__sector-rule {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: rgba(10, 10, 11, 0.35);
}

/* Vertical accent rule — left edge, category-tinted */
.nexin-root .wnm-cs2__rule {
  position: absolute;
  top: clamp(40px, 5vw, 80px);
  left: 0;
  width: 3px;
  height: clamp(60px, 8vw, 120px);
  border-radius: 0 3px 3px 0;
  filter: brightness(0.85) saturate(1.4);
}

@media (prefers-reduced-motion: reduce) {
  .nexin-root .wnm-cs2__aurora { animation: none !important; }
}
@media (max-width: 991px) {
  .nexin-root .wnm-cs2__aurora { opacity: 0.65; }
  .nexin-root .wnm-cs2__sector { top: 24px; right: 20px; font-size: 9.5px; }
}
.nexin-root .wnm-cs2__article-grid {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

/* Sticky sidebar with project facts */
.nexin-root .wnm-cs2__side {
  position: sticky;
  top: 100px;
  align-self: start;
}
.nexin-root .wnm-cs2__side-facts {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 0;
  padding: 0;
}
.nexin-root .wnm-cs2__side-fact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(10, 10, 11, 0.10);
}
.nexin-root .wnm-cs2__side-fact:last-child { border-bottom: 0; padding-bottom: 0; }
.nexin-root .wnm-cs2__side-fact dt {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.5);
  margin: 0;
}
.nexin-root .wnm-cs2__side-fact dd {
  font-family: "Fraunces", serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #0a0a0b;
  line-height: 1.4;
  margin: 0;
}
.nexin-root .wnm-cs2__side-fact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-size: 12.5px !important;
}
.nexin-root .wnm-cs2__side-fact-list span {
  display: inline-block;
  padding: 4px 9px;
  border: 1px solid rgba(10, 10, 11, 0.14);
  border-radius: 99px;
  font-weight: 500;
  color: rgba(10, 10, 11, 0.78);
  font-size: 12px;
  letter-spacing: 0;
}

/* Prose column */
.nexin-root .wnm-cs2__prose {
  max-width: 720px;
}
.nexin-root .wnm-cs2__h2 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #0a0a0b;
  margin: 56px 0 18px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nexin-root .wnm-cs2__h2:first-child { margin-top: 0; }
.nexin-root .wnm-cs2__h2-num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  flex-shrink: 0;
}
.nexin-root .wnm-cs2__h3 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #0a0a0b;
  margin: 48px 0 18px;
}
.nexin-root .wnm-cs2__lead {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #0a0a0b;
  margin: 0 0 24px;
  font-weight: 400;
}
.nexin-root .wnm-cs2__p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(10, 10, 11, 0.75);
  margin: 0 0 18px;
}

/* Process — minimal numbered list */
.nexin-root .wnm-cs2__phases {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid rgba(10, 10, 11, 0.12);
}
.nexin-root .wnm-cs2__phase {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 18px 0 18px 22px;
  border-bottom: 1px solid rgba(10, 10, 11, 0.06);
}
.nexin-root .wnm-cs2__phase:last-child { border-bottom: 0; }
.nexin-root .wnm-cs2__phase-n {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 22px;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1;
}
.nexin-root .wnm-cs2__phase-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 4px;
}
.nexin-root .wnm-cs2__phase-t {
  font-family: "Fraunces", serif;
  font-size: 18px;
  font-weight: 400;
  color: #0a0a0b;
  letter-spacing: -0.01em;
}
.nexin-root .wnm-cs2__phase-d {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.5);
  white-space: nowrap;
}
.nexin-root .wnm-cs2__phase-p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(10, 10, 11, 0.65);
  margin: 0;
}

/* Before/After metrics — inline rows */
.nexin-root .wnm-cs2__metrics {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  border-top: 1px solid rgba(10, 10, 11, 0.12);
  border-bottom: 1px solid rgba(10, 10, 11, 0.12);
}
.nexin-root .wnm-cs2__metric {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(10, 10, 11, 0.06);
}
.nexin-root .wnm-cs2__metric:last-child { border-bottom: 0; }
.nexin-root .wnm-cs2__metric-label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(10, 10, 11, 0.7);
  letter-spacing: 0.02em;
}
.nexin-root .wnm-cs2__metric-flow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Fraunces", serif;
}
.nexin-root .wnm-cs2__metric-before {
  font-size: 14px;
  color: rgba(10, 10, 11, 0.4);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}
.nexin-root .wnm-cs2__metric-flow svg { color: rgba(10, 10, 11, 0.35); flex-shrink: 0; }
.nexin-root .wnm-cs2__metric-after {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

/* Wins — minimal bulleted list */
.nexin-root .wnm-cs2__wins-min {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}
.nexin-root .wnm-cs2__wins-min li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(10, 10, 11, 0.06);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15.5px;
  line-height: 1.6;
  color: #0a0a0b;
}
.nexin-root .wnm-cs2__wins-min li:last-child { border-bottom: 0; }
.nexin-root .wnm-cs2__wins-min-bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 9px;
}

/* Pull quote — inline, accent-tinted side rule per category */
.nexin-root .wnm-cs2__pull {
  --cs-accent: #c7ff1e;
  margin: 64px -16px;
  padding: 0 0 0 32px;
  border-left: 3px solid var(--cs-accent);
  position: relative;
}
.nexin-root .wnm-cs2__pull::before {
  content: "";
  position: absolute;
  left: -3px;
  top: 0;
  width: 3px;
  height: 32px;
  background: #0a0a0b;
}
.nexin-root .wnm-cs2__pull-text {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: #0a0a0b;
  margin: 0 0 22px;
}
.nexin-root .wnm-cs2__pull-text::before {
  content: "\201C";
  color: var(--cs-accent);
  margin-right: 4px;
  font-style: normal;
  filter: brightness(0.85) saturate(1.4);
}
.nexin-root .wnm-cs2__pull-text::after {
  content: "\201D";
  color: rgba(10, 10, 11, 0.25);
  margin-left: 2px;
  font-style: normal;
}
.nexin-root .wnm-cs2__pull-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-style: normal;
}
.nexin-root .wnm-cs2__pull-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #0a0a0b;
}
.nexin-root .wnm-cs2__pull-role {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12.5px;
  color: rgba(10, 10, 11, 0.55);
}

/* Editor's note — accent-tinted aside that matches the category */
.nexin-root .wnm-cs2__note {
  --cs-accent: #c7ff1e;
  position: relative;
  margin: 56px 0 0;
  padding: 28px 32px 28px 32px;
  background: linear-gradient(
    135deg,
    color-mix(in oklab, var(--cs-accent) 14%, white) 0%,
    color-mix(in oklab, var(--cs-accent) 6%, white) 100%
  );
  border: 1px solid color-mix(in oklab, var(--cs-accent) 25%, transparent);
  border-radius: 14px;
  overflow: hidden;
}
.nexin-root .wnm-cs2__note::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 3px;
  background: var(--cs-accent);
  border-radius: 0 0 3px 0;
}
.nexin-root .wnm-cs2__note::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in oklab, var(--cs-accent) 35%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
.nexin-root .wnm-cs2__note-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #0a0a0b;
  margin-bottom: 14px;
  position: relative;
}
.nexin-root .wnm-cs2__note-tag-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cs-accent);
  filter: brightness(0.85) saturate(1.6);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--cs-accent) 25%, transparent);
}
.nexin-root .wnm-cs2__note p {
  font-family: "Fraunces", serif;
  font-size: 17px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
  color: #0a0a0b;
  margin: 0 0 18px;
  letter-spacing: -0.005em;
  position: relative;
  max-width: 640px;
}
.nexin-root .wnm-cs2__note-rule {
  display: block;
  width: 28px;
  height: 1px;
  background: #0a0a0b;
  opacity: 0.35;
  margin-top: 18px;
}

@media (max-width: 991px) {
  .nexin-root .wnm-cs2__article-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .nexin-root .wnm-cs2__side {
    position: static;
    background: #fff;
    border: 1px solid rgba(10, 10, 11, 0.10);
    border-radius: 14px;
    padding: 24px;
  }
  .nexin-root .wnm-cs2__side-facts { gap: 16px; }
  .nexin-root .wnm-cs2__side-fact { padding-bottom: 16px; }
}

@media (max-width: 640px) {
  .nexin-root .wnm-cs2__h2 { font-size: 26px; gap: 12px; margin-top: 44px; }
  .nexin-root .wnm-cs2__h3 { font-size: 19px; margin-top: 36px; }
  .nexin-root .wnm-cs2__lead { font-size: 16px; }
  .nexin-root .wnm-cs2__phase { grid-template-columns: 36px 1fr; padding-left: 16px; }
  .nexin-root .wnm-cs2__phase-row { flex-direction: column; gap: 4px; }
  .nexin-root .wnm-cs2__metric { grid-template-columns: 1fr; gap: 6px; padding: 14px 0; }
  .nexin-root .wnm-cs2__metric-after { font-size: 19px; }
  .nexin-root .wnm-cs2__pull { margin-left: 0; margin-right: 0; padding-left: 18px; }
}



/* ═══════════════════════════════════════════════════════════════════
   LAB HEROES v3 — premium imagery + dramaticky odlišné štýly
   /projekty: lhpv3-{a..e} · /o-nas: lonv3-{a..e}
   ═══════════════════════════════════════════════════════════════════ */

/* ────────────────── /projekty VAR A: Cinematic Showcase ────────────── */
.nexin-root .lhpv3-a {
  background: #0a0a0b;
  color: #f9f9f9;
  min-height: clamp(560px, 78vh, 780px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  /* Clear the 76px fixed site-header so the "live referencií" pill at top
     of hero doesn't render behind the W-logo + menu nav. */
  padding-top: 76px;
}
.nexin-root .lhpv3-a__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  align-items: center;
  width: 100%;
  gap: 0;
}
.nexin-root .lhpv3-a__text {
  padding: clamp(56px, 7vw, 96px) clamp(24px, 5vw, 80px);
  max-width: 640px;
  justify-self: end;
}
.nexin-root .lhpv3-a__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: rgba(199, 255, 30, 0.10);
  border: 1px solid rgba(199, 255, 30, 0.32);
  border-radius: 99px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: #c7ff1e;
  margin-bottom: 28px;
}
.nexin-root .lhpv3-a__pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #c7ff1e;
  box-shadow: 0 0 10px rgba(199, 255, 30, 0.7);
  animation: lhpv3Pulse 1.6s ease-in-out infinite;
}
@keyframes lhpv3Pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}
.nexin-root .lhpv3-a__h {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #f9f9f9;
  margin: 0 0 22px;
}
.nexin-root .lhpv3-a__h em {
  font-style: italic;
  font-weight: 300;
  color: #c7ff1e;
}
.nexin-root .lhpv3-a__lead {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(249, 249, 249, 0.7);
  margin: 0 0 36px;
  max-width: 480px;
}
.nexin-root .lhpv3-a__lead strong { color: #f9f9f9; font-weight: 600; }
.nexin-root .lhpv3-a__cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.nexin-root .lhpv3-a__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: #c7ff1e;
  color: #0a0a0b;
  border-radius: 99px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: gap 0.25s, box-shadow 0.25s;
}
.nexin-root .lhpv3-a__cta:hover {
  gap: 14px;
  box-shadow: 0 12px 32px -8px rgba(199, 255, 30, 0.5);
}
.nexin-root .lhpv3-a__ghost {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(249, 249, 249, 0.6);
  text-decoration: none;
}
.nexin-root .lhpv3-a__ghost:hover { color: #c7ff1e; }
.nexin-root .lhpv3-a__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(249, 249, 249, 0.12);
}
.nexin-root .lhpv3-a__stats div { display: flex; flex-direction: column; gap: 4px; }
.nexin-root .lhpv3-a__stats strong {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  color: #c7ff1e;
  letter-spacing: -0.03em;
}
.nexin-root .lhpv3-a__stats em {
  font-size: 0.5em;
  color: rgba(199, 255, 30, 0.6);
  margin-left: 2px;
  font-style: italic;
}
.nexin-root .lhpv3-a__stats span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(249, 249, 249, 0.5);
}
.nexin-root .lhpv3-a__visual {
  position: relative;
  height: 100%;
  min-height: clamp(420px, 60vh, 680px);
  overflow: hidden;
}
.nexin-root .lhpv3-a__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.nexin-root .lhpv3-a__visual-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0a0a0b 0%, transparent 30%);
  pointer-events: none;
}

/* ────────────────── /projekty VAR B: Editorial Spread ──────────────── */
.nexin-root .lhpv3-b {
  background: #fafaf8;
  padding: clamp(72px, 9vw, 130px) 0;
}
.nexin-root .lhpv3-b__top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: clamp(32px, 4vw, 48px);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.55);
}
.nexin-root .lhpv3-b__rule {
  flex: 1;
  height: 1px;
  background: rgba(10, 10, 11, 0.18);
  max-width: 280px;
}
.nexin-root .lhpv3-b__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr) minmax(220px, 0.7fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
.nexin-root .lhpv3-b__hero {
  padding-top: 12px;
}
.nexin-root .lhpv3-b__h {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(40px, 5.6vw, 80px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #0a0a0b;
  margin: 0 0 22px;
}
.nexin-root .lhpv3-b__h em {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(transparent 64%, rgba(199, 255, 30, 0.55) 64%, rgba(199, 255, 30, 0.55) 92%, transparent 92%);
  padding: 0 0.04em;
}
.nexin-root .lhpv3-b__lead {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(10, 10, 11, 0.65);
  margin: 0;
  max-width: 360px;
}
.nexin-root .lhpv3-b__plate {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px -28px rgba(10, 10, 11, 0.28);
  position: relative;
}
.nexin-root .lhpv3-b__plate img {
  width: 100%;
  height: auto;
  display: block;
}
.nexin-root .lhpv3-b__plate figcaption {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.5);
  border-top: 1px solid rgba(10, 10, 11, 0.08);
  background: #fff;
}
.nexin-root .lhpv3-b__index {
  background: #fff;
  padding: 24px;
  border: 1px solid rgba(10, 10, 11, 0.10);
  border-radius: 8px;
}
.nexin-root .lhpv3-b__index-tag {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(10, 10, 11, 0.5);
  margin-bottom: 16px;
}
.nexin-root .lhpv3-b__index ol {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nexin-root .lhpv3-b__index li {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: baseline;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(10, 10, 11, 0.14);
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .lhpv3-b__index li:last-child { border-bottom: 0; }
.nexin-root .lhpv3-b__index li span {
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(10, 10, 11, 0.4);
  letter-spacing: 0.16em;
}
.nexin-root .lhpv3-b__index li strong {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: #0a0a0b;
}
.nexin-root .lhpv3-b__index li em {
  font-size: 11px;
  font-weight: 600;
  color: rgba(10, 10, 11, 0.45);
  font-style: normal;
  letter-spacing: 0.04em;
}
.nexin-root .lhpv3-b__index-cta {
  display: inline-block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #0a0a0b;
  text-decoration: none;
  border-bottom: 1.5px solid #0a0a0b;
  padding-bottom: 2px;
}

/* ────────────────── /projekty VAR C: Full-Bleed Immersion ──────────── */
.nexin-root .lhpv3-c {
  position: relative;
  min-height: clamp(560px, 80vh, 780px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a0a0b;
}
.nexin-root .lhpv3-c__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.nexin-root .lhpv3-c__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 11, 0.85) 0%, rgba(10, 10, 11, 0.55) 40%, rgba(10, 10, 11, 0.2) 70%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(10, 10, 11, 0.4) 100%);
  z-index: 1;
}
.nexin-root .lhpv3-c > .container { position: relative; z-index: 2; }
.nexin-root .lhpv3-c__content {
  max-width: 580px;
  color: #f9f9f9;
}
.nexin-root .lhpv3-c__pre {
  display: inline-block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #c7ff1e;
  margin-bottom: 24px;
}
.nexin-root .lhpv3-c__h {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
  color: #f9f9f9;
}
.nexin-root .lhpv3-c__h em {
  font-style: italic;
  font-weight: 300;
  color: #c7ff1e;
}
.nexin-root .lhpv3-c__lead {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
  color: rgba(249, 249, 249, 0.78);
  margin: 0 0 28px;
  max-width: 480px;
}
.nexin-root .lhpv3-c__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 36px;
}
.nexin-root .lhpv3-c__chips span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid rgba(249, 249, 249, 0.22);
  border-radius: 99px;
  color: rgba(249, 249, 249, 0.7);
}
.nexin-root .lhpv3-c__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nexin-root .lhpv3-c__cta-label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #c7ff1e;
  border-bottom: 1.5px solid #c7ff1e;
  padding-bottom: 4px;
  letter-spacing: 0.02em;
}
.nexin-root .lhpv3-c__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #c7ff1e;
  color: #0a0a0b;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .lhpv3-c__cta:hover .lhpv3-c__cta-icon { transform: translateX(6px); }
.nexin-root .lhpv3-c__corner-tag {
  position: absolute;
  bottom: 32px;
  right: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(249, 249, 249, 0.55);
}
.nexin-root .lhpv3-c__corner-tag-rule {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: rgba(249, 249, 249, 0.4);
}

/* ────────────────── /projekty VAR D: Bauhaus Composition ───────────── */
.nexin-root .lhpv3-d {
  background: #f5f1e8;
  padding: clamp(72px, 9vw, 120px) 0;
}
.nexin-root .lhpv3-d__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 1.4fr) minmax(0, 0.8fr);
  grid-template-rows: auto auto auto;
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}
.nexin-root .lhpv3-d__intro {
  grid-column: 1;
  grid-row: 1;
}
.nexin-root .lhpv3-d__intro-tag {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.5);
}
.nexin-root .lhpv3-d__intro-h {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(56px, 7vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: #0a0a0b;
  margin: 8px 0 6px;
}
.nexin-root .lhpv3-d__intro-meta {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(10, 10, 11, 0.55);
}
.nexin-root .lhpv3-d__poster {
  grid-column: 2;
  grid-row: 1 / 3;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 30px 80px -32px rgba(10, 10, 11, 0.32);
}
.nexin-root .lhpv3-d__poster img {
  width: 100%;
  height: auto;
  display: block;
}
.nexin-root .lhpv3-d__statement {
  grid-column: 3;
  grid-row: 1;
  padding-top: 14px;
}
.nexin-root .lhpv3-d__statement p {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #0a0a0b;
  margin: 0;
}
.nexin-root .lhpv3-d__statement em {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(transparent 70%, rgba(199, 255, 30, 0.5) 70%);
  padding: 0 0.04em;
}
.nexin-root .lhpv3-d__statement-rule {
  display: block;
  width: 32px;
  height: 1.5px;
  background: #0a0a0b;
  margin: 18px 0 12px;
}
.nexin-root .lhpv3-d__statement-meta {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.5);
}
.nexin-root .lhpv3-d__cta {
  grid-column: 3;
  grid-row: 2;
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: #0a0a0b;
  color: #c7ff1e;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 99px;
  width: fit-content;
  transition: gap 0.25s;
}
.nexin-root .lhpv3-d__cta:hover { gap: 14px; }
.nexin-root .lhpv3-d__index {
  grid-column: 1;
  grid-row: 2 / 4;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nexin-root .lhpv3-d__index > div {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(10, 10, 11, 0.18);
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .lhpv3-d__index span {
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(10, 10, 11, 0.4);
  letter-spacing: 0.16em;
}
.nexin-root .lhpv3-d__index strong {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: #0a0a0b;
  letter-spacing: -0.005em;
}

/* ────────────────── /projekty VAR E: Gallery Wall ──────────────────── */
.nexin-root .lhpv3-e {
  position: relative;
  min-height: clamp(560px, 78vh, 780px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a0a0b;
}
.nexin-root .lhpv3-e__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.7;
}
.nexin-root .lhpv3-e__darken {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 30% 50%, rgba(10, 10, 11, 0.5) 0%, rgba(10, 10, 11, 0.85) 100%);
  z-index: 1;
}
.nexin-root .lhpv3-e > .container { position: relative; z-index: 2; }
.nexin-root .lhpv3-e__inner { max-width: 720px; color: #f9f9f9; }
.nexin-root .lhpv3-e__top { margin-bottom: 32px; }
.nexin-root .lhpv3-e__top-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 99px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(249, 249, 249, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nexin-root .lhpv3-e__top-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #c7ff1e;
  box-shadow: 0 0 8px rgba(199, 255, 30, 0.7);
  animation: lhpv3Pulse 1.6s ease-in-out infinite;
}
.nexin-root .lhpv3-e__h {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(48px, 7.5vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: #f9f9f9;
  margin: 0 0 22px;
}
.nexin-root .lhpv3-e__h em {
  font-style: italic;
  font-weight: 300;
  color: #c7ff1e;
}
.nexin-root .lhpv3-e__lead {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(249, 249, 249, 0.78);
  margin: 0 0 36px;
  max-width: 520px;
}
.nexin-root .lhpv3-e__cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-bottom: 36px;
  padding: 16px 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.18);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
}
.nexin-root .lhpv3-e__cluster-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(249, 249, 249, 0.7);
  text-transform: uppercase;
}
.nexin-root .lhpv3-e__cluster-plus { color: #c7ff1e; font-weight: 700; }
.nexin-root .lhpv3-e__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px 14px 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 99px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #f9f9f9;
  text-decoration: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.25s;
}
.nexin-root .lhpv3-e__cta:hover {
  background: rgba(199, 255, 30, 0.14);
  border-color: #c7ff1e;
  color: #c7ff1e;
}
.nexin-root .lhpv3-e__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #c7ff1e;
  color: #0a0a0b;
}

@media (max-width: 991px) {
  .nexin-root .lhpv3-a__layout { grid-template-columns: 1fr; }
  .nexin-root .lhpv3-a__text { padding: 64px 24px 32px; max-width: 100%; }
  .nexin-root .lhpv3-a__visual { min-height: 320px; }
  .nexin-root .lhpv3-a__visual-fade { background: linear-gradient(180deg, transparent 0%, #0a0a0b 90%); }
  .nexin-root .lhpv3-b__layout { grid-template-columns: 1fr; }
  .nexin-root .lhpv3-d__grid { grid-template-columns: 1fr; }
  .nexin-root .lhpv3-d__intro,
  .nexin-root .lhpv3-d__poster,
  .nexin-root .lhpv3-d__statement,
  .nexin-root .lhpv3-d__cta,
  .nexin-root .lhpv3-d__index { grid-column: 1; grid-row: auto; }
  .nexin-root .lhpv3-c__veil { background: linear-gradient(180deg, rgba(10,10,11,0.7) 0%, rgba(10,10,11,0.9) 100%); }
}

/* ────────────────── /o-nas VAR A: Studio Interview ─────────────────── */
.nexin-root .lonv3-a {
  background: #fafaf8;
  min-height: clamp(560px, 80vh, 760px);
  display: flex;
  align-items: stretch;
}
.nexin-root .lonv3-a__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  width: 100%;
  align-items: stretch;
}
.nexin-root .lonv3-a__portrait {
  margin: 0;
  position: relative;
  overflow: hidden;
}
.nexin-root .lonv3-a__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nexin-root .lonv3-a__portrait figcaption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 14px;
  background: rgba(10, 10, 11, 0.55);
  border-radius: 6px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nexin-root .lonv3-a__text {
  padding: clamp(56px, 7vw, 96px) clamp(28px, 5vw, 80px);
  max-width: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nexin-root .lonv3-a__pre {
  display: inline-block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.55);
  margin-bottom: 22px;
}
.nexin-root .lonv3-a__h {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: #0a0a0b;
  margin: 0 0 24px;
}
.nexin-root .lonv3-a__h em {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(transparent 64%, rgba(199, 255, 30, 0.55) 64%, rgba(199, 255, 30, 0.55) 92%, transparent 92%);
  padding: 0 0.04em;
}
.nexin-root .lonv3-a__lead {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(10, 10, 11, 0.7);
  margin: 0 0 32px;
  max-width: 540px;
}
.nexin-root .lonv3-a__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
  margin: 0 0 36px;
  padding: 22px 0;
  border-top: 1px solid rgba(10, 10, 11, 0.12);
  border-bottom: 1px solid rgba(10, 10, 11, 0.12);
}
.nexin-root .lonv3-a__facts div { display: flex; flex-direction: column; gap: 4px; }
.nexin-root .lonv3-a__facts dt {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.45);
  margin: 0;
}
.nexin-root .lonv3-a__facts dd {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: #0a0a0b;
  margin: 0;
}
.nexin-root .lonv3-a__cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.nexin-root .lonv3-a__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: #0a0a0b;
  color: #c7ff1e;
  border-radius: 99px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: gap 0.25s;
}
.nexin-root .lonv3-a__cta:hover { gap: 14px; }
.nexin-root .lonv3-a__ghost {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(10, 10, 11, 0.6);
  text-decoration: none;
  border-bottom: 1px solid rgba(10, 10, 11, 0.4);
  padding-bottom: 2px;
}
.nexin-root .lonv3-a__ghost:hover { color: #0a0a0b; border-color: #0a0a0b; }

/* ────────────────── /o-nas VAR B: Brutalist Window ───────────────────
   Site header is fixed/absolute over the top — add top padding so the
   hero content clears it. Bottom keeps generous breathing room. */
.nexin-root .lonv3-b {
  position: relative;
  min-height: clamp(640px, 90vh, 880px);
  display: flex;
  align-items: center;
  padding-top: clamp(96px, 12vw, 160px);
  padding-bottom: clamp(64px, 8vw, 96px);
  overflow: hidden;
  background: #0a0a0b;
}
.nexin-root .lonv3-b__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.nexin-root .lonv3-b__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 11, 0.85) 0%, rgba(10, 10, 11, 0.4) 50%, transparent 100%);
  z-index: 1;
}
.nexin-root .lonv3-b > .container { position: relative; z-index: 2; }
.nexin-root .lonv3-b__layout {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: 720px;
  color: #f9f9f9;
}
.nexin-root .lonv3-b__top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.nexin-root .lonv3-b__top-tag {
  color: #c7ff1e;
  padding: 4px 10px;
  border: 1px solid #c7ff1e;
  border-radius: 4px;
}
.nexin-root .lonv3-b__top-coords { color: rgba(249, 249, 249, 0.55); }
.nexin-root .lonv3-b__h {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: #f9f9f9;
  margin: 0 0 36px;
}
.nexin-root .lonv3-b__h em {
  font-style: italic;
  font-weight: 300;
  color: #c7ff1e;
}
.nexin-root .lonv3-b__foot {
  display: flex;
  align-items: end;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  flex-wrap: wrap;
}
.nexin-root .lonv3-b__foot p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(249, 249, 249, 0.7);
  margin: 0;
  max-width: 420px;
}
.nexin-root .lonv3-b__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #c7ff1e;
  color: #0a0a0b;
  border-radius: 99px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
}
.nexin-root .lonv3-b__cta:hover { background: #d4ff48; }

/* ────────────────── /o-nas VAR C: Gallery Exhibit ──────────────────── */
.nexin-root .lonv3-c {
  background: #f5f1e8;
  padding: clamp(72px, 9vw, 120px) 0;
}
.nexin-root .lonv3-c__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.nexin-root .lonv3-c__plate {
  background: #fff;
  padding: 24px 22px;
  border: 1px solid rgba(10, 10, 11, 0.12);
}
.nexin-root .lonv3-c__plate-tag {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: rgba(10, 10, 11, 0.5);
  margin-bottom: 14px;
}
.nexin-root .lonv3-c__plate-h {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-style: italic;
  font-size: 26px;
  letter-spacing: -0.015em;
  color: #0a0a0b;
  margin: 0 0 14px;
}
.nexin-root .lonv3-c__plate-cap {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(10, 10, 11, 0.6);
  margin: 0 0 22px;
}
.nexin-root .lonv3-c__plate-meta {
  list-style: none;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(10, 10, 11, 0.10);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nexin-root .lonv3-c__plate-meta li {
  display: flex;
  justify-content: space-between;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .lonv3-c__plate-meta span {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.5);
}
.nexin-root .lonv3-c__plate-meta strong {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  color: #0a0a0b;
}
.nexin-root .lonv3-c__art {
  margin: 0;
  align-self: stretch;
  display: flex;
  align-items: stretch;
}
.nexin-root .lonv3-c__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  box-shadow: 0 30px 80px -28px rgba(10, 10, 11, 0.32);
}
.nexin-root .lonv3-c__head { padding-top: 12px; }
.nexin-root .lonv3-c__head-pre {
  display: inline-block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: rgba(10, 10, 11, 0.5);
  margin-bottom: 22px;
}
.nexin-root .lonv3-c__head-h {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: #0a0a0b;
  margin: 0 0 22px;
}
.nexin-root .lonv3-c__head-h em {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(transparent 62%, rgba(199, 255, 30, 0.55) 62%, rgba(199, 255, 30, 0.55) 92%, transparent 92%);
  padding: 0 0.04em;
}
.nexin-root .lonv3-c__head-lead {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(10, 10, 11, 0.7);
  margin: 0 0 28px;
}
.nexin-root .lonv3-c__head-lead em {
  font-family: "Fraunces", serif;
  font-style: italic;
  color: #0a0a0b;
}
.nexin-root .lonv3-c__head-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: #0a0a0b;
  color: #c7ff1e;
  border-radius: 99px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: gap 0.25s;
}
.nexin-root .lonv3-c__head-cta:hover { gap: 14px; }

/* ────────────────── /o-nas VAR D: Product Launch ───────────────────── */
.nexin-root .lonv3-d {
  background: #fafaf8;
  padding: clamp(72px, 9vw, 130px) 0;
  position: relative;
  overflow: hidden;
}
.nexin-root .lonv3-d__bg-glow {
  position: absolute;
  top: 20%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 255, 30, 0.15) 0%, transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}
.nexin-root .lonv3-d > .container { position: relative; z-index: 1; }
.nexin-root .lonv3-d__top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: clamp(32px, 4vw, 56px);
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(10, 10, 11, 0.12);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nexin-root .lonv3-d__top-version { color: rgba(10, 10, 11, 0.55); }
.nexin-root .lonv3-d__top-rule { flex: 1; height: 1px; background: rgba(10, 10, 11, 0.18); max-width: 280px; }
.nexin-root .lonv3-d__top-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0a0a0b;
}
.nexin-root .lonv3-d__top-status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #c7ff1e;
  filter: brightness(0.85) saturate(1.6);
  box-shadow: 0 0 0 3px rgba(199, 255, 30, 0.3);
  animation: lhpv3Pulse 1.6s ease-in-out infinite;
}
.nexin-root .lonv3-d__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(40px, 5vw, 88px);
  align-items: center;
  margin-bottom: 36px;
}
.nexin-root .lonv3-d__h {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(48px, 7vw, 110px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: #0a0a0b;
  margin: 0 0 20px;
}
.nexin-root .lonv3-d__h em {
  font-style: italic;
  font-weight: 300;
  color: rgba(10, 10, 11, 0.4);
}
.nexin-root .lonv3-d__lead {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(10, 10, 11, 0.7);
  margin: 0 0 28px;
  max-width: 420px;
}
.nexin-root .lonv3-d__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(10, 10, 11, 0.10);
}
.nexin-root .lonv3-d__list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(10, 10, 11, 0.10);
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .lonv3-d__list strong {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: #c7ff1e;
  filter: brightness(0.85) saturate(1.4);
  letter-spacing: -0.02em;
}
.nexin-root .lonv3-d__list span {
  font-size: 14.5px;
  color: #0a0a0b;
  line-height: 1.55;
}
.nexin-root .lonv3-d__visual {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 80px -28px rgba(10, 10, 11, 0.32);
}
.nexin-root .lonv3-d__visual img {
  width: 100%;
  height: auto;
  display: block;
}
.nexin-root .lonv3-d__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(10, 10, 11, 0.12);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.55);
}
.nexin-root .lonv3-d__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0a0a0b;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nexin-root .lonv3-d__cta:hover .lonv3-d__cta-arrow { transform: translateX(4px); }
.nexin-root .lonv3-d__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #c7ff1e;
  color: #0a0a0b;
  filter: brightness(0.85) saturate(1.4);
  transition: transform 0.25s;
}

/* ────────────────── /o-nas VAR E: Workshop Journal ─────────────────── */
.nexin-root .lonv3-e {
  background: #fafaf8;
  padding: clamp(72px, 9vw, 130px) 0;
}
.nexin-root .lonv3-e__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.nexin-root .lonv3-e__plate {
  margin: 0;
  position: sticky;
  top: 96px;
}
.nexin-root .lonv3-e__plate img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 30px 80px -28px rgba(10, 10, 11, 0.32);
}
.nexin-root .lonv3-e__plate figcaption {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  padding: 0 4px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.5);
}
.nexin-root .lonv3-e__essay { padding-top: 12px; }
.nexin-root .lonv3-e__essay-pre {
  display: inline-block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.55);
  margin-bottom: 22px;
}
.nexin-root .lonv3-e__essay-h {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0a0a0b;
  margin: 0 0 28px;
}
.nexin-root .lonv3-e__essay-h em {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(transparent 64%, rgba(199, 255, 30, 0.55) 64%, rgba(199, 255, 30, 0.55) 92%, transparent 92%);
  padding: 0 0.04em;
}
.nexin-root .lonv3-e__essay-cols {
  column-count: 2;
  column-gap: 32px;
  margin-bottom: 32px;
}
.nexin-root .lonv3-e__essay-cols p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(10, 10, 11, 0.72);
  margin: 0 0 14px;
  break-inside: avoid;
}
.nexin-root .lonv3-e__essay-cols em {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  color: #0a0a0b;
}
.nexin-root .lonv3-e__essay-cols strong { font-weight: 700; color: #0a0a0b; }
.nexin-root .lonv3-e__essay-meta {
  list-style: none;
  margin: 0 0 32px;
  padding: 22px 0;
  border-top: 1px solid rgba(10, 10, 11, 0.12);
  border-bottom: 1px solid rgba(10, 10, 11, 0.12);
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.nexin-root .lonv3-e__essay-meta li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: rgba(10, 10, 11, 0.6);
}
.nexin-root .lonv3-e__essay-meta span {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 28px;
  letter-spacing: -0.03em;
  color: #0a0a0b;
}
.nexin-root .lonv3-e__essay-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0a0a0b;
  text-decoration: none;
  border-bottom: 1.5px solid #0a0a0b;
  padding-bottom: 4px;
  letter-spacing: 0.02em;
}
.nexin-root .lonv3-e__essay-cta:hover {
  color: rgba(10, 10, 11, 0.55);
  border-color: rgba(10, 10, 11, 0.4);
}

@media (max-width: 991px) {
  .nexin-root .lonv3-a__layout { grid-template-columns: 1fr; }
  .nexin-root .lonv3-a__portrait { aspect-ratio: 4 / 5; max-height: 480px; }
  .nexin-root .lonv3-c__layout { grid-template-columns: 1fr; }
  .nexin-root .lonv3-c__art img { aspect-ratio: 3 / 4; }
  .nexin-root .lonv3-d__layout { grid-template-columns: 1fr; gap: 36px; }
  .nexin-root .lonv3-e__layout { grid-template-columns: 1fr; gap: 36px; }
  .nexin-root .lonv3-e__plate { position: static; }
  .nexin-root .lonv3-e__essay-cols { column-count: 1; }
}


/* ═══════════════════════════════════════════════════════════════════
   LAB CTA v2 — visually dramatic closing-CTA variants (ctav2-{a..e})
   ═══════════════════════════════════════════════════════════════════ */

/* ────────────────── VAR A: Cinematic Letterbox ─────────────────────
   Per-page tinting via --cta-accent (default: brand lime). On case study
   pages this tints the eyebrow + title-em + CTA arrow halo. The lime
   laser line baked into the photo stays consistent (brand asset). */
.nexin-root .ctav2-a {
  --cta-accent: #c7ff1e;
  position: relative;
  background: #0a0a0b;
  color: #f9f9f9;
  min-height: clamp(420px, 50vh, 580px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.nexin-root .ctav2-a__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.nexin-root .ctav2-a__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nexin-root .ctav2-a__media-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,11,0.94) 0%, rgba(10,10,11,0.6) 38%, rgba(10,10,11,0.2) 72%, transparent 100%),
    linear-gradient(180deg, rgba(10,10,11,0.5) 0%, transparent 22%, transparent 78%, rgba(10,10,11,0.55) 100%);
}
.nexin-root .ctav2-a__container {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(48px, 6vw, 80px);
}
.nexin-root .ctav2-a__content { max-width: 540px; }
.nexin-root .ctav2-a__pre {
  display: inline-block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cta-accent);
  filter: brightness(1.05);
  margin-bottom: 24px;
}
.nexin-root .ctav2-a__h {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #f9f9f9;
  margin: 0 0 22px;
  max-width: 18ch;
}
.nexin-root .ctav2-a__h em {
  font-style: italic;
  font-weight: 300;
  color: var(--cta-accent);
}
.nexin-root .ctav2-a__lead {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(249, 249, 249, 0.72);
  margin: 0 0 32px;
  max-width: 50ch;
}
.nexin-root .ctav2-a__lead em {
  font-style: italic;
  font-family: "Fraunces", serif;
  color: #f9f9f9;
}
.nexin-root .ctav2-a__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.nexin-root .ctav2-a__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px 14px 22px;
  background: var(--cta-accent);
  color: #0a0a0b;
  border-radius: 99px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: gap 0.25s, box-shadow 0.25s;
}
.nexin-root .ctav2-a__cta:hover {
  gap: 14px;
  box-shadow: 0 12px 30px -8px color-mix(in oklab, var(--cta-accent) 55%, transparent);
}
.nexin-root .ctav2-a__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #0a0a0b;
  color: var(--cta-accent);
}
.nexin-root .ctav2-a__mail {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  color: rgba(249, 249, 249, 0.7);
  text-decoration: none;
  border-bottom: 1px dashed rgba(249, 249, 249, 0.3);
  padding-bottom: 2px;
  letter-spacing: 0.01em;
}
.nexin-root .ctav2-a__mail:hover {
  color: var(--cta-accent);
  border-color: var(--cta-accent);
}
.nexin-root .ctav2-a__credit {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(249, 249, 249, 0.4);
  text-align: right;
  white-space: nowrap;
}

/* ────────────────── VAR B: Sculpture Anchor ──────────────────────── */
.nexin-root .ctav2-b {
  background: #0a0a0b;
  color: #f9f9f9;
  padding: clamp(64px, 8vw, 110px) 0;
}
.nexin-root .ctav2-b__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.nexin-root .ctav2-b__figure {
  margin: 0;
  position: relative;
}
.nexin-root .ctav2-b__figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: clamp(12px, 1.5vw, 20px);
  box-shadow: 0 30px 80px -28px rgba(0, 0, 0, 0.7);
}
.nexin-root .ctav2-b__figure figcaption {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  padding: 0 4px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(249, 249, 249, 0.4);
}
.nexin-root .ctav2-b__pre {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(249, 249, 249, 0.55);
  margin-bottom: 22px;
}
.nexin-root .ctav2-b__pre-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #c7ff1e;
  box-shadow: 0 0 8px rgba(199, 255, 30, 0.7);
  animation: lhpv3Pulse 1.6s ease-in-out infinite;
}
.nexin-root .ctav2-b__h {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #f9f9f9;
  margin: 0 0 22px;
}
.nexin-root .ctav2-b__h em {
  font-style: italic;
  font-weight: 300;
  color: #c7ff1e;
}
.nexin-root .ctav2-b__lead {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(249, 249, 249, 0.7);
  margin: 0 0 32px;
  max-width: 440px;
}
.nexin-root .ctav2-b__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.nexin-root .ctav2-b__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: #c7ff1e;
  color: #0a0a0b;
  border-radius: 99px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: gap 0.25s;
}
.nexin-root .ctav2-b__cta:hover { gap: 14px; }
.nexin-root .ctav2-b__divider {
  width: 1px;
  height: 24px;
  background: rgba(249, 249, 249, 0.18);
}
.nexin-root .ctav2-b__mail {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  color: rgba(249, 249, 249, 0.7);
  text-decoration: none;
  border-bottom: 1px dashed rgba(249, 249, 249, 0.3);
  padding-bottom: 2px;
}
.nexin-root .ctav2-b__mail:hover { color: #c7ff1e; border-color: #c7ff1e; }

/* ────────────────── VAR C: Architectural Direction ───────────────── */
.nexin-root .ctav2-c {
  position: relative;
  background: #0a0a0b;
  color: #f9f9f9;
  min-height: clamp(440px, 60vh, 640px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.nexin-root .ctav2-c__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.nexin-root .ctav2-c__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: right center;
}
.nexin-root .ctav2-c__media-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,11,0.92) 0%, rgba(10,10,11,0.6) 38%, rgba(10,10,11,0.15) 70%, transparent 100%);
}
.nexin-root .ctav2-c__container {
  position: relative;
  z-index: 1;
}
.nexin-root .ctav2-c__content { max-width: 520px; }
.nexin-root .ctav2-c__pre {
  display: inline-block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #c7ff1e;
  margin-bottom: 22px;
}
.nexin-root .ctav2-c__h {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: #f9f9f9;
  margin: 0 0 22px;
}
.nexin-root .ctav2-c__h em {
  font-style: italic;
  font-weight: 300;
  color: #c7ff1e;
}
.nexin-root .ctav2-c__lead {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(249, 249, 249, 0.72);
  margin: 0 0 32px;
  max-width: 380px;
}
.nexin-root .ctav2-c__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nexin-root .ctav2-c__cta-label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #c7ff1e;
  border-bottom: 1.5px solid #c7ff1e;
  padding-bottom: 4px;
  letter-spacing: 0.02em;
}
.nexin-root .ctav2-c__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #c7ff1e;
  color: #0a0a0b;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nexin-root .ctav2-c__cta:hover .ctav2-c__cta-icon { transform: translateX(8px) rotate(-12deg); }

/* ────────────────── VAR D: Pulsing Beacon (production CTA) ─────────
   Light editorial band — three breathing rings around a clickable lime
   core button. Per-page accent via --cta-accent (default brand lime).
   Designed to contrast with the dark site footer below it: light → dark
   creates a natural rhythm rather than dark-on-dark stack. */
.nexin-root .ctav2-d {
  --cta-accent: #c7ff1e;
  background: #fafaf8;
  padding: clamp(80px, 10vw, 140px) 0 clamp(80px, 10vw, 140px);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(10, 10, 11, 0.06);
}
.nexin-root .ctav2-d::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 60% at 50% 30%,
      color-mix(in oklab, var(--cta-accent) 14%, transparent) 0%,
      transparent 65%
    );
  pointer-events: none;
}
.nexin-root .ctav2-d__stage {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.nexin-root .ctav2-d__beacon {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nexin-root .ctav2-d__beacon-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--cta-accent);
  filter: brightness(0.85) saturate(1.4);
  pointer-events: none;
}
.nexin-root .ctav2-d__beacon-ring--1 {
  animation: ctav2dPulse 2.4s ease-out infinite;
}
.nexin-root .ctav2-d__beacon-ring--2 {
  animation: ctav2dPulse 2.4s ease-out infinite;
  animation-delay: 0.6s;
}
.nexin-root .ctav2-d__beacon-ring--3 {
  animation: ctav2dPulse 2.4s ease-out infinite;
  animation-delay: 1.2s;
}
@keyframes ctav2dPulse {
  0% { transform: scale(0.5); opacity: 1; border-width: 2px; }
  100% { transform: scale(2.2); opacity: 0; border-width: 1px; }
}
@media (prefers-reduced-motion: reduce) {
  .nexin-root .ctav2-d__beacon-ring { animation: none !important; opacity: 0.3; }
}
.nexin-root .ctav2-d__beacon-core {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--cta-accent);
  color: #0a0a0b;
  filter: brightness(0.92) saturate(1.25);
  box-shadow:
    0 0 0 4px color-mix(in oklab, var(--cta-accent) 18%, transparent),
    0 14px 36px -8px color-mix(in oklab, var(--cta-accent) 55%, transparent);
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
}
.nexin-root .ctav2-d__beacon-core:hover {
  transform: scale(1.06);
  box-shadow:
    0 0 0 6px color-mix(in oklab, var(--cta-accent) 28%, transparent),
    0 20px 48px -8px color-mix(in oklab, var(--cta-accent) 65%, transparent);
}
.nexin-root .ctav2-d__pre {
  display: inline-block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.55);
  margin-bottom: 18px;
}
.nexin-root .ctav2-d__h {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(34px, 5.2vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #0a0a0b;
  margin: 0 0 20px;
}
.nexin-root .ctav2-d__h em {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(
    transparent 64%,
    color-mix(in oklab, var(--cta-accent) 55%, transparent) 64%,
    color-mix(in oklab, var(--cta-accent) 55%, transparent) 92%,
    transparent 92%
  );
  padding: 0 0.04em;
}
.nexin-root .ctav2-d__lead {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(10, 10, 11, 0.65);
  margin: 0 auto 36px;
  max-width: 52ch;
}
.nexin-root .ctav2-d__lead em {
  font-style: italic;
  font-family: "Fraunces", serif;
  color: #0a0a0b;
}
.nexin-root .ctav2-d__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.nexin-root .ctav2-d__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: #0a0a0b;
  color: var(--cta-accent);
  border-radius: 99px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: gap 0.25s, box-shadow 0.25s;
}
.nexin-root .ctav2-d__cta:hover {
  gap: 14px;
  box-shadow: 0 12px 32px -8px rgba(10, 10, 11, 0.45);
}
.nexin-root .ctav2-d__mail {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13.5px;
  color: rgba(10, 10, 11, 0.65);
  text-decoration: none;
  border-bottom: 1px dashed rgba(10, 10, 11, 0.3);
  padding-bottom: 2px;
  letter-spacing: 0.01em;
}
.nexin-root .ctav2-d__mail:hover {
  color: #0a0a0b;
  border-color: #0a0a0b;
}
@media (max-width: 640px) {
  .nexin-root .ctav2-d { padding: 56px 0 64px; }
  .nexin-root .ctav2-d__beacon { width: 96px; height: 96px; margin-bottom: 28px; }
  .nexin-root .ctav2-d__beacon-core { width: 56px; height: 56px; }
  .nexin-root .ctav2-d__cta { padding: 12px 22px; font-size: 13px; }
  .nexin-root .ctav2-d__meta { font-size: 9.5px; }
}
.nexin-root .ctav2-d__meta {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.45);
}

/* ────────────────── VAR E: Diagonal Slab ─────────────────────────── */
.nexin-root .ctav2-e {
  position: relative;
  min-height: clamp(420px, 55vh, 600px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
}
.nexin-root .ctav2-e__bg-light {
  position: absolute;
  inset: 0;
  background: #f5f1e8;
  clip-path: polygon(0 0, 100% 0, 100% 38%, 0 62%);
  z-index: 0;
}
.nexin-root .ctav2-e__bg-dark {
  position: absolute;
  inset: 0;
  background: #0a0a0b;
  clip-path: polygon(0 62%, 100% 38%, 100% 100%, 0 100%);
  z-index: 0;
}
.nexin-root .ctav2-e__container {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
}
.nexin-root .ctav2-e__layout {
  display: grid;
  grid-template-columns: clamp(120px, 14vw, 180px) minmax(0, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px) clamp(28px, 4vw, 64px);
  width: 100%;
  padding: clamp(56px, 7vw, 96px) 0;
}
.nexin-root .ctav2-e__index {
  grid-column: 1;
  grid-row: 1 / 3;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(120px, 18vw, 260px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: #0a0a0b;
  margin: 0;
  align-self: center;
  -webkit-text-stroke: 0;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(180deg, #0a0a0b 0%, #0a0a0b 38%, #c7ff1e 38%, #c7ff1e 62%, #f9f9f9 62%, #f9f9f9 100%);
  -webkit-text-fill-color: transparent;
  filter: brightness(0.95);
}
.nexin-root .ctav2-e__upper {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  padding-bottom: 12px;
  color: #0a0a0b;
}
.nexin-root .ctav2-e__pre {
  display: inline-block;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.02em;
  color: rgba(10, 10, 11, 0.55);
  margin-bottom: 12px;
}
.nexin-root .ctav2-e__h {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #0a0a0b;
  margin: 0;
}
.nexin-root .ctav2-e__lower {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  padding-top: 24px;
  color: #f9f9f9;
}
.nexin-root .ctav2-e__lead {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(249, 249, 249, 0.78);
  margin: 0 0 28px;
  max-width: 56ch;
}
.nexin-root .ctav2-e__lead em {
  font-family: "Fraunces", serif;
  font-style: italic;
  color: #c7ff1e;
  font-weight: 400;
}
.nexin-root .ctav2-e__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.nexin-root .ctav2-e__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px 14px 22px;
  background: #c7ff1e;
  color: #0a0a0b;
  border-radius: 99px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: gap 0.25s, box-shadow 0.25s;
}
.nexin-root .ctav2-e__cta:hover {
  gap: 14px;
  box-shadow: 0 12px 32px -8px rgba(199, 255, 30, 0.55);
}
.nexin-root .ctav2-e__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #0a0a0b;
  color: #c7ff1e;
}
.nexin-root .ctav2-e__meta {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  color: rgba(249, 249, 249, 0.6);
  letter-spacing: 0.02em;
}

@media (max-width: 991px) {
  /* CTA-A mobile: stack content vertically with stronger veil for readability */
  .nexin-root .ctav2-a {
    min-height: clamp(360px, 60vh, 520px);
    align-items: stretch;
  }
  .nexin-root .ctav2-a__media img {
    object-position: 60% center;
  }
  .nexin-root .ctav2-a__media-veil {
    background:
      linear-gradient(180deg, rgba(10,10,11,0.55) 0%, rgba(10,10,11,0.85) 65%, rgba(10,10,11,0.95) 100%);
  }
  .nexin-root .ctav2-a__container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 18px;
    padding-top: clamp(80px, 18vw, 140px);
    padding-bottom: clamp(36px, 6vw, 56px);
  }
  .nexin-root .ctav2-a__content { max-width: 100%; }
  .nexin-root .ctav2-a__h { margin-bottom: 18px; max-width: 100%; }
  .nexin-root .ctav2-a__lead { margin-bottom: 24px; }
  .nexin-root .ctav2-a__actions { gap: 16px; }
  .nexin-root .ctav2-a__credit {
    text-align: left;
    flex-direction: row;
    gap: 14px;
    font-size: 9.5px;
  }
  /* Other CTA variants — kept for /lab/cta-banner page */
  .nexin-root .ctav2-b__layout { grid-template-columns: 1fr; gap: 32px; }
  .nexin-root .ctav2-c__media-veil { background: linear-gradient(180deg, rgba(10,10,11,0.7) 0%, rgba(10,10,11,0.92) 100%); }
  .nexin-root .ctav2-e__bg-light { clip-path: polygon(0 0, 100% 0, 100% 32%, 0 38%); }
  .nexin-root .ctav2-e__bg-dark { clip-path: polygon(0 38%, 100% 32%, 100% 100%, 0 100%); }
  .nexin-root .ctav2-e__layout { grid-template-columns: 1fr; }
  .nexin-root .ctav2-e__index { grid-row: auto; grid-column: 1; font-size: 28vw; }
  .nexin-root .ctav2-e__upper { grid-row: auto; grid-column: 1; padding-top: 0; }
  .nexin-root .ctav2-e__lower { grid-row: auto; grid-column: 1; padding-top: 16px; }
}
@media (max-width: 640px) {
  .nexin-root .ctav2-a__h { font-size: clamp(28px, 8vw, 40px); }
  .nexin-root .ctav2-a__lead { font-size: 14px; }
  .nexin-root .ctav2-a__cta { padding: 12px 12px 12px 18px; font-size: 13px; }
  .nexin-root .ctav2-a__credit { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   CTAv3 — Editorial closing band (case study only)
   Full-width light band, category-tinted side rule + accent details.
   Used exclusively on /projekty/[slug] — other subpages rely on the
   site footer (no per-page CTA banner).
   ═══════════════════════════════════════════════════════════════════ */
.nexin-root .ctav3 {
  --cta-accent: #c7ff1e;
  position: relative;
  background: #f5f1e8;
  padding: clamp(72px, 9vw, 130px) 0 clamp(80px, 9vw, 130px);
  border-top: 1px solid rgba(10, 10, 11, 0.08);
  overflow: hidden;
  isolation: isolate;
}
.nexin-root .ctav3::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 80% 20%,
      color-mix(in oklab, var(--cta-accent) 18%, transparent) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 40% at 10% 90%,
      color-mix(in oklab, var(--cta-accent) 10%, transparent) 0%,
      transparent 60%
    );
  pointer-events: none;
  z-index: 0;
}
.nexin-root .ctav3__rule {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(48px, 6vw, 88px);
  height: 3px;
  background: var(--cta-accent);
  filter: brightness(0.85) saturate(1.4);
  z-index: 1;
}
.nexin-root .ctav3__inner {
  position: relative;
  z-index: 1;
}

/* Top row — volume marker + next-entry */
.nexin-root .ctav3__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: clamp(28px, 3.5vw, 44px);
  padding-bottom: clamp(20px, 2vw, 28px);
  border-bottom: 1px dashed rgba(10, 10, 11, 0.20);
  flex-wrap: wrap;
}
.nexin-root .ctav3__eyebrow {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.55);
}
.nexin-root .ctav3__next {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.nexin-root .ctav3__next-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.45);
}
.nexin-root .ctav3__next-num {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 30px);
  letter-spacing: -0.03em;
  color: var(--cta-accent);
  filter: brightness(0.7) saturate(1.6);
}

/* Editorial title */
.nexin-root .ctav3__h {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #0a0a0b;
  margin: 0 0 clamp(20px, 2.4vw, 36px);
  max-width: 16ch;
}
.nexin-root .ctav3__h em {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(
    transparent 64%,
    color-mix(in oklab, var(--cta-accent) 55%, transparent) 64%,
    color-mix(in oklab, var(--cta-accent) 55%, transparent) 92%,
    transparent 92%
  );
  padding: 0 0.04em;
  white-space: nowrap;
}

/* Lead text */
.nexin-root .ctav3__lead {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.65;
  color: rgba(10, 10, 11, 0.7);
  margin: 0 0 clamp(36px, 4vw, 56px);
  max-width: 56ch;
}

/* Footer row — actions + meta */
.nexin-root .ctav3__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid rgba(10, 10, 11, 0.14);
}
.nexin-root .ctav3__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.nexin-root .ctav3__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  position: relative;
}
.nexin-root .ctav3__cta-label {
  font-size: 16px;
  font-weight: 700;
  color: #0a0a0b;
  letter-spacing: -0.005em;
  border-bottom: 1.5px solid #0a0a0b;
  padding-bottom: 4px;
  transition: border-color 0.25s;
}
.nexin-root .ctav3__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cta-accent);
  color: #0a0a0b;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
  box-shadow: 0 0 0 0 transparent;
}
.nexin-root .ctav3__cta:hover .ctav3__cta-arrow {
  transform: translateX(6px) rotate(-12deg);
  box-shadow: 0 0 0 8px color-mix(in oklab, var(--cta-accent) 25%, transparent);
}
.nexin-root .ctav3__cta:hover .ctav3__cta-label {
  border-color: var(--cta-accent);
  filter: brightness(0.7) saturate(1.6);
}
.nexin-root .ctav3__divider {
  display: inline-block;
  width: 1px;
  height: 28px;
  background: rgba(10, 10, 11, 0.20);
}
.nexin-root .ctav3__mail {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(10, 10, 11, 0.65);
  text-decoration: none;
  letter-spacing: 0.01em;
  border-bottom: 1px dashed rgba(10, 10, 11, 0.30);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}
.nexin-root .ctav3__mail:hover {
  color: #0a0a0b;
  border-color: #0a0a0b;
}
.nexin-root .ctav3__meta {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(10, 10, 11, 0.45);
  text-align: right;
}

@media (max-width: 991px) {
  .nexin-root .ctav3__h { font-size: clamp(34px, 8vw, 56px); max-width: 100%; }
  .nexin-root .ctav3__h em { white-space: normal; }
}
@media (max-width: 767px) {
  /* Mobile: hide entire CTA banner — footer already has contact info */
  .nexin-root .ctav3 { display: none; }
}
