.nvsw {
  --ink: #111314;
  --panel: #202321;
  --milk: #f3f0e7;
  --white: #f7f7f3;
  --acid: #c8ff38;
  --muted: #a9ada9;
  --line: rgba(17, 19, 20, 0.18);
  --type-family: Arial, Helvetica, sans-serif;
  --type-display-weight: 800;
  --type-display-spacing: -.055em;
  --type-label-spacing: .1em;
  color: var(--ink);
  background: var(--milk);
  font-family: var(--type-family);
}

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

.nvsw button,
.nvsw input,
.nvsw textarea {
  font: inherit;
}

.nvsw-hero,
.nvsw-products,
.nvsw-capabilities,
.nvsw-process,
.nvsw-request {
  width: min(1400px, 100%);
  margin: 0 auto;
}

.nvsw-hero {
  color: #fff;
  overflow: hidden;
  background: var(--ink);
}

.nvsw-hero__top {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.14);
  padding: 12px 18px;
  font-family: var(--type-family);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: var(--type-label-spacing);
  text-transform: uppercase;
}

.nvsw-hero__content {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 720px;
}

.nvsw-hero__copy {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255,255,255,.14);
  padding: clamp(28px, 5vw, 72px);
}

.nvsw-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nvsw-kicker::before {
  width: 28px;
  height: 8px;
  background: var(--acid);
  content: "";
}

.nvsw-hero h2 {
  margin: 70px 0 38px;
  font-size: clamp(58px, 7.7vw, 114px);
  font-weight: var(--type-display-weight);
  letter-spacing: var(--type-display-spacing);
  line-height: .84;
  text-transform: uppercase;
}

.nvsw-hero__copy > p:last-of-type {
  max-width: 620px;
  margin: auto 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.52;
}

.nvsw-hero__action {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
}

.nvsw-hero__action a {
  border: 1px solid #fff;
  color: #fff;
  padding: 15px 19px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.nvsw-hero__action a:first-child {
  border-color: var(--acid);
  color: var(--ink);
  background: var(--acid);
}

.nvsw-hero__action .nvsw-link {
  border-color: transparent;
  padding-inline: 0;
}

.nvsw-hero__visual {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  background:
    radial-gradient(circle at 50% 45%, rgba(200,255,56,.14), transparent 45%),
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px) 0 0 / 58px 58px,
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px) 0 0 / 58px 58px;
}

.nvsw-hero-card {
  position: absolute;
  width: 47%;
  aspect-ratio: .84;
  border: 1px solid var(--acid);
  color: var(--ink);
  background: var(--milk);
  box-shadow: 18px 18px 0 rgba(200,255,56,.14);
  padding: 10px;
}

.nvsw-hero-card span,
.nvsw-product__image span {
  position: relative;
  display: block;
  width: 100%;
  height: calc(100% - 25px);
  overflow: hidden;
  background-color: #e4e2d9;
  background-image: url("/navesh_mockups_sprite_v4.webp");
  background-position: calc(var(--c) * 14.285714%) calc(var(--r) * 14.285714%);
  background-size: 800% 800%;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  filter: grayscale(.18) saturate(.6) contrast(1.06);
}

.nvsw-hero-card span::after,
.nvsw-product__image span::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(200,255,56,.13), transparent 48%),
    linear-gradient(0deg, rgba(17,19,20,.04), rgba(17,19,20,.04));
  content: "";
  mix-blend-mode: multiply;
  pointer-events: none;
}

.nvsw-hero-card b {
  display: block;
  padding: 8px 4px 0;
  font-family: var(--type-family);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: var(--type-label-spacing);
}

.nvsw-hero-card--one {
  z-index: 3;
  top: 11%;
  left: 7%;
  transform: rotate(-7deg);
}

.nvsw-hero-card--two {
  z-index: 2;
  top: 28%;
  right: 5%;
  transform: rotate(8deg);
}

.nvsw-hero-card--three {
  z-index: 1;
  bottom: -11%;
  left: 24%;
  transform: rotate(1deg);
}

.nvsw-hero__tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.14);
}

.nvsw-hero__tags span {
  border-right: 1px solid rgba(255,255,255,.14);
  padding: 16px 18px;
  font-family: var(--type-family);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: var(--type-label-spacing);
  text-transform: uppercase;
  text-align: center;
}

.nvsw-hero__tags span:last-child {
  border-right: 0;
}

.nvsw-products,
.nvsw-capabilities,
.nvsw-process,
.nvsw-request {
  padding: clamp(68px, 9vw, 130px) clamp(16px, 4vw, 56px);
}

