:root {
  --ns-ink: #0b1520;
  --ns-night: #101d2b;
  --ns-night-2: #162638;
  --ns-paper: #fbfaf6;
  --ns-sand: #f1eee5;
  --ns-lime: #b8f23a;
  --ns-mint: #74dec0;
  --ns-sky: #78b9ff;
  --ns-coral: #ff8d6b;
  --ns-text: #172432;
  --ns-muted: #62707c;
  --ns-line: rgba(11, 21, 32, 0.12);
  --ns-radius: 24px;
  --ns-shadow: 0 24px 80px rgba(14, 29, 44, 0.14);
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
  scroll-behavior: auto;
  }
}

body {
  margin: 0px;
  background: var(--ns-paper);
}

*, ::before, ::after {
  box-sizing: border-box;
}

.ns-site {
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: hidden;
  color: var(--ns-text);
  background: var(--ns-paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

.ns-container {
  width: min(1180px, 100% - 40px);
  margin: 0px auto;
}

@media (min-width: 768px) {
  .ns-container {
  width: min(1180px, 100% - 72px);
  }
}

.ns-nav {
  position: relative;
  z-index: 20;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: var(--ns-ink);
}

.ns-nav-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  row-gap: 20px;
  column-gap: 20px;
}

.ns-logo {
  display: inline-flex;
  align-items: center;
  row-gap: 10px;
  column-gap: 10px;
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.ns-logo-mark {
  width: 31px;
  height: 31px;
  display: grid;
  align-items: center;
  justify-items: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 3px;
  color: var(--ns-ink);
  background: var(--ns-lime);
  font-size: 16px;
  font-weight: 900;
  box-shadow: rgba(184, 242, 58, 0.12) 0px 0px 0px 5px;
}

.ns-nav-links {
  display: none;
}

@media (min-width: 768px) {
  .ns-nav-links {
  display: flex;
  align-items: center;
  row-gap: 26px;
  column-gap: 26px;
  }
}

.ns-nav-cta {
  display: inline-flex;
  align-items: center;
  row-gap: 8px;
  column-gap: 8px;
  padding: 10px 15px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.18);
  border-right-color: rgba(255, 255, 255, 0.18);
  border-bottom-color: rgba(255, 255, 255, 0.18);
  border-left-color: rgba(255, 255, 255, 0.18);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  color: rgb(255, 255, 255);
  font-size: 13px;
  font-weight: 750;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
}

.ns-nav-cta:hover {
  border-color: var(--ns-lime);
  color: var(--ns-lime);
}

.ns-hero {
  position: relative;
  padding: 74px 0px 78px;
  color: rgb(255, 255, 255);
  background: radial-gradient(circle at 86% 16%, rgba(116,222,192,.18), transparent 28%),
      radial-gradient(circle at 8% 100%, rgba(120,185,255,.12), transparent 30%),
      var(--ns-ink);
}

@media (min-width: 768px) {
  .ns-hero {
  padding: 100px 0px;
  }
}

.ns-hero::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  pointer-events: none;
  opacity: 0.16;
  background-image: linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(black, transparent 78%);
}

.ns-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  row-gap: 58px;
  column-gap: 58px;
  align-items: center;
}

@media (min-width: 1080px) {
  .ns-hero-grid {
  grid-template-columns: 1.08fr 0.92fr;
  row-gap: 68px;
  column-gap: 68px;
  }
}

.ns-eyebrow {
  display: inline-flex;
  align-items: center;
  row-gap: 9px;
  column-gap: 9px;
  margin-bottom: 22px;
  color: var(--ns-lime);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ns-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: currentcolor;
}

