/* ── RESET ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { margin: 0;
  font-family: var(--nx-body);
  background: var(--nx-bg);
  color: var(--nx-text);
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── DESIGN TOKENS ─────────────────────── */
:root {
  /* palette */
  --nx-bg:        #04080f;
  --nx-bg2:       #060c18;
  --nx-accent:    #2563eb;
  --nx-accent2:   #38bdf8;
  --nx-accent3:   #7c3aed;
  --nx-green:     #00e676;
  --nx-text:      #e2eeff;
  --nx-muted:     #5d7aa0;
  --nx-border:    rgba(56, 189, 248, 0.12);
  --nx-glass:     rgba(6, 14, 30, 0.55);
  --nx-blur:      24px;

  /* type */
  --nx-serif:     'Instrument Serif', Georgia, serif;
  --nx-display:   'Cabinet Grotesk', sans-serif;
  --nx-body:      'Outfit', sans-serif;

  /* spacing */
  --nx-gutter:    clamp(1rem, 2.5vw, 2rem);
  --nx-section:   clamp(5rem, 8vw, 8rem);

  /* shape */
  --nx-r1: 10px;  --nx-r2: 18px;  --nx-r3: 28px;

  /* motion */
  --nx-ease:  cubic-bezier(.22,1,.36,1);
  --nx-dur:   .4s;

  /* shadows */
  --nx-shadow:  0 8px 40px rgba(0,60,200,.18);
  --nx-shadow2: 0 20px 60px rgba(0,40,160,.28);

  /* slider */
  --sld-big:  860px;
  --sld-peek: 120px;
  --sld-gap:  16px;
  --sld-h:    520px;
}

/* ── GLASS ─────────────────────────────── */
.nx-glass {
  background: var(--nx-glass);
  backdrop-filter: blur(var(--nx-blur));
  -webkit-backdrop-filter: blur(var(--nx-blur));
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-r3);
  box-shadow: var(--nx-shadow);
}

/* ── GRADIENT TEXT ─────────────────────── */
.nx-grad {
  background: linear-gradient(125deg, var(--nx-accent2) 0%, var(--nx-accent) 50%, var(--nx-accent3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── ITALIC (Instrument Serif) ──────────── */
.nx-italic {
  font-family: var(--nx-serif);
  font-style: italic;
  font-weight: 400;
}

/* ── TYPOGRAPHY ─────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--nx-display);
  line-height: 1.06;
  letter-spacing: -.02em;
}
h1  { font-size: clamp(3rem, 6vw, 5.8rem); font-weight: 900; }
h2  { font-size: clamp(2.1rem, 4vw, 3.6rem); font-weight: 800; }
h3  { font-size: clamp(1.1rem, 1.8vw, 1.45rem); font-weight: 700; }
p   { font-size: clamp(.9rem, 1.2vw, 1.02rem); line-height: 1.75; color: var(--nx-muted); }

/* ── CONTAINER ─────────────────────────── */
.nx-container {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

/* ── EYEBROW ────────────────────────────── */
.nx-eyebrow {
  display: inline-flex; align-items: center;
  font-family: var(--nx-display);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--nx-accent2);
  padding: .26rem .9rem;
  background: rgba(56,189,248,.07);
  border: 1px solid rgba(56,189,248,.18);
  border-radius: 100px;
  margin-bottom: .9rem;
}

/* ── BUTTONS ────────────────────────────── */
.nx-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--nx-display); font-weight: 700; font-size: .9rem;
  padding: .8rem 2rem; border-radius: 100px;
  border: none; cursor: none;
  transition: transform var(--nx-dur) var(--nx-ease),
              box-shadow var(--nx-dur) var(--nx-ease),
              background var(--nx-dur), color var(--nx-dur);
  position: relative; overflow: hidden; letter-spacing: .01em;
}
.nx-btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.1);
  opacity: 0; transition: opacity .25s;
}
.nx-btn:hover::after { opacity: 1; }
.nx-btn:hover { transform: translateY(-3px); }

.nx-btn-primary {
  background: linear-gradient(130deg, var(--nx-accent) 0%, var(--nx-accent3) 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(37,99,235,.5);
}
.nx-btn-primary:hover { box-shadow: 0 10px 36px rgba(37,99,235,.65); }

.nx-btn-ghost {
  background: transparent; color: var(--nx-text);
  border: 1.5px solid rgba(255,255,255,.14);
}
.nx-btn-ghost:hover { border-color: var(--nx-accent2); color: var(--nx-accent2); }

/* ── PULSE DOT ──────────────────────────── */
.nx-pulse-dot {
  display: inline-block;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--nx-green);
  animation: nx-pulse 2.4s infinite;
  flex-shrink: 0;
}
@keyframes nx-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(0,230,118,.6); }
  70%  { box-shadow: 0 0 0 8px rgba(0,230,118,0);  }
  100% { box-shadow: 0 0 0 0   rgba(0,230,118,0);  }
}

/* ── FADE IN ─────────────────────────────── */
@keyframes nx-fadein {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}
.nx-fadein {
  opacity: 0;
  animation: nx-fadein .8s var(--nx-ease) var(--nx-d, 0s) both;
}

/* ── REVEAL ──────────────────────────────── */
.nx-reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .75s var(--nx-ease), transform .75s var(--nx-ease);
  transition-delay: var(--fd, 0s);
}
.nx-reveal.nx-visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════════ */
.nx-cursor { position: fixed; top:0; left:0; z-index:9999; pointer-events:none; }
.nx-cursor__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--nx-accent2);
  transform: translate(-50%,-50%);
}
.nx-cursor__ring {
  position: absolute; top:0; left:0;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid rgba(56,189,248,.45);
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, border-color .2s, opacity .2s;
}
.nx-cursor--hover .nx-cursor__ring {
  width: 50px; height: 50px; border-color: var(--nx-accent2);
}
/* ═══════════════════════════════════════════
   HEADER — floating white capsule
═══════════════════════════════════════════ */
.nx-header {
  position: fixed;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  width: min(98%, 1470px);
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.6rem;
  border-radius: 100px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(15, 23, 42, .08), 0 1px 2px rgba(15,23,42,.04);
  border: 1px solid rgba(15,23,42,.06);
  transition: box-shadow .4s var(--nx-ease), transform .3s var(--nx-ease);
}
.nx-header.nx-scrolled {
  box-shadow: 0 8px 28px rgba(15, 23, 42, .14), 0 1px 2px rgba(15,23,42,.06);
}

.nx-logo {
  display: flex; align-items: center;
}
.nx-logo__img {
  height: 56px;
  width: auto;
  display: block;
}

.nx-nav {
  display: flex; align-items: center; gap: 2.2rem;
}
.nx-nav__a {
  font-family: var(--nx-display); font-weight: 500; font-size: .85rem;
  color: rgba(15,23,42,.65);
  position: relative; transition: color var(--nx-dur);
}
.nx-nav__a::after {
  content: ''; position: absolute; bottom: -4px; left:0; right:100%;
  height: 1.5px; background: var(--nx-accent2);
  transition: right .35s var(--nx-ease);
}
.nx-nav__a:hover { color: #0f172a; }
.nx-nav__a:hover::after { right: 0; }

.nx-nav__cta {
  padding: .5rem 1.3rem; border-radius: 100px;
  background: var(--nx-accent);
  border: 1px solid var(--nx-accent);
  font-family: var(--nx-display); font-weight: 700; font-size: .82rem;
  color: #ffffff;
  transition: background var(--nx-dur), box-shadow var(--nx-dur), transform var(--nx-dur);
}
.nx-nav__cta:hover {
  background: var(--nx-accent3);
  box-shadow: 0 4px 16px rgba(37,99,235,.35);
  transform: translateY(-1px);
}

.nx-nav__login {
  padding: 7px 16px;
  border: 1px solid var(--nx-accent2);
  color: var(--nx-accent2);
  border-radius: 100px;
  margin-left: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: .82rem;
  transition: .3s;
}
.nx-nav__login:hover {
  background: var(--nx-accent2);
  color: #fff;
}

.nx-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nx-hamburger span {
  display: block; height: 2px; width: 24px;
  background: #0f172a; border-radius: 2px;
  transition: all .3s;
}

.nx-mob-nav {
  padding-bottom: 12rem;
  display: none; position: fixed; inset: 96px 0 0;
  z-index: 890; background: rgba(255,255,255,.98);
  backdrop-filter: blur(24px);
  flex-direction: column; align-items: center; justify-content: center; gap: 2.2rem;
}
.nx-mob-nav.nx-open { display: flex; }
.nx-mob-nav .nx-nav__a { font-size: 1.4rem; color: #0f172a; }
/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.nx-hero {
  min-height: 100dvh;
  position: relative; overflow: hidden;
  background: linear-gradient(170deg, #04080f 0%, #060d1e 50%, #04080f 100%);
  /* hero starts from top — no padding since nav is transparent overlay */
  display: flex; align-items: center;
}

/* noise grain overlay */
.nx-hero__noise {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* subtle grid */
.nx-hero__grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(37,99,235,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000 20%, transparent 80%);
}

/* canvas for particles */
.nx-hero__canvas {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  width: 100%; height: 100%;
}

/* orbs */
.nx-orb {
  position: absolute; border-radius: 50%; filter: blur(90px);
  pointer-events: none; animation: nx-drift 16s ease-in-out infinite;
}
.nx-orb-a {
  width: 600px; height: 600px; top: -150px; right: -100px;
  background: radial-gradient(circle, rgba(37,99,235,.2) 0%, transparent 65%);
}
.nx-orb-b {
  width: 400px; height: 400px; bottom: -80px; left: -100px;
  background: radial-gradient(circle, rgba(124,58,237,.18) 0%, transparent 65%);
  animation-delay: -6s;
}
.nx-orb-c {
  width: 300px; height: 300px; top: 40%; left: 40%;
  background: radial-gradient(circle, rgba(56,189,248,.1) 0%, transparent 65%);
  animation-delay: -11s;
}
@keyframes nx-drift {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(30px,-35px) scale(1.07); }
  66%      { transform: translate(-20px,22px) scale(.94); }
}

/* hero layout */
.nx-hero__wrap {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  width: 100%;
  padding-top: 76px; /* offset for fixed nav */
  padding-bottom: 4rem;
  min-height: 100dvh;
}

/* LEFT */
.nx-hero__left {
  display: flex; flex-direction: column; gap: 1.8rem;
}

.nx-badge {
  display: inline-flex; align-items: center; gap: 9px;
  width: fit-content; padding: .4rem 1.1rem; border-radius: 100px;
  background: rgba(37,99,235,.1); border: 1px solid rgba(37,99,235,.25);
  font-size: .78rem; font-weight: 500; color: var(--nx-muted);
  font-family: var(--nx-body);
}

.nx-hero__title {
  display: flex; flex-direction: column; gap: .05em;
  color: var(--nx-text);
}
.nx-hero__title-line { display: block; }
.nx-hero__title-line--indent { padding-left: .18em; }
.nx-hero__title .nx-italic {
  font-size: clamp(3.2rem, 6.5vw, 6.2rem);
  background: linear-gradient(125deg, #60a5fa 0%, #38bdf8 40%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nx-hero__para { max-width: 490px; }

.nx-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* stats */
.nx-hero__stats {
  display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap;
  padding-top: .4rem;
}
.nx-hstat { display: flex; flex-direction: column; font-family: var(--nx-display); }
.nx-hstat__val {
  font-size: 1.6rem; font-weight: 900; letter-spacing: -.02em;
  background: linear-gradient(125deg, var(--nx-accent2), var(--nx-accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nx-hstat sup { font-size: .7rem; color: var(--nx-accent2); -webkit-text-fill-color: var(--nx-accent2); vertical-align: super; }
.nx-hstat span { font-size: .7rem; color: var(--nx-muted); margin-top: .15rem; letter-spacing: .02em; }
.nx-hstat__sep { width: 1px; height: 38px; background: rgba(56,189,248,.14); }

/* RIGHT */
.nx-hero__right {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 560px;
}

/* sphere */
.nx-sphere {
  position: relative;
  width: 380px; height: 380px;
  display: flex; align-items: center; justify-content: center;
  animation: nx-float 8s ease-in-out infinite;
}
@keyframes nx-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-20px); }
}

.nx-sphere__inner {
  position: absolute; inset: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, rgba(56,189,248,.25) 0%, rgba(37,99,235,.12) 45%, rgba(4,8,15,.8) 100%);
  border: 1px solid rgba(56,189,248,.2);
  box-shadow: 0 0 80px rgba(37,99,235,.25), inset 0 0 60px rgba(37,99,235,.08);
}

.nx-sphere__ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(56,189,248,.2);
}
.nx-sphere__ring--1 {
  inset: 20px;
  border-color: rgba(56,189,248,.12);
  animation: nx-spin 12s linear infinite;
  border-top-color: rgba(56,189,248,.6);
}
.nx-sphere__ring--2 {
  inset: 0;
  border-color: rgba(124,58,237,.1);
  animation: nx-spin 20s linear infinite reverse;
  border-right-color: rgba(124,58,237,.4);
  transform-origin: center;
}
.nx-sphere__ring--3 {
  inset: 44px;
  border-color: rgba(37,99,235,.08);
  animation: nx-spin 7s linear infinite;
  border-bottom-color: rgba(37,99,235,.35);
}
@keyframes nx-spin { to { transform: rotate(360deg); } }

.nx-sphere__glow {
  position: absolute; bottom: -20px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 30px;
  background: radial-gradient(ellipse, rgba(37,99,235,.55) 0%, transparent 70%);
  filter: blur(18px);
}

/* platform + city */
.nx-platform {
  position: absolute; bottom: 60px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
}
.nx-platform__disc {
  width: 220px; height: 16px; border-radius: 50%;
  background: linear-gradient(135deg, #1a3a8f 0%, #0b1f55 70%, #080f35 100%);
  border: 1px solid rgba(80,140,255,.4);
  box-shadow: 0 6px 28px rgba(0,50,200,.55), inset 0 1px 0 rgba(100,160,255,.25);
}
.nx-city {
  display: flex; align-items: flex-end; gap: 5px;
  margin-bottom: 2px;
}
.nx-tw {
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #2855d4 0%, #0e1f70 50%, #06103a 100%);
  border: 1px solid rgba(80,130,255,.4);
  position: relative; overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(120,160,255,.3), 0 0 18px rgba(20,60,200,.4);
}
.nx-tw__tip {
  position: absolute; top: -9px; left: 50%; transform: translateX(-50%);
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-bottom: 10px solid #4a80ff;
  filter: drop-shadow(0 0 5px rgba(0,200,255,.7));
}
.nx-tw__windows {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    180deg, transparent 0, transparent 5px,
    rgba(100,160,255,.07) 5px, rgba(100,160,255,.07) 6px
  );
}
.nx-tw--1 { width: 22px; height: 70px; }
.nx-tw--2 { width: 30px; height: 120px; }
.nx-tw--3 { width: 38px; height: 185px;
  background: linear-gradient(180deg, #1e44d4 0%, #0c1c6a 50%, #060f38 100%); }
.nx-tw--4 { width: 30px; height: 150px; }
.nx-tw--5 { width: 34px; height: 100px; }
.nx-tw--6 { width: 24px; height: 80px; }
.nx-tw--7 { width: 18px; height: 52px; }

/* floating pills */
.nx-pill {
  position: absolute;
  display: flex; align-items: center; gap: 7px;
  padding: .38rem .9rem; border-radius: 100px;
  background: rgba(6,14,30,.85);
  border: 1px solid rgba(56,189,248,.25);
  backdrop-filter: blur(12px);
  font-family: var(--nx-display); font-size: .7rem; font-weight: 700;
  color: rgba(226,238,255,.85);
  white-space: nowrap;
  animation: nx-pill-float 6s ease-in-out infinite;
}
.nx-pill em { color: var(--nx-accent2); font-style: normal; margin-left: 4px; }
.nx-pill__dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--nx-green);
  animation: nx-pulse 2s infinite;
}
.nx-pill--1 { top: 18px;   left: -30px;  animation-delay: 0s; }
.nx-pill--2 { top: 90px;   right: -20px; animation-delay: -1.8s; }
.nx-pill--3 { bottom: 120px; left: -10px; animation-delay: -3.5s; }
.nx-pill--4 { bottom: 80px;  right: -15px; animation-delay: -4.8s; }
@keyframes nx-pill-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* tx card */
.nx-txcard {
  position: absolute;
  bottom: 0; left: -30px;
  width: 250px; padding: 1rem 1.15rem;
  border-radius: var(--nx-r2) !important;
  z-index: 4;
}
.nx-txcard__head {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--nx-display); font-size: .68rem; font-weight: 700;
  color: var(--nx-muted); margin-bottom: .8rem; letter-spacing: .06em;
  text-transform: uppercase;
}
.nx-txcard__feed { display: flex; flex-direction: column; gap: .5rem; }
.nx-txrow {
  display: flex; align-items: center; gap: .6rem;
  padding: .45rem .6rem; border-radius: 10px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  transition: background .3s;
}
.nx-txrow span { font-size: .95rem; flex-shrink: 0; }
.nx-txrow b { display: block; color: var(--nx-text); font-size: .75rem; font-weight: 600; }
.nx-txrow small { color: var(--nx-muted); font-size: .65rem; }
.nx-txrow em { margin-left: auto; color: var(--nx-green); font-style: normal; font-weight: 700; font-size: .8rem; }



/* ══════════════════════════════════════
   SECTION WRAPPER
══════════════════════════════════════ */
.stripe-section {
  max-width: 100%;
  overflow: hidden; /* clips the peeking cards */
  padding: 1rem;
}

/* ── Header row ── */
.stripe-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.stripe-header-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color:var(--nx-accent2);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.4rem;
  position: relative;
}

