:root{
  --nx-background:#111318;
  --nx-panel:#181b22;
  --nx-panel-2:#202431;
  --nx-text:#f7f8fb;
  --nx-muted:#c7cedb;
  --nx-soft:#929bad;
  --nx-line:rgba(255,255,255,.12);
  --nx-blue:#0867ff;
  --nx-cyan:#45dfe5;
  --nx-purple:#bd57ff;
  --nx-pink:#ff6bd6;
  --nx-green:#73f5b3;
  --radius:22px;
  --shadow:0 24px 80px rgba(0,0,0,.32);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color:var(--nx-text);
  line-height:1.55;
  background:
    radial-gradient(circle at 10% 10%, rgba(8,103,255,.24), transparent 32%),
    radial-gradient(circle at 85% 0%, rgba(189,87,255,.20), transparent 34%),
    linear-gradient(180deg, #101219 0%, #111318 40%, #0d0f14 100%);
}

body.nx-home:before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    url("assets/images/abstract-wavy-background.avif") center top/cover no-repeat;
  opacity:.08;
}

a{color:inherit}
img{max-width:100%;display:block}
h1,h2,h3,p{margin-top:0}

.nx-nav{
  position:sticky;
  top:0;
  z-index:30;
  backdrop-filter:blur(16px);
  background:rgba(13,15,20,.72);
  border-bottom:1px solid var(--nx-line);
}
.nx-nav__inner{
  max-width:1180px;
  margin:auto;
  padding:16px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.nx-logo{
  display:inline-flex;
  align-items:flex-start;
  gap:6px;
  text-decoration:none;
}
.nx-logo img{
  width:190px;
  height:auto;
}
.nx-nav__links{
  display:flex;
  align-items:center;
  gap:22px;
  color:var(--nx-muted);
  font-size:14px;
}
.nx-nav__links a{
  text-decoration:none;
}
.nx-nav__links a:hover{color:#fff}

.nx-btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  padding:14px 22px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:800;
  font-size:15px;
  text-decoration:none;
  transition:.18s ease;
  cursor:pointer;
}
.nx-btn:hover{
  transform:translateY(-2px);
  color:#fff;
}
.nx-btn--primary{
  color:#05111a;
  background:linear-gradient(135deg, #45dfe5, #73f5b3);
  box-shadow:0 18px 45px rgba(69, 223, 229, 0.2);
}
.nx-btn--primary:hover{
  color:#fff;
}
.nx-btn--ghost{
  color:#f7f8fb;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
}
.nx-btn--ghost:hover{background:rgba(255,255,255,.1)}

.nx-hero{
  position:relative;
  overflow:hidden;
  padding:88px 22px 64px;
}
.nx-hero__bg{
  position:absolute;
  inset:0;
  opacity:.12;
}
.nx-hero__bg img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.nx-hero__inner{
  position:relative;
  max-width:1180px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:42px;
  align-items:center;
}
.nx-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 13px;
  border-radius:999px;
  background:rgba(69,223,229,.10);
  border:1px solid rgba(69,223,229,.25);
  color:#cff9ff;
  font-size:13px;
  font-weight:800;
  margin-bottom:18px;
}
.nx-kicker:before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--nx-green);
  box-shadow:0 0 18px var(--nx-green);
}
.nx-hero h1{
  font-size:clamp(42px,6vw,74px);
  line-height:1.02;
  letter-spacing:-2.6px;
  margin-bottom:20px;
  max-width:780px;
}
.nx-gradient-text{
  background:linear-gradient(135deg, #0867ff, #45dfe5, #bd57ff, #ff6bd6);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.nx-hero p{
  max-width:760px;
  color:var(--nx-muted);
  font-size:19px;
  margin-bottom:28px;
}
.nx-hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:13px;
  margin-bottom:24px;
}
.nx-hero__actions--center{justify-content:center}