.ns-hero h1 {
  max-width: 760px;
  margin: 0px;
  font-size: clamp(45px, 12vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 850;
}

@media (min-width: 1080px) {
  .ns-hero h1 {
  font-size: 76px;
  }
}

.ns-hero h1 em {
  color: var(--ns-lime);
  font-style: normal;
}

.ns-hero-copy {
  max-width: 620px;
  margin: 26px 0px 0px;
  color: rgb(199, 208, 217);
  font-size: 18px;
  line-height: 1.65;
}

.ns-actions {
  display: flex;
  flex-wrap: wrap;
  row-gap: 12px;
  column-gap: 12px;
  margin-top: 32px;
}

.ns-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  row-gap: 10px;
  column-gap: 10px;
  padding: 0px 21px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  transition-behavior: normal, normal, normal;
  transition-duration: 0.2s, 0.2s, 0.2s;
  transition-timing-function: ease, ease, ease;
  transition-delay: 0s, 0s, 0s;
  transition-property: transform, box-shadow, background;
}

.ns-btn:hover {
  transform: translateY(-2px);
}

.ns-btn-primary {
  color: var(--ns-ink);
  background: var(--ns-lime);
  box-shadow: rgba(184, 242, 58, 0.17) 0px 13px 34px;
}

.ns-btn-secondary {
  color: rgb(255, 255, 255);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.2);
  border-right-color: rgba(255, 255, 255, 0.2);
  border-bottom-color: rgba(255, 255, 255, 0.2);
  border-left-color: rgba(255, 255, 255, 0.2);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 255, 255, 0.05);
}

.ns-proof {
  display: flex;
  flex-wrap: wrap;
  row-gap: 16px;
  column-gap: 24px;
  margin-top: 30px;
  color: rgb(155, 169, 182);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.ns-proof span {
  display: inline-flex;
  align-items: center;
  row-gap: 8px;
  column-gap: 8px;
}

.ns-proof i {
  width: 7px;
  height: 7px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background: var(--ns-mint);
  box-shadow: rgba(116, 222, 192, 0.1) 0px 0px 0px 4px;
}

.ns-console-wrap {
  position: relative;
}

@media (min-width: 1080px) {
  .ns-console-wrap {
  transform: rotate(1.4deg);
  }
}

.ns-console-wrap::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -60px;
  top: -60px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background: var(--ns-lime);
  filter: blur(110px);
  opacity: 0.16;
}

.ns-console {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.13);
  border-right-color: rgba(255, 255, 255, 0.13);
  border-bottom-color: rgba(255, 255, 255, 0.13);
  border-left-color: rgba(255, 255, 255, 0.13);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(21, 37, 54, 0.91);
  box-shadow: rgba(0, 0, 0, 0.34) 0px 38px 90px;
  backdrop-filter: blur(16px);
}

.ns-console-top {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  row-gap: 16px;
  column-gap: 16px;
  padding: 0px 18px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  color: rgb(174, 185, 196);
  font-size: 11px;
  font-weight: 750;
}

.ns-dots {
  display: flex;
  row-gap: 6px;
  column-gap: 6px;
}

.ns-dots i {
  width: 7px;
  height: 7px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(80, 97, 115);
}

.ns-dots i:first-child {
  background: var(--ns-coral);
}

.ns-dots i:nth-child(2) {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(246, 207, 101);
}

.ns-dots i:last-child {
  background: var(--ns-mint);
}

.ns-console-body {
  padding: 18px;
}

.ns-console-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  row-gap: 14px;
  column-gap: 14px;
  margin-bottom: 18px;
}

.ns-console-label {
  color: rgb(137, 152, 167);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ns-console-title {
  margin-top: 5px;
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: 800;
}

.ns-live {
  display: inline-flex;
  align-items: center;
  row-gap: 6px;
  column-gap: 6px;
  padding: 6px 9px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  color: var(--ns-mint);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(116, 222, 192, 0.09);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ns-live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: currentcolor;
}

.ns-kpis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 10px;
  column-gap: 10px;
}

.ns-kpi {
  min-height: 104px;
  padding: 15px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.08);
  border-right-color: rgba(255, 255, 255, 0.08);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  border-left-color: rgba(255, 255, 255, 0.08);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 255, 255, 0.043);
}

.ns-kpi span {
  display: block;
  color: rgb(143, 160, 175);
  font-size: 10px;
  font-weight: 700;
}

.ns-kpi strong {
  display: block;
  margin-top: 10px;
  color: rgb(255, 255, 255);
  font-size: 21px;
  letter-spacing: -0.03em;
}