.stripe-header-text h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #635bff, #38bdf8);
  margin-top: 8px;
  border-radius: 2px;
}

.stripe-header-text p {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: #5b7a99;
  font-weight: 400;
  max-width: 500px;
  line-height: 1.6;
}
/* ── Arrow buttons ── */
.stripe-arrows {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.arrow-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #d8dde6;
  background: #ffffff;
  color: #3c4257;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  flex-shrink: 0;
}
.arrow-btn:hover:not(:disabled) {
  border-color: #635bff;
  color: #635bff;
  background: #f5f4ff;
  transform: scale(1.06);
}
.arrow-btn:active:not(:disabled) { transform: scale(0.96); }
.arrow-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.arrow-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   TRACK CONTAINER — clips overflow, shows peeks
══════════════════════════════════════ */
.stripe-track-outer {
  padding-left: 4rem;
  position: relative;
  cursor: grab;
  user-select: none;
}
.stripe-track-outer:active { cursor: grabbing; }

/* ── The scrolling track ── */
.stripe-track {
  display: flex;
  gap: 1.25rem;                /* gap between cards */
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  align-items: flex-start;
}

/* ══════════════════════════════════════
   CARD
══════════════════════════════════════ */
.stripe-card {
  flex-shrink: 0;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: #f0f2f5;
  transition:
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.45s ease;
  cursor: pointer;
}

/* Active (front) card — large */
.stripe-card.is-active {
  box-shadow:
    0 2px 4px rgba(0,0,0,0.04),
    0 8px 24px rgba(0,0,0,0.08),
    0 24px 64px rgba(0,0,0,0.06);
}

/* Peek cards — slightly scaled + dimmed */
.stripe-card.is-peek {
  opacity: 0.72;
  transform: scale(0.97);
}
.stripe-card.is-peek:hover {
  opacity: 0.92;
  transform: scale(0.985);
}

/* Card image */
.stripe-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.stripe-card.is-active:hover .stripe-card__img {
  transform: scale(1.025);
}

/* Card overlay gradient + meta */
.stripe-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 45%,
    rgba(10, 37, 64, 0.72) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.75rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.stripe-card.is-active .stripe-card__overlay,
.stripe-card:hover .stripe-card__overlay {
  opacity: 1;
}

.stripe-card__tag {
  display: inline-block;
  background: rgba(99, 91, 255, 0.9);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: 100px;
  margin-bottom: 0.65rem;
  width: fit-content;
}

.stripe-card__title {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.25);
}

.stripe-card__sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

/* ══════════════════════════════════════
   PROGRESS DOTS
══════════════════════════════════════ */
.stripe-dots {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  padding: 1.75rem 4rem 0;
}

.stripe-dot {
  height: 4px;
  border-radius: 2px;
  background: #d1d9e0;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: none;
  outline: none;
  padding: 0;
  flex-shrink: 0;
}
.stripe-dot.active {
  background: #635bff;
  width: 24px !important;
}
.stripe-dot:hover:not(.active) {
  background: #9da8b7;
}

/* ══════════════════════════════════════
   PROGRESS BAR (thin line under header)
══════════════════════════════════════ */
.stripe-progress {
  height: 2px;
  background: #eef0f3;
  position: relative;
  overflow: hidden;
  margin: 0 4rem 0;
  border-radius: 2px;
}
.stripe-progress-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: #635bff;
  border-radius: 2px;
  transition: width 0.4s linear;
}

.stripe-card {
  width: var(--card-w, 820px);
  height: var(--card-h, 480px);
}

/* Small peek cards */
.stripe-card.is-peek {
  width: var(--peek-w, 160px);
  height: var(--card-h, 480px);
}

/* ══════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════ */
@media (max-width: 1200px) {
  .stripe-header { padding: 0 2.5rem 1.75rem; }
  .stripe-track-outer { padding-left: 2.5rem; }
  .stripe-dots { padding: 1.5rem 2.5rem 0; }
  .stripe-progress { margin: 0 2.5rem; }
}

@media (max-width: 768px) {
  body { padding: 2rem 0 4rem; }
  .stripe-header { padding: 0 1.5rem 1.5rem; flex-wrap: wrap; gap: 1rem; }
  .stripe-header-text h2 { font-size: 1.4rem; }
  .stripe-track-outer { padding-left: 1.5rem; }
  .stripe-dots { padding: 1.25rem 1.5rem 0; }
  .stripe-progress { margin: 0 1.5rem; }
  .stripe-card__overlay { padding: 1.25rem; }
}

@media (max-width: 480px) {
  .stripe-header { padding: 0 1rem 1.25rem; }
  .stripe-track-outer { padding-left: 1rem; }
  .stripe-dots { padding: 1rem 1rem 0; }
  .stripe-progress { margin: 0 1rem; }
  .stripe-card__title { font-size: 0.95rem; }
  .stripe-card__sub { display: none; }
}
/* ══════════════════════════════════════
   TOUCH DRAG VISUAL FEEDBACK
══════════════════════════════════════ */
.stripe-track.is-dragging {
  transition: none !important;
  cursor: grabbing;
}
/* ═══════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════ */
.nx-features {
  padding-block: var(--nx-section);
  background: var(--nx-bg);
}
.nx-section-hd {
  text-align: center; margin-bottom: 3.5rem;
  display: flex; flex-direction: column; align-items: center;
}
.nx-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--nx-gutter);
}
.nx-fc {
  padding: 2.2rem 2rem;
  border-radius: var(--nx-r2) !important;
  position: relative; overflow: hidden;
  transition: transform var(--nx-dur) var(--nx-ease), box-shadow var(--nx-dur);
  transition-delay: var(--fd, 0s);
}
.nx-fc::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 100% 65% at 50% 0%, rgba(37,99,235,.1) 0%, transparent 70%);
  opacity: 0; transition: opacity var(--nx-dur);
}
.nx-fc:hover { transform: translateY(-8px); box-shadow: var(--nx-shadow2); }
.nx-fc:hover::before { opacity: 1; }
.nx-fc__icon {
  font-size: 2.2rem; margin-bottom: 1.2rem;
  filter: drop-shadow(0 0 12px rgba(56,189,248,.3));
}
.nx-fc h3 { margin-bottom: .6rem; font-size: 1.1rem; color: var(--nx-text); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.url{ color: inherit;
  text-decoration: none;color:var(--nx-accent2)}
  .url:hover{text-decoration: underline;}
.nx-footer {
  position: relative;
  z-index: 1;
  padding: 4rem clamp(1rem,4vw,3rem) 2rem;
  border-top: 1px solid rgba(56,189,248,.1);
  background: rgba(4,8,15,.99);
}
.nx-footer__grid {
  max-width: 1180px; margin-inline: auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 2.5rem;
}
.nx-footer__brand p { margin-top: .8rem; font-size: .875rem; max-width: 280px; }
.nx-footer__col h4 {
  font-family: var(--nx-display); font-size: .7rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--nx-text); margin-bottom: 1rem;
}
.nx-footer__col li { margin-bottom: .5rem; list-style: none; }
.nx-footer__col a {
  color: var(--nx-muted); font-size: .85rem;
  transition: color var(--nx-dur);
}
.nx-footer__col a:hover { color: var(--nx-accent2); }
.nx-footer__bottom {
  max-width: 1180px; margin-inline: auto;
  padding-top: 1.5rem; border-top: 1px solid rgba(56,189,248,.08);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  font-size: .86rem; color: var(--nx-muted);
}
.nx-footer__social { display: flex; gap: .6rem; }
.nx-footer__social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.04); border: 1px solid rgba(56,189,248,.1);
  display: grid; place-items: center; font-size: .9rem;
  transition: background var(--nx-dur), border-color var(--nx-dur);
}
.nx-footer__social a:hover {
  background: rgba(37,99,235,.2); border-color: var(--nx-accent2);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --sld-big: 85vw; --sld-peek: 80px; --sld-h: 460px; }
}
@media (max-width: 960px) {
  .nx-hero__wrap { grid-template-columns: 1fr; padding-top: 120px; }
  .nx-hero__right { display: none; }
  .nx-feat-grid { grid-template-columns: 1fr 1fr; }
  .nx-cta__wrap { grid-template-columns: 1fr; gap: 3rem; }
  .nx-footer__grid { grid-template-columns: 1fr 1fr; }
  .nx-nav { display: none; }
  .nx-hamburger { display: flex; }
}
@media (max-width: 700px) {
  :root { --sld-big: 90vw; --sld-peek: 50px; --sld-h: 420px; }
  .nx-sld__label { padding: 1.5rem 1.6rem; }
  .nx-sld__label h3 { font-size: 1.3rem; }
}
@media (max-width: 600px) {
  .nx-feat-grid { grid-template-columns: 1fr; }
  .nx-footer__grid { grid-template-columns: 1fr; }
  .nx-srv__topbar { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
}



/* ════════════════════════════════════════
   OVERFLOW FIX — Content ko screen ke andar rakhna
════════════════════════════════════════ */

/* Root level overflow fix */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Hero section fix — content left side overflow band karo */
.nx-hero__wrap {
  padding-left: clamp(1rem, 4vw, 3.5rem);
  padding-right: clamp(1rem, 4vw, 3.5rem);
  width: min(1180px, 100vw);          /* 92vw ki jagah 100vw - padding */
  box-sizing: border-box;
}

/* Hero title ko screen se bahar jaane se roko */
.nx-hero__title {
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

/* Para text fix */
.nx-hero__para {
  max-width: min(490px, 100%);
}

/* Stats row wrap fix */
.nx-hero__stats {
  flex-wrap: wrap;
  max-width: 100%;
}

/* Container override — ensure proper max-width */
.nx-container {
  width: min(1180px, calc(100vw - 2rem));
  margin-inline: auto;
  padding-inline: 0;
}

/* Hero left column — minimum width limit */
.nx-hero__left {
  min-width: 0;        /* grid child overflow fix */
  overflow: hidden;
}

/* Actions wrap on small screens */
.nx-hero__actions {
  flex-wrap: wrap;
  gap: .75rem;
}

/* Buttons — screen se bahar na jaaye */
.nx-btn {
  max-width: 100%;
  white-space: nowrap;
}

/* Mobile — 480px se chhota */
@media (max-width: 480px) {
  .nx-hero__wrap {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 90px;
  }
  h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
  .nx-hero__title .nx-italic { font-size: clamp(2.4rem, 9vw, 3.2rem); }
  .nx-badge { font-size: .7rem; }
  .nx-btn { padding: .75rem 1.5rem; font-size: .82rem; }
}

/* Tablet */
@media (max-width: 768px) {
  .nx-hero__wrap {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* Features grid overflow fix */
.nx-feat-grid {
  overflow: hidden;
}

/* CTA section fix */
.nx-cta__wrap {
  overflow: hidden;
}



/* ═══════════════════════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════════════════════ */
.fp-wrap {
  width: min(1160px, 92vw);
  margin-inline: auto;
}

.fp-grad-text {
  background: linear-gradient(125deg, var(--nx-accent2) 0%, var(--nx-accent) 50%, var(--nx-accent3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fp-italic {
  font-family: var(--nx-serif);
  font-style: italic;
  font-weight: 400;
}

.fp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--nx-display);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--nx-accent2);
  padding: .28rem 1rem;
  background: rgba(56,189,248,.07);
  border: 1px solid rgba(56,189,248,.18);
  border-radius: 100px;
  margin-bottom: 1rem;
}

.fp-pulse {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--nx-green);
  animation: fpPulse 2.4s infinite;
  flex-shrink: 0;
}
@keyframes fpPulse {
  0%   { box-shadow: 0 0 0 0   rgba(0,230,118,.7); }
  70%  { box-shadow: 0 0 0 8px rgba(0,230,118,0);  }
  100% { box-shadow: 0 0 0 0   rgba(0,230,118,0);  }
}

.fp-glass {
  background: var(--nx-glass);
  backdrop-filter: blur(var(--nx-blur));
  -webkit-backdrop-filter: blur(var(--nx-blur));
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-r2);
  box-shadow: var(--nx-shadow);
}

/* scroll reveal */
.fp-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s var(--nx-ease), transform .75s var(--nx-ease);
  transition-delay: var(--fd, 0s);
}
.fp-reveal.fp-vis { opacity: 1; transform: none; }

/* page-load anim */
@keyframes fpSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: none; }
}
.fp-anim {
  opacity: 0;
  animation: fpSlideUp .8s var(--nx-ease) var(--fd, 0s) both;
}


/* ─── BUTTONS ─── */
.fp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--nx-display);
  font-weight: 700;
  font-size: .9rem;
  padding: .8rem 2rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform var(--nx-dur) var(--nx-ease), box-shadow var(--nx-dur) var(--nx-ease);
  position: relative;
  overflow: hidden;
  letter-spacing: .01em;
}
.fp-btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.1);
  opacity: 0;
  transition: opacity .25s;
}
.fp-btn:hover::after { opacity: 1; }
.fp-btn:hover { transform: translateY(-3px); }

.fp-btn-primary {
  background: linear-gradient(130deg, var(--nx-accent), var(--nx-accent3));
  color: #fff;
  box-shadow: 0 4px 28px rgba(37,99,235,.55);
}
.fp-btn-primary:hover { box-shadow: 0 12px 40px rgba(37,99,235,.7); }

.fp-btn-ghost {
  background: transparent;
  color: var(--nx-text);
  border: 1.5px solid rgba(255,255,255,.14);
}
.fp-btn-ghost:hover { border-color: var(--nx-accent2); color: var(--nx-accent2); }


/* ═══════════════════════════════════════════════════════════════
   ① HERO
═══════════════════════════════════════════════════════════════ */
.fp-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}

.fp-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(56,189,248,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: fpGridMove 20s linear infinite;
}
@keyframes fpGridMove { to { background-position: 60px 60px; } }

.fp-hero-glow { position: absolute; border-radius: 50%; pointer-events: none; }
.fp-hero-glow.g1 {
  width: 700px; height: 700px; left: -200px; top: -150px;
  background: radial-gradient(circle, rgba(37,99,235,.18) 0%, transparent 65%);
}
.fp-hero-glow.g2 {
  width: 500px; height: 500px; right: -100px; bottom: -50px;
  background: radial-gradient(circle, rgba(124,58,237,.14) 0%, transparent 65%);
}
.fp-hero-glow.g3 {
  width: 300px; height: 300px; left: 50%; top: 50%; transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(56,189,248,.08) 0%, transparent 70%);
}

.fp-hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.fp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: .5rem 1.2rem;
  border-radius: 100px;
  background: rgba(0,230,118,.07);
  border: 1px solid rgba(0,230,118,.2);
  font-size: .8rem;
  font-weight: 600;
  color: var(--nx-green);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.fp-hero-title {
  font-family: var(--nx-display);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -.03em;
  margin-bottom: 1.5rem;
}

.fp-hero-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--nx-muted);
  max-width: 440px;
  margin-bottom: 2.5rem;
}