.nvsw-section-head {
  display: grid;
  grid-template-columns: 180px 1fr minmax(240px, .65fr);
  align-items: end;
  gap: 28px;
  margin-bottom: 58px;
}

.nvsw-section-head > span,
.nvsw-process__title > span,
.nvsw-request__copy > span {
  font-family: var(--type-family);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: var(--type-label-spacing);
  text-transform: uppercase;
}

.nvsw-section-head h3,
.nvsw-process__title h3,
.nvsw-request__copy h3 {
  margin: 0;
  font-size: clamp(45px, 6.3vw, 92px);
  font-weight: var(--type-display-weight);
  letter-spacing: var(--type-display-spacing);
  line-height: .9;
  text-transform: uppercase;
}

.nvsw-section-head > p {
  margin: 0;
  color: #666b67;
  font-size: 14px;
  line-height: 1.55;
}

.nvsw-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.nvsw-product {
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--white);
}

.nvsw-product__image {
  position: relative;
  aspect-ratio: 1;
  border-bottom: 1px solid var(--ink);
  background:
    linear-gradient(rgba(17,19,20,.04) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(90deg, rgba(17,19,20,.04) 1px, transparent 1px) 0 0 / 32px 32px,
    var(--milk);
  padding: 12px;
}

.nvsw-product__image span {
  height: 100%;
  transition: transform .28s ease, filter .28s ease;
}

.nvsw-product:hover .nvsw-product__image span {
  transform: scale(1.025);
  filter: grayscale(.05) saturate(.72) contrast(1.08);
}

.nvsw-product__image b {
  position: absolute;
  top: 10px;
  left: 10px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
  font-family: var(--type-family);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: var(--type-label-spacing);
}

.nvsw-product__copy {
  min-height: 124px;
  padding: 17px;
}

.nvsw-product h4 {
  margin: 0 0 9px;
  font-size: 20px;
  letter-spacing: -.03em;
}

.nvsw-product p {
  margin: 0;
  color: #696d68;
  font-size: 12px;
  line-height: 1.4;
}

.nvsw-statement {
  width: 100%;
  color: var(--ink);
  background: var(--acid);
  padding: clamp(74px, 11vw, 170px) max(20px, calc((100vw - 1280px) / 2));
}

.nvsw-statement__label {
  margin-bottom: 50px;
  font-family: var(--type-family);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: var(--type-label-spacing);
  text-transform: uppercase;
}

.nvsw-statement p {
  max-width: 1240px;
  margin: 0;
  font-size: clamp(40px, 6.7vw, 100px);
  font-weight: var(--type-display-weight);
  letter-spacing: var(--type-display-spacing);
  line-height: .93;
}

.nvsw-statement em {
  display: inline;
  color: var(--milk);
  background: var(--ink);
  font-style: normal;
  box-decoration-break: clone;
  padding: 0 .12em;
  -webkit-box-decoration-break: clone;
}

.nvsw-capabilities {
  color: #fff;
  background: var(--ink);
}

.nvsw-section-head--dark > p {
  color: #929790;
}

.nvsw-capabilities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.25);
  border-left: 1px solid rgba(255,255,255,.25);
}

.nvsw-capabilities article {
  min-height: 260px;
  border-right: 1px solid rgba(255,255,255,.25);
  border-bottom: 1px solid rgba(255,255,255,.25);
  padding: 24px;
}

.nvsw-capabilities article > b {
  color: var(--acid);
  font-family: var(--type-family);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: var(--type-label-spacing);
}

.nvsw-capabilities h4 {
  margin: 82px 0 12px;
  font-size: 24px;
  letter-spacing: -.04em;
}

.nvsw-capabilities p {
  max-width: 300px;
  margin: 0;
  color: #989c96;
  font-size: 13px;
  line-height: 1.5;
}

.nvsw-process {
  color: var(--ink);
  background: var(--milk);
}

.nvsw-process__title {
  display: grid;
  grid-template-columns: 180px 1fr minmax(240px, .55fr);
  align-items: end;
  gap: 28px;
  margin-bottom: 60px;
}

.nvsw-process__title > p {
  margin: 0;
  color: #686d67;
  font-size: 14px;
  line-height: 1.55;
}

.nvsw-process__line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.nvsw-process article {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--white);
  padding: 22px;
  transition: background .2s ease;
}

.nvsw-process article:hover {
  background: #eff6dc;
}

.nvsw-process article > b {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
  font-family: var(--type-family);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: var(--type-label-spacing);
}

.nvsw-process h4 {
  margin: 76px 0 14px;
  font-size: 25px;
  letter-spacing: -.045em;
}

.nvsw-process p {
  margin: 0;
  color: #686d67;
  font-size: 13px;
  line-height: 1.5;
}