.nx-monitor-card{
  position:relative;
  min-height:430px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  border:1px solid var(--nx-line);
  border-radius:32px;
  background:
    linear-gradient(160deg,rgba(255,255,255,.10),rgba(255,255,255,.03)),
    radial-gradient(circle at 30% 20%,rgba(69,223,229,.25),transparent 34%),
    radial-gradient(circle at 80% 65%,rgba(189,87,255,.24),transparent 35%);
  box-shadow:var(--shadow);
  overflow:hidden;
  padding:18px;
}
.nx-screen-grid{
  display:grid;
  grid-template-columns:1.35fr .85fr;
  grid-template-rows:1fr 1fr;
  gap:14px;
  height:280px;
  flex:0 0 auto;
}
.nx-screen{
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:#05080f;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.04), 0 18px 60px rgba(0,0,0,.38);
}
.nx-screen--primary{
  grid-row:1 / span 2;
  min-height:0;
}
.nx-screen--secondary{
  min-height:0;
}
.nx-screen img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
}
.nx-monitor-card__caption{
  position:relative;
  left:auto;
  right:auto;
  bottom:auto;
  margin-top:20px;
  padding:18px 20px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(9,11,16,.88), rgba(17,19,24,.94));
  box-shadow:0 18px 48px rgba(0,0,0,.32);
}
.nx-monitor-card__caption p{
  margin:0;
  font-size:15px;
  line-height:1.5;
  color:var(--nx-text);
}

.nx-section{
  padding:74px 22px;
}
.nx-section--soft{
  background:linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.01));
  border-block:1px solid var(--nx-line);
}
.nx-container{max-width:1180px;margin:auto}
.nx-section-head{
  max-width:760px;
  margin-bottom:32px;
}
.nx-section-head h2{
  font-size:clamp(32px,4vw,48px);
  line-height:1.05;
  letter-spacing:-1.5px;
  margin-bottom:14px;
}
.nx-section-head p{
  color:var(--nx-muted);
  font-size:17px;
}

.nx-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  align-items:stretch;
}
.nx-card{
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius);
  padding:24px;
  min-height:250px;
  height:100%;
  box-shadow:0 24px 80px rgba(0,0,0,.25);
}
.nx-icon{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:15px;
  background:linear-gradient(135deg,var(--nx-blue),var(--nx-purple));
  border:1px solid rgba(189,87,255,.3);
  margin-bottom:18px;
  font-weight:900;
  color:var(--nx-text);
  box-shadow:0 14px 35px rgba(8,103,255,.18);
}
.nx-card h3{
  font-size:22px;
  letter-spacing:-.4px;
  margin-bottom:10px;
}
.nx-card p{
  color:var(--nx-muted);
  margin-bottom:0;
}
.nx-card ul{
  margin:16px 0 0;
  padding-left:18px;
  color:var(--nx-muted);
}
.nx-card li{margin:7px 0}

.nx-process-layout{
  display:grid;
  grid-template-columns:1fr .95fr;
  gap:24px;
  align-items:stretch;
}
.nx-process{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  counter-reset:steps;
  align-items:stretch;
  grid-auto-rows:1fr;
}
.nx-step{
  counter-increment:steps;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  padding:23px;
  border:1px solid var(--nx-line);
  border-radius:22px;
  background:rgba(255,255,255,.045);
  min-height:0;
}
.nx-step:before{
  content:"0" counter(steps);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
  font-size:14px;
  font-weight:900;
  color:#fff;
  background:linear-gradient(135deg,var(--nx-blue),var(--nx-purple));
  border-radius:999px;
  width:54px;
  min-width:54px;
  height:36px;
  padding:0;
  box-shadow:0 14px 35px rgba(8,103,255,.18);
}
.nx-step h3{
  font-size:19px;
  margin-bottom:8px;
  max-width:14ch;
}
.nx-step p{
  color:var(--nx-muted);
  font-size:14px;
  margin:0;
  max-width:28ch;
}
.nx-process-media{
  display:grid;
  grid-template-rows:1fr 1fr;
  gap:16px;
  height:100%;
}
.nx-process-media img{
  width:100%;
  height:100%;
  min-height:250px;
  object-fit:cover;
  border-radius:24px;
  border:1px solid var(--nx-line);
  background:rgba(255,255,255,.05);
  box-shadow:var(--shadow);
}