.ns-kpi small {
  display: block;
  margin-top: 3px;
  color: var(--ns-mint);
  font-size: 9px;
  font-weight: 750;
}

.ns-chart {
  height: 146px;
  display: flex;
  align-items: flex-end;
  row-gap: 7px;
  column-gap: 7px;
  margin-top: 10px;
  padding: 18px 15px 14px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.08);
  border-right-color: rgba(255, 255, 255, 0.08);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  border-left-color: rgba(255, 255, 255, 0.08);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 255, 255, 0.03);
}

.ns-bar {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  min-width: 8px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  background: linear-gradient(to top, #4d7555, var(--ns-lime));
}

.ns-bar:nth-child(1) {
  height: 27%;
  opacity: 0.52;
}

.ns-bar:nth-child(2) {
  height: 42%;
  opacity: 0.61;
}

.ns-bar:nth-child(3) {
  height: 35%;
  opacity: 0.7;
}

.ns-bar:nth-child(4) {
  height: 60%;
  opacity: 0.76;
}

.ns-bar:nth-child(5) {
  height: 53%;
  opacity: 0.82;
}

.ns-bar:nth-child(6) {
  height: 78%;
  opacity: 0.9;
}

.ns-bar:nth-child(7) {
  height: 91%;
}

.ns-float-card {
  position: absolute;
  right: -12px;
  bottom: -22px;
  width: 178px;
  padding: 14px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(11, 21, 32, 0.1);
  border-right-color: rgba(11, 21, 32, 0.1);
  border-bottom-color: rgba(11, 21, 32, 0.1);
  border-left-color: rgba(11, 21, 32, 0.1);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  color: var(--ns-text);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 55px;
}

.ns-float-card small {
  color: var(--ns-muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ns-float-card strong {
  display: block;
  margin-top: 5px;
  font-size: 14px;
}

.ns-float-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  row-gap: 10px;
  column-gap: 10px;
  margin-top: 11px;
}

.ns-avatar {
  width: 28px;
  height: 28px;
  display: grid;
  align-items: center;
  justify-items: center;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  color: var(--ns-ink);
  background: var(--ns-lime);
  font-size: 10px;
  font-weight: 900;
}

.ns-sync {
  color: rgb(44, 141, 112);
  font-size: 10px;
  font-weight: 850;
}

.ns-strip {
  border-bottom: 1px solid var(--ns-line);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
}

.ns-strip-inner {
  min-height: 86px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  row-gap: 14px;
  column-gap: 28px;
  color: rgb(123, 135, 145);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
}

.ns-strip b {
  color: var(--ns-text);
}

.ns-strip i {
  width: 4px;
  height: 4px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background: var(--ns-lime);
}

.ns-section {
  padding: 90px 0px;
}

@media (min-width: 1080px) {
  .ns-section {
  padding: 120px 0px;
  }
}

.ns-section-kicker {
  margin: 0px 0px 13px;
  color: rgb(102, 129, 0);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ns-section-title {
  max-width: 740px;
  margin: 0px;
  color: var(--ns-ink);
  font-size: clamp(34px, 8vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 850;
}

.ns-section-lead {
  max-width: 640px;
  margin: 20px 0px 0px;
  color: var(--ns-muted);
  font-size: 17px;
  line-height: 1.7;
}

.ns-benefits {
  display: grid;
  row-gap: 14px;
  column-gap: 14px;
  margin-top: 42px;
}

@media (min-width: 768px) {
  .ns-benefits {
  grid-template-columns: repeat(3, 1fr);
  }
}

.ns-benefit {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--ns-line);
  border-radius: var(--ns-radius);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  transition-behavior: normal, normal;
  transition-duration: 0.25s, 0.25s;
  transition-timing-function: ease, ease;
  transition-delay: 0s, 0s;
  transition-property: transform, box-shadow;
}

.ns-benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--ns-shadow);
}

.ns-icon {
  width: 44px;
  height: 44px;
  display: grid;
  align-items: center;
  justify-items: center;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 14px;
  color: var(--ns-ink);
  background: var(--ns-lime);
  font-size: 16px;
  font-weight: 900;
}

.ns-benefit:nth-child(2) .ns-icon {
  background: var(--ns-mint);
}

.ns-benefit:nth-child(3) .ns-icon {
  background: var(--ns-sky);
}

.ns-benefit h3 {
  margin: 30px 0px 10px;
  font-size: 22px;
  letter-spacing: -0.025em;
}

.ns-benefit p {
  margin: 0px;
  color: var(--ns-muted);
  font-size: 14px;
  line-height: 1.65;
}

.ns-products {
  color: rgb(255, 255, 255);
  background: var(--ns-night);
}

.ns-products .ns-section-kicker {
  color: var(--ns-lime);
}

.ns-products .ns-section-title {
  color: rgb(255, 255, 255);
}

.ns-products .ns-section-lead {
  color: rgb(174, 185, 195);
}

.ns-product-grid {
  display: grid;
  row-gap: 18px;
  column-gap: 18px;
  margin-top: 44px;
}

@media (min-width: 768px) {
  .ns-product-grid {
  grid-template-columns: repeat(2, 1fr);
  }
}

.ns-product-card {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  min-height: 420px;
  padding: 28px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.1);
  border-right-color: rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-left-color: rgba(255, 255, 255, 0.1);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  border-bottom-right-radius: 28px;
  border-bottom-left-radius: 28px;
  background: var(--ns-night-2);
}

