:root {
  --bg: oklch(97% 0.012 73);
  --surface: oklch(99% 0.006 75);
  --fg: oklch(23% 0.035 255);
  --muted: oklch(50% 0.025 255);
  --border: oklch(86% 0.022 70);
  --accent: oklch(58% 0.14 36);
  --night: var(--fg);
  --night-soft: color-mix(in oklch, var(--fg) 86%, var(--surface));
  --danger: color-mix(in oklch, var(--accent) 76%, var(--fg));
  --font-display: "Iowan Old Style", "Charter", Georgia, serif;
  --font-body: "Avenir Next", "Segoe UI", sans-serif;
  --font-mono: "SFMono-Regular", Consolas, monospace;
  --radius: 22px;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.55;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image: radial-gradient(
    color-mix(in oklch, var(--fg) 12%, transparent) 0.65px,
    transparent 0.65px
  );
  background-size: 9px 9px;
}
::selection {
  background: var(--accent);
  color: var(--surface);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button,
a,
input,
textarea,
summary {
  outline: none;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  box-shadow:
    0 0 0 3px var(--surface),
    0 0 0 5px var(--accent);
}
img {
  display: block;
  max-width: 100%;
}
p {
  text-wrap: pretty;
}
h1,
h2,
h3 {
  text-wrap: balance;
}
.ngsl-skip {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 90;
  background: var(--fg);
  color: var(--surface);
  padding: 10px 14px;
  border-radius: 10px;
  transform: translateY(-160%);
}
.ngsl-skip:focus {
  transform: none;
}
.ngsl-shell {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.ngsl-narrow {
  max-width: 820px;
}
.ngsl-utility {
  background: var(--night);
  color: color-mix(in oklch, var(--surface) 82%, var(--night));
  font-size: 12px;
}
.ngsl-utility .ngsl-shell {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
}
.ngsl-head {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in oklch, var(--bg) 92%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.ngsl-headrow {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
}
.ngsl-logo {
  font: 700 27px/1 var(--font-display);
  letter-spacing: -0.03em;
}
.ngsl-logo span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin-left: 4px;
}
.ngsl-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-size: 14px;
}
.ngsl-nav a,
.ngsl-utility a {
  transition: color 0.2s var(--ease);
}
.ngsl-nav a:hover,
.ngsl-nav a[aria-current="page"],
.ngsl-utility a:hover {
  color: var(--accent);
}
.ngsl-head-cta {
  white-space: nowrap;
}
.ngsl-menu {
  display: none;
}
.ngsl-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--surface);
  border-radius: 999px;
  min-height: 46px;
  padding: 0 20px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.18s var(--ease),
    background 0.18s var(--ease);
}
.ngsl-action:hover {
  background: color-mix(in oklch, var(--accent) 86%, black);
  transform: translateY(-2px);
}
.ngsl-action:active {
  transform: translateY(0);
}
.ngsl-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 10px;
  border: 0;
  background: transparent;
  color: var(--fg);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.ngsl-ghost:hover {
  color: var(--accent);
}
.ngsl-tabs {
  border-bottom: 1px solid var(--border);
}
.ngsl-tablist,
.ngsl-filter {
  display: flex;
  gap: 8px;
  padding: 12px 0;
  overflow: auto;
}
.ngsl-tab {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--fg);
  border-radius: 999px;
  min-height: 44px;
  padding: 0 18px;
  white-space: nowrap;
  cursor: pointer;
}
.ngsl-tab[aria-selected="true"],
.ngsl-tab[aria-pressed="true"] {
  background: var(--night);
  border-color: var(--night);
  color: var(--surface);
}
.ngsl-hero {
  padding: 54px 0 80px;
}
.ngsl-page-hero {
  padding: clamp(72px, 10vw, 132px) 0 68px;
}
.ngsl-page-hero--split {
  padding-bottom: 88px;
}
.ngsl-hero-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 60px;
  align-items: center;
}
.ngsl-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.ngsl-kicker {
  font: 700 12px/1.2 var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
h1,
h2 {
  font-family: var(--font-display);
  letter-spacing: -0.035em;
}
h1 {
  font-size: clamp(50px, 6.2vw, 88px);
  line-height: 0.98;
  margin: 18px 0 24px;
}
h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
  margin: 0 0 20px;
}
h3 {
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 10px;
}
.ngsl-lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 55ch;
}
.ngsl-meta {
  font: 13px var(--font-mono);
  color: color-mix(in oklch, var(--surface) 70%, var(--night));
}
.ngsl-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 30px;
  flex-wrap: wrap;
}
.ngsl-visual {
  position: relative;
  background: var(--night);
  border-radius: 38px 38px 38px 12px;
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: 0 26px 60px color-mix(in oklch, var(--night) 24%, transparent);
}
.ngsl-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.ngsl-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(
    transparent,
    color-mix(in oklch, var(--night) 86%, transparent)
  );
}
.ngsl-visual-note {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  background: color-mix(in oklch, var(--surface) 91%, transparent);
  backdrop-filter: blur(10px);
  border-radius: 17px;
  padding: 14px 16px;
  max-width: 260px;
  font-size: 13px;
  box-shadow: 0 14px 30px color-mix(in oklch, var(--night) 20%, transparent);
}
.ngsl-visual-note strong {
  display: block;
  font-size: 15px;
}
.ngsl-content-image {
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
  border-radius: 34px;
}
.ngsl-section {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}
.ngsl-section--night {
  background: var(--night);
  color: var(--surface);
  border: 0;
}
.ngsl-section--night p {
  color: color-mix(in oklch, var(--surface) 74%, var(--night));
}
.ngsl-section--night .ngsl-kicker {
  color: color-mix(in oklch, var(--accent) 75%, var(--surface));
}
.ngsl-section--night .ngsl-action {
  background: var(--surface);
  border-color: var(--surface);
  color: var(--fg);
  margin-top: 18px;
}
.ngsl-section--night .ngsl-action:hover {
  background: color-mix(in oklch, var(--surface) 88%, var(--accent));
}
.ngsl-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 44px;
}
.ngsl-heading p {
  max-width: 48ch;
  margin: 0;
}
.ngsl-catalog-image {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  border-radius: 28px;
  margin: 0 0 28px;
}
.ngsl-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.ngsl-products--catalog {
  margin-top: 28px;
}
.ngsl-product {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s var(--ease),
    border-color 0.2s var(--ease);
}
.ngsl-product:hover {
  transform: translateY(-4px);
  border-color: var(--fg);
}
.ngsl-product h2 {
  font-family: var(--font-body);
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0;
  margin: 0 0 10px;
}
.ngsl-product small {
  font: 12px var(--font-mono);
  color: var(--muted);
}
.ngsl-product-art {
  height: 108px;
  display: grid;
  place-items: center;
  margin: 8px 0 18px;
}
.ngsl-shape {
  width: 76%;
  height: 54%;
  border-radius: 48% 52% 44% 56%;
  background: color-mix(in oklch, var(--accent) 22%, var(--surface));
  border: 1px solid color-mix(in oklch, var(--accent) 48%, var(--surface));
  transform: rotate(-4deg);
}
.ngsl-product:nth-child(2n) .ngsl-shape {
  background: color-mix(in oklch, var(--night) 14%, var(--surface));
  border-color: color-mix(in oklch, var(--night) 35%, var(--surface));
  border-radius: 999px;
}
.ngsl-product:nth-child(3n) .ngsl-shape {
  width: 62%;
  height: 72%;
  border-radius: 50%;
}
.ngsl-price {
  margin-top: auto;
  padding-top: 18px;
  font: 700 15px var(--font-mono);
}
.ngsl-spec {
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 13px;
}
.ngsl-spec dt {
  font: 11px var(--font-mono);
  text-transform: uppercase;
  color: var(--muted);
}
.ngsl-spec dd {
  margin: 4px 0;
}
.ngsl-section-link {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 24px;
  flex-wrap: wrap;
}
.ngsl-proof {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}
.ngsl-proof-list {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
}
.ngsl-proof-item {
  background: var(--surface);
  padding: 22px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
}
.ngsl-proof-icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 14px;
  display: grid;
  place-items: center;
}
.ngsl-proof-icon svg {
  width: 21px;
  stroke: var(--accent);
}
.ngsl-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.ngsl-step {
  border-top: 1px solid color-mix(in oklch, var(--surface) 30%, var(--night));
  padding-top: 20px;
}
.ngsl-step b {
  font: 13px var(--font-mono);
  color: color-mix(in oklch, var(--surface) 66%, var(--night));
}
.ngsl-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.ngsl-compare article {
  border-radius: 28px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.ngsl-compare article:first-child {
  background: var(--night);
  color: var(--surface);
  border-color: var(--night);
}
.ngsl-compare ul {
  padding: 0;
  list-style: none;
  margin: 24px 0 0;
}
.ngsl-compare li {
  padding: 13px 0;
  border-top: 1px solid color-mix(in oklch, currentColor 18%, transparent);
}
.ngsl-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 26px;
  overflow: hidden;
}
.ngsl-stat {
  background: var(--surface);
  padding: 38px;
}
.ngsl-stat strong {
  display: block;
  font: 700 clamp(48px, 6vw, 76px)/1 var(--font-display);
  color: var(--accent);
}
.ngsl-video {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}
.ngsl-screen {
  aspect-ratio: 16/9;
  background: var(--night);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}