.nx-industry-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.nx-industry{
  overflow:hidden;
  border-radius:26px;
  border:1px solid var(--nx-line);
  background:rgba(255,255,255,.04);
  box-shadow:0 16px 40px rgba(0,0,0,.18);
}
.nx-industry img{
  width:100%;
  height:180px;
  object-fit:cover;
}
.nx-industry div{
  padding:20px;
}
.nx-industry h3{
  font-size:22px;
  margin-bottom:8px;
}
.nx-industry p{
  color:var(--nx-muted);
  margin:0;
}

.nx-split{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:26px;
  align-items:stretch;
}
.nx-panel{
  border:1px solid var(--nx-line);
  border-radius:28px;
  padding:24px;
  background:rgba(255,255,255,.05);
  box-shadow:var(--shadow);
}
.nx-panel p{color:var(--nx-muted)}
.nx-why-visual{
  margin:-4px -4px 18px;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  box-shadow:0 16px 40px rgba(0,0,0,.18);
}
.nx-why-visual img{
  width:100%;
  height:230px;
  object-fit:cover;
  display:block;
}
.nx-list{
  display:grid;
  gap:12px;
}
.nx-list > div{
  display:flex;
  gap:12px;
  align-items:flex-start;
  background:rgba(255,255,255,.045);
  border:1px solid var(--nx-line);
  border-radius:18px;
  padding:15px;
  min-height:118px;
}
.nx-check{
  flex:0 0 auto;
  width:24px;
  height:24px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#061018;
  background:var(--nx-green);
  font-weight:900;
}
.nx-list__content{
  flex:1 1 auto;
  min-width:0;
}
.nx-list strong{display:block}
.nx-list p{
  margin:2px 0 0;
  color:var(--nx-muted);
  font-size:14px;
}

.nx-cta{
  border-radius:34px;
  padding:42px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:28px;
  align-items:center;
  background:
    linear-gradient(135deg,rgba(8,103,255,.38),rgba(189,87,255,.32)),
    radial-gradient(circle at 16% 50%,rgba(69,223,229,.24),transparent 36%),
    radial-gradient(circle at 85% 10%,rgba(255,107,214,.18),transparent 34%);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 24px 80px rgba(0,0,0,.25);
}
.nx-cta p{
  color:#edf3ff;
  max-width:720px;
  margin-bottom:0;
}
.nx-cta__note{
  margin-top:14px;
  font-size:15px;
  color:var(--nx-text)!important;
  max-width:760px;
}
.nx-cta__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:flex-end;
}

.nx-footer{
  padding:34px 22px 42px;
  border-top:1px solid var(--nx-line);
  color:var(--nx-soft);
}
.nx-footer__inner{
  max-width:1180px;
  margin:auto;
  display:grid;
  grid-template-columns:minmax(280px, 1fr) auto;
  gap:32px;
  align-items:start;
}
.nx-footer__brand{
  max-width:420px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:10px;
}
.nx-footer__logos{
  display:flex;
  align-items:center;
  gap:18px;
}
.nx-footer__logos img:first-child{
  width:150px;
  height:auto;
}
.nx-footer__logos img:last-child{
  width:54px;
  height:54px;
  object-fit:contain;
}
.nx-footer__brand p{
  margin:0;
  color:var(--nx-soft);
}
.nx-footer__powered{
  color:var(--nx-muted);
  font-size:14px;
  margin-top:2px!important;
}
.nx-footer__links{
  display:grid;
  gap:14px;
  justify-items:end;
  align-content:start;
  text-align:right;
}
.nx-footer a{
  color:var(--nx-muted);
  text-decoration:none;
}