@media (min-width: 768px) {
  .ns-product-card {
  padding: 34px;
  }
}

@media (min-width: 1080px) {
  .ns-product-card {
  min-height: 450px;
  }
}

.ns-product-card::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -110px;
  bottom: -110px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background: var(--ns-lime);
  opacity: 0.09;
}

.ns-product-card:nth-child(2)::after {
  background: var(--ns-sky);
}

.ns-product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  row-gap: 16px;
  column-gap: 16px;
}

.ns-product-name {
  display: inline-flex;
  align-items: center;
  row-gap: 10px;
  column-gap: 10px;
  font-size: 20px;
  font-weight: 850;
}

.ns-product-symbol {
  width: 38px;
  height: 38px;
  display: grid;
  align-items: center;
  justify-items: center;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  color: var(--ns-ink);
  background: var(--ns-lime);
  font-size: 13px;
  font-weight: 950;
}

.ns-product-card:nth-child(2) .ns-product-symbol {
  background: var(--ns-sky);
}

.ns-product-tag {
  padding: 6px 9px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.13);
  border-right-color: rgba(255, 255, 255, 0.13);
  border-bottom-color: rgba(255, 255, 255, 0.13);
  border-left-color: rgba(255, 255, 255, 0.13);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  color: rgb(159, 173, 184);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.ns-product-card h3 {
  max-width: 490px;
  margin: 58px 0px 14px;
  font-size: 31px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.ns-product-card p {
  max-width: 500px;
  margin: 0px;
  color: rgb(174, 185, 195);
  font-size: 15px;
  line-height: 1.65;
}

.ns-tags {
  display: flex;
  flex-wrap: wrap;
  row-gap: 8px;
  column-gap: 8px;
  margin-top: 30px;
}

.ns-tag {
  padding: 8px 10px;
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
  border-bottom-right-radius: 9px;
  border-bottom-left-radius: 9px;
  color: rgb(214, 221, 227);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 255, 255, 0.067);
  font-size: 10px;
  font-weight: 750;
}