.fp-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.fp-hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--nx-border);
}
.fp-stat-num {
  font-family: var(--nx-display);
  font-size: 1.9rem;
  font-weight: 900;
  background: linear-gradient(120deg, var(--nx-accent2), var(--nx-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fp-stat-label { font-size: .8rem; color: var(--nx-muted); margin-top: 2px; }

/* hero visual */
.fp-hero-visual {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fp-hero-img-wrap {
  position: relative;
  width: 340px; height: 440px;
  border-radius: var(--nx-r3);
  overflow: visible;
  z-index: 1;
}
.fp-hero-img-wrap::before {
  content: '';
  position: absolute; inset: -30px;
  background: radial-gradient(ellipse at 60% 60%, rgba(37,99,235,.25) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.fp-hero-img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  position: relative; z-index: 2;
  filter: drop-shadow(0 20px 60px rgba(37,99,235,.35));
}
.fp-hero-img-placeholder {
  width: 100%; height: 100%;
  border-radius: var(--nx-r2);
  border: 2px dashed rgba(56,189,248,.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--nx-muted);
  font-size: .85rem;
  text-align: center;
  background: rgba(37,99,235,.04);
  position: relative; z-index: 2;
}
.fp-hero-img-placeholder svg { opacity: .4; }

/* floating stat cards */
.fp-hv-card {
  position: absolute;
  background: var(--nx-glass);
  backdrop-filter: blur(var(--nx-blur));
  -webkit-backdrop-filter: blur(var(--nx-blur));
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-r2);
  padding: 14px 18px;
  box-shadow: var(--nx-shadow);
  z-index: 10;
  white-space: nowrap;
}
.fp-hv-card.c1 { top: 30px;     right: -10px;  animation: fpFloat 5s   ease-in-out infinite; }
.fp-hv-card.c2 { top: 160px;    left: -30px;   animation: fpFloat 6.5s ease-in-out infinite .4s; }
.fp-hv-card.c3 { bottom: 120px; right: -20px;  animation: fpFloat 5.8s ease-in-out infinite .8s; }
.fp-hv-card.c4 { bottom: 30px;  left: -10px;   animation: fpFloat 7s   ease-in-out infinite .2s; }
@keyframes fpFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}
.fp-hvc-label {
  font-size: .62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .16em;
  color: var(--nx-muted); margin-bottom: 4px;
}
.fp-hvc-val {
  font-family: var(--nx-display);
  font-size: 1.15rem; font-weight: 800;
  color: var(--nx-text); line-height: 1;
}
.fp-hvc-sub  { font-size: .72rem; color: var(--nx-green); margin-top: 4px; }
.fp-hvc-row  { display: flex; align-items: center; gap: 8px; }
.fp-hvc-dot  { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.fp-hvc-name { font-size: .82rem; font-weight: 600; color: var(--nx-text); }
.fp-hvc-tag  {
  font-size: .62rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 2px 8px; border-radius: 100px; margin-left: 6px;
}
.fp-hvc-bars { display: flex; align-items: flex-end; gap: 4px; height: 28px; margin-top: 8px; }
.fp-hvc-bars span {
  width: 8px; border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--nx-accent2), var(--nx-accent));
  opacity: .7;
}


/* ═══════════════════════════════════════════════════════════════
   ② SERVICES
═══════════════════════════════════════════════════════════════ */
.fp-services {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.fp-services-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 800px 400px at 80% 50%, rgba(124,58,237,.07) 0%, transparent 70%),
    radial-gradient(ellipse 600px 300px at 10% 70%, rgba(37,99,235,.08) 0%, transparent 70%);
}

.fp-sec-head { text-align: center; margin-bottom: 60px; }
.fp-sec-title {
  font-family: var(--nx-display);
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.07;
  letter-spacing: -.025em;
  margin-bottom: 12px;
}
.fp-sec-desc {
  font-size: 1rem;
  color: var(--nx-muted);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto;
}

.fp-srv-row1 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.fp-srv-row2 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }

.fp-srv-card {
  background: var(--nx-glass);
  backdrop-filter: blur(var(--nx-blur));
  -webkit-backdrop-filter: blur(var(--nx-blur));
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-r2);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--nx-ease), box-shadow .4s, border-color .4s;
  cursor: default;
}
.fp-srv-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--card-c1, rgba(37,99,235,.1)) 0%, transparent 60%);
  opacity: 0; transition: opacity .4s; border-radius: inherit;
}
.fp-srv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--nx-shadow2);
  border-color: rgba(56,189,248,.28);
}
.fp-srv-card:hover::before { opacity: 1; }
.fp-srv-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--card-accent, linear-gradient(90deg, var(--nx-accent), var(--nx-accent2)));
  border-radius: var(--nx-r2) var(--nx-r2) 0 0;
  opacity: 0; transition: opacity .4s;
}
.fp-srv-card:hover::after { opacity: 1; }

.fp-srv-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  background: var(--icon-bg, rgba(37,99,235,.15));
  border: 1px solid var(--icon-border, rgba(37,99,235,.25));
}
.fp-srv-icon svg { width: 24px; height: 24px; }

.fp-srv-ghost {
  position: absolute; right: -10px; bottom: -20px;
  font-family: var(--nx-display); font-weight: 900; font-size: 7rem;
  opacity: .04; line-height: 1;
  pointer-events: none; user-select: none; letter-spacing: -.05em;
}

.fp-srv-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .65rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .22rem .75rem; border-radius: 100px;
  background: var(--icon-bg, rgba(37,99,235,.12));
  color: var(--tag-color, var(--nx-accent2));
  border: 1px solid var(--icon-border, rgba(37,99,235,.2));
  margin-bottom: 14px;
}
.fp-srv-name {
  font-family: var(--nx-display); font-weight: 800;
  font-size: 1.3rem; letter-spacing: -.015em;
  color: var(--nx-text); margin-bottom: 8px;
}
.fp-srv-desc { font-size: .87rem; color: var(--nx-muted); line-height: 1.7; margin-bottom: 18px; }
.fp-srv-features { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.fp-srv-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; color: var(--nx-muted);
}
.fp-srv-features li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--tag-color, var(--nx-accent2)); flex-shrink: 0;
}

/* card colour tokens — only colour overrides, no new variables */
.fp-srv-aeps {
  --card-c1: rgba(37,99,235,.08);
  --icon-bg: rgba(37,99,235,.14);
  --icon-border: rgba(37,99,235,.28);
  --tag-color: var(--nx-accent2);
  --card-accent: linear-gradient(90deg, var(--nx-accent), var(--nx-accent2));
}
.fp-srv-bbps {
  --card-c1: rgba(124,58,237,.08);
  --icon-bg: rgba(124,58,237,.14);
  --icon-border: rgba(124,58,237,.28);
  --tag-color: var(--nx-accent3);
  --card-accent: linear-gradient(90deg, var(--nx-accent3), #a78bfa);
}
.fp-srv-dmt {
  --card-c1: rgba(0,230,118,.06);
  --icon-bg: rgba(0,230,118,.12);
  --icon-border: rgba(0,230,118,.25);
  --tag-color: var(--nx-green);
  --card-accent: linear-gradient(90deg, #059669, var(--nx-green));
}
.fp-srv-recharge {
  --card-c1: rgba(245,158,11,.06);
  --icon-bg: rgba(245,158,11,.13);
  --icon-border: rgba(245,158,11,.25);
  --tag-color: #f59e0b;
  --card-accent: linear-gradient(90deg, #f59e0b, #fcd34d);
}
.fp-srv-payout {
  --card-c1: rgba(239,68,68,.06);
  --icon-bg: rgba(239,68,68,.13);
  --icon-border: rgba(239,68,68,.25);
  --tag-color: #f87171;
  --card-accent: linear-gradient(90deg, #ef4444, #f87171);
}


/* ═══════════════════════════════════════════════════════════════
   ③ WHY CHOOSE US
═══════════════════════════════════════════════════════════════ */
.fp-why {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--nx-bg) 0%, var(--nx-bg2) 100%);
  position: relative;
  overflow: hidden;
}
.fp-why-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 900px 500px at 50% 50%, rgba(37,99,235,.06) 0%, transparent 70%);
}
.fp-why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.fp-why-title-wrap { position: relative; padding-top: 20px; }
.fp-why-title {
  font-family: var(--nx-display); font-weight: 900;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.08; letter-spacing: -.025em; margin-bottom: 16px;
}
.fp-why-title span{font-size: 4rem;} 
.fp-why-desc { font-size: 1rem; color: var(--nx-muted); line-height: 1.8; margin-bottom: 2rem; }
.fp-why-numbers { display: flex; gap: 2rem; }
.fp-wn-val {
  font-family: var(--nx-display); font-size: 2.2rem; font-weight: 900;
  background: linear-gradient(120deg, var(--nx-accent2), var(--nx-accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.fp-wn-lbl { font-size: .8rem; color: var(--nx-muted); margin-top: 3px; }

.fp-why-right { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.fp-pillar {
  background: var(--nx-glass);
  backdrop-filter: blur(var(--nx-blur));
  -webkit-backdrop-filter: blur(var(--nx-blur));
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-r2);
  padding: 24px;
  transition: transform .35s var(--nx-ease), border-color .35s;
}
.fp-pillar:hover { transform: translateY(-4px); border-color: rgba(56,189,248,.3); }
.fp-pillar:first-child {
  grid-column: span 2;
  display: flex; align-items: center; gap: 20px;
}
.fp-pillar:first-child .fp-pillar-body { flex: 1; }

.fp-pillar-icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.fp-pillar:first-child .fp-pillar-icon { margin-bottom: 0; }
.fp-pillar-icon svg { width: 20px; height: 20px; }
.fp-pillar-title {
  font-family: var(--nx-display); font-weight: 700;
  font-size: .97rem; color: var(--nx-text); margin-bottom: 6px;
}
.fp-pillar-desc { font-size: .8rem; color: var(--nx-muted); line-height: 1.65; }


/* ═══════════════════════════════════════════════════════════════
   ④ FAQ
═══════════════════════════════════════════════════════════════ */
.fp-faq {
  padding: 100px 0;
  background: #080f20;
  position: relative;
  overflow: hidden;
}
.fp-faq-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 600px 300px at 90% 20%, rgba(124,58,237,.07) 0%, transparent 70%),
    radial-gradient(ellipse 500px 250px at 5% 80%, rgba(37,99,235,.07) 0%, transparent 70%);
}
.fp-faq-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.fp-faq-left { position: sticky; top: 100px; }
.fp-faq-left-title {
  font-family: var(--nx-display); font-weight: 900;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  line-height: 1.1; letter-spacing: -.025em; margin-bottom: 14px;
}
.fp-faq-left-desc { font-size: .95rem; color: var(--nx-muted); line-height: 1.75; margin-bottom: 1.5rem; }

.fp-acc-list { display: flex; flex-direction: column; gap: 10px; }
.fp-acc-item {
  background: var(--nx-glass);
  backdrop-filter: blur(var(--nx-blur));
  -webkit-backdrop-filter: blur(var(--nx-blur));
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-r1);
  overflow: hidden;
  transition: border-color .3s;
}
.fp-acc-item.fp-open { border-color: rgba(56,189,248,.3); }
.fp-acc-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; background: none; border: none; cursor: pointer;
  font-family: var(--nx-display); font-weight: 600; font-size: .95rem;
  color: var(--nx-text); text-align: left; gap: 16px;
}
.fp-acc-btn:hover { color: var(--nx-accent2); }
.fp-acc-icon {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  background: rgba(56,189,248,.1); border: 1px solid rgba(56,189,248,.2);
  display: flex; align-items: center; justify-content: center;
  transition: transform .35s var(--nx-ease), background .3s;
}
.fp-open .fp-acc-icon { transform: rotate(45deg); background: rgba(56,189,248,.2); }
.fp-acc-body {
  max-height: 0; overflow: hidden;
  transition: max-height .45s var(--nx-ease), padding .35s;
  padding: 0 22px;
}
.fp-open .fp-acc-body { max-height: 300px; padding: 0 22px 18px; }
.fp-acc-body p { font-size: .875rem; color: var(--nx-muted); line-height: 1.75; }



/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .fp-hero-inner  { grid-template-columns: 1fr; gap: 40px; }
  .fp-hero-visual { height: 300px; }
  .fp-why-inner   { grid-template-columns: 1fr; gap: 40px; }
  .fp-faq-inner   { grid-template-columns: 1fr; }
  .fp-faq-left    { position: static; }
  .fp-srv-row1    { grid-template-columns: 1fr; }
  .fp-srv-row2    { grid-template-columns: 1fr; }
  .fp-why-right   { grid-template-columns: 1fr; }
  .fp-pillar:first-child { flex-direction: column; grid-column: span 1; }

}





/* ═══════════════════════════════════════════
   PAGE BACKGROUND
═══════════════════════════════════════════ */
.page-bg {
  position: fixed; inset: 0; z-index: 0;
  background: var(--nx-bg);
  overflow: hidden;
}
.bg-blob {
  position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.16;
}
.bg-blob-1 { width: 700px; height: 700px; background: var(--nx-accent); top: -250px; right: -150px; }
.bg-blob-2 { width: 600px; height: 600px; background: var(--nx-accent3); bottom: -150px; left: -200px; }
.bg-blob-3 { width: 350px; height: 350px; background: var(--nx-accent2); top: 45%; left: 38%; opacity: 0.08; }
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(56,189,248,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ═══════════════════════════════════════════
   PAGE WRAP
═══════════════════════════════════════════ */
.page-wrap { position: relative; z-index: 1; min-height: 80vh; }

/* ═══════════════════════════════════════════
   HERO SECTION  (no header/nav)
═══════════════════════════════════════════ */
.hero-section {
  text-align: center;
  padding: 6rem 2rem 3.5rem;
}
.hero-title {
  font-family: var(--nx-display);
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 900; line-height: 1.06;
  letter-spacing: -.02em;
  color: var(--nx-text); margin-bottom: 1rem;
}
.hero-sub {
  font-size: 1.05rem; color: var(--nx-muted); line-height: 1.75;
  max-width: 560px; margin: 0 auto;
}

/* ── BREADCRUMB ──────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: .78rem; color: var(--nx-muted); margin-bottom: 2rem;
}
.breadcrumb a { color: var(--nx-muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--nx-accent2); }
.breadcrumb span { color: var(--nx-accent2); }

/* ═══════════════════════════════════════════
   CONTACT GRID
═══════════════════════════════════════════ */
.contact-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 2rem;
  align-items: start;
}

/* ── INFO PANEL ──────────────────────────── */
.info-panel { padding: 2.2rem; display: flex; flex-direction: column; gap: 1.4rem; }

.info-top-title {
  font-family: var(--nx-display); font-weight: 900;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--nx-accent2); margin-bottom: .2rem;
}
.info-main-title {
  font-family: var(--nx-display); font-size: 1.6rem; font-weight: 800;
  color: var(--nx-text); line-height: 1.2;
}
.info-divider {
  width: 44px; height: 3px;
  background: linear-gradient(90deg, var(--nx-accent2), var(--nx-accent3));
  border-radius: 4px; margin: .5rem 0;
}
.info-desc { font-size: .92rem; color: var(--nx-muted); line-height: 1.7; }

.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 1rem 1.1rem;
  background: rgba(56,189,248,.04);
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-r2);
  transition: border-color .3s var(--nx-ease), background .3s var(--nx-ease),
              transform .3s var(--nx-ease);
}
.contact-item:hover {
  border-color: rgba(56,189,248,.3);
  background: rgba(56,189,248,.08);
  transform: translateX(4px);
}
.contact-icon {
  width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.icon-blue   { background: rgba(37,99,235,.18); }
.icon-cyan   { background: rgba(56,189,248,.14); }
.icon-purple { background: rgba(124,58,237,.17); }
.icon-green  { background: rgba(0,230,118,.11); }

.contact-item-label {
  font-size: .7rem; color: var(--nx-muted);
  text-transform: uppercase; letter-spacing: .14em; font-weight: 700; margin-bottom: 3px;
}
.contact-item-value { font-size: .94rem; color: var(--nx-text); font-weight: 600; }
.contact-item-sub   { font-size: .8rem; color: var(--nx-muted); margin-top: 2px; }

.social-row { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(56,189,248,.06); border: 1px solid var(--nx-border);
  color: var(--nx-muted); font-size: 13px; font-weight: 700;
  cursor: none; transition: background .3s, border-color .3s, color .3s, transform .3s;
  text-decoration: none;
}
.social-btn:hover {
  background: rgba(56,189,248,.14); border-color: rgba(56,189,248,.38);
  color: var(--nx-accent2); transform: translateY(-3px);
}

/* ── FORM PANEL ──────────────────────────── */
.form-panel { padding: 2.4rem; }
.form-title {
  font-family: var(--nx-display); font-size: 1.4rem; font-weight: 800;
  color: var(--nx-text); margin-bottom: .4rem;
}
.form-sub { font-size: .88rem; color: var(--nx-muted); margin-bottom: 2rem; line-height: 1.6; }

.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-bottom: 1rem;
}
.form-group { margin-bottom: 1rem; }
.form-label {
  display: block; font-size: .72rem; font-weight: 700;
  color: var(--nx-muted); text-transform: uppercase;
  letter-spacing: .13em; margin-bottom: .5rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(4,8,15,.8);
  border: 1px solid rgba(56,189,248,.14);
  border-radius: var(--nx-r1);
  color: var(--nx-text);
  font-family: var(--nx-body); font-size: .92rem;
  padding: .78rem 1rem;
  transition: border-color .3s, box-shadow .3s;
  outline: none; appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder {
  color: rgba(93,122,160,.55);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(56,189,248,.5);
  box-shadow: 0 0 0 3px rgba(56,189,248,.08);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235d7aa0' fill='none' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem; cursor: none;
}
.form-select option { background: #060c18; color: var(--nx-text); }
.form-textarea { resize: vertical; min-height: 110px; }

.char-count { font-size: .72rem; color: var(--nx-muted); text-align: right; margin-top: 4px; }

.checkbox-group {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 1.5rem;
}
.checkbox-group input[type="checkbox"] {
  width: 16px; height: 16px; accent-color: var(--nx-accent2);
  margin-top: 2px; cursor: none;
}
.checkbox-label { font-size: .83rem; color: var(--nx-muted); line-height: 1.6; }
.checkbox-label a { color: var(--nx-accent2); }

.submit-btn {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--nx-display); font-weight: 700; font-size: .95rem;
  padding: .95rem 2rem; border-radius: 100px; border: none;
  background: linear-gradient(130deg, var(--nx-accent) 0%, var(--nx-accent3) 100%);
  color: #fff; cursor: none;
  box-shadow: 0 4px 24px rgba(37,99,235,.5);
  transition: transform .3s var(--nx-ease), box-shadow .3s var(--nx-ease);
  position: relative; overflow: hidden;
}
.submit-btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.1); opacity: 0; transition: opacity .25s;
}
.submit-btn:hover::after { opacity: 1; }
.submit-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(37,99,235,.65); }
.submit-btn:active { transform: translateY(0); }
.submit-btn:disabled { opacity: .7; cursor: not-allowed; }