.ngsl-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}
.ngsl-play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 1px solid var(--surface);
  background: var(--surface);
  color: var(--night);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.ngsl-play:hover {
  background: color-mix(in oklch, var(--surface) 88%, var(--accent));
}
.ngsl-play svg {
  width: 25px;
  fill: currentColor;
}
.ngsl-video-steps {
  font-size: 18px;
  padding-left: 22px;
}
.ngsl-video-steps li {
  margin: 13px 0;
}
.ngsl-contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
}
.ngsl-form {
  display: grid;
  gap: 16px;
}
.ngsl-field {
  display: grid;
  gap: 7px;
}
.ngsl-field label {
  font-size: 13px;
  color: var(--muted);
}
.ngsl-field input,
.ngsl-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--fg);
  border-radius: 14px;
  padding: 14px;
  min-height: 48px;
}
.ngsl-field textarea {
  min-height: 110px;
  resize: vertical;
}
.ngsl-error {
  color: var(--danger);
  font-size: 13px;
  min-height: 20px;
}
.ngsl-form-note {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
.ngsl-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.ngsl-contact-sent {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  align-self: start;
}
.ngsl-contact-sent h3 {
  font-family: var(--font-display);
  font-size: 34px;
}
.ngsl-reviews {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 16px;
}
.ngsl-review {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
  background: var(--surface);
}
.ngsl-review:first-child {
  background: color-mix(in oklch, var(--accent) 10%, var(--surface));
}
.ngsl-review q {
  font-family: var(--font-display);
  font-size: 23px;
}
.ngsl-review cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  color: var(--muted);
  font-size: 13px;
}
.ngsl-faq details {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.ngsl-faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
}
.ngsl-faq details p {
  color: var(--muted);
  max-width: 65ch;
}
.ngsl-filter {
  padding: 0;
}
.ngsl-notice {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
}
.ngsl-builder {
  width: min(760px, 100%);
  margin: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: clamp(24px, 5vw, 48px);
}
.ngsl-builder-progress {
  font: 13px var(--font-mono);
  margin-bottom: 36px;
}
.ngsl-builder-progress div {
  height: 6px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
  margin-top: 10px;
}
.ngsl-builder-progress i {
  display: block;
  height: 100%;
  width: 25%;
  background: var(--accent);
  transition: width 0.25s var(--ease);
}
.ngsl-builder-step {
  display: none;
  border: 0;
  padding: 0;
  margin: 0;
}
.ngsl-builder-step.is-active {
  display: grid;
  gap: 10px;
}
.ngsl-builder-step legend {
  font: 700 clamp(30px, 4vw, 46px)/1.1 var(--font-display);
  margin-bottom: 24px;
}
.ngsl-builder-step label {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  cursor: pointer;
}
.ngsl-builder-step label:has(input:checked) {
  border-color: var(--accent);
  background: color-mix(in oklch, var(--accent) 8%, var(--surface));
}
.ngsl-builder-step input {
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
}
.ngsl-builder-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.ngsl-builder-actions button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.ngsl-builder-result {
  width: min(760px, 100%);
  margin: auto;
  background: var(--night);
  color: var(--surface);
  border-radius: 30px;
  padding: clamp(28px, 5vw, 54px);
}
.ngsl-builder-result p {
  color: color-mix(in oklch, var(--surface) 76%, var(--night));
}
.ngsl-builder-result .ngsl-ghost {
  color: var(--surface);
  margin-left: 12px;
}
.ngsl-log {
  display: grid;
}
.ngsl-log article {
  display: grid;
  grid-template-columns: 130px 1fr 140px;
  gap: 30px;
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid var(--border);
}
.ngsl-log article > span,
.ngsl-log article > b {
  font: 12px var(--font-mono);
  color: var(--muted);
}
.ngsl-log article > a {
  text-align: right;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.ngsl-log article h2 {
  font-size: clamp(27px, 3vw, 38px);
}
.ngsl-lesson {
  font-size: 18px;
  padding-left: 22px;
}
.ngsl-lesson li {
  padding: 14px 0;
  border-top: 1px solid var(--border);
}
.ngsl-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.ngsl-story {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
}
.ngsl-story--wide {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}
.ngsl-story img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: contain;
  background: var(--night);
}
.ngsl-story div {
  padding: 28px;
}
.ngsl-tag {
  font: 11px var(--font-mono);
  text-transform: uppercase;
  color: var(--muted);
}
.ngsl-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.ngsl-principles article {
  border-top: 1px solid var(--fg);
  padding-top: 22px;
}
.ngsl-principles span {
  font: 12px var(--font-mono);
  color: var(--muted);
}
.ngsl-principles h2 {
  font-size: 34px;
  margin-top: 18px;
}
.ngsl-legal-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 70px;
  align-items: start;
}
.ngsl-legal-copy {
  font: clamp(18px, 2vw, 23px)/1.7 var(--font-display);
}
.ngsl-legal-contact {
  margin-top: 48px;
  background: var(--night);
  color: var(--surface);
  border-radius: 24px;
  padding: 28px;
  font: 15px/1.65 var(--font-body);
}
.ngsl-legal-nav {
  display: grid;
  position: sticky;
  top: 112px;
  border-top: 1px solid var(--fg);
}
.ngsl-legal-nav a {
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}
.ngsl-legal-nav a:hover {
  color: var(--accent);
}
.ngsl-foot {
  background: var(--night);
  color: var(--surface);
  padding: 54px 0;
}
.ngsl-footgrid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 40px;
}
.ngsl-foot a {
  color: color-mix(in oklch, var(--surface) 74%, var(--night));
  display: block;
  margin: 8px 0;
}
.ngsl-cookie {
  position: fixed;
  z-index: 40;
  right: 20px;
  bottom: 20px;
  width: min(430px, calc(100% - 40px));
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 22px 55px color-mix(in oklch, var(--night) 25%, transparent);
}
.ngsl-cookie a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.ngsl-cookie[hidden],
.ngsl-dialog[hidden] {
  display: none;
}
.ngsl-dialog {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: color-mix(in oklch, var(--night) 72%, transparent);
  display: grid;
  place-items: center;
  padding: 20px;
}
.ngsl-dialogbox {
  width: min(620px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: var(--surface);
  border-radius: 26px;
  padding: 32px;
}
@media (max-width: 1060px) {
  .ngsl-nav {
    display: none;
  }
  .ngsl-menu {
    display: inline-flex;
  }
  .ngsl-headrow {
    grid-template-columns: 1fr auto auto;
  }
  .ngsl-nav.is-open {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: grid;
    justify-content: stretch;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 12px;
    box-shadow: 0 20px 50px color-mix(in oklch, var(--night) 18%, transparent);
  }
  .ngsl-nav.is-open a {
    padding: 9px;
  }
  .ngsl-products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 820px) {
  .ngsl-hero-grid,
  .ngsl-proof,
  .ngsl-video,
  .ngsl-contact,
  .ngsl-split,
  .ngsl-legal-layout {
    grid-template-columns: 1fr;
  }
  .ngsl-process {
    grid-template-columns: repeat(2, 1fr);
  }
  .ngsl-visual {
    aspect-ratio: 16/11;
  }
  .ngsl-reviews {
    grid-template-columns: 1fr 1fr;
  }
  .ngsl-review:first-child {
    grid-column: 1/-1;
  }
  .ngsl-story--wide {
    display: block;
  }
  .ngsl-legal-nav {
    position: static;
  }
  .ngsl-log article {
    grid-template-columns: 90px 1fr;
  }
  .ngsl-log article > a,
  .ngsl-log article > b {
    grid-column: 2;
    text-align: left;
  }
  .ngsl-principles {
    grid-template-columns: 1fr;
  }
  .ngsl-content-image {
    max-height: 480px;
  }
}
@media (max-width: 620px) {
  .ngsl-shell {
    width: min(100% - 28px, 1180px);
  }
  .ngsl-utility .ngsl-shell {
    display: block;
    text-align: center;
  }
  .ngsl-utility span:last-child {
    display: none;
  }
  .ngsl-head-cta {
    display: none;
  }
  .ngsl-headrow {
    grid-template-columns: 1fr auto;
  }
  .ngsl-hero {
    padding-top: 32px;
  }
  .ngsl-hero-grid {
    gap: 34px;
  }
  .ngsl-visual {
    border-radius: 26px;
  }
  .ngsl-section {
    padding: 68px 0;
  }
  .ngsl-heading {
    display: block;
  }
  .ngsl-heading p {
    margin-top: 15px;
  }
  .ngsl-products,
  .ngsl-process,
  .ngsl-compare,
  .ngsl-stats,
  .ngsl-reviews,
  .ngsl-footgrid,
  .ngsl-story-grid {
    grid-template-columns: 1fr;
  }
  .ngsl-review:first-child,
  .ngsl-story--wide {
    grid-column: auto;
  }
  .ngsl-contact {
    gap: 38px;
  }
  .ngsl-stat {
    padding: 28px;
  }
  .ngsl-tablist {
    margin-right: 0;
    padding-right: 14px;
  }
  .ngsl-footgrid {
    gap: 24px;
  }
  .ngsl-log article {
    display: block;
  }
  .ngsl-log article > span,
  .ngsl-log article > b,
  .ngsl-log article > a {
    display: block;
    margin-bottom: 10px;
    text-align: left;
  }
  .ngsl-builder-result .ngsl-ghost {
    margin: 12px 0 0;
  }
  .ngsl-dialogbox {
    padding: 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
