:root {
  --nx-bg: #030611;
  --nx-panel: #0b1017;
  --nx-panel-soft: #101722;
  --nx-line: rgba(255,255,255,.11);
  --nx-text: #f7f9fc;
  --nx-muted: #929baa;
  --nx-accent: #3edcff;
  --nx-accent-2: #1982ff;
  --nx-glow: rgba(62,220,255,.24);
}
html{background:#030611!important;overscroll-behavior-y:none}

html { scroll-behavior: smooth; }
body.nx-home {
  margin: 0;
  color: var(--nx-text);
  background:
    radial-gradient(circle at 50% -10%, rgba(25,130,255,.12), transparent 34rem),
    var(--nx-bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
.nx-home *, .nx-home *::before, .nx-home *::after { box-sizing: border-box; }
.nx-home a { color: inherit; text-decoration: none; }
.nx-home img { display: block; max-width: 100%; }

.nx-header {
  width: 100%;
  min-height: 86px;
  padding: 0 clamp(24px, 4vw, 68px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
}
.nx-brand img { width: 190px; }
.nx-nav { display: flex; gap: clamp(16px, 2vw, 32px); align-items: center; }
.nx-nav a { color: #b4bac5; font-size: 14px; transition: .2s ease; }
.nx-nav a:hover, .nx-nav a.active, .nx-nav-dropdown-toggle:hover { color: var(--nx-accent); }
.nx-nav-dropdown { position:relative; }
.nx-nav-dropdown-toggle {
  display:flex;align-items:center;gap:6px;padding:0;border:0;background:transparent;
  color:#b4bac5;font:inherit;font-size:14px;cursor:pointer;transition:.2s ease;
}
.nx-nav-dropdown-toggle span { font-size:16px;transition:transform .2s ease; }
.nx-nav-dropdown-menu {
  position:absolute;top:calc(100% + 18px);left:50%;z-index:40;width:310px;padding:9px;
  display:grid;gap:4px;opacity:0;visibility:hidden;transform:translate(-50%,-8px);
  border:1px solid var(--nx-line);border-radius:18px;background:rgba(7,10,15,.98);
  box-shadow:0 24px 65px rgba(0,0,0,.48);transition:.2s ease;
}
.nx-nav-dropdown:hover .nx-nav-dropdown-menu,
.nx-nav-dropdown:focus-within .nx-nav-dropdown-menu,
.nx-nav-dropdown.open .nx-nav-dropdown-menu { opacity:1;visibility:visible;transform:translate(-50%,0); }
.nx-nav-dropdown:hover .nx-nav-dropdown-toggle span,
.nx-nav-dropdown:focus-within .nx-nav-dropdown-toggle span,
.nx-nav-dropdown.open .nx-nav-dropdown-toggle span { transform:rotate(180deg); }
.nx-nav-dropdown-menu a { display:grid;gap:4px;padding:13px 14px;border-radius:12px; }
.nx-nav-dropdown-menu a:hover { background:rgba(62,220,255,.08); }
.nx-nav-dropdown-menu strong { color:#f5f9ff;font-size:14px; }
.nx-nav-dropdown-menu small { color:var(--nx-muted);font-size:11px;line-height:1.4; }
.nx-header-cta {
  justify-self: end;
  background: var(--nx-accent);
  color: #031217 !important;
  padding: 15px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  box-shadow: 0 0 30px rgba(62,220,255,.15);
}
.nx-menu { display: none; background: none; border: 0; }

.nx-hero {
  min-height: 1060px;
  padding: 150px 24px 0;
  position: relative;
  isolation: isolate;
  text-align: center;
  overflow: hidden;
  background: #02040b;
}
.nx-liquid-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: .94;
  pointer-events: none;
  contain: strict;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.nx-hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 50% 22%, rgba(2,4,11,.74) 0%, rgba(2,4,11,.36) 34%, transparent 66%),
    linear-gradient(to bottom, rgba(2,4,11,.18) 0%, rgba(2,4,11,.1) 55%, #030611 100%),
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 56px 56px, 56px 56px;
  pointer-events: none;
}
.nx-hero > :not(.nx-liquid-canvas) { position: relative; z-index: 2; transform:translateZ(0); }
.nx-hero[data-liquid-fallback] {
  background:
    radial-gradient(ellipse at 12% 38%, rgba(62,220,255,.2), transparent 30%),
    radial-gradient(ellipse at 86% 24%, rgba(25,130,255,.18), transparent 34%),
    #02040b;
}
.nx-kicker, .nx-section-heading > p {
  color: var(--nx-accent);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 750;
}
.nx-hero h1 {
  max-width: 1120px;
  margin: 28px auto 20px;
  font-size: clamp(50px, 6.3vw, 94px);
  line-height: .98;
  letter-spacing: -.058em;
  font-weight: 520;
}
.nx-hero h1 span {
  color: var(--nx-accent);
  text-shadow: 0 0 50px rgba(81,231,255,.14);
}
.nx-hero-copy {
  max-width: 770px;
  margin: 0 auto;
  color: var(--nx-muted);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.65;
}
.nx-hero-actions { display: flex; justify-content: center; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.nx-store-button {
  min-width: 190px;
  padding: 11px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 12px;
  background: rgba(255,255,255,.96);
  color: #0b1017 !important;
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease;
}
.nx-store-button:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(81,231,255,.14); }
.nx-store-button small { display: block; font-size: 10px; color: #59616d; }
.nx-store-button strong { display: block; font-size: 17px; }
.nx-store-icon {
  width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center;
  background: #0b1017; color: var(--nx-accent); font-weight: 800;
}
.nx-grid-icon { letter-spacing: 1px; }
.nx-product-stage {
  width: min(920px, 92vw);
  height: 550px;
  position: relative;
  margin: 64px auto 0;
}
.nx-glow {
  position: absolute;
  width: 580px; height: 260px; left: 50%; top: 45%; transform: translate(-50%,-50%);
  background: radial-gradient(ellipse, rgba(81,231,255,.25), rgba(46,73,255,.12) 42%, transparent 72%);
  filter: blur(26px);
}
.nx-orbit { position: absolute; border: 1px solid rgba(81,231,255,.13); border-radius: 50%; pointer-events: none; }
.nx-orbit-one { width: 900px; height: 430px; left: 50%; top: 570px; transform: translateX(-50%) rotate(-8deg); }
.nx-orbit-two { width: 700px; height: 620px; left: 50%; top: 470px; transform: translateX(-50%) rotate(32deg); }
.nx-device {
  position: absolute;
  border: 1px solid rgba(255,255,255,.26);
  background: linear-gradient(145deg,#232b34,#05070b 42%,#151b22);
  box-shadow: 0 35px 100px rgba(0,0,0,.72), 0 0 45px rgba(62,220,255,.11), inset 0 0 0 1px rgba(255,255,255,.08);
}
.nx-device-top { height: 22px; display: grid; place-items: center; }
.nx-device-top span { width: 8px; height: 8px; background: #020305; border: 1px solid #33404d; border-radius: 50%; }
.nx-device-screen { margin: 0 13px; overflow: hidden; background:#030611; border:1px solid #28313b; }
.nx-device-screen img { width: 100%; height: 100%; display:block; object-fit: cover; object-position: top; }
.nx-device-label { padding: 16px 20px 20px; text-align: left; }
.nx-device-label span { display: block; color: var(--nx-accent); font-size: 11px; text-transform: uppercase; letter-spacing: .14em; }
.nx-device-label strong { display: block; margin-top: 5px; font-size: 14px; }
.nx-device-main { width: 510px; height: 392px; left: 50%; top: 46px; transform: translateX(-50%) rotate(2deg); z-index: 3; border-radius:18px 18px 10px 10px; }
.nx-device-main .nx-device-screen { height:278px; }
.nx-device-left { width: 244px; height: 465px; left: 10%; top: 88px; transform: rotate(-9deg); z-index: 2; border-radius:46px; border-width:3px; }
.nx-device-left .nx-device-top {height:32px}
.nx-device-left .nx-device-top span {width:78px;height:22px;border-radius:999px;border:0}
.nx-device-left .nx-device-screen {height:322px;margin:0 9px;border-radius:25px}
.nx-home-indicator {display:block;width:72px;height:4px;margin:8px auto 0;border-radius:99px;background:#e6edf4}
.nx-laptop-base {position:absolute;left:-5%;right:-5%;height:16px;bottom:-10px;border-radius:2px 2px 13px 13px;background:linear-gradient(#c4cbd2,#5b636c 55%,#1b2026);box-shadow:0 12px 18px #000}
.nx-laptop-base span,.nx-frame-base span {display:block;width:74px;height:5px;margin:auto;border-radius:0 0 7px 7px;background:#737c85}
.nx-float-stat {
  position: absolute; z-index: 6; padding: 14px 18px; border: 1px solid var(--nx-line); border-radius: 16px;
  background: rgba(10,15,22,.9); backdrop-filter: blur(18px); text-align: left;
}
.nx-float-stat span { color: var(--nx-muted); display: block; font-size: 11px; }
.nx-float-stat strong { display: block; margin-top: 4px; font-size: 14px; }
.nx-float-one { right: 2%; top: 125px; }
.nx-float-two { right: 7%; top: 320px; }

.nx-metrics, .nx-features, .nx-control, .nx-steps, .nx-app-access, .nx-plans, .nx-faq {
  max-width: 1220px;
  margin: 0 auto;
  padding: 110px 24px;
}
.nx-section-heading h2 {
  margin: 16px 0;
  font-size: clamp(38px, 4.4vw, 66px);
  line-height: 1.02;
  letter-spacing: -.045em;
  font-weight: 520;
}
.nx-section-heading > span { max-width: 680px; margin: 0 auto; color: var(--nx-muted); line-height: 1.7; display: block; }
.nx-section-heading.center { text-align: center; }
.nx-metric-grid { margin-top: 62px; display: grid; grid-template-columns: repeat(3,1fr); border-block: 1px solid var(--nx-line); }
.nx-metric-grid article { padding: 48px; text-align: center; border-right: 1px solid var(--nx-line); }
.nx-metric-grid article:last-child { border-right: 0; }
.nx-metric-grid strong { color: var(--nx-accent); font-size: clamp(46px,5vw,76px); font-weight: 500; }
.nx-metric-grid span { display: block; margin-top: 7px; color: var(--nx-muted); font-size: 14px; }

.nx-bento { margin-top: 64px; display: grid; grid-template-columns: repeat(12,1fr); gap: 18px; }
.nx-bento-card {
  min-height: 340px; grid-column: span 4; position: relative; overflow: hidden; padding: 30px; border: 1px solid var(--nx-line);
  border-radius: 26px; background: linear-gradient(145deg, rgba(16,23,34,.96), rgba(7,10,15,.96));
}
.nx-bento-card::after { content:""; position:absolute; inset:auto -20% -55% 15%; height:65%; background:radial-gradient(circle,var(--nx-glow),transparent 68%); }
.nx-bento-wide { grid-column: span 8; min-height: 460px; }
.nx-bento-tall { grid-column: span 4; min-height: 460px; }
.nx-bento-stat { display: flex; flex-direction: column; justify-content: flex-end; }
.nx-bento-stat strong { color: var(--nx-accent); font-size: 86px; font-weight: 500; }
.nx-card-copy { position: relative; z-index: 2; max-width: 480px; }
.nx-card-number { color: var(--nx-accent); font-size: 12px; letter-spacing: .14em; }
.nx-card-copy h3, .nx-bento-stat h3 { margin: 12px 0 8px; font-size: 25px; letter-spacing: -.025em; }
.nx-card-copy p, .nx-bento-stat p { color: var(--nx-muted); line-height: 1.55; }
.nx-card-copy a { display: inline-block; margin-top: 18px; color: var(--nx-accent); font-weight: 700; }
.nx-card-device {position:absolute;z-index:1;right:-2%;bottom:5%;width:62%}
.nx-bento-tall .nx-card-device {width:88%;right:6%;bottom:-5%}
.nx-frame-screen {overflow:hidden;background:#030611;border:1px solid #303945}
.nx-frame-screen img {display:block;width:100%;height:100%;object-fit:cover;object-position:top}
.nx-macbook-frame {padding:13px 13px 0;border-radius:15px 15px 4px 4px;background:linear-gradient(145deg,#3b444d,#080b0f 55%,#252b32);box-shadow:0 25px 55px #000}
.nx-macbook-frame .nx-frame-screen {height:245px}
.nx-frame-camera {width:6px;height:6px;margin:-9px auto 5px;border-radius:50%;background:#020305;border:1px solid #36414b}
.nx-frame-base {height:13px;margin:0 -7%;background:linear-gradient(#c7cdd3,#626a72);border-radius:2px 2px 12px 12px}
.nx-ipad-frame {padding:14px;border:3px solid #434b53;border-radius:24px;background:linear-gradient(145deg,#222931,#05070a);box-shadow:0 25px 55px #000}
.nx-ipad-frame .nx-frame-screen {height:260px;border-radius:11px}
.nx-ipad-frame .nx-frame-camera {margin:-7px auto 5px}

.nx-control { max-width: 1360px; }
.nx-control-layout { margin-top: 70px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.nx-control-layout > * { min-width: 0; }
.nx-control-list { border-top: 1px solid var(--nx-line); }
.nx-control-list article { padding: 26px 10px; display: grid; grid-template-columns: 48px 1fr; gap: 14px; border-bottom: 1px solid var(--nx-line); opacity: .45; }
.nx-control-list article.active { opacity: 1; }
.nx-control-list article > span { color: var(--nx-accent); font-size: 12px; }
.nx-control-list h3 { margin: 0 0 4px; font-size: 21px; }
.nx-control-list p { margin: 0; color: var(--nx-muted); }
.nx-control-device { min-height: 580px; position: relative; display: grid; place-items: center; }
.nx-control-device::before { content:""; position:absolute; width:80%; height:60%; border-radius:50%; background:rgba(81,231,255,.12); filter:blur(70px); }
.nx-device-dashboard { position: relative; width: 690px; max-width: 100%; height: 456px; border-radius:18px 18px 8px 8px; transform: perspective(1000px) rotateY(-7deg) rotateX(4deg); }
.nx-device-dashboard .nx-device-screen {height:420px}

.nx-step-grid { margin-top: 64px; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.nx-step-grid article { min-height: 280px; padding: 34px; border: 1px solid var(--nx-line); border-radius: 24px; background: var(--nx-panel); }
.nx-step-grid article > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; color: #021014; background: var(--nx-accent); font-weight: 800; }
.nx-step-grid h3 { margin: 48px 0 10px; font-size: 23px; }
.nx-step-grid p { color: var(--nx-muted); line-height: 1.6; }

.nx-app-access {
  max-width: 1320px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center;
  border: 1px solid var(--nx-line); border-radius: 34px; background: radial-gradient(circle at 90% 10%, rgba(81,231,255,.1), transparent 38%), var(--nx-panel);
  padding: 70px;
}
.nx-access-intro h2 { margin: 15px 0; font-size: clamp(40px,5vw,66px); line-height: 1; letter-spacing: -.04em; }
.nx-access-intro > p:last-child { color: var(--nx-muted); line-height: 1.65; }
.nx-login-card { padding: 34px !important; border-radius: 24px !important; background: #070b10 !important; border: 1px solid var(--nx-line) !important; box-shadow: none !important; }
.nx-login-card h3 { color: var(--nx-text) !important; font-size: 25px; }
.nx-login-card p { color: var(--nx-muted) !important; }
.nx-login-card form { display: grid; gap: 15px; }
.nx-login-card label { color: #c7cdd7; font-size: 13px; text-align: left; }
.nx-login-card input { width: 100%; margin-top: 7px; padding: 15px; border: 1px solid var(--nx-line); border-radius: 11px; background: #0e141d; color:#fff!important;-webkit-text-fill-color:#fff!important;caret-color:#fff!important; }
.nx-login-card input::placeholder { color:#aab3c0!important;-webkit-text-fill-color:#aab3c0!important;opacity:1; }
.nx-login-card input:focus,
.nx-login-card input:active,
.nx-login-card input:not(:placeholder-shown) {
  color:#fff!important;
  -webkit-text-fill-color:#fff!important;
  caret-color:#fff!important;
  background:#0e141d!important;
  background-color:#0e141d!important;
  border-color:var(--nx-accent);
  outline:2px solid rgba(62,220,255,.2);
  outline-offset:2px;
  box-shadow:inset 0 0 0 1000px #0e141d!important
}
.nx-login-card input:-webkit-autofill,
.nx-login-card input:-webkit-autofill:hover,
.nx-login-card input:-webkit-autofill:focus {
  -webkit-text-fill-color:#fff!important;
  caret-color:#fff!important;
  -webkit-box-shadow:0 0 0 1000px #0e141d inset!important;
  box-shadow:0 0 0 1000px #0e141d inset!important;
  transition:background-color 9999s ease-out 0s;
}
.nx-login-card button { padding: 16px; border: 0; border-radius: 11px; background: var(--nx-accent); color: #021014; font-weight: 800; cursor: pointer; }
.nx-app-library { grid-column: 1/-1; display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.nx-app-library[hidden] { display: none; }
.nx-app-library article { display:grid;grid-template-columns:120px 1fr auto;gap:20px;align-items:center;padding:18px;border:1px solid var(--nx-line);border-radius:18px;background:#080d13; }
.nx-mini-device {width:120px}
.nx-mini-device.nx-macbook-frame {padding:5px 5px 0;border-radius:7px}
.nx-mini-device.nx-macbook-frame .nx-frame-camera {width:3px;height:3px;margin:-3px auto 2px}
.nx-mini-device.nx-macbook-frame .nx-frame-screen {height:72px}
.nx-mini-device.nx-macbook-frame .nx-frame-base {height:5px}
.nx-mini-device.nx-ipad-frame {padding:6px;border-width:2px;border-radius:11px}
.nx-mini-device.nx-ipad-frame .nx-frame-camera {width:3px;height:3px;margin:-3px auto 2px}
.nx-mini-device.nx-ipad-frame .nx-frame-screen {height:72px;border-radius:4px}
.nx-app-library .nx-frame-screen img {width:100%;height:100%;object-fit:cover;object-position:top;border-radius:0}
.nx-app-library span { color:var(--nx-accent);font-size:10px;text-transform:uppercase;letter-spacing:.12em; }
.nx-app-library h3 { margin:5px 0;font-size:20px; }
.nx-app-library p { margin:0;color:var(--nx-muted);font-size:13px; }
.nx-app-library a { padding:11px 14px;border-radius:10px;background:var(--nx-accent);color:#021014;font-weight:750;font-size:12px; }

.nx-plan-grid { margin-top: 60px; display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.nx-plan-grid-ianova { max-width: 880px; margin: 60px auto 0; grid-template-columns: repeat(2,minmax(0,1fr)); }
.nx-plan-grid article { min-height: 520px; padding: 34px; border: 1px solid var(--nx-line); border-radius: 24px; background: var(--nx-panel); position: relative; transition:border-color .22s ease,box-shadow .22s ease,transform .22s ease; }
.nx-plan-grid article.featured { background:radial-gradient(circle at 80% 0%,rgba(25,130,255,.08),transparent 36%),var(--nx-panel); }
.nx-plan-grid article.is-selected { border-color:var(--nx-accent);box-shadow:0 0 0 1px rgba(62,220,255,.3),0 0 46px rgba(62,220,255,.1);transform:translateY(-3px); }
.nx-plan-grid article > b { position:absolute; top:16px; right:16px; padding:7px 11px; border-radius:999px; background:var(--nx-accent); color:#021014; font-size:10px; text-transform:uppercase; }
.nx-plan-grid article > span { color: var(--nx-muted); font-size: 12px; }
.nx-plan-grid h3 { margin: 18px 0 10px; font-size: 34px; }
.nx-plan-grid p { min-height: 72px; color: var(--nx-muted); line-height: 1.55; }
.nx-plan-choice { width:100%;margin:22px 0 0;padding:12px 14px;display:flex;align-items:center;justify-content:center;gap:9px;border:1px solid var(--nx-line);border-radius:10px;background:#080b10;color:#c4cbd5;font:inherit;cursor:pointer;transition:.2s ease; }
.nx-plan-choice:focus-visible { outline:2px solid var(--nx-accent);outline-offset:3px; }
.nx-plan-choice span { width:14px;height:14px;border:1px solid #657080;border-radius:50%;background:transparent;box-shadow:inset 0 0 0 3px #080b10; }
.nx-plan-choice strong { font-size:13px;font-weight:700; }
.nx-plan-grid article.is-selected .nx-plan-choice { border-color:rgba(62,220,255,.55);background:rgba(62,220,255,.08);color:#f7fbff; }
.nx-plan-grid article.is-selected .nx-plan-choice span { border-color:var(--nx-accent);background:var(--nx-accent); }
.nx-plan-grid a { display:block; margin:14px 0 26px; padding:14px; text-align:center; border:1px solid var(--nx-line); border-radius:10px; font-weight:750; }
.nx-plan-grid article.is-selected > a { background:var(--nx-accent);color:#021014;border-color:var(--nx-accent); }
.nx-plan-grid ul { margin:0; padding:0; list-style:none; border-top:1px solid var(--nx-line); }
.nx-plan-grid li { padding:14px 0 14px 25px; border-bottom:1px solid var(--nx-line); color:#c4cbd5; position:relative; }
.nx-plan-grid li::before { content:"✓"; position:absolute; left:0; color:var(--nx-accent); }

.nx-faq { max-width: 960px; }
.nx-faq-list { margin-top: 55px; border-top: 1px solid var(--nx-line); }
.nx-faq details { border-bottom: 1px solid var(--nx-line); padding: 0 5px; }
.nx-faq summary { padding: 24px 0; cursor: pointer; font-size: 19px; font-weight: 650; }
.nx-faq details p { margin: 0; padding: 0 0 24px; color: var(--nx-muted); line-height: 1.7; }
.nx-final-cta { min-height: 680px; padding: 120px 24px; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; background:radial-gradient(circle at 50% 55%,rgba(81,231,255,.16),transparent 28%); }
.nx-final-cta h2 { max-width:900px;margin:18px 0;font-size:clamp(50px,7vw,96px);line-height:.98;letter-spacing:-.06em;font-weight:520; }
.nx-final-cta > p:not(.nx-kicker) { max-width:650px;color:var(--nx-muted);font-size:18px;line-height:1.65; }

.nx-footer { padding: 70px max(24px,5vw) 30px; display:grid; grid-template-columns:1.5fr repeat(3,1fr); gap:60px; border-top:1px solid var(--nx-line); }
.nx-footer img { width:190px; }
.nx-footer p { max-width:330px;color:var(--nx-muted);line-height:1.6; }
.nx-footer nav,.nx-footer > div { display:flex;flex-direction:column;gap:12px; }
.nx-footer strong { margin-bottom:8px; }
.nx-footer a { color:var(--nx-muted);font-size:14px; }
.nx-copyright { grid-column:1/-1; margin-top:30px; padding-top:25px; border-top:1px solid var(--nx-line); font-size:12px; max-width:none !important; }

@media (max-width: 900px) {
  .nx-header { min-height:72px;grid-template-columns:1fr auto;padding:0 20px; }
  .nx-brand img { width:145px; }
  .nx-header-cta { display:none; }
  .nx-menu { display:grid;gap:5px;padding:10px; }
  .nx-menu span { display:block;width:24px;height:2px;background:white; }
  .nx-nav { position:absolute;top:72px;left:16px;right:16px;display:none;flex-direction:column;align-items:stretch;padding:20px;border:1px solid var(--nx-line);border-radius:16px;background:rgba(5,7,10,.97); }
  .nx-header.menu-open .nx-nav { display:flex; }
  .nx-nav-dropdown-toggle { width:100%;justify-content:space-between; }
  .nx-nav-dropdown-menu {
    position:static;width:100%;margin-top:12px;padding:5px;display:none;opacity:1;visibility:visible;
    transform:none;border-radius:13px;box-shadow:none;background:rgba(255,255,255,.035);
  }
  .nx-nav-dropdown:hover .nx-nav-dropdown-menu,
  .nx-nav-dropdown:focus-within .nx-nav-dropdown-menu { display:none;transform:none; }
  .nx-nav-dropdown.open .nx-nav-dropdown-menu { display:grid;transform:none; }
  .nx-hero { min-height:900px;padding-top:125px; }
  .nx-hero h1 { font-size:clamp(45px,13vw,70px); }
  .nx-product-stage { height:430px;margin-top:50px; }
  .nx-device-main { width:75vw;height:330px;top:50px; }
  .nx-device-main .nx-device-screen {height:220px}
  .nx-device-left { width:190px;height:365px;left:-3%;top:110px; }
  .nx-device-left .nx-device-screen {height:235px}
  .nx-float-stat { display:none; }
  .nx-metrics,.nx-features,.nx-control,.nx-steps,.nx-app-access,.nx-plans,.nx-faq { padding:80px 20px; }
  .nx-metric-grid,.nx-step-grid,.nx-plan-grid { grid-template-columns:1fr; }
  .nx-plan-grid-ianova { max-width:620px; }
  .nx-metric-grid article { border-right:0;border-bottom:1px solid var(--nx-line); }
  .nx-bento { display:block; }
  .nx-bento-card { margin-bottom:16px;min-height:400px; }
  .nx-control-layout,.nx-app-access { grid-template-columns:1fr;gap:35px; }
  .nx-control-list,.nx-control-device { width:100%;min-width:0; }
  .nx-control-device { min-height:380px; }
  .nx-device-dashboard { width:100%;height:340px; }
  .nx-device-dashboard .nx-device-screen {height:305px}
  .nx-app-access { margin-inline:16px;padding:42px 22px; }
  .nx-app-library { grid-template-columns:1fr; }
  .nx-app-library article { grid-template-columns:90px 1fr; }
  .nx-mini-device { width:90px; }
  .nx-app-library a { grid-column:1/-1;text-align:center; }
  .nx-footer { grid-template-columns:1fr 1fr;gap:40px; }
}

@media (max-width: 560px) {
  .nx-hero { min-height:820px; }
  .nx-hero-actions { flex-direction:column;align-items:center; }
  .nx-store-button { width:min(270px,100%); }
  .nx-product-stage { height:330px; }
  .nx-device-main { width:88vw;height:290px; }
  .nx-device-main .nx-device-screen {height:185px}
  .nx-device-left { display:none; }
  .nx-bento-card { min-height:380px; }
  .nx-device-dashboard { height:250px; }
  .nx-device-dashboard .nx-device-screen {height:215px}
  .nx-footer { grid-template-columns:1fr; }
}

/* Fincash-aligned refinement: clean canvas, photoreal product hardware and calmer typography. */
body.nx-home {
  background: #030611;
}
body.nx-home::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 18%, rgba(25,130,255,.09), transparent 32rem);
}
.nx-hero { min-height: 1080px; }
.nx-hero h1,
.nx-section-heading h2,
.nx-final-cta h2 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 430;
  letter-spacing: -.045em;
}
.nx-hero h1 { max-width: 1120px; font-size: clamp(56px,6.8vw,96px); }
.nx-product-stage { height: 560px; max-width: 1120px; }
.nx-product-render { position:absolute; margin:0; }
.nx-product-render img { width:100%; filter:drop-shadow(0 34px 45px rgba(0,0,0,.72)); }
.nx-render-main { width:760px; left:50%; top:40px; transform:translateX(-45%); z-index:3; }
.nx-render-secondary { width:480px; left:-2%; top:195px; transform:rotate(-6deg); z-index:2; }
.nx-render-phone { width:310px; right:-2%; top:135px; transform:rotate(5deg); z-index:4; }
.nx-render-caption {
  position:absolute; left:12%; bottom:4%; max-width:310px; padding:13px 16px;
  border:1px solid rgba(255,255,255,.13); border-radius:13px;
  background:rgba(4,8,18,.86); backdrop-filter:blur(14px); text-align:left;
}
.nx-render-secondary .nx-render-caption { left:12%; bottom:-2%; max-width:260px; }
.nx-render-caption span { display:block;color:var(--nx-accent);font-size:10px;letter-spacing:.16em;text-transform:uppercase; }
.nx-render-caption strong { display:block;margin-top:5px;font-size:13px;line-height:1.35; }
.nx-mobile-product-copy { display:none; }
.nx-glow { background:radial-gradient(ellipse,rgba(62,220,255,.17),rgba(25,130,255,.08) 44%,transparent 72%); }
.nx-orbit { display:none; }
.nx-bento-card { background:#0a0d12; border-radius:22px; }
.nx-bento-card > .nx-photo-device {
  position:absolute;z-index:1;right:-6%;bottom:-10%;width:70%;max-width:none;
  border:0;border-radius:0;box-shadow:none;object-fit:contain;
}
.nx-bento-tall > .nx-photo-device { width:106%;right:-3%;bottom:-6%;height:auto; }
.nx-control-device::before { background:rgba(25,130,255,.11); }
.nx-control-render { position:relative;width:min(800px,115%);max-width:none;filter:drop-shadow(0 35px 45px #000);transform:perspective(1000px) rotateY(-4deg); }
.nx-related { max-width:1220px;margin:0 auto;padding:110px 24px; }
.nx-related-grid { margin-top:58px;display:grid;grid-template-columns:repeat(2,1fr);gap:18px; }
.nx-related-grid article { min-height:250px;padding:32px;border:1px solid var(--nx-line);border-radius:22px;background:#0a0d12; }
.nx-related-grid span { color:var(--nx-accent);font-size:11px;letter-spacing:.16em; }
.nx-related-grid h3 { margin:58px 0 10px;font-size:26px;font-weight:520; }
.nx-related-grid p { margin:0;color:var(--nx-muted);line-height:1.65; }
.nx-related-grid article { display:flex;flex-direction:column; }
.nx-related-grid article a {
  width:max-content;margin-top:auto;padding-top:28px;color:var(--nx-accent);
  font-size:14px;font-weight:700;transition:color .2s ease,transform .2s ease;
}
.nx-related-grid article a:hover { color:#fff;transform:translateX(3px); }
.nx-related-grid article a b { font-size:17px; }
.nx-device-showcase { max-width:1220px;margin:0 auto;padding:40px 24px 110px; }
.nx-device-showcase-grid { margin-top:58px;display:grid;grid-template-columns:1.22fr 1fr .72fr;gap:18px;align-items:stretch; }
.nx-device-card { min-width:0;min-height:460px;margin:0;padding:24px 22px 26px;display:flex;flex-direction:column;justify-content:flex-end;overflow:hidden;border:1px solid var(--nx-line);border-radius:24px;background:radial-gradient(circle at 50% 28%,rgba(25,130,255,.15),transparent 45%),#080b10; }
.nx-device-card img { width:100%;height:330px;object-fit:contain;display:block;filter:drop-shadow(0 28px 35px rgba(0,0,0,.78)); }
.nx-device-card figcaption { margin-top:14px;display:grid;gap:5px;text-align:center; }
.nx-device-card figcaption strong { color:#f7fbff;font-size:18px;font-weight:600; }
.nx-device-card figcaption span { color:var(--nx-muted);font-size:13px;line-height:1.5; }
.nx-device-phone img { height:350px;transform:scale(1.08); }
.nx-mini-render { width:120px;height:82px;object-fit:cover;border-radius:10px; }
.nx-testimonials { max-width:1220px;margin:0 auto;padding:110px 24px; }
.nx-testimonial-track { margin-top:58px;display:grid;grid-template-columns:repeat(3,1fr);gap:18px; }
.nx-testimonial-track article { min-height:260px;padding:32px;border:1px solid var(--nx-line);border-radius:22px;background:#0a0d12;display:flex;flex-direction:column;justify-content:space-between; }
.nx-testimonial-track p { margin:0;font-size:19px;line-height:1.6;color:#e8edf5; }
.nx-testimonial-track b,.nx-testimonial-track span { display:block; }
.nx-testimonial-track span { margin-top:4px;color:var(--nx-muted);font-size:13px; }
.nx-plan-switch { width:max-content;margin:28px auto 0;padding:5px;border:1px solid var(--nx-line);border-radius:999px;background:#080b10;display:flex; }
.nx-plan-switch button { border:0;border-radius:999px;padding:11px 18px;background:transparent;color:var(--nx-muted);cursor:pointer; }
.nx-plan-switch button.active { background:var(--nx-accent);color:#021014; }
.nx-plan-switch small { margin-left:5px;color:#0d4bd7;font-weight:800; }

/* One clean hero render; the tablet and phone remain in their dedicated product sections. */
.nx-render-secondary,
.nx-render-phone { display:none; }
.nx-render-main { width:840px;transform:translateX(-50%); }
.nx-render-main .nx-render-caption { left:50%;bottom:1%;transform:translateX(-50%);width:max-content;max-width:min(420px,80%);text-align:center; }

@media (max-width:900px) {
  .nx-hero { min-height:980px; }
  .nx-product-stage { height:410px; }
  .nx-render-main { width:760px;max-width:96vw;left:50%;top:40px;transform:translateX(-50%); }
  .nx-render-secondary,.nx-render-phone { display:none; }
  .nx-related { padding:80px 20px; }
  .nx-device-showcase { padding:20px 20px 80px; }
  .nx-device-showcase-grid { grid-template-columns:1fr 1fr; }
  .nx-device-phone { grid-column:1/-1; }
  .nx-device-phone img { height:380px; }
  .nx-testimonials { padding:80px 20px; }
  .nx-testimonial-track { grid-template-columns:1fr; }
  .nx-control-render { width:110%; }
}
@media (max-width:560px) {
  .nx-hero { min-height:900px; }
  .nx-hero h1 { font-size:clamp(47px,13vw,64px); }
  .nx-liquid-canvas { opacity:.82; }
  .nx-product-stage { height:310px;margin-top:35px; }
  .nx-render-main { width:560px;max-width:112vw;top:30px; }
  .nx-render-main .nx-render-caption { left:12%;right:12%;bottom:-11%;max-width:none; }
  .nx-render-secondary { display:none; }
  .nx-render-phone { display:none; }
  .nx-render-caption strong { font-size:12px;white-space:normal;overflow-wrap:anywhere; }
  .nx-mobile-product-copy { display:block;margin:20px auto 0;max-width:300px;color:#e8edf5;font-size:13px;line-height:1.5;text-align:center; }
  .nx-mobile-product-copy span { display:block;margin-bottom:4px;color:var(--nx-accent);font-size:10px;letter-spacing:.16em; }
  .nx-bento-card > .nx-photo-device { width:100%;right:-8%;bottom:-3%; }
  .nx-bento-tall > .nx-photo-device { width:118%;right:-9%; }
  .nx-control-render { width:122%; }
  .nx-related-grid { grid-template-columns:1fr; }
  .nx-device-showcase-grid { grid-template-columns:1fr; }
  .nx-device-phone { grid-column:auto; }
  .nx-device-card { min-height:400px;padding:20px 16px 24px; }
  .nx-device-card img,.nx-device-phone img { height:300px;transform:none; }
  .nx-mini-render { width:90px;height:66px; }
  .nx-plan-switch { max-width:100%; }
  .nx-plan-switch button { padding:10px 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .nx-liquid-canvas { opacity:.76; }
}