.success-msg {
  display: none; text-align: center; padding: 1.5rem;
  background: rgba(0,230,118,.05);
  border: 1px solid rgba(0,230,118,.22);
  border-radius: var(--nx-r2); margin-top: 1rem;
}
.success-msg.show { display: block; }
.success-icon  { font-size: 2rem; margin-bottom: .5rem; }
.success-title { font-family: var(--nx-display); font-weight: 800; color: var(--nx-green); font-size: 1.1rem; }
.success-sub   { font-size: .88rem; color: var(--nx-muted); margin-top: .3rem; }


/* ════════════════════════════════════════════
   RESPONSIVE — CSP Contact Page
   Add this block at the END of your main CSS
════════════════════════════════════════════ */

/* ── LARGE DESKTOP: ≥ 1280px ─────────────── */
@media (min-width: 1280px) {
  .contact-section      { padding: 0 3rem 6rem; }
  .contact-grid         { gap: 2.5rem; }
  .info-panel           { padding: 2.6rem; }
  .form-panel           { padding: 2.8rem; }
  .info-main-title      { font-size: 1.85rem; }
  .form-title           { font-size: 1.6rem; }
}

/* ── TABLET LANDSCAPE: 900px – 1279px ──────── */
@media (max-width: 1279px) and (min-width: 900px) {
  .contact-grid         { grid-template-columns: 1fr 1.3fr; gap: 1.5rem; }
  .info-panel           { padding: 1.8rem; gap: 1.2rem; }
  .form-panel           { padding: 2rem; }
  .info-main-title      { font-size: 1.4rem; }
  .form-title           { font-size: 1.25rem; }
  .hero-section         { padding: 5rem 2rem 3rem; }
}

/* ── TABLET PORTRAIT: 600px – 899px ─────────
   Grid collapses to single column.
   Contact items switch to a 2×2 grid.
   Form rows stay 2-col.
─────────────────────────────────────────── */
@media (max-width: 899px) and (min-width: 600px) {
  .hero-section         { padding: 4rem 1.5rem 2.5rem; }
  .hero-title           { font-size: clamp(2.2rem, 6vw, 3.2rem); }
  .hero-sub             { font-size: .95rem; }

  .contact-section      { padding: 0 1.5rem 4rem; }
  .contact-grid         { grid-template-columns: 1fr; gap: 1.5rem; }

  /* 2-col grid for the four contact items */
  .contact-items-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

  .info-panel           { padding: 2rem; gap: 1.2rem; }
  .info-main-title      { font-size: 1.5rem; }
  .form-panel           { padding: 2rem; }
  .form-row             { grid-template-columns: 1fr 1fr; } /* keep 2-col */
}

/* ── MOBILE: ≤ 599px ─────────────────────── */
@media (max-width: 599px) {
  .hero-section         { padding: 3rem 1rem 2rem; }
  .hero-title           { font-size: clamp(2rem, 9vw, 2.8rem); letter-spacing: -.015em; }
  .hero-sub             { font-size: .88rem; max-width: 100%; }
  .breadcrumb           { font-size: .72rem; gap: 6px; margin-bottom: 1.4rem; }

  .contact-section      { padding: 0 1rem 3rem; }
  .contact-grid         { grid-template-columns: 1fr; gap: 1.25rem; }

  /* Info panel */
  .info-panel           { padding: 1.4rem; gap: 1rem; }
  .info-main-title      { font-size: 1.25rem; }
  .info-desc            { font-size: .85rem; }

  .contact-item         { padding: .85rem 1rem; gap: 12px; }
  .contact-icon         { width: 36px; height: 36px; font-size: 15px; border-radius: 9px; }
  .contact-item-value   { font-size: .88rem; }
  .contact-item-sub     { font-size: .75rem; }

  .social-btn           { width: 34px; height: 34px; border-radius: 9px; }

  /* Form panel */
  .form-panel           { padding: 1.4rem; }
  .form-title           { font-size: 1.2rem; }
  .form-sub             { font-size: .82rem; margin-bottom: 1.4rem; }

  /* Single-column form rows on mobile */
  .form-row             { grid-template-columns: 1fr; gap: .75rem; margin-bottom: .75rem; }
  .form-group           { margin-bottom: .75rem; }

  .form-input,
  .form-select,
  .form-textarea        { font-size: .88rem; padding: .7rem .9rem; }
  .form-label           { font-size: .68rem; }
  .form-textarea        { min-height: 90px; }

  .checkbox-label       { font-size: .78rem; }
  .submit-btn           { font-size: .88rem; padding: .85rem 1.5rem; }

  /* Shrink bg blobs to prevent horizontal overflow */
  .bg-blob-1            { width: 380px; height: 380px; top: -120px; right: -100px; }
  .bg-blob-2            { width: 320px; height: 320px; bottom: -80px; left: -100px; }
  .bg-blob-3            { width: 200px; height: 200px; }
}

/* ── TINY MOBILE: ≤ 380px ───────────────── */
@media (max-width: 380px) {
  .hero-section         { padding: 2.4rem .75rem 1.5rem; }
  .hero-title           { font-size: 1.75rem; }
  .contact-section      { padding: 0 .75rem 2.5rem; }
  .info-panel           { padding: 1.1rem; }
  .form-panel           { padding: 1.1rem; }
  .form-row             { grid-template-columns: 1fr; }
  .social-btn           { width: 30px; height: 30px; font-size: 11px; }
}