.nvsw-process__result {
  display: block;
  margin-top: auto;
  border-top: 1px solid var(--ink);
  color: #424641;
  padding-top: 14px;
  font-family: var(--type-family);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nvsw-request {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(40px, 8vw, 120px);
  color: #fff;
  background: var(--ink);
}

.nvsw-request__copy h3 {
  margin: 54px 0 30px;
}

.nvsw-request__copy p {
  max-width: 480px;
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
}

.nvsw-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  border-top: 1px solid rgba(255,255,255,.7);
  border-left: 1px solid rgba(255,255,255,.7);
}

.nvsw-form label {
  display: grid;
  gap: 10px;
  border-right: 1px solid rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(255,255,255,.7);
  padding: 15px;
}

.nvsw-form label > span {
  font-family: var(--type-family);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: var(--type-label-spacing);
  text-transform: uppercase;
}

.nvsw-form input,
.nvsw-form textarea {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.35);
  border-radius: 0;
  outline: none;
  color: #fff;
  background: transparent;
  padding: 8px 0;
}

.nvsw-form textarea {
  resize: vertical;
}

.nvsw-form input::placeholder,
.nvsw-form textarea::placeholder {
  color: rgba(255,255,255,.5);
}

.nvsw-form input:focus,
.nvsw-form textarea:focus {
  border-color: var(--acid);
}

.nvsw-form__wide {
  grid-column: 1 / -1;
}

.nvsw-upload {
  min-height: 108px;
  cursor: pointer;
}

.nvsw-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.nvsw-upload strong {
  align-self: end;
  color: var(--acid);
}

.nvsw-upload small,
.nvsw-file-list,
.nvsw-form__note {
  color: rgba(255,255,255,.55);
  font-size: 10px;
}

.nvsw-file-list {
  border-right: 1px solid rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(255,255,255,.7);
  padding: 12px 15px;
  overflow-wrap: anywhere;
}

.nvsw-send {
  min-height: 62px;
  border: 1px solid var(--acid);
  color: var(--ink);
  background: var(--acid);
  cursor: pointer;
  font-weight: 900;
}

.nvsw-form__note {
  margin: 0;
  padding-top: 10px;
  text-align: center;
}

.nvsw-toast {
  position: fixed;
  z-index: 99999;
  right: 20px;
  bottom: 20px;
  max-width: min(360px, calc(100vw - 40px));
  transform: translateY(12px);
  border: 1px solid var(--acid);
  opacity: 0;
  color: #fff;
  background: var(--ink);
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 750;
  pointer-events: none;
  transition: .2s ease;
}

.nvsw-toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 940px) {
  .nvsw-hero__content,
  .nvsw-request {
    grid-template-columns: 1fr;
  }

  .nvsw-hero__copy {
    min-height: 650px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }

  .nvsw-hero__visual {
    min-height: 640px;
  }

  .nvsw-section-head {
    grid-template-columns: 140px 1fr;
  }

  .nvsw-process__title {
    grid-template-columns: 140px 1fr;
  }

  .nvsw-process__title > p {
    grid-column: 2;
  }

  .nvsw-section-head > p {
    grid-column: 2;
  }

  .nvsw-products__grid,
  .nvsw-capabilities__grid,
  .nvsw-process__line {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .nvsw-hero h2 {
    font-size: clamp(56px, 18vw, 84px);
  }

  .nvsw-hero__copy {
    min-height: 690px;
    padding: 34px 18px;
  }

  .nvsw-hero__action {
    align-items: flex-start;
    flex-direction: column;
  }

  .nvsw-hero__visual {
    min-height: 480px;
  }

  .nvsw-hero-card {
    width: 55%;
  }

  .nvsw-hero__tags {
    grid-template-columns: 1fr;
  }

  .nvsw-hero__tags span {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }

  .nvsw-section-head,
  .nvsw-process__title {
    grid-template-columns: 1fr;
  }

  .nvsw-section-head > p {
    grid-column: auto;
  }

  .nvsw-process__title > p {
    grid-column: auto;
  }

  .nvsw-products__grid,
  .nvsw-capabilities__grid,
  .nvsw-process__line,
  .nvsw-form {
    grid-template-columns: 1fr;
  }

  .nvsw-form__wide {
    grid-column: auto;
  }

  .nvsw-capabilities article,
  .nvsw-process article {
    min-height: 230px;
  }

  .nvsw-capabilities h4,
  .nvsw-process h4 {
    margin-top: 72px;
  }

  .nvsw-request {
    padding: 72px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nvsw *,
  .nvsw *::before,
  .nvsw *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