.ns-product-link {
  position: absolute;
  z-index: 1;
  left: 28px;
  bottom: 28px;
  color: var(--ns-lime);
  font-size: 12px;
  font-weight: 850;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

@media (min-width: 768px) {
  .ns-product-link {
  left: 34px;
  bottom: 34px;
  }
}

.ns-product-card:nth-child(2) .ns-product-link {
  color: var(--ns-sky);
}

.ns-metrics {
  color: var(--ns-ink);
  background: var(--ns-lime);
}

.ns-metrics-grid {
  display: grid;
  row-gap: 12px;
  column-gap: 12px;
}

@media (min-width: 768px) {
  .ns-metrics-grid {
  grid-template-columns: repeat(4, 1fr);
  }
}

.ns-metric {
  padding: 22px 0px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(11, 21, 32, 0.17);
}

@media (min-width: 768px) {
  .ns-metric {
  padding: 58px 22px 58px 0px;
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: rgba(11, 21, 32, 0.17);
  border-bottom-width: 0px;
  border-bottom-style: none;
  border-bottom-color: currentcolor;
  }
}

.ns-metric strong {
  display: block;
  font-size: clamp(40px, 12vw, 68px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.ns-metric span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ns-process-grid {
  display: grid;
  row-gap: 0px;
  column-gap: 0px;
  margin-top: 44px;
  border-top: 1px solid var(--ns-line);
}

@media (min-width: 768px) {
  .ns-process-grid {
  grid-template-columns: repeat(3, 1fr);
  }
}

.ns-step {
  display: grid;
  grid-template-columns: 46px 1fr;
  row-gap: 18px;
  column-gap: 18px;
  padding: 26px 0px;
  border-bottom: 1px solid var(--ns-line);
}

@media (min-width: 768px) {
  .ns-step {
  display: block;
  padding: 30px 28px 10px 0px;
  border-right: 1px solid var(--ns-line);
  border-bottom-width: 0px;
  border-bottom-style: none;
  border-bottom-color: currentcolor;
  }
}

.ns-step-num {
  width: 38px;
  height: 38px;
  display: grid;
  align-items: center;
  justify-items: center;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  color: var(--ns-ink);
  background: var(--ns-sand);
  font-size: 11px;
  font-weight: 900;
}

.ns-step h3 {
  margin: 3px 0px 8px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .ns-step h3 {
  margin-top: 34px;
  }
}

.ns-step p {
  margin: 0px;
  color: var(--ns-muted);
  font-size: 14px;
  line-height: 1.65;
}

.ns-cta-section {
  padding: 20px 0px 90px;
}

.ns-cta-box {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 42px 26px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
  color: rgb(255, 255, 255);
  background: var(--ns-ink);
}

@media (min-width: 768px) {
  .ns-cta-box {
  padding: 68px;
  }
}

.ns-cta-box::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -170px;
  top: -180px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background: var(--ns-lime);
  opacity: 0.14;
}

.ns-cta-box h2 {
  position: relative;
  max-width: 760px;
  margin: 0px;
  font-size: clamp(35px, 9vw, 62px);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.ns-cta-box p {
  position: relative;
  max-width: 580px;
  margin: 18px 0px 0px;
  color: rgb(181, 192, 202);
  font-size: 16px;
}

.ns-cta-box .ns-actions {
  position: relative;
}

.ns-footer {
  padding: 34px 0px;
  border-top: 1px solid var(--ns-line);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
}

.ns-footer-inner {
  display: flex;
  flex-direction: column;
  row-gap: 18px;
  column-gap: 18px;
  color: var(--ns-muted);
  font-size: 12px;
}

@media (min-width: 768px) {
  .ns-footer-inner {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  }
}

.ns-footer-logo {
  color: var(--ns-ink);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.ns-footer-links {
  display: flex;
  flex-wrap: wrap;
  row-gap: 15px;
  column-gap: 15px;
}

.ns-footer a {
  color: inherit;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.ns-footer a:hover {
  color: var(--ns-ink);
}

@media (min-width: 768px) {
  .ns-nav-links a {
  color: rgb(174, 184, 194);
  font-size: 12px;
  font-weight: 700;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  }
}

@media (min-width: 768px) {
  .ns-nav-links a:hover {
  color: rgb(255, 255, 255);
  }
}

@media (min-width: 768px) {
  .ns-metric:last-child {
  border-right-width: 0px;
  border-right-style: none;
  border-right-color: currentcolor;
  }
}

@media (min-width: 768px) {
  .ns-step + .ns-step {
  padding-left: 28px;
  }
}

@media (min-width: 768px) {
  .ns-step:last-child {
  border-right-width: 0px;
  border-right-style: none;
  border-right-color: currentcolor;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ns-btn, .ns-benefit {
  transition-behavior: normal;
  transition-duration: 0s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: none;
  }
}