/* ── REDUCED MOTION ─────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .contact-item,
  .social-btn,
  .submit-btn           { transition: none !important; }
  .contact-item:hover   { transform: none !important; }
  .social-btn:hover     { transform: none !important; }
  .submit-btn:hover     { transform: none !important; }
}



    /* ── BACKGROUND ── */
    .nx-bg-layer {
      position: fixed; inset:0; z-index:0; pointer-events:none;
      background: linear-gradient(170deg, #04080f 0%, #060d1e 50%, #04080f 100%);
    }
    .nx-bg-noise {
      position:fixed; inset:0; z-index:0; pointer-events:none; opacity:.03;
      background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-size:200px;
    }
    .nx-bg-grid {
      position:fixed; inset:0; z-index:0; pointer-events:none;
      background-image:
        linear-gradient(rgba(37,99,235,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37,99,235,.04) 1px, transparent 1px);
      background-size:64px 64px;
      mask-image:radial-gradient(ellipse 70% 70% at 50% 50%, #000 10%, transparent 80%);
    }
    .nx-orb {
      position:fixed; border-radius:50%; filter:blur(90px); pointer-events:none;
      animation: drift 16s ease-in-out infinite; z-index:0;
    }
    .nx-orb-a {
      width:500px; height:500px; top:-100px; right:-80px;
      background:radial-gradient(circle,rgba(37,99,235,.18) 0%,transparent 65%);
    }
    .nx-orb-b {
      width:380px; height:380px; bottom:-60px; left:-80px;
      background:radial-gradient(circle,rgba(124,58,237,.15) 0%,transparent 65%);
      animation-delay:-6s;
    }
    @keyframes drift {
      0%,100% { transform:translate(0,0) scale(1); }
      33%      { transform:translate(20px,-25px) scale(1.06); }
      66%      { transform:translate(-15px,18px) scale(.95); }
    }

    /* ── MAIN LAYOUT ── */
    .nx-demo-page {
      position:relative; z-index:1;
      padding-top:72px;
      padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
      display:flex; align-items:stretch;
    }

    .nx-demo-grid {
      display:grid;
      grid-template-columns: 1fr 1fr;
      width:100%;
      align-items: start;
    }

    /* ════════════════════════════════
       LEFT — FORM
    ════════════════════════════════ */
    .nx-form-side {
      padding: clamp(2rem,4vw,3.25rem) clamp(2rem,4vw,3.5rem) clamp(1.5rem,3vw,2rem);
      display:flex; flex-direction:column; justify-content:flex-start;
      border-right: 1px solid var(--nx-border);
    }

    .nx-form-eyebrow {
      display:inline-flex; align-items:center; gap:8px;
      font-family:var(--nx-display); font-size:.65rem; font-weight:700;
      letter-spacing:.22em; text-transform:uppercase; color:var(--nx-accent2);
      padding:.25rem .85rem;
      background:rgba(56,189,248,.07); border:1px solid rgba(56,189,248,.18);
      border-radius:100px; margin-bottom:1.4rem; width:fit-content;
    }
    .nx-pulse-dot {
      width:6px; height:6px; border-radius:50%; background:var(--nx-green);
      animation: pulse 2.4s infinite; flex-shrink:0;
    }
    @keyframes pulse {
      0%   { box-shadow:0 0 0 0   rgba(0,230,118,.6); }
      70%  { box-shadow:0 0 0 8px rgba(0,230,118,0);  }
      100% { box-shadow:0 0 0 0   rgba(0,230,118,0);  }
    }

    .nx-form-title {
      font-family:var(--nx-display); font-size:clamp(1.9rem,3.5vw,2.8rem);
      font-weight:900; letter-spacing:-.03em; line-height:1.08;
      margin-bottom:.8rem;
    }
    .nx-form-title em {
      font-family:var(--nx-serif); font-style:italic; font-weight:400;
      font-size:clamp(2rem,3.8vw,3rem);
      background:linear-gradient(125deg,#60a5fa 0%,#38bdf8 40%,#818cf8 100%);
      -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
    }

    .nx-form-sub {
      font-size:.92rem; line-height:1.7; color:var(--nx-muted);
      margin-bottom:2.2rem; max-width:440px;
    }

    /* Form fields */
    .nx-form { display:flex; flex-direction:column; gap:1rem; }

    .nx-field-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }

    .nx-field {
      display:flex; flex-direction:column; gap:.45rem;
    }
    .nx-field label {
      font-family:var(--nx-display); font-size:.7rem; font-weight:700;
      letter-spacing:.1em; text-transform:uppercase; color:var(--nx-muted);
    }
    .nx-field label span { color:var(--nx-accent2); margin-left:2px; }

    .nx-inp {
      background:rgba(255,255,255,.04);
      border:1px solid rgba(56,189,248,.12);
      border-radius:12px; padding:.85rem 1.1rem;
      color:var(--nx-text); font-family:var(--nx-body); font-size:.92rem;
      outline:none; width:100%;
      transition: border-color .3s, background .3s, box-shadow .3s;
      appearance:none;
    }
    .nx-inp::placeholder { color:rgba(93,122,160,.6); }
    .nx-inp:focus {
      border-color:var(--nx-accent2);
      background:rgba(37,99,235,.06);
      box-shadow:0 0 0 3px rgba(56,189,248,.1);
    }
    .nx-inp:focus + .nx-field__glow { opacity:1; }
    .nx-inp option { background:#060c18; }

    /* Services checkbox group */
    .nx-services-label {
      font-family:var(--nx-display); font-size:.7rem; font-weight:700;
      letter-spacing:.1em; text-transform:uppercase; color:var(--nx-muted);
      margin-bottom:.5rem; display:block;
    }
    .nx-services-grid {
      display:grid; grid-template-columns:repeat(3,1fr); gap:.6rem;
    }
    .nx-svc-check { display:none; }
    .nx-svc-chip {
      display:flex; align-items:center; justify-content:center; gap:6px;
      padding:.5rem .7rem; border-radius:10px;
      border:1px solid rgba(56,189,248,.14);
      background:rgba(255,255,255,.03);
      font-family:var(--nx-display); font-size:.72rem; font-weight:700;
      color:var(--nx-muted); cursor:none;
      transition: all .25s var(--nx-ease);
      user-select:none;
    }
    .nx-svc-chip .chip-icon { font-size:.9rem; }
    .nx-svc-check:checked + .nx-svc-chip {
      background:rgba(37,99,235,.18);
      border-color:rgba(56,189,248,.5);
      color:var(--nx-accent2);
      box-shadow:0 0 12px rgba(37,99,235,.25);
    }
    .nx-svc-chip:hover { border-color:rgba(56,189,248,.3); color:var(--nx-text); }

    /* Submit button */
    .nx-submit {
      display:flex; align-items:center; justify-content:center; gap:10px;
      padding:.95rem 2rem; border-radius:100px; border:none;
      background:linear-gradient(130deg,var(--nx-accent) 0%,var(--nx-accent3) 100%);
      color:#fff; font-family:var(--nx-display); font-weight:800; font-size:.95rem;
      cursor:none; width:100%; margin-top:.5rem;
      box-shadow:0 4px 28px rgba(37,99,235,.5);
      transition: transform .3s var(--nx-ease), box-shadow .3s;
      position:relative; overflow:hidden;
    }
    .nx-submit::after {
      content:''; position:absolute; inset:0;
      background:rgba(255,255,255,.1); opacity:0; transition:opacity .25s;
    }
    .nx-submit:hover { transform:translateY(-2px); box-shadow:0 10px 36px rgba(37,99,235,.65); }
    .nx-submit:hover::after { opacity:1; }
    .nx-submit svg { transition:transform .3s var(--nx-ease); }
    .nx-submit:hover svg { transform:translateX(4px); }

    /* Trust badges */
    .nx-trust {
      display:flex; flex-wrap:wrap; gap:.6rem; margin-top:1.2rem;
    }
    .nx-trust-badge {
      display:flex; align-items:center; gap:5px;
      font-family:var(--nx-display); font-size:.65rem; font-weight:600;
      color:var(--nx-muted); padding:.25rem .75rem; border-radius:100px;
      border:1px solid rgba(56,189,248,.1); background:rgba(56,189,248,.04);
    }

    /* ════════════════════════════════
       RIGHT — STEPS
    ════════════════════════════════ */
    .nx-steps-side {
      padding: clamp(2rem,4vw,3.25rem) clamp(2rem,4vw,3.5rem) clamp(1.5rem,3vw,2rem);
      display:flex; flex-direction:column; justify-content:flex-start;
      position:relative; overflow:hidden;
    }

    /* Glow behind steps */
    .nx-steps-glow {
      position:absolute; top:40%; left:30%;
      width:400px; height:400px; border-radius:50%;
      background:radial-gradient(circle,rgba(37,99,235,.1) 0%,transparent 65%);
      filter:blur(60px); pointer-events:none;
    }

    .nx-steps-heading {
      font-family:var(--nx-display); font-size:clamp(1rem,1.6vw,1.2rem);
      font-weight:700; letter-spacing:-.01em; color:var(--nx-text);
      margin-bottom:.4rem;
    }
    .nx-steps-sub {
      font-size:.82rem; color:var(--nx-muted); line-height:1.6;
      margin-bottom:2.8rem; max-width:380px;
    }

    /* Steps timeline */
    .nx-timeline { display:flex; flex-direction:column; gap:0; position:relative; }

    .nx-step {
      display:flex; align-items:flex-start; gap:1.4rem;
      padding-bottom:2.2rem;
      position:relative;
      opacity:0; transform:translateX(20px);
      animation: stepIn .6s var(--nx-ease) var(--step-delay,0s) both;
    }
    @keyframes stepIn {
      to { opacity:1; transform:none; }
    }

    /* Connector line */
    .nx-step:not(:last-child)::after {
      content:'';
      position:absolute; left:20px; top:44px;
      width:1px; bottom:0;
      background:linear-gradient(to bottom, rgba(56,189,248,.3), rgba(56,189,248,.05));
    }

    /* Step number bubble */
    .nx-step__num {
      flex-shrink:0;
      width:42px; height:42px; border-radius:14px;
      display:flex; align-items:center; justify-content:center;
      font-family:var(--nx-display); font-size:.8rem; font-weight:800;
      position:relative; z-index:1;
    }
    .nx-step__num--done {
      background:rgba(0,230,118,.12);
      border:1px solid rgba(0,230,118,.3);
      color:var(--nx-green);
    }
    .nx-step__num--active {
      background:rgba(37,99,235,.2);
      border:1px solid rgba(56,189,248,.5);
      color:var(--nx-accent2);
      box-shadow:0 0 20px rgba(37,99,235,.3);
    }
    .nx-step__num--pending {
      background:rgba(255,255,255,.04);
      border:1px solid rgba(56,189,248,.1);
      color:var(--nx-muted);
    }

    .nx-step__icon {
      font-size:1.1rem; line-height:1;
    }

    .nx-step__body { flex:1; padding-top:6px; }

    .nx-step__title {
      font-family:var(--nx-display); font-size:.92rem; font-weight:700;
      color:var(--nx-text); margin-bottom:.3rem; letter-spacing:-.01em;
    }
    .nx-step__title.nx-step__title--muted { color:var(--nx-muted); }

    .nx-step__desc {
      font-size:.8rem; line-height:1.65; color:var(--nx-muted);
    }

    /* Step card — highlighted active step */
    .nx-step--active .nx-step__body-card {
      margin-top:.6rem;
      background:rgba(37,99,235,.07);
      border:1px solid rgba(56,189,248,.15);
      border-radius:14px; padding:.9rem 1.1rem;
    }

    .nx-step__detail {
      display:flex; align-items:center; gap:8px;
      font-family:var(--nx-display); font-size:.72rem; font-weight:600;
      color:var(--nx-accent2);
    }
    .nx-step__detail span { color:var(--nx-muted); font-weight:400; }

    /* Live demo preview card */
    .nx-demo-preview {
      margin-top:2.4rem;
      background:var(--nx-glass);
      backdrop-filter:blur(var(--nx-blur)); -webkit-backdrop-filter:blur(var(--nx-blur));
      border:1px solid var(--nx-border); border-radius:var(--nx-r2);
      padding:1.2rem 1.4rem;
      position:relative; overflow:hidden;
    }
    .nx-demo-preview::before {
      content:'';
      position:absolute; inset:0;
      background:linear-gradient(135deg,rgba(37,99,235,.06) 0%,transparent 60%);
      pointer-events:none;
    }
    .nx-demo-preview__head {
      display:flex; align-items:center; justify-content:space-between;
      margin-bottom:1rem;
    }
    .nx-demo-preview__label {
      display:flex; align-items:center; gap:7px;
      font-family:var(--nx-display); font-size:.65rem; font-weight:700;
      letter-spacing:.1em; text-transform:uppercase; color:var(--nx-muted);
    }
    .nx-demo-preview__badge {
      font-family:var(--nx-display); font-size:.6rem; font-weight:700;
      padding:.18rem .6rem; border-radius:100px;
      background:rgba(0,230,118,.12); border:1px solid rgba(0,230,118,.3);
      color:var(--nx-green); letter-spacing:.08em;
    }
    .nx-demo-metrics {
      display:grid; grid-template-columns:repeat(3,1fr); gap:.8rem;
    }
    .nx-dm {
      display:flex; flex-direction:column; gap:.2rem;
      padding:.7rem .6rem; border-radius:10px;
      background:rgba(255,255,255,.03); border:1px solid rgba(56,189,248,.08);
      text-align:center;
    }
    .nx-dm__val {
      font-family:var(--nx-display); font-size:1rem; font-weight:800;
      letter-spacing:-.02em;
      background:linear-gradient(125deg,var(--nx-accent2),var(--nx-accent));
      -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
    }
    .nx-dm__key { font-size:.6rem; color:var(--nx-muted); letter-spacing:.06em; text-transform:uppercase; }

    /* Ticker */
    .nx-ticker {
      margin-top:.8rem; display:flex; flex-direction:column; gap:.4rem;
    }
    .nx-tick {
      display:flex; align-items:center; gap:.5rem;
      padding:.4rem .6rem; border-radius:8px;
      background:rgba(255,255,255,.02); border:1px solid rgba(255,255,255,.05);
      font-size:.7rem;
    }
    .nx-tick__dot {
      width:5px; height:5px; border-radius:50%; background:var(--nx-green); flex-shrink:0;
      animation:pulse 2s infinite;
    }
    .nx-tick b { color:var(--nx-text); font-weight:600; }
    .nx-tick span { color:var(--nx-muted); flex:1; }
    .nx-tick em { color:var(--nx-green); font-style:normal; font-weight:700; margin-left:auto; }

    /* ── Success state ── */
    .nx-success {
      display:none;
      flex-direction:column; align-items:center;
      text-align:center; gap:1.2rem;
      padding:2rem 0;
    }
    .nx-success.nx-visible { display:flex; }
    .nx-success__icon {
      width:72px; height:72px; border-radius:50%;
      background:rgba(0,230,118,.12); border:1.5px solid rgba(0,230,118,.35);
      display:flex; align-items:center; justify-content:center;
      font-size:2rem;
      box-shadow:0 0 32px rgba(0,230,118,.2);
      animation: popIn .6s var(--nx-ease) both;
    }
    @keyframes popIn {
      from { transform:scale(0.4); opacity:0; }
      to   { transform:scale(1); opacity:1; }
    }
    .nx-success__title {
      font-family:var(--nx-display); font-size:1.6rem; font-weight:900;
      letter-spacing:-.03em; color:var(--nx-text);
    }
    .nx-success__desc { font-size:.88rem; color:var(--nx-muted); line-height:1.7; max-width:360px; }
    .nx-success__eta {
      display:flex; align-items:center; gap:8px;
      font-family:var(--nx-display); font-size:.75rem; font-weight:600;
      color:var(--nx-accent2); padding:.4rem 1rem; border-radius:100px;
      border:1px solid rgba(56,189,248,.2); background:rgba(56,189,248,.06);
    }

    /* ── Responsive ── */
    @media (max-width:900px) {
      .nx-demo-grid { grid-template-columns:1fr; }
      .nx-form-side { border-right:none; border-bottom:1px solid var(--nx-border); }
      .nx-field-row { grid-template-columns:1fr; }
      .nx-services-grid { grid-template-columns:repeat(2,1fr); }
      .nx-steps-side { padding-top:2rem; }
    }
    @media (max-width:480px) {
      .nx-services-grid { grid-template-columns:1fr 1fr; }
      .nx-demo-metrics { grid-template-columns:repeat(3,1fr); }
    }




    
.nx-testi {
  position: relative;
  overflow: visible;
  min-height: 100vh;
  background: var(--nx-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--nx-section) 0;
}

.nx-testi__noise {
  position: absolute; inset: 0; pointer-events: none; opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.nx-testi__grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(37,99,235,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 5%, transparent 80%);
}
.nx-testi__orb-a {
  position: absolute; border-radius: 50%; pointer-events: none;
  width: 600px; height: 600px; top: -100px; left: -120px;
  background: radial-gradient(circle, rgba(37,99,235,.12) 0%, transparent 65%);
  filter: blur(80px); animation: nx-drift 14s ease-in-out infinite;
}
.nx-testi__orb-b {
  position: absolute; border-radius: 50%; pointer-events: none;
  width: 500px; height: 500px; bottom: -80px; right: -100px;
  background: radial-gradient(circle, rgba(124,58,237,.12) 0%, transparent 65%);
  filter: blur(80px); animation: nx-drift 18s ease-in-out infinite reverse;
}

/* ══════════════════════════════════════════════════════
   FIELD — avatars + center heading all inside one container
══════════════════════════════════════════════════════ */
.nx-testi__field {
  position: relative;
  width: min(1280px, 96vw);
  height: 520px;
  z-index: 5;
  /* NO overflow:hidden — cards must pop above */
}

/* ── FIX 1: Center heading INSIDE field, avatars ke beech ── */
.nx-testi__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;           /* above avatars but below hover cards */
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  gap: .5rem;
  pointer-events: none;
  width: 440px;
}
.nx-testi__heading {
  font-family: var(--nx-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900; letter-spacing: -.03em; line-height: 1.1;
  color: var(--nx-text);
}
.nx-testi__sub {
  font-size: 1rem; color: var(--nx-accent2); letter-spacing: .05em;
}

/* ══════════════════════════════════════════════════════
   AVATAR UNITS
══════════════════════════════════════════════════════ */
.nx-av {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: none;
  /* FIX 2: default z-index low */
  z-index: 6;
  transition: z-index 0s;
}

/* On hover — shoot to top immediately */
.nx-av:hover {
  z-index: 9999 !important;
  animation-play-state: paused;
}

/* ── Bubble ── */
.nx-av__bubble {
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(56,189,248,.18);
  filter: grayscale(100%) brightness(.75);
  transition:
    width .45s var(--nx-ease),
    height .45s var(--nx-ease),
    filter .45s ease,
    border-color .45s ease,
    box-shadow .45s ease;
  position: relative; z-index: 2;
}
.nx-av__bubble img {
  width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none;
}
.nx-av:hover .nx-av__bubble {
  width: 88px; height: 88px;
  filter: grayscale(0%) brightness(1);
  border-color: var(--av-accent, var(--nx-accent2));
  box-shadow:
    0 0 0 5px rgba(var(--av-rgb, 56,189,248), .18),
    0 14px 44px rgba(var(--av-rgb, 56,189,248), .35);
}

/* ── FIX 2: Card z-index — must beat EVERYTHING ── */
.nx-av__card {
  position: absolute;
  bottom: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(10px) scale(.93);
  width: 260px;
  padding: 1.1rem 1.2rem;
  border-radius: var(--nx-r2) !important;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease, transform .4s var(--nx-ease);
  z-index: 99999 !important;   /* FIX: always on top */
  /* glass */
  background: rgba(4, 10, 24, 0.92) !important;  /* more opaque so it reads clearly */
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--av-accent, var(--nx-border)) !important;
  box-shadow:
    0 24px 60px rgba(0,0,0,.7),
    0 0 0 1px rgba(var(--av-rgb,56,189,248),.15),
    inset 0 1px 0 rgba(255,255,255,.05);
}
.nx-av:hover .nx-av__card {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
}

/* Card internals */
.nx-av__card-head {
  display: flex; align-items: center; gap: .7rem;
  margin-bottom: .8rem; padding-bottom: .8rem;
  border-bottom: 1px solid rgba(56,189,248,.12);
}
.nx-av__card-img {
  width: 38px; height: 38px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 1.5px solid var(--av-accent, rgba(56,189,248,.3));
}
.nx-av__card-head strong {
  display: block;
  font-family: var(--nx-display); font-size: .82rem; font-weight: 700;
  color: var(--nx-text); letter-spacing: -.01em;
}
.nx-av__card-head span {
  font-size: .63rem; color: var(--nx-muted); letter-spacing: .05em;
}
.nx-av__card p {
  font-size: .78rem; line-height: 1.65; color: #8ba7c4;
  margin-bottom: .65rem;
}
.nx-av__stars { color: #f59e0b; font-size: .75rem; letter-spacing: .1em; }

/* Caret triangle */
.nx-av__card::after {
  content: '';
  position: absolute;
  bottom: -7px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 13px; height: 13px;
  background: rgba(4,10,24,.92);
  border-right: 1px solid var(--av-accent, rgba(56,189,248,.2));
  border-bottom: 1px solid var(--av-accent, rgba(56,189,248,.2));
}

/* ── Color accents ── */
.nx-av[data-color="blue"]   { --av-accent: #38bdf8; --av-rgb: 56,189,248; }
.nx-av[data-color="purple"] { --av-accent: #a78bfa; --av-rgb: 167,139,250; }
.nx-av[data-color="teal"]   { --av-accent: #2dd4bf; --av-rgb: 45,212,191; }
.nx-av[data-color="pink"]   { --av-accent: #f472b6; --av-rgb: 244,114,182; }
.nx-av[data-color="amber"]  { --av-accent: #fbbf24; --av-rgb: 251,191,36; }
.nx-av[data-color="green"]  { --av-accent: #4ade80; --av-rgb: 74,222,128; }
.nx-av[data-color="coral"]  { --av-accent: #fb923c; --av-rgb: 251,146,60; }

/* ── Float animations ── */
@keyframes nx-av-float {
  0%,100% { transform: translateY(0) rotate(var(--av-rot,0deg)); }
  50%      { transform: translateY(var(--av-lift,-12px)) rotate(calc(var(--av-rot,0deg) * -1)); }
}

/* ── Scatter positions — avatars on the sides, center left clear ── */
.nx-av--1  { left: 9%;   top: 28%;   --av-rot:  2deg; --av-lift:-14px; animation: nx-av-float 7s   ease-in-out infinite 0s; }
.nx-av--2  { left: 25%;  top: 45%;  --av-rot: -3deg; --av-lift:-10px; animation: nx-av-float 9s   ease-in-out infinite -2s; }
.nx-av--3  { left: 4%;   top: 80%;  --av-rot:  1deg; --av-lift:-16px; animation: nx-av-float 6s   ease-in-out infinite -4s; }
.nx-av--4  { left: 22%;  top: 6%;   --av-rot: -2deg; --av-lift:-12px; animation: nx-av-float 8s   ease-in-out infinite -1s; }
.nx-av--5  { left: 26%;  top: 75%;  --av-rot:  3deg; --av-lift:-8px;  animation: nx-av-float 10s  ease-in-out infinite -3s; }
.nx-av--6  { left: 45%;  top: 12%;   --av-rot: -1deg; --av-lift:-18px; animation: nx-av-float 7.5s ease-in-out infinite -5s; }
.nx-av--7  { left: 55%;  top: 72%;  --av-rot:  2deg; --av-lift:-11px; animation: nx-av-float 8.5s ease-in-out infinite -1.5s; }
.nx-av--8  { left: 64%;  top: 5%;   --av-rot: -2deg; --av-lift:-14px; animation: nx-av-float 6.5s ease-in-out infinite -3.5s; }
.nx-av--9  { left: 74%;  top: 55%;  --av-rot:  1deg; --av-lift:-9px;  animation: nx-av-float 9.5s ease-in-out infinite -2.5s; }
.nx-av--10 { left: 80%;  top: 6%;   --av-rot: -3deg; --av-lift:-15px; animation: nx-av-float 7s   ease-in-out infinite -4.5s; }
.nx-av--11 { left: 88%;  top: 70%;  --av-rot:  2deg; --av-lift:-13px; animation: nx-av-float 8s   ease-in-out infinite -0.5s; }
.nx-av--12 { left: 93%;  top: 34%;  --av-rot: -1deg; --av-lift:-10px; animation: nx-av-float 6s   ease-in-out infinite -2s; }

/* ── Stat strip ── */
.nx-testi__strip {
  position: relative; z-index: 5;
  display: flex; align-items: center; gap: 2.5rem;
  margin-top: 2.8rem;
  padding: 1.2rem 2.5rem;
  background: var(--nx-glass);
  backdrop-filter: blur(var(--nx-blur)); -webkit-backdrop-filter: blur(var(--nx-blur));
  border: 1px solid var(--nx-border);
  border-radius: 100px;
  flex-wrap: wrap; justify-content: center;
}
.nx-testi__stat {
  display: flex; flex-direction: column; align-items: center; gap: .2rem;
}
.nx-testi__stat b {
  font-family: var(--nx-display); font-size: 1.3rem; font-weight: 900; letter-spacing: -.03em;
  background: linear-gradient(125deg, var(--nx-accent2), var(--nx-accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nx-testi__stat span {
  font-family: var(--nx-display); font-size: .62rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--nx-muted);
}
.nx-testi__divider { width: 1px; height: 36px; background: rgba(56,189,248,.15); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .nx-testi__field { height: 560px; }
  .nx-testi__center { width: 320px; }
  .nx-av__card { width: 220px; }
}
@media (max-width: 600px) {
  .nx-testi__field { height: 480px; }
  .nx-testi__center { width: 260px; }
  .nx-av__bubble { width: 50px; height: 50px; }
  .nx-av:hover .nx-av__bubble { width: 66px; height: 66px; }
  .nx-av__card { width: 190px; }
  .nx-av--10{top: 20%;}
  .nx-av--9{top: 60%;}
   .nx-av--3{top: 64%;}
    .nx-av--6{top: 20%;}
  .nx-av--12{left: 86%;}
  .nx-av--2{left: 0;}
  .nx-testi__strip { gap: 1.4rem; padding: 1rem 1.5rem; border-radius: var(--nx-r2); }
  .nx-footer{padding-bottom: 10rem;}
}

/* ═══════════════════════════════════════════
   CTA SECTION — with image
═══════════════════════════════════════════ */
.cta-section {
  position: relative; overflow: hidden;
  border-top: 1px solid var(--nx-border);
}

/* Full-bleed image */
.cta-bg-img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  opacity: 0.22;
  filter: saturate(1.4) brightness(0.7);
}
.cta-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(4,8,15,.92) 0%,
    rgba(37,99,235,.2) 50%,
    rgba(124,58,237,.18) 100%
  );
}

.cta-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.cta-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--nx-display);
  font-size: .68rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--nx-accent2);
  padding: .26rem .9rem;
  background: rgba(56,189,248,.07); border: 1px solid rgba(56,189,248,.18);
  border-radius: 100px; margin-bottom: 1.4rem;
}
.cta-title {
  font-family: var(--nx-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; line-height: 1.08;
  color: var(--nx-text); margin-bottom: 1rem;
}
.cta-sub {
  font-size: 1rem; color: var(--nx-muted); line-height: 1.75;
  margin-bottom: 2.2rem; max-width: 440px;
}

/* Stats row */
.cta-stats {
  display: flex; gap: 2rem; margin-bottom: 2.4rem;
}
.cta-stat-num {
  font-family: var(--nx-display); font-size: 2rem; font-weight: 900;
  color: var(--nx-text); line-height: 1;
}
.cta-stat-num span { color: var(--nx-accent2); }
.cta-stat-label { font-size: .78rem; color: var(--nx-muted); margin-top: 4px; }

.cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Right: image card */
.cta-image-wrap {
  position: relative;
}
.cta-img-card {
  position: relative; border-radius: var(--nx-r3); overflow: hidden;
  border: 1px solid var(--nx-border);
  box-shadow: 0 24px 80px rgba(0,40,160,.35);
}
.cta-img-card img {
  width: 100%; height: 420px;
  object-fit: cover; object-position: center;
  display: block;
}
.cta-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(4,8,15,.8) 100%);
}
.cta-img-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  background: var(--nx-glass);
  backdrop-filter: blur(var(--nx-blur));
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-r2); padding: 1rem 1.2rem;
  display: flex; align-items: center; gap: 12px;
}
.cta-img-badge-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(130deg, var(--nx-accent), var(--nx-accent3));
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.cta-img-badge-text strong {
  display: block; font-family: var(--nx-display); font-weight: 800;
  font-size: .95rem; color: var(--nx-text);
}
.cta-img-badge-text span { font-size: .8rem; color: var(--nx-muted); }

/* Floating deco blobs on cta image */
.cta-deco-1 {
  position: absolute; width: 180px; height: 180px; border-radius: 50%;
  background: var(--nx-accent3); opacity: .18; filter: blur(50px);
  top: -40px; right: -40px; pointer-events: none;
}
.cta-deco-2 {
  position: absolute; width: 120px; height: 120px; border-radius: 50%;
  background: var(--nx-accent2); opacity: .14; filter: blur(40px);
  bottom: -20px; left: -20px; pointer-events: none;
}

/* ── REVEAL ANIMATIONS ──────────────────── */
@keyframes nx-fadein {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
.nx-fadein { animation: nx-fadein .8s var(--nx-ease) var(--nx-d, 0s) both; }


  /* ── SECTION ────────────────────────────── */
  .hiw-section {
    width: 100%;
    padding: 80px 40px 90px;
    position: relative;
    overflow: hidden;
  }

  /* ── BG MESH ────────────────────────────── */
  .bg-mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  .bg-mesh::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    left: -150px; top: -120px;
    background: radial-gradient(circle, rgba(37,99,235,.13) 0%, transparent 65%);
    border-radius: 50%;
  }
  .bg-mesh::after {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    right: -100px; bottom: -120px;
    background: radial-gradient(circle, rgba(124,58,237,.11) 0%, transparent 65%);
    border-radius: 50%;
  }

  /* ── HEADER ─────────────────────────────── */
  .hiw-header {
    text-align: center;
    margin-bottom: 52px;
    position: relative;
    z-index: 2;
  }

  /* ── EYEBROW ────────────────────────────── */
  .nx-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--nx-display);
    font-size: .68rem; font-weight: 700;
    letter-spacing: .22em; text-transform: uppercase;
    color: var(--nx-accent2);
    padding: .26rem .9rem;
    background: rgba(56,189,248,.07);
    border: 1px solid rgba(56,189,248,.18);
    border-radius: 100px;
    margin-bottom: 16px;
  }

  /* ── PULSE DOT ──────────────────────────── */
  .nx-pulse-dot {
    display: inline-block;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--nx-green);
    animation: nx-pulse 2.4s infinite;
  }
  @keyframes nx-pulse {
    0%   { box-shadow: 0 0 0 0   rgba(0,230,118,.6); }
    70%  { box-shadow: 0 0 0 7px rgba(0,230,118,0);  }
    100% { box-shadow: 0 0 0 0   rgba(0,230,118,0);  }
  }

  /* ── TYPOGRAPHY ─────────────────────────── */
  .hiw-title {
    font-family: var(--nx-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.07;
    letter-spacing: -.025em;
    color: var(--nx-text);
    margin-bottom: 12px;
  }
  .nx-grad {
    background: linear-gradient(125deg, var(--nx-accent2) 0%, var(--nx-accent) 50%, var(--nx-accent3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .nx-italic {
    font-family: var(--nx-serif);
    font-style: italic;
    font-weight: 400;
  }
  .hiw-sub {
    font-size: 1rem;
    color: var(--nx-muted);
    line-height: 1.75;
    max-width: 500px;
    margin: 0 auto;
  }

  /* ── ROAD WRAPPER ───────────────────────── */
  .road-wrapper {
    position: relative;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    z-index: 2;
  }

  .road-svg {
    width: 100%;
    height: auto;
    display: block;
  }

  /* ── STEP CARDS OVERLAY ─────────────────── */
  .steps-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .step-card {
    position: absolute;
    pointer-events: all;
    width: 210px;
    background: var(--nx-glass);
    backdrop-filter: blur(var(--nx-blur));
    -webkit-backdrop-filter: blur(var(--nx-blur));
    border: 1px solid var(--nx-border);
    border-radius: var(--nx-r2);
    padding: 18px 20px;
    box-shadow: var(--nx-shadow);
    transition: transform var(--nx-ease) .35s, box-shadow .35s;
    opacity: 0;
    animation: nx-fadein .7s var(--nx-ease) var(--nx-d, 0s) both;
  }
  .step-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--nx-shadow2);
  }

  .step-1 { top: 2%;   left: 0;  --nx-d: .1s; }
  .step-2 { top: 40%;  right: 0; --nx-d: .3s; }
  .step-3 { bottom: 2%; left: 0; --nx-d: .5s; }

  /* ── GHOST NUMBER ───────────────────────── */
  .ghost-num {
    position: absolute;
    right: 10px; top: -8px;
    font-family: var(--nx-display);
    font-size: 5rem; font-weight: 900;
    color: rgba(56,189,248,.06);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -.04em;
  }

  /* ── STEP LABEL ─────────────────────────── */
  .step-num {
    font-family: var(--nx-display);
    font-size: .64rem; font-weight: 700;
    letter-spacing: .18em; text-transform: uppercase;
    color: var(--nx-accent2);
    opacity: .7;
    margin-bottom: 8px;
  }

  /* ── HEX ICON ───────────────────────────── */
  .step-icon-wrap {
    width: 40px; height: 40px;
    margin-bottom: 12px;
    position: relative;
  }
  .icon-hex {
    width: 40px; height: 40px;
    clip-path: polygon(50% 0%,93% 25%,93% 75%,50% 100%,7% 75%,7% 25%);
  }
  .s1 .icon-hex { background: linear-gradient(135deg, var(--nx-accent) 0%, var(--nx-accent2) 100%); }
  .s2 .icon-hex { background: linear-gradient(135deg, var(--nx-accent3) 0%, var(--nx-accent2) 100%); }
  .s3 .icon-hex { background: linear-gradient(135deg, #059669 0%, var(--nx-green) 100%); }

  .step-icon-svg {
    position: absolute;
    inset: 0;
    display: flex; align-items: center; justify-content: center;
  }

  /* ── STEP CONTENT ───────────────────────── */
  .step-val {
    font-family: var(--nx-display);
    font-size: 1.4rem; font-weight: 900;
    background: linear-gradient(125deg, var(--nx-accent2), var(--nx-accent3));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    line-height: 1;
  }
  .step-title {
    font-family: var(--nx-display);
    font-weight: 700;
    font-size: .95rem;
    color: var(--nx-text);
    margin-bottom: 6px;
    line-height: 1.3;
  }
  .step-desc {
    font-size: .78rem;
    color: var(--nx-muted);
    line-height: 1.65;
  }

  /* ── FADE IN ─────────────────────────────── */
  @keyframes nx-fadein {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: none; }
  }
  .hiw-header {
    opacity: 0;
    animation: nx-fadein .65s var(--nx-ease) .05s both;
  }
  @media (max-width: 480px) {
    .step-1{top: -29%;}
    .step-2{top: 26%;right: -30px;}
    .step-3{bottom: -46%;}
    .step-title,.step-desc{display: none;}
    .step-card{width: 125px;height: 110px;padding: 10px 10px;}
    .step-val{font-size: 0.8rem;}
  }


   
    .lp-page {
      width: 100vw;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
    }

    .lp-card {
      width: min(920px, 100%);
      min-height: 580px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-radius: var(--nx-r3);
      overflow: hidden;
      border: 1px solid var(--nx-border);
      box-shadow: 0 32px 80px rgba(0,20,100,.45), 0 0 0 1px rgba(56,189,248,0.04);
      animation: fadeUp .7s var(--nx-ease) both;
    }
    @keyframes fadeUp {
      from { opacity:0; transform:translateY(28px); }
      to   { opacity:1; transform:translateY(0); }
    }

    /* ── LEFT SLIDER ── */
    .lp-left {
      position: relative;
      overflow: hidden;
    }

    .lp-slides {
      position: absolute;
      inset: 0;
    }
    .lp-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1.3s ease;
    }
    .lp-slide.active { opacity: 1; }
   .lp-slide2{background-image:url('../img/slide1.jpg')}
   .lp-slide3{background-image:url('../img/slide2.jpg')}
   .lp-slide4{background-image:url('../img/slide3.jpg')}
    .lp-slide1{background-image: url('../img/slide4.jpg');}
    .lp-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(180deg,
        rgba(4,8,15,0.5) 0%,
        rgba(4,8,15,0.15) 35%,
        rgba(4,8,15,0.72) 100%);
      z-index: 1;
    }
    .lp-overlay-glow {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 70% 55% at 25% 15%, rgba(37,99,235,0.3) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 85% 85%, rgba(124,58,237,0.22) 0%, transparent 65%);
      z-index: 2;
    }

    .lp-left-content {
      position: relative; z-index: 3;
      height: 100%;
      display: flex; flex-direction: column;
      justify-content: space-between;
      padding: 1.75rem;
    }

    /* brand top */
    .lp-brand {
      display: flex; align-items: center; justify-content: space-between;
    }
    .lp-brand-logo {
      display: flex; align-items: center; gap: 9px;
    }
    .lp-brand-icon {
      width: 30px; height: 30px;
      background: linear-gradient(135deg, var(--nx-accent), var(--nx-accent2));
      border-radius: 9px;
      display: flex; align-items: center; justify-content: center;
    }
    .lp-brand-icon svg { width: 14px; height: 14px; }
    .lp-brand-name {
      font-family: 'Cabinet Grotesk', sans-serif;
      font-size: .8rem; font-weight: 800;
      color: #fff; letter-spacing: .1em; text-transform: uppercase;
    }
    .lp-ticker-pill {
      background: rgba(4,8,15,0.72);
      border: 1px solid rgba(56,189,248,0.18);
      border-radius: 100px;
      padding: .28rem .8rem;
      display: flex; align-items: center; gap: 7px;
      backdrop-filter: blur(12px);
    }
    .lp-pulse {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--nx-green);
      animation: blink 1.8s ease-in-out infinite;
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }
    .lp-ticker-txt { font-size: .62rem; color: rgba(226,238,255,.72); white-space: nowrap; }
    .lp-ticker-txt b { color: #fff; font-weight: 600; }

 
    .lp-stats {
      display: flex; gap: 8px; margin-bottom: 1.1rem;
    }
    .lp-stat {
      background: rgba(4,8,15,0.68);
      border: 1px solid rgba(56,189,248,0.16);
      border-radius: var(--nx-r1);
      padding: .5rem .8rem; flex: 1;
      backdrop-filter: blur(14px);
    }
    .lp-stat-val {
      font-family: 'Cabinet Grotesk', sans-serif;
      font-size: .9rem; font-weight: 800;
      color: var(--nx-accent2); line-height: 1;
    }
    .lp-stat-key {
      font-size: .58rem; color: rgba(226,238,255,.45);
      margin-top: 3px; letter-spacing: .05em; text-transform: uppercase;
    }
    .lp-tagline {
      font-family: 'Cabinet Grotesk', sans-serif;
      font-size: 1.55rem; font-weight: 800;
      color: #fff; line-height: 1.2;
      margin-bottom: .4rem;
      text-shadow: 0 2px 24px rgba(0,0,0,.6);
    }
    .lp-tagline em {
      font-family: 'Instrument Serif', Georgia, serif;
      font-style: italic; font-weight: 400;
      background: linear-gradient(125deg, var(--nx-accent2) 0%, var(--nx-accent) 50%, var(--nx-accent3) 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .lp-tagline-sub {
      font-size: .72rem; color: rgba(226,238,255,.5); line-height: 1.65;
      margin-bottom: 1rem;
    }
    .lp-tagline-sub span { color: rgba(56,189,248,.5); margin: 0 3px; }

    .lp-dots { display: flex; gap: 6px; align-items: center; }
    .lp-dot-btn {
      height: 3px; width: 18px; border-radius: 2px;
      background: rgba(255,255,255,0.22);
      border: none; cursor: pointer; padding: 0;
      transition: background .3s, width .35s var(--nx-ease);
    }
    .lp-dot-btn.active { background: var(--nx-accent2); width: 30px; }

    /* ── RIGHT FORM ── */
    .lp-right {
      background: #060c18;
      display: flex; flex-direction: column;
      justify-content: center;
      padding: 2.25rem 2rem;
      border-left: 1px solid var(--nx-border);
    }

    /* tabs */
    .lp-tabs {
      display: flex;
      background: rgba(56,189,248,0.05);
      border: 1px solid var(--nx-border);
      border-radius: 100px;
      padding: 3px;
      margin-bottom: 1.65rem;
    }
    .lp-tab {
      flex: 1; padding: .44rem .5rem;
      border-radius: 100px; border: none;
      background: transparent;
      font-family: 'Outfit', sans-serif;
      font-size: .73rem; font-weight: 700;
      color: var(--nx-muted); cursor: pointer;
      letter-spacing: .03em;
      transition: background .25s var(--nx-ease), color .25s, box-shadow .25s;
    }
    .lp-tab.active {
      background: linear-gradient(135deg, var(--nx-accent), #1d4fd8);
      color: #fff;
      box-shadow: 0 2px 14px rgba(37,99,235,.4);
    }

    .lp-heading {
      font-family: 'Cabinet Grotesk', sans-serif;
      font-size: 1.6rem; font-weight: 800;
      color: var(--nx-text); line-height: 1.1;
      letter-spacing: -.02em; margin-bottom: .3rem;
    }
    .lp-heading em {
      font-family: 'Instrument Serif', Georgia, serif;
      font-style: italic; font-weight: 400;
      background: linear-gradient(125deg, var(--nx-accent2), var(--nx-accent));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .lp-heading-sub {
      font-size: .72rem; color: var(--nx-muted); margin-bottom: 1.4rem;
    }

    /* panels */
    .lp-panel { display: none; flex-direction: column; gap: .8rem; }
    .lp-panel.active { display: flex; animation: panelIn .35s var(--nx-ease) both; }
    @keyframes panelIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }

    .lp-row { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
    .lp-field { display: flex; flex-direction: column; gap: 4px; }
    .lp-label {
      font-size: .62rem; font-weight: 700; color: var(--nx-muted);
      letter-spacing: .07em; text-transform: uppercase;
    }
    .lp-inp {
      background: rgba(6,14,30,0.9);
      border: 1px solid var(--nx-border);
      border-radius: var(--nx-r1);
      padding: .58rem .85rem;
      font-size: .81rem; color: var(--nx-text);
      font-family: 'Outfit', sans-serif;
      outline: none;
      transition: border-color .2s, box-shadow .2s;
      width: 100%;
    }
    .lp-inp:focus {
      border-color: rgba(56,189,248,0.4);
      box-shadow: 0 0 0 3px rgba(56,189,248,0.07);
    }
    .lp-inp::placeholder { color: #1a2a3d; }

    .lp-forgot {
      text-align: right; font-size: .66rem;
      color: var(--nx-accent2); cursor: pointer;
      margin-top: -2px; transition: opacity .15s;
    }
    .lp-forgot:hover { opacity: .7; }

    .lp-btn {
      background: linear-gradient(135deg, var(--nx-accent) 0%, #1d4fd8 100%);
      color: #fff; border: none; border-radius: var(--nx-r1);
      padding: .68rem 1rem;
      font-size: .81rem; font-weight: 700;
      font-family: 'Outfit', sans-serif; cursor: pointer;
      letter-spacing: .04em;
      transition: opacity .15s, transform .1s;
      box-shadow: 0 4px 20px rgba(37,99,235,.35);
    }
    .lp-btn:hover { opacity: .9; box-shadow: 0 6px 28px rgba(37,99,235,.5); }
    .lp-btn:active { transform: scale(.98); }

    .lp-divider {
      display: flex; align-items: center; gap: .6rem;
    }
    .lp-divider-line { flex: 1; height: 1px; background: var(--nx-border); }
    .lp-divider-txt { font-size: .62rem; color: #1a2a3d; letter-spacing: .05em; }

    .lp-google-btn {
      display: flex; align-items: center; justify-content: center; gap: 9px;
      background: transparent;
      border: 1px solid var(--nx-border); border-radius: var(--nx-r1);
      padding: .56rem 1rem;
      font-size: .77rem; color: var(--nx-text);
      font-family: 'Outfit', sans-serif; font-weight: 500;
      cursor: pointer; transition: border-color .2s, background .2s;
    }
    .lp-google-btn:hover { border-color: rgba(56,189,248,.3); background: rgba(56,189,248,.04); }
    .lp-google-btn svg { width: 14px; height: 14px; flex-shrink: 0; }

    .lp-check-row {
      display: flex; align-items: flex-start; gap: 8px;
      font-size: .68rem; color: var(--nx-muted); line-height: 1.5;
    }
    .lp-check-row input[type="checkbox"] {
      margin-top: 2px; accent-color: var(--nx-accent); flex-shrink: 0;
    }
    .lp-check-row a { color: var(--nx-accent2); cursor: pointer; }

    .lp-social-row {
      display: flex; justify-content: center; gap: 10px;
      padding-top: .75rem;
      border-top: 1px solid rgba(56,189,248,.07);
    }
    .lp-social-icon {
      width: 28px; height: 28px; border-radius: 7px;
      background: rgba(56,189,248,.04); border: 1px solid var(--nx-border);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: border-color .2s, background .2s;
    }
    .lp-social-icon:hover { border-color: rgba(56,189,248,.3); background: rgba(56,189,248,.08); }
    .lp-social-icon svg { width: 12px; height: 12px; }

    @media (max-width: 640px) {
      .lp-page{padding: 1.5rem 1rem 10rem;}
      .lp-card { grid-template-columns: 1fr; min-height: auto; }
      .lp-left { min-height: 210px; }
      .lp-right { padding: 1.75rem 1.5rem; }
      .lp-row { grid-template-columns: 1fr; }
      .lp-heading { font-size: 1.35rem; }
    }


    
/* ── BLOG HERO ── */
.blog-hero {
  position: relative;
  height: 350px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--nx-bg2);
}
.blog-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(37,99,235,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(124,58,237,0.12) 0%, transparent 60%),
    linear-gradient(180deg, #04080f 0%, #060c18 100%);
}
.blog-hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(56,189,248,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.3) 100%);
}
.blog-hero__inner {
  position: relative; z-index: 2;
  width: min(1180px, 92vw);
  margin-inline: auto;
  padding-bottom: 3.5rem;
}
.blog-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--nx-body); font-size: .68rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--nx-accent2);
  padding: .26rem .9rem;
  background: rgba(56,189,248,.07);
  border: 1px solid rgba(56,189,248,.18);
  border-radius: 100px;
  margin-bottom: 1rem;
}
.blog-hero__title {
  font-family: var(--nx-display);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--nx-text);
  margin-bottom: .8rem;
}
.blog-hero__title em {
  font-family: var(--nx-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(125deg, var(--nx-accent2) 0%, var(--nx-accent3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.blog-hero__sub {
  font-size: .95rem;
  color: var(--nx-muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── FILTER BAR ── */
.blog-filter {
  border-bottom: 1px solid var(--nx-border);
  background: rgba(4,8,15,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky; top: 72px; z-index: 40;
}
.blog-filter__inner {
  width: min(1180px, 92vw);
  margin-inline: auto;
  display: flex; align-items: center; gap: 0;
  overflow-x: auto; scrollbar-width: none;
}
.blog-filter__inner::-webkit-scrollbar { display: none; }
.blog-filter__label {
  font-family: var(--nx-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--nx-muted);
  white-space: nowrap;
  padding: 1.1rem 2rem 1.1rem 0;
  border-right: 1px solid var(--nx-border);
  margin-right: 1.5rem;
}
.blog-filter__btn {
  font-family: var(--nx-display);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--nx-muted);
  background: none; border: none; cursor: pointer;
  padding: 1.1rem 1.2rem;
  white-space: nowrap;
  position: relative;
  transition: color .25s;
}
.blog-filter__btn::after {
  content: '';
  position: absolute; bottom: 0; left: 1.2rem; right: 1.2rem;
  height: 2px;
  background: var(--nx-accent2);
  transform: scaleX(0);
  transition: transform .3s var(--nx-ease);
}
.blog-filter__btn:hover,
.blog-filter__btn.active { color: var(--nx-text); }
.blog-filter__btn.active::after { transform: scaleX(1); }

/* ── FEATURED POST ── */
.blog-featured {
  padding: 4rem 0 2.5rem;
}
.blog-featured__inner {
  width: min(1180px, 92vw);
  margin-inline: auto;
}
.blog-featured__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-r2);
  overflow: hidden;
  background: var(rgba(6,14,30,0.7));
  position: relative;
  transition: border-color .3s, box-shadow .3s;
}
.blog-featured__card:hover {
  border-color: rgba(56,189,248,.3);
  box-shadow: 0 20px 60px rgba(37,99,235,.15);
}
.blog-featured__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.blog-featured__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--nx-ease);
  filter: brightness(0.85) saturate(0.9);
}
.blog-featured__card:hover .blog-featured__img-wrap img {
  transform: scale(1.04);
}
.blog-featured__badge {
  position: absolute; top: 1.2rem; left: 1.2rem;
  background: var(--nx-bg);
  border: 1px solid var(--nx-border);
  border-radius: 50%;
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--nx-display);
  font-size: .52rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--nx-accent2);
  line-height: 1.3;
  z-index: 2;
}
.blog-featured__content {
  padding: 3rem 3rem 3rem 3.5rem;
  display: flex; flex-direction: column; justify-content: center;
  gap: 1rem;
}
.blog-featured__tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--nx-display);
  font-size: .65rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--nx-accent2);
}
.blog-featured__title {
  font-family: var(--nx-display);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--nx-text);
}
.blog-featured__desc {
  font-size: .9rem;
  color: var(--nx-muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-featured__meta {
  display: flex; align-items: center; gap: 1rem;
  font-size: .75rem;
  color: var(--nx-muted);
  font-family: var(--nx-display);
  font-weight: 500;
  letter-spacing: .05em;
}
.blog-featured__meta span { color: rgba(93,122,160,.4); }
.blog-read-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--nx-display);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--nx-text);
  border: 1px solid rgba(255,255,255,.12);
  padding: .7rem 1.5rem;
  border-radius: 100px;
  background: transparent;
  transition: border-color .25s, color .25s, background .25s;
  width: fit-content;
  cursor: pointer;
}
.blog-read-btn:hover {
  border-color: var(--nx-accent2);
  color: var(--nx-accent2);
  background: rgba(56,189,248,.05);
}
.blog-read-btn svg { transition: transform .25s; }
.blog-read-btn:hover svg { transform: translateX(3px); }