.nx-booking{
  padding:72px 22px;
}
.nx-booking__grid{
  max-width:1180px;
  margin:auto;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:28px;
  align-items:start;
}
.nx-booking h1{
  font-size:clamp(38px,5vw,64px);
  line-height:1.06;
  letter-spacing:-2px;
}
.nx-booking p{
  color:var(--nx-muted);
  font-size:18px;
}
.nx-booking__trial{
  max-width:540px;
  font-size:15px!important;
  line-height:1.6;
  color:var(--nx-soft)!important;
  margin:-4px 0 22px!important;
}
.nx-contact-line{
  display:grid;
  gap:11px;
  margin:26px 0;
}
.nx-booking__support-visual{
  margin-top:18px;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  box-shadow:0 16px 40px rgba(0,0,0,.18);
}
.nx-booking__support-visual img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}
.nx-contact-line a,
.nx-contact-line span{
  color:var(--nx-muted);
  text-decoration:none;
}
.nx-form{
  border:1px solid var(--nx-line);
  border-radius:28px;
  background:rgba(255,255,255,.06);
  padding:26px;
  box-shadow:var(--shadow);
}
.nx-form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.nx-field{margin-bottom:14px}
.nx-field label{
  display:block;
  font-size:13px;
  color:#e7ebf5;
  font-weight:800;
  margin-bottom:7px;
}
.nx-field input,
.nx-field select,
.nx-field textarea{
  width:100%;
  padding:14px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(5,7,10,.5);
  color:#fff;
  font:inherit;
  outline:none;
}
.nx-field input:focus,
.nx-field select:focus,
.nx-field textarea:focus{
  border-color:rgba(86,216,239,.7);
  box-shadow:0 0 0 4px rgba(86,216,239,.10);
}
.nx-field textarea{
  min-height:130px;
  resize:vertical;
}
.nx-note{
  font-size:13px!important;
  color:var(--nx-soft)!important;
  margin-top:12px!important;
}
.hidden{
  position:absolute;
  overflow:hidden;
  clip:rect(0 0 0 0);
  height:1px;
  width:1px;
  margin:-1px;
  padding:0;
  border:0;
}

.nx-success-panel{
  max-width:760px;
  margin:70px auto;
  text-align:center;
}
.nx-success-note{
  max-width:620px;
  margin:0 auto 24px;
  color:var(--nx-muted)!important;
  font-size:15px!important;
}

.nx-legal{
  max-width:860px;
  margin:auto;
}
.nx-legal h2{
  margin-top:28px;
  margin-bottom:10px;
  font-size:24px;
}

@media(max-width:1080px){
  .nx-hero__inner,
  .nx-process-layout,
  .nx-booking__grid{
    grid-template-columns:1fr;
  }
  .nx-cards,
  .nx-industry-grid{
    grid-template-columns:1fr 1fr;
  }
  .nx-split{
    grid-template-columns:1fr;
  }
  .nx-cta{
    grid-template-columns:1fr;
  }
  .nx-cta__actions{
    justify-content:flex-start;
  }
  .nx-process-media{
    grid-template-rows:unset;
    height:auto;
  }
}

@media(max-width:900px){
  .nx-nav__links a:not(.nx-btn){display:none}
  .nx-process{grid-template-columns:1fr 1fr}
}

@media(max-width:620px){
  .nx-nav__inner{padding:14px 16px}
  .nx-logo img{width:156px}
  .nx-hero{padding:58px 18px 42px}
  .nx-hero h1{letter-spacing:-1.5px}
  .nx-hero p,
  .nx-booking p{font-size:16px}
  .nx-hero__actions .nx-btn,
  .nx-cta__actions .nx-btn{width:100%}
  .nx-monitor-card{
    display:block;
    min-height:auto;
  }
  .nx-screen-grid{
    grid-template-columns:1fr;
    grid-template-rows:1.2fr .8fr .8fr;
    height:320px;
  }
  .nx-screen--primary{
    grid-row:auto;
  }
  .nx-cards,
  .nx-process,
  .nx-industry-grid,
  .nx-form-row{
    grid-template-columns:1fr;
  }
  .nx-section{padding:54px 18px}
  .nx-booking{padding:48px 18px}
  .nx-footer__inner{
    grid-template-columns:1fr;
    gap:24px;
  }
  .nx-footer__links{
    justify-items:start;
    text-align:left;
  }
}