/* ── GRID POSTS ── */
.blog-grid {
  padding: 1rem 0 5rem;
}
.blog-grid__inner {
  width: min(1180px, 92vw);
  margin-inline: auto;
}
.blog-grid__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  /* background: var(--nx-border); */
  /* border: 1px solid var(--nx-border); */
  border-radius: var(--nx-r2);
  overflow: hidden;
  margin-bottom: 1.5px;
}
.blog-card {
  background: var(--nx-bg);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex; flex-direction: column;
  transition: background .3s;
}
.blog-card:hover { background: var(rgba(6,14,30,0.7)); }
.blog-card__img {
  aspect-ratio: 3/2;
  overflow: hidden;
  position: relative;
}
.blog-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--nx-ease);
  filter: brightness(0.8) saturate(0.85);
}
.blog-card:hover .blog-card__img img { transform: scale(1.06); }
.blog-card__category {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  writing-mode: vertical-rl;
  font-family: var(--nx-display);
  font-size: .58rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--nx-accent2);
  background: rgba(4,8,15,0.85);
  padding: .8rem .4rem;
  border-radius: 0 0 6px 6px;
}
.blog-card__body {
  padding: 1.4rem 1.6rem 1.8rem;
  flex: 1; display: flex; flex-direction: column; gap: .6rem;
}
.blog-card__title {
  font-family: var(--nx-display);
  font-size: 1rem; font-weight: 700;
  line-height: 1.3; letter-spacing: -.01em;
  color: var(--nx-text);
}
.blog-card__excerpt {
  font-size: .8rem;
  color: var(--nx-muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.blog-card__readmore {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--nx-display);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--nx-muted);
  transition: color .25s, gap .25s;
  margin-top: .4rem;
}
.blog-card__readmore::after {
  content: '→';
  transition: transform .25s;
}
.blog-card:hover .blog-card__readmore { color: var(--nx-accent2); }
.blog-card:hover .blog-card__readmore::after { transform: translateX(3px); }

/* ── DIVIDER BETWEEN ROWS ── */
.blog-grid__divider {
  height: 1px;
  background: var(--nx-border);
  margin: 0;
}


/* ── ANIMATIONS ── */
.nx-reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s var(--nx-ease), transform .7s var(--nx-ease);
  transition-delay: var(--fd, 0s);
}
.nx-reveal.nx-visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .blog-featured__card { grid-template-columns: 1fr; }
  .blog-grid__row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .blog-grid__row { grid-template-columns: 1fr; }
  .blog-featured__content { padding: 1.8rem; }
  .blog-hero__title { font-size: clamp(2.6rem, 10vw, 4rem); }
}



/* ── ARTICLE HERO ── */
.art-hero {
  position: relative;
  min-height: 540px;
  display: grid;
  grid-template-rows: 1fr;
  overflow: hidden;
}
.art-hero__img {
  position: absolute; inset: 0;
  overflow: hidden;
}
.art-hero__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.35) saturate(.7);
  transform-origin: center;
}
.art-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    0deg,
    #04080f 0%,
    rgba(4,8,15,0.75) 40%,
    rgba(4,8,15,0.2) 100%
  );
}
.art-hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(56,189,248,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.5) 100%);
}
.art-hero__inner {
  position: relative; z-index: 2;
  width: min(820px, 92vw);
  margin-inline: auto;
  padding: 7rem 0 4rem;
  display: flex; flex-direction: column; gap: 1.2rem;
  align-self: flex-end;
}
.art-hero__back {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--nx-display);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--nx-muted);
  transition: color .25s, gap .25s;
  width: fit-content;
}
.art-hero__back:hover { color: var(--nx-accent2); gap: 10px; }
.art-hero__tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--nx-display);
  font-size: .65rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--nx-accent2);
  width: fit-content;
}
.art-hero__title {
  font-family: var(--nx-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--nx-text);
}
.art-hero__title em {
  font-family: var(--nx-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(125deg, var(--nx-accent2) 0%, var(--nx-accent3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.art-hero__meta {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  font-family: var(--nx-display);
  font-size: .78rem; font-weight: 500;
  color: var(--nx-muted);
  letter-spacing: .04em;
}
.art-hero__meta-dot { color: rgba(93,122,160,.3); }
.art-hero__author {
  display: flex; align-items: center; gap: .6rem;
}
.art-hero__avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--nx-accent), var(--nx-accent3));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--nx-display); font-size: .7rem; font-weight: 800;
  color: #fff; flex-shrink: 0;
}

/* ── ARTICLE LAYOUT ── */
.art-body {
  padding: 4rem 0 6rem;
  background: var(--nx-bg);
}
.art-layout {
  width: min(1140px, 92vw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  align-items: start;
}

/* ── ARTICLE CONTENT ── */
.art-content {
  max-width: 760px;
}
.art-content__lead {
  font-size: 1.15rem;
  color: rgba(226,238,255,.75);
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--nx-border);
}
.art-content h2 {
  font-family: var(--nx-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--nx-text);
  margin: 2.5rem 0 1rem;
  letter-spacing: -.02em;
  line-height: 1.2;
}
.art-content h3 {
  font-family: var(--nx-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--nx-text);
  margin: 2rem 0 .8rem;
}
.art-content p {
  font-size: .97rem;
  color: var(--nx-muted);
  line-height: 1.85;
  margin-bottom: 1.3rem;
}
.art-content ul, .art-content ol {
  margin: 0 0 1.3rem 0;
  padding-left: 1.4rem;
  display: flex; flex-direction: column; gap: .5rem;
}
.art-content li {
  font-size: .97rem;
  color: var(--nx-muted);
  line-height: 1.75;
  padding-left: .3rem;
}
.art-content li::marker { color: var(--nx-accent2); }

/* Blockquote */
.art-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--nx-accent2);
  background: rgba(56,189,248,.04);
  border-radius: 0 var(--nx-r1) var(--nx-r1) 0;
}
.art-content blockquote p {
  font-family: var(--nx-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(226,238,255,.8);
  margin: 0;
  line-height: 1.6;
}

/* Highlight box */
.art-highlight {
  margin: 2rem 0;
  padding: 1.5rem 1.8rem;
  background: rgba(37,99,235,.07);
  border: 1px solid rgba(37,99,235,.2);
  border-radius: var(--nx-r1);
  display: flex; gap: 1rem;
}
.art-highlight__icon {
  font-size: 1.3rem; flex-shrink: 0; margin-top: .1rem;
}
.art-highlight__text {
  font-size: .9rem;
  color: rgba(226,238,255,.7);
  line-height: 1.7;
}
.art-highlight__text strong {
  color: var(--nx-accent2);
  font-weight: 700;
}

/* Commission table */
.art-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 2rem;
  font-family: var(--nx-display);
  font-size: .84rem;
  border-radius: var(--nx-r1);
  overflow: hidden;
  border: 1px solid var(--nx-border);
}
.art-table th {
  background: rgba(56,189,248,.07);
  color: var(--nx-accent2);
  font-size: .68rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  padding: .8rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid var(--nx-border);
}
.art-table td {
  padding: .8rem 1.2rem;
  color: var(--nx-muted);
  border-bottom: 1px solid rgba(56,189,248,.05);
}
.art-table tr:last-child td { border-bottom: none; }
.art-table tr:hover td { background: rgba(56,189,248,.03); color: var(--nx-text); }
.art-table .highlight-td {
  color: var(--nx-green);
  font-weight: 700;
}

/* Tags */
.art-tags {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid var(--nx-border);
}
.art-tag {
  font-family: var(--nx-display);
  font-size: .65rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--nx-muted);
  padding: .35rem .9rem;
  border: 1px solid var(--nx-border);
  border-radius: 100px;
  transition: color .25s, border-color .25s;
  cursor: pointer;
}
.art-tag:hover {
  color: var(--nx-accent2);
  border-color: rgba(56,189,248,.3);
}

/* Share */
.art-share {
  display: flex; align-items: center; gap: .8rem;
  margin-top: 2rem;
}
.art-share__label {
  font-family: var(--nx-display);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--nx-muted);
}
.art-share__btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--nx-border);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--nx-muted);
  transition: color .25s, border-color .25s, background .25s;
}
.art-share__btn:hover {
  color: var(--nx-accent2);
  border-color: rgba(56,189,248,.3);
  background: rgba(56,189,248,.05);
}

/* ── SIDEBAR ── */
.art-sidebar { position: sticky; top: 100px; }

.art-sidebar__toc {
  background: rgba(6,14,30,0.7);
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-r2);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.art-sidebar__toc-label {
  font-family: var(--nx-display);
  font-size: .65rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--nx-accent2);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 8px;
}
.art-toc-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .1rem;
}
.art-toc-list li a {
  font-family: var(--nx-display);
  font-size: .8rem; font-weight: 500;
  color: var(--nx-muted);
  padding: .45rem .7rem;
  border-radius: 6px;
  display: block;
  transition: color .2s, background .2s;
  line-height: 1.4;
}
.art-toc-list li a:hover,
.art-toc-list li a.active {
  color: var(--nx-accent2);
  background: rgba(56,189,248,.06);
}
.art-toc-list li a.active {
  border-left: 2px solid var(--nx-accent2);
  padding-left: .5rem;
}

.art-sidebar__cta {
  background: linear-gradient(135deg, rgba(37,99,235,.15), rgba(124,58,237,.12));
  border: 1px solid rgba(37,99,235,.25);
  border-radius: var(--nx-r2);
  padding: 1.8rem 1.5rem;
  text-align: center;
}
.art-sidebar__cta-icon {
  font-size: 2rem; margin-bottom: .8rem;
}
.art-sidebar__cta-title {
  font-family: var(--nx-display);
  font-size: 1rem; font-weight: 800;
  color: var(--nx-text);
  margin-bottom: .5rem;
  letter-spacing: -.01em;
}
.art-sidebar__cta-desc {
  font-size: .78rem;
  color: var(--nx-muted);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

/* ── RELATED POSTS ── */
.art-related {
  padding: 3rem 0 5rem;
  border-top: 1px solid var(--nx-border);
}
.art-related__inner {
  width: min(1140px, 92vw);
  margin-inline: auto;
}
.art-related__head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 2rem;
}
.art-related__title {
  font-family: var(--nx-display);
  font-size: 1.4rem; font-weight: 800;
  color: var(--nx-text);
  letter-spacing: -.02em;
}
.art-related__all {
  font-family: var(--nx-display);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--nx-muted);
  transition: color .2s;
}
.art-related__all:hover { color: var(--nx-accent2); }
.art-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.art-rel-card {
  background: rgba(6,14,30,0.6);
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-r2);
  overflow: hidden;
  transition: border-color .3s, transform .3s;
  display: flex; flex-direction: column;
}
.art-rel-card:hover {
  border-color: rgba(56,189,248,.25);
  transform: translateY(-3px);
}
.art-rel-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.art-rel-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.75) saturate(.8);
  transition: transform .6s var(--nx-ease);
}
.art-rel-card:hover .art-rel-card__img img { transform: scale(1.05); }
.art-rel-card__body {
  padding: 1.2rem 1.4rem 1.5rem;
  flex: 1; display: flex; flex-direction: column; gap: .5rem;
}
.art-rel-card__cat {
  font-family: var(--nx-display);
  font-size: .6rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--nx-accent2);
}
.art-rel-card__title {
  font-family: var(--nx-display);
  font-size: .92rem; font-weight: 700;
  color: var(--nx-text);
  line-height: 1.35; letter-spacing: -.01em;
  flex: 1;
}
.art-rel-card__meta {
  font-size: .72rem; color: var(--nx-muted);
  font-family: var(--nx-display);
}

/* ── SCROLL REVEAL ── */
.nx-reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s var(--nx-ease), transform .7s var(--nx-ease);
  transition-delay: var(--fd, 0s);
}
.nx-reveal.nx-visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .art-layout { grid-template-columns: 1fr; }
  .art-sidebar { position: static; }
  .art-related__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .art-related__grid { grid-template-columns: 1fr; }
  .art-hero__inner { padding: 5rem 0 2.5rem; }
}




/* ── FIX: Content overflow ──────────────────── */

/* Prevent ANY element from bleeding out of viewport */
.art-body,
.art-layout,
.art-content,
.art-hero__inner,
.art-related__inner {
  max-width: 100%;
  overflow-x: hidden;
}

/* Table scrolls horizontally instead of breaking layout */
.art-table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
}
.art-table th,
.art-table td {
  white-space: nowrap;
}

/* Images never exceed their container */
.art-content img,
.art-rel-card__img img,
.art-hero__img img {
  max-width: 100%;
  height: auto;
}

/* Blockquote padding too wide on small screens */
.art-content blockquote {
  padding: 1.2rem 1.2rem;
  margin: 1.5rem 0;
}

/* Highlight box gap fix */
.art-highlight {
  flex-direction: row;
  gap: .75rem;
  padding: 1.2rem 1.2rem;
}

/* ── TABLET: 601px – 960px ───────────────────── */
@media (max-width: 960px) {
  .art-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    width: min(100%, 92vw);
  }
  .art-sidebar       { position: static; }
  .art-related__grid { grid-template-columns: 1fr 1fr; }

  .art-content       { max-width: 100%; }
  .art-hero__inner   { width: min(100%, 92vw); }
}

/* ── MOBILE: ≤ 600px ─────────────────────────── */
@media (max-width: 600px) {
  /* Hero */
  .art-hero          { min-height: 470px; }
  .art-hero__inner   {
    width: 100%;
    padding: 5rem 1rem 2rem;  /* side padding keeps text off edge */
  }
  .art-hero__title   { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .art-hero__meta    { gap: .6rem; font-size: .72rem; }

  /* Body layout */
  .art-body          { padding: 2.5rem 0 4rem; }
  .art-layout        {
    width: 100%;
    padding-inline: 1rem;     /* gutters instead of auto margins */
    gap: 2rem;
  }

  /* Content text */
  .art-content__lead { font-size: 1rem; margin-bottom: 1.8rem; padding-bottom: 1.8rem; }
  .art-content h2    { font-size: clamp(1.1rem, 5vw, 1.4rem); margin: 2rem 0 .8rem; }
  .art-content h3    { font-size: 1rem; }
  .art-content p,
  .art-content li    { font-size: .9rem; line-height: 1.75; }

  /* Blockquote */
  .art-content blockquote      { padding: 1rem 1rem; margin: 1.2rem 0; }
  .art-content blockquote p    { font-size: .95rem; }

  /* Highlight box */
  .art-highlight     { padding: 1rem; gap: .65rem; }
  .art-highlight__icon { font-size: 1.1rem; }
  .art-highlight__text { font-size: .84rem; }

  /* Tags & share */
  .art-tags          { gap: .4rem; margin-top: 2rem; padding-top: 1.5rem; }
  .art-tag           { font-size: .6rem; padding: .3rem .75rem; }
  .art-share         { flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }

  /* Sidebar */
  .art-sidebar__toc  { padding: 1.2rem; }
  .art-sidebar__cta  { padding: 1.4rem 1.2rem; }

  /* Related posts */
  .art-related       { padding: 2.5rem 0 4rem; }
  .art-related__inner{ width: 100%; padding-inline: 1rem; }
  .art-related__grid { grid-template-columns: 1fr; gap: .85rem; }
  .art-related__title{ font-size: 1.15rem; }
}

/* ── TINY MOBILE: ≤ 380px ───────────────────── */
@media (max-width: 380px) {
  .art-layout,
  .art-related__inner { padding-inline: .75rem; }
  .art-hero__inner    { padding: 4.5rem .75rem 1.8rem; }
  .art-hero__title    { font-size: 1.45rem; }
  .art-highlight      { flex-direction: column; gap: .5rem; }
}

/* ── REDUCED MOTION ─────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .nx-reveal,
  .art-rel-card,
  .art-rel-card__img img { transition: none !important; }
  .nx-reveal             { opacity: 1; transform: none; }
}










/* ===================================
   LEGAL PAGES — COMMON STYLES
   Consumes nx-* tokens from the main theme.
   No :root variables are redefined here.
   =================================== */

/* ── Body override for dark theme ── */
body {
  background: var(--nx-bg);
  color: var(--nx-text);
  font-family: var(--nx-body);
  cursor: auto; /* legal pages don't use the custom cursor */
}


/* ── Hero ── */
.legal-hero {
  background:
    radial-gradient(ellipse 80% 60% at 60% -10%, rgba(37, 99, 235, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(124, 58, 237, 0.12) 0%, transparent 60%),
    var(--nx-bg2);
  border-bottom: 1px solid var(--nx-border);
  padding: 84px 0 52px;
}

.legal-hero .container,
.legal-hero .nx-container {
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 0 var(--nx-gutter);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-hero__tag {
  /* reuse the nx-eyebrow pattern */
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--nx-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nx-accent2);
  background: rgba(56, 189, 248, 0.07);
  border: 1px solid rgba(56, 189, 248, 0.18);
  padding: 0.26rem 0.9rem;
  border-radius: 100px;
  width: fit-content;
}

.legal-hero__tag svg {
  width: 12px;
  height: 12px;
}

.legal-hero__title {
  font-family: var(--nx-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  /* gradient text — nx-grad pattern */
  background: linear-gradient(125deg, var(--nx-accent2) 0%, var(--nx-accent) 50%, var(--nx-accent3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-hero__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.legal-hero__date,
.legal-hero__version {
  font-size: 0.8125rem;
  color: var(--nx-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--nx-body);
}

.legal-hero__date svg,
.legal-hero__version svg {
  width: 14px;
  height: 14px;
  opacity: 0.5;
}

/* ── Page layout grid ── */
.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 0 var(--nx-gutter);
  align-items: start;
}

/* ── TOC Sidebar ── */
.legal-toc {
  position: sticky;
  top: 84px;
  padding: 40px 32px 40px 0;
  border-right: 1px solid var(--nx-border);
}

.legal-toc__label {
  font-family: var(--nx-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--nx-muted);
  margin-bottom: 14px;
}

.legal-toc__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.legal-toc__list a {
  display: block;
  font-family: var(--nx-body);
  font-size: 0.8125rem;
  color: var(--nx-muted);
  text-decoration: none;
  padding: 5px 10px;
  border-radius: var(--nx-r1);
  border-left: 2px solid transparent;
  transition:
    color var(--nx-dur) var(--nx-ease),
    background var(--nx-dur) var(--nx-ease),
    border-color var(--nx-dur) var(--nx-ease);
  line-height: 1.4;
}

.legal-toc__list a:hover {
  color: var(--nx-accent2);
  background: rgba(56, 189, 248, 0.06);
}

.legal-toc__list a.toc-active {
  color: var(--nx-accent2);
  font-weight: 600;
  border-left-color: var(--nx-accent2);
  background: rgba(56, 189, 248, 0.08);
}

/* ── Main content area ── */
.legal-content {
  padding: 52px 0 100px 52px;
  min-width: 0;
}

.legal-section {
  margin-bottom: 60px;
  scroll-margin-top: 92px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section__number {
  font-family: var(--nx-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--nx-accent);
  margin-bottom: 8px;
}

.legal-section__title {
  font-family: var(--nx-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--nx-text);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--nx-border);
}

.legal-section p {
  font-family: var(--nx-body);
  font-size: 0.9375rem;
  color: var(--nx-muted);
  margin-bottom: 14px;
  line-height: 1.8;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul,
.legal-section ol {
  padding-left: 20px;
  margin-bottom: 14px;
}

.legal-section li {
  font-family: var(--nx-body);
  font-size: 0.9375rem;
  color: var(--nx-muted);
  line-height: 1.8;
  margin-bottom: 7px;
}

.legal-section strong {
  color: var(--nx-text);
  font-weight: 600;
}

.legal-section a {
  color: var(--nx-accent2);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--nx-dur) var(--nx-ease);
}

.legal-section a:hover {
  color: var(--nx-accent);
}

/* ── Callout boxes — glass variant ── */
.legal-callout {
  border-radius: var(--nx-r2);
  padding: 18px 22px;
  margin: 24px 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  /* glass base */
  background: var(--nx-glass);
  backdrop-filter: blur(var(--nx-blur));
  -webkit-backdrop-filter: blur(var(--nx-blur));
}

.legal-callout--info {
  border: 1px solid rgba(56, 189, 248, 0.22);
  background: rgba(37, 99, 235, 0.08);
}

.legal-callout--warning {
  border: 1px solid rgba(245, 158, 11, 0.28);
  background: rgba(245, 158, 11, 0.07);
}

.legal-callout--success {
  border: 1px solid rgba(0, 230, 118, 0.22);
  background: rgba(0, 230, 118, 0.06);
}

.legal-callout__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.legal-callout--info    .legal-callout__icon { color: var(--nx-accent2); }
.legal-callout--warning .legal-callout__icon { color: #f59e0b; }
.legal-callout--success .legal-callout__icon { color: var(--nx-green); }

.legal-callout__body {
  font-family: var(--nx-body);
  font-size: 0.875rem;
  line-height: 1.65;
}

.legal-callout--info    .legal-callout__body { color: var(--nx-accent2); }
.legal-callout--warning .legal-callout__body { color: #fbbf24; }
.legal-callout--success .legal-callout__body { color: var(--nx-green); }

.legal-callout__body strong {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
  color: inherit;
}

/* ── Data table ── */
.legal-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--nx-r2);
  border: 1px solid var(--nx-border);
  background: var(--nx-glass);
  backdrop-filter: blur(var(--nx-blur));
  -webkit-backdrop-filter: blur(var(--nx-blur));
  box-shadow: var(--nx-shadow);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  font-family: var(--nx-body);
}

.legal-table th {
  background: rgba(56, 189, 248, 0.05);
  color: var(--nx-text);
  font-family: var(--nx-display);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 13px 18px;
  text-align: left;
  border-bottom: 1px solid var(--nx-border);
}

.legal-table td {
  padding: 13px 18px;
  color: var(--nx-muted);
  border-bottom: 1px solid var(--nx-border);
  line-height: 1.55;
  vertical-align: top;
}

.legal-table tr:last-child td {
  border-bottom: none;
}

.legal-table tr:hover td {
  background: rgba(56, 189, 248, 0.04);
  color: var(--nx-text);
  transition: background 0.2s, color 0.2s;
}

/* ── Badges ── */
.badge {
  display: inline-block;
  font-family: var(--nx-display);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge--purple {
  background: rgba(124, 58, 237, 0.18);
  color: #a78bfa;
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.badge--green {
  background: rgba(0, 230, 118, 0.12);
  color: var(--nx-green);
  border: 1px solid rgba(0, 230, 118, 0.25);
}

.badge--amber {
  background: rgba(245, 158, 11, 0.12);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.28);
}


/* ── Reading progress bar ── */
#read-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--nx-accent) 0%, var(--nx-accent2) 50%, var(--nx-accent3) 100%);
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.6);
}

/* ── Back to top ── */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 42px;
  height: 42px;
  border-radius: var(--nx-r1);
  background: linear-gradient(135deg, var(--nx-accent) 0%, var(--nx-accent3) 100%);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--nx-shadow2);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--nx-dur) var(--nx-ease), transform var(--nx-dur) var(--nx-ease);
  z-index: 50;
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

#back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.55);
}

/* ── Cookie-page specifics ── */
.cookie-type-card {
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-r2);
  padding: 22px 24px;
  margin-bottom: 16px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--nx-glass);
  backdrop-filter: blur(var(--nx-blur));
  -webkit-backdrop-filter: blur(var(--nx-blur));
  transition: box-shadow var(--nx-dur) var(--nx-ease), border-color var(--nx-dur) var(--nx-ease);
}

.cookie-type-card:hover {
  box-shadow: var(--nx-shadow);
  border-color: rgba(56, 189, 248, 0.25);
}

.cookie-type-card__icon {
  width: 42px;
  height: 42px;
  border-radius: var(--nx-r1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cookie-type-card__icon--essential  { background: rgba(0, 230, 118, 0.12);  color: var(--nx-green); }
.cookie-type-card__icon--functional { background: rgba(56, 189, 248, 0.12);  color: var(--nx-accent2); }
.cookie-type-card__icon--analytics  { background: rgba(245, 158, 11, 0.12);  color: #fbbf24; }
.cookie-type-card__icon--marketing  { background: rgba(239, 68, 68, 0.12);   color: #f87171; }

.cookie-type-card__content h3 {
  font-family: var(--nx-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--nx-text);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-type-card__content p {
  font-family: var(--nx-body);
  font-size: 0.875rem;
  color: var(--nx-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ── Consent toggle panel ── */
.consent-panel {
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-r2);
  overflow: hidden;
  margin-top: 24px;
  background: var(--nx-glass);
  backdrop-filter: blur(var(--nx-blur));
  -webkit-backdrop-filter: blur(var(--nx-blur));
  box-shadow: var(--nx-shadow);
}

.consent-panel__header {
  background: rgba(56, 189, 248, 0.05);
  padding: 14px 22px;
  font-family: var(--nx-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--nx-muted);
  border-bottom: 1px solid var(--nx-border);
}

.consent-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 22px;
  border-bottom: 1px solid var(--nx-border);
  gap: 18px;
}

.consent-row:last-child {
  border-bottom: none;
}

.consent-row__label {
  font-family: var(--nx-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--nx-text);
}

.consent-row__desc {
  font-family: var(--nx-body);
  font-size: 0.8125rem;
  color: var(--nx-muted);
  margin-top: 3px;
  line-height: 1.5;
}

/* Toggle switch */
.toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.toggle input { opacity: 0; width: 0; height: 0; }

.toggle__track {
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--nx-border);
  transition: background var(--nx-dur) var(--nx-ease), border-color var(--nx-dur) var(--nx-ease);
  cursor: pointer;
}

.toggle input:checked + .toggle__track {
  background: linear-gradient(90deg, var(--nx-accent), var(--nx-accent2));
  border-color: var(--nx-accent2);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.35);
}

.toggle input:disabled + .toggle__track {
  background: rgba(56, 189, 248, 0.25);
  border-color: rgba(56, 189, 248, 0.3);
  cursor: not-allowed;
  opacity: 0.8;
}

.toggle__track::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  transition: transform var(--nx-dur) var(--nx-ease);
}

.toggle input:checked + .toggle__track::after {
  transform: translateX(20px);
}

/* Consent action buttons */
.consent-btn-reject {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid var(--nx-border);
  background: transparent;
  color: var(--nx-muted);
  font-family: var(--nx-display);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    color var(--nx-dur) var(--nx-ease),
    border-color var(--nx-dur) var(--nx-ease),
    background var(--nx-dur) var(--nx-ease);
}

.consent-btn-reject:hover {
  color: var(--nx-text);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.consent-btn-save {
  padding: 8px 18px;
  border-radius: 100px;
  border: none;
  background: linear-gradient(130deg, var(--nx-accent) 0%, var(--nx-accent3) 100%);
  color: #fff;
  font-family: var(--nx-display);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.45);
  transition:
    transform var(--nx-dur) var(--nx-ease),
    box-shadow var(--nx-dur) var(--nx-ease);
}

.consent-btn-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.6);
}

/* ── code snippets in tables ── */
code {
  font-size: 0.8rem;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.15);
  color: var(--nx-accent2);
  padding: 2px 7px;
  border-radius: 6px;
  font-family: 'Fira Code', 'Cascadia Code', monospace;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .legal-layout {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .legal-toc {
    display: none;
  }

  .legal-content {
    padding: 36px 0 72px;
  }

  .legal-nav__links {
    display: none;
  }

  .legal-hero {
    padding: 48px 0 36px;
  }

  .legal-footer__inner {
    flex-direction: column;
    gap: 20px;
  }
}