:root {
  --gn-ink: #0f141c;
  --gn-ink-soft: #28303b;
  --gn-muted: #687281;
  --gn-line: #d8dde5;
  --gn-silver: #eef1f5;
  --gn-silver-2: #f8f9fb;
  --gn-white: #ffffff;
  --gn-dark: #080c12;
  --gn-dark-2: #111720;
  --gn-blue: #1976f3;
  --gn-blue-dark: #0d5fd0;
  --gn-shadow: 0 22px 50px rgba(12, 18, 28, 0.14);
  --gn-radius: 8px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--gn-ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.gn-frontpage {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--gn-ink);
  background: var(--gn-silver);
}

.gn-frontpage img {
  display: block;
  max-width: 100%;
}

.gn-frontpage a {
  color: inherit;
  text-decoration: none;
}

.gn-frontpage button,
.gn-frontpage input,
.gn-frontpage textarea,
.gn-frontpage select {
  font: inherit;
}

.gn-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.gn-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 0 clamp(18px, 3vw, 54px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--gn-line);
  box-shadow: 0 1px 0 rgba(17, 19, 24, 0.05);
  backdrop-filter: blur(16px);
}

.gn-brand {
  display: flex;
  align-items: center;
  width: 148px;
  flex: 0 0 auto;
}

.gn-brand img,
.gn-footer img {
  width: 100%;
  height: auto;
}

.gn-primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 1.6vw, 28px);
  color: #1d2430;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.gn-primary-nav a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.gn-primary-nav a:hover,
.gn-primary-nav a:focus {
  color: var(--gn-blue);
  border-bottom-color: var(--gn-blue);
}

.gn-primary-nav .gn-quote-link {
  color: var(--gn-blue);
}

.gn-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--gn-line);
  border-radius: 6px;
  background: var(--gn-white);
}

.gn-nav-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--gn-ink);
}

.gn-field-hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  padding-top: 70px;
  color: var(--gn-white);
  overflow: hidden;
  background: var(--gn-dark);
}

.gn-hero-bg {
  position: absolute;
  inset: 70px 0 0;
  width: 100%;
  height: calc(100% - 70px);
  max-width: none;
  object-fit: cover;
  object-position: 62% center;
  filter: brightness(1.16) contrast(1.03) saturate(1.04);
}

.gn-hero-shade {
  position: absolute;
  inset: 70px 0 0;
  background:
    linear-gradient(90deg, rgba(6, 10, 16, 0.97) 0%, rgba(6, 10, 16, 0.86) 34%, rgba(6, 10, 16, 0.34) 62%, rgba(6, 10, 16, 0.08) 100%),
    linear-gradient(180deg, rgba(6, 10, 16, 0.08), rgba(6, 10, 16, 0.58)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 96px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 96px);
}

.gn-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  width: 100%;
  min-height: calc(100svh - 70px);
  min-height: calc(100vh - 70px);
  margin: 0;
  padding: clamp(58px, 8vh, 104px) clamp(22px, 5vw, 86px) clamp(34px, 5vw, 64px) clamp(28px, 4.8vw, 96px);
  transform: translateY(clamp(-42px, -4vh, -24px));
}

.gn-hero-content > * {
  width: min(680px, 100%);
  max-width: 100%;
}

.gn-eyebrow {
  margin: 0 0 14px;
  color: var(--gn-blue);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gn-field-hero h1 {
  margin: 0;
  max-width: 760px;
  color: var(--gn-white);
  font-size: 72px;
  font-weight: 900;
  line-height: 1.04;
  overflow-wrap: break-word;
}

.gn-hero-lede {
  margin: 22px 0 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.28;
  overflow-wrap: break-word;
}

.gn-hero-summary {
  margin: 18px 0 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.68;
  overflow-wrap: break-word;
}

.gn-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.gn-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.gn-button-primary {
  color: var(--gn-white);
  background: var(--gn-blue);
  box-shadow: 0 14px 34px rgba(25, 118, 243, 0.3);
}

.gn-button-primary:hover,
.gn-button-primary:focus {
  color: var(--gn-white);
  background: var(--gn-blue-dark);
}

.gn-button-secondary {
  color: var(--gn-white);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.24);
}

.gn-button-secondary:hover,
.gn-button-secondary:focus {
  color: var(--gn-white);
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.14);
}

.gn-field-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.gn-field-tags span {
  width: auto;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 800;
}

.gn-scene-notes {
  position: absolute;
  left: clamp(28px, 4.8vw, 96px);
  right: auto;
  bottom: clamp(20px, 4vw, 52px);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(860px, calc(100vw - 56px));
}

.gn-scene-notes div {
  position: relative;
  padding: 14px 16px 14px 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--gn-radius);
  background: rgba(12, 17, 24, 0.72);
  backdrop-filter: blur(12px);
}

.gn-scene-notes div::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 19px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--gn-blue);
  border-radius: 50%;
  background: var(--gn-white);
}

.gn-scene-notes strong {
  display: block;
  color: var(--gn-white);
  font-size: 13px;
}

.gn-scene-notes span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.5;
}

.gn-section {
  position: relative;
  display: grid;
  align-content: center;
  min-height: calc(100svh - 70px);
  min-height: calc(100vh - 70px);
  padding: clamp(70px, 9vw, 132px) clamp(20px, 4vw, 70px);
}

.gn-section-silver {
  background:
    linear-gradient(90deg, rgba(10, 17, 27, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(10, 17, 27, 0.045) 1px, transparent 1px),
    var(--gn-silver);
  background-size: 96px 96px;
}

.gn-section-white {
  background: var(--gn-white);
}

.gn-section-dark {
  color: var(--gn-white);
  background:
    linear-gradient(120deg, rgba(25, 118, 243, 0.16), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0, rgba(255, 255, 255, 0.045) 1px, transparent 1px, transparent 96px),
    var(--gn-dark-2);
}

.gn-section-inner {
  width: min(1680px, 100%);
  margin: 0 auto;
}

.gn-section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 86px);
  align-items: end;
  margin-bottom: clamp(30px, 5vw, 62px);
}

.gn-section-heading h2,
.gn-match-copy h2,
.gn-about-head h2,
.gn-quote-copy h2 {
  margin: 0;
  color: var(--gn-ink);
  font-size: clamp(34px, 4vw, 64px);
  font-weight: 900;
  line-height: 1.03;
}

.gn-section-heading p:not(.gn-eyebrow),
.gn-match-copy p,
.gn-about-copy p,
.gn-quote-copy p {
  margin: 0;
  color: var(--gn-muted);
  font-size: 16px;
  line-height: 1.76;
}

.gn-section-dark .gn-section-heading h2,
.gn-section-dark .gn-product-stage-head h2,
.gn-section-dark .gn-product-card h3 {
  color: var(--gn-white);
}

.gn-section-dark .gn-section-heading p:not(.gn-eyebrow),
.gn-product-stage-head p,
.gn-product-card p {
  color: rgba(255, 255, 255, 0.72);
}

.gn-application-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  grid-auto-rows: minmax(290px, auto);
  gap: 18px;
}

.gn-application-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 340px;
  padding: clamp(24px, 3vw, 42px);
  border-radius: var(--gn-radius);
  overflow: hidden;
  color: var(--gn-white);
  box-shadow: var(--gn-shadow);
  background: #101720;
}

.gn-application-card-large {
  min-height: 520px;
  grid-row: span 2;
}

.gn-application-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02) brightness(0.94);
}

.gn-application-card-large img {
  object-position: 72% center;
}

.gn-application-card-control img {
  object-position: 42% 72%;
  transform: scale(1.12);
  transform-origin: 42% 72%;
  filter: saturate(1.04) contrast(1.04) brightness(0.98);
}

.gn-application-card-signal img {
  object-position: 62% 14%;
  transform: scale(1.01);
  transform-origin: 62% 14%;
  filter: saturate(1.04) contrast(1.02) brightness(1.02);
}

.gn-application-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 11, 17, 0.06), rgba(7, 11, 17, 0.84)),
    linear-gradient(90deg, rgba(7, 11, 17, 0.62), rgba(7, 11, 17, 0.12));
}

.gn-application-card-large::after {
  background:
    linear-gradient(180deg, rgba(7, 11, 17, 0.02), rgba(7, 11, 17, 0.66)),
    linear-gradient(90deg, rgba(7, 11, 17, 0.78) 0%, rgba(7, 11, 17, 0.58) 30%, rgba(7, 11, 17, 0.2) 58%, rgba(7, 11, 17, 0.04) 100%);
}

.gn-application-card div {
  position: relative;
  z-index: 2;
  width: min(620px, 100%);
}

.gn-application-card span {
  color: #86b9ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.gn-application-card h3 {
  margin: 10px 0;
  color: var(--gn-white);
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1.08;
}

.gn-application-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.68;
}

.gn-application-card .gn-application-product-type {
  margin: 0 0 8px;
  color: #86b9ff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.gn-application-card p strong {
  display: inline-block;
  margin-bottom: 3px;
  color: var(--gn-white);
  font-size: 18px;
}

.gn-category-section {
  align-content: start;
  min-height: auto;
}

.gn-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.gn-category-card {
  position: relative;
  display: grid;
  grid-template-rows: 270px 1fr;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--gn-line);
  border-radius: var(--gn-radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 249, 251, 0.98));
  box-shadow: 0 18px 42px rgba(12, 18, 28, 0.08);
}

.gn-category-card figure {
  display: grid;
  place-items: center;
  margin: 0;
  padding: 30px 34px 26px;
  overflow: hidden;
  border-bottom: 1px solid var(--gn-line);
  background:
    radial-gradient(circle at 50% 44%, rgba(25, 118, 243, 0.09), transparent 56%),
    linear-gradient(180deg, #ffffff, #f3f6fa);
}

.gn-category-card img {
  width: min(94%, 330px);
  max-height: 220px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: saturate(1.04) contrast(1.03);
}

.gn-category-card:first-child figure {
  padding: 10px 18px 8px;
}

.gn-category-card:first-child img {
  width: min(116%, 520px);
  max-height: 252px;
  transform: translateY(76px) scale(1.32);
  transform-origin: center center;
}

.gn-category-card:nth-child(2) img {
  width: min(92%, 300px);
  max-height: 226px;
}

.gn-category-card:nth-child(5) img {
  width: min(86%, 280px);
  max-height: 226px;
}

.gn-category-card:nth-child(6) img {
  width: min(92%, 300px);
  max-height: 226px;
}

.gn-category-index {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: grid;
  place-items: center;
  min-width: 48px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--gn-white);
  background: var(--gn-blue);
  font-size: 13px;
  font-weight: 900;
}

.gn-category-card > div {
  display: grid;
  grid-template-rows: minmax(70px, auto) minmax(74px, auto) 1fr;
  align-content: start;
  padding: 30px 26px 32px;
}

.gn-category-card h3 {
  margin: 0 0 8px;
  color: var(--gn-ink);
  font-size: clamp(23px, 1.6vw, 31px);
  font-weight: 900;
  line-height: 1.08;
}

.gn-category-card p {
  margin: 0;
  color: var(--gn-muted);
  font-size: 15px;
  line-height: 1.56;
}

.gn-category-card ul {
  display: grid;
  gap: 8px;
  padding: 18px 0 0;
  margin: 18px 0 0;
  border-top: 1px solid var(--gn-line);
  list-style: none;
}

.gn-category-card li {
  position: relative;
  padding-left: 18px;
  color: var(--gn-ink-soft);
  font-size: 13px;
  line-height: 1.4;
}

.gn-category-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gn-blue);
}

.gn-use-case-grid,
.gn-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gn-use-case-card,
.gn-proof-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 330px;
  padding: clamp(22px, 2.4vw, 34px);
  border: 1px solid var(--gn-line);
  border-radius: var(--gn-radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(12, 18, 28, 0.07);
}

.gn-use-case-card {
  position: relative;
  gap: 0;
  min-height: 468px;
  padding: clamp(22px, 2vw, 28px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.94)),
    radial-gradient(circle at 12% 0%, rgba(25, 118, 243, 0.14), transparent 38%);
  box-shadow:
    0 18px 42px rgba(12, 18, 28, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.gn-use-case-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gn-blue), rgba(25, 118, 243, 0.18));
}

.gn-use-case-card span,
.gn-proof-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--gn-white);
  background: var(--gn-blue);
  font-size: 13px;
  font-weight: 900;
}

.gn-use-case-card span,
.gn-use-case-card h3,
.gn-use-case-card p,
.gn-use-case-media {
  position: relative;
  z-index: 1;
}

.gn-use-case-card span {
  justify-self: start;
  margin-bottom: 22px;
  box-shadow: 0 10px 22px rgba(25, 118, 243, 0.22);
}

.gn-use-case-media {
  margin: 0 0 24px;
  overflow: hidden;
  aspect-ratio: 1.52 / 1;
  border: 1px solid rgba(141, 154, 173, 0.24);
  border-radius: calc(var(--gn-radius) - 4px);
  background: #e9eef5;
  box-shadow: 0 12px 26px rgba(18, 28, 42, 0.09);
}

.gn-use-case-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gn-use-case-card:nth-child(1) .gn-use-case-media img {
  object-position: 46% center;
}

.gn-use-case-card:nth-child(2) .gn-use-case-media img {
  object-position: 52% center;
}

.gn-use-case-card:nth-child(3) .gn-use-case-media img {
  object-position: 45% center;
}

.gn-use-case-card:nth-child(4) .gn-use-case-media img {
  object-position: 42% center;
}

.gn-use-case-card h3,
.gn-proof-card h3 {
  margin: 0;
  color: var(--gn-ink);
  font-size: clamp(22px, 1.6vw, 30px);
  line-height: 1.12;
}

.gn-use-case-card h3 {
  max-width: 255px;
  min-height: 64px;
  margin-bottom: 16px;
  font-size: clamp(23px, 1.45vw, 28px);
}

.gn-use-case-card p,
.gn-proof-card p {
  margin: 0;
  color: var(--gn-muted);
  line-height: 1.68;
}

.gn-use-case-card p {
  min-height: 76px;
  line-height: 1.62;
}

.gn-why-section {
  position: relative;
  min-height: auto;
  padding-top: clamp(72px, 7vw, 118px);
  padding-bottom: clamp(72px, 7vw, 118px);
  overflow: hidden;
}

.gn-why-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(620px, 1.18fr);
  gap: clamp(32px, 5vw, 86px);
  align-items: stretch;
}

.gn-why-copy {
  display: grid;
  align-content: center;
  max-width: 720px;
}

.gn-why-copy h2 {
  margin: 0;
  color: var(--gn-white);
  font-size: clamp(34px, 4vw, 62px);
  font-weight: 900;
  line-height: 1.04;
}

.gn-why-copy p:not(.gn-eyebrow) {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.76;
}

.gn-why-section .gn-eyebrow {
  color: #72aeff;
}

.gn-why-section .gn-proof-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gn-why-section .gn-proof-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: clamp(22px, 2.2vw, 34px);
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  box-shadow: none;
}

.gn-why-section .gn-proof-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(22px, 2.2vw, 34px);
  width: 54px;
  height: 3px;
  background: var(--gn-blue);
}

.gn-why-section .gn-proof-card::after {
  content: "";
  position: absolute;
  right: clamp(18px, 2vw, 28px);
  top: clamp(18px, 2vw, 28px);
  width: 42px;
  height: 42px;
  border-top: 1px solid rgba(25, 118, 243, 0.7);
  border-right: 1px solid rgba(25, 118, 243, 0.7);
  opacity: 0.55;
}

.gn-why-section .gn-proof-card span {
  display: block;
  width: auto;
  height: auto;
  color: #58a6ff;
  background: transparent;
  font-size: 13px;
  line-height: 1;
}

.gn-why-section .gn-proof-card h3 {
  display: flex;
  align-items: flex-start;
  min-height: 66px;
  color: var(--gn-white);
  font-size: clamp(21px, 1.55vw, 29px);
}

.gn-why-section .gn-proof-card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.66;
}

.gn-match-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(22px, 4vw, 58px);
  align-items: center;
}

.gn-match-copy {
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid var(--gn-line);
  border-radius: var(--gn-radius);
  background: linear-gradient(135deg, #fafbfc, #e3e7ee);
}

.gn-match-copy p {
  margin-top: 22px;
}

.gn-scenario-list {
  display: grid;
  gap: 14px;
}

.gn-scenario-row {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--gn-line);
  border-radius: var(--gn-radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(12, 18, 28, 0.07);
}

.gn-scenario-row img {
  width: 86px;
  height: 76px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.gn-scenario-row h3 {
  margin: 0 0 6px;
  color: var(--gn-ink);
  font-size: 20px;
}

.gn-scenario-row p {
  margin: 0;
  color: var(--gn-muted);
  line-height: 1.55;
}

.gn-scenario-row a {
  color: var(--gn-blue);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.gn-product-stage {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--gn-radius);
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
}

.gn-product-stage-head {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(300px, 1fr);
  gap: 28px;
  align-items: end;
  padding: clamp(24px, 4vw, 44px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.gn-product-stage-head h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 62px);
  font-weight: 900;
  line-height: 1.04;
}

.gn-product-stage-head p {
  margin: 0;
  line-height: 1.75;
}

.gn-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gn-product-card {
  display: grid;
  grid-template-rows: 250px auto;
  min-height: 520px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.gn-product-card:last-child {
  border-right: 0;
}

.gn-product-card figure {
  display: grid;
  place-items: center;
  margin: 0;
  padding: 26px;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.18) 42%, rgba(255, 255, 255, 0.02) 72%);
}

.gn-product-card img {
  width: min(88%, 270px);
  max-height: 218px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.24));
}

.gn-product-card:nth-child(2) img {
  width: min(82%, 238px);
}

.gn-product-card:nth-child(3) img {
  width: min(78%, 216px);
}

.gn-product-card:nth-child(4) img {
  width: min(86%, 246px);
}

.gn-product-card div {
  padding: 24px;
}

.gn-product-card span {
  color: #72aeff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.gn-product-card h3 {
  margin: 10px 0 8px;
  font-size: 24px;
  line-height: 1.12;
}

.gn-product-card small {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.56);
  font-weight: 800;
}

.gn-product-card p {
  margin: 0;
  line-height: 1.7;
}

.gn-feature-section {
  align-content: start;
  min-height: auto;
}

.gn-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gn-feature-card {
  display: grid;
  grid-template-rows: 240px auto;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--gn-radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
}

.gn-feature-card figure {
  position: relative;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 24px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.16) 42%, rgba(255, 255, 255, 0.02) 72%);
}

.gn-feature-card img {
  width: min(88%, 280px);
  max-height: 210px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.28));
}

.gn-feature-card:first-child img {
  width: min(96%, 340px);
  max-height: 224px;
  transform: translateY(26px);
  filter:
    saturate(1.05)
    contrast(1.02)
    drop-shadow(0 18px 28px rgba(0, 0, 0, 0.28));
}

.gn-feature-card:nth-child(2) img {
  width: min(82%, 230px);
  transform: translateY(-14px);
}

.gn-feature-card:nth-child(3) img {
  width: min(76%, 210px);
  transform: translateY(-14px);
}

.gn-feature-card:nth-child(4) img {
  width: min(86%, 248px);
  transform: translateY(-14px);
}

.gn-feature-card img.gn-feature-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  object-fit: cover;
  object-position: center center;
  transform: none;
  filter: none;
}

.gn-feature-card:first-child img.gn-feature-photo {
  object-position: 64% center;
}

.gn-feature-card:nth-child(3) img.gn-feature-photo {
  object-position: center center;
}

.gn-feature-card:nth-child(4) img.gn-feature-photo {
  object-position: center top;
}

.gn-feature-card > div {
  display: grid;
  grid-template-rows: auto 76px auto;
  align-content: start;
  padding: 24px;
}

.gn-feature-card h3 {
  margin: 8px 0 12px;
  color: var(--gn-white);
  font-size: clamp(22px, 1.7vw, 30px);
  line-height: 1.12;
}

.gn-feature-card p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.62;
}

.gn-product-type {
  margin: 0;
  color: #72aeff !important;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.gn-feature-meta {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 900;
}

.gn-about-section {
  background:
    linear-gradient(90deg, rgba(25, 118, 243, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(25, 118, 243, 0.035) 1px, transparent 1px),
    var(--gn-white);
  background-size: 112px 112px;
}

.gn-about-layout {
  display: grid;
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
}

.gn-about-head {
  max-width: 1240px;
}

.gn-about-head h2 {
  max-width: 940px;
}

.gn-about-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 64px);
  max-width: 1240px;
  margin-top: clamp(18px, 2.4vw, 28px);
  padding-top: clamp(18px, 2.4vw, 28px);
  border-top: 1px solid var(--gn-line);
}

.gn-about-copy p {
  max-width: none;
}

.gn-about-system {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 0.42fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--gn-line);
  border-radius: var(--gn-radius);
  background:
    linear-gradient(135deg, rgba(25, 118, 243, 0.11), transparent 42%),
    linear-gradient(90deg, rgba(15, 20, 28, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 20, 28, 0.04) 1px, transparent 1px),
    var(--gn-silver-2);
  box-shadow: 0 18px 42px rgba(12, 18, 28, 0.08);
  background-size: auto, 64px 64px, 64px 64px, auto;
}

.gn-about-system::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 168px;
  height: 4px;
  background: var(--gn-blue);
}

.gn-about-system::after {
  content: "";
  position: absolute;
  right: 26px;
  top: 24px;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(25, 118, 243, 0.18);
  border-radius: 50%;
}

.gn-about-line {
  position: relative;
  min-height: 260px;
  border-right: 1px solid var(--gn-line);
}

.gn-about-line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 72%;
  background: linear-gradient(180deg, transparent, rgba(25, 118, 243, 0.78), transparent);
  transform: translate(-50%, -50%);
}

.gn-about-line span {
  position: absolute;
  left: 50%;
  width: 16px;
  height: 16px;
  border: 3px solid var(--gn-white);
  border-radius: 50%;
  background: var(--gn-blue);
  box-shadow: 0 0 0 1px rgba(25, 118, 243, 0.42), 0 10px 22px rgba(25, 118, 243, 0.24);
  transform: translateX(-50%);
}

.gn-about-line span:nth-child(1) {
  top: 22%;
}

.gn-about-line span:nth-child(2) {
  top: 50%;
}

.gn-about-line span:nth-child(3) {
  top: 78%;
}

.gn-about-line span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  width: 78px;
  height: 1px;
  background: rgba(25, 118, 243, 0.5);
}

.gn-about-focus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
  z-index: 1;
}

.gn-about-focus-item {
  min-height: 260px;
  padding: clamp(22px, 2.4vw, 34px);
  border-right: 1px solid var(--gn-line);
}

.gn-about-focus-item:last-child {
  border-right: 0;
}

.gn-about-focus-item span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--gn-blue);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.gn-about-focus-item strong {
  display: block;
  color: var(--gn-ink);
  font-size: clamp(22px, 1.7vw, 30px);
  line-height: 1.08;
}

.gn-about-focus-item p {
  margin: 14px 0 0;
  color: var(--gn-muted);
  font-size: 14px;
  line-height: 1.7;
}

.gn-quote-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 5vw, 78px);
  width: min(1880px, calc(100% - clamp(32px, 6vw, 96px)));
  min-height: auto;
  margin: clamp(42px, 6vw, 88px) auto;
  padding: clamp(42px, 5vw, 72px) clamp(26px, 5vw, 70px);
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    #f8fafd;
  background-size: 96px 96px;
  box-shadow:
    inset 0 0 0 1px rgba(143, 155, 176, 0.28),
    0 22px 54px rgba(18, 28, 45, 0.1);
}

.gn-quote-section::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  background: url("terminal-cabinet-scene.jpg") center 46% / cover no-repeat;
  opacity: 0.1;
}

.gn-quote-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(248, 250, 253, 0.96) 0%, rgba(248, 250, 253, 0.9) 54%, rgba(248, 250, 253, 0.84) 100%),
    radial-gradient(circle at 74% 48%, rgba(25, 118, 243, 0.12), transparent 30%);
  pointer-events: none;
}

.gn-quote-section > * {
  position: relative;
  z-index: 1;
}

.gn-quote-copy {
  max-width: 760px;
}

.gn-quote-copy h2 {
  max-width: 740px;
  margin: 8px 0 0;
  font-size: clamp(34px, 3vw, 56px);
  line-height: 1.05;
}

.gn-quote-copy > p {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--gn-muted);
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.65;
}

.gn-quote-actions {
  display: flex;
  flex-wrap: wrap;
  justify-self: end;
  align-content: center;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.gn-quote-actions .gn-button {
  min-width: 188px;
  min-height: 54px;
  padding-inline: 24px;
}

.gn-quote-actions .gn-button-primary {
  color: var(--gn-white);
  background: var(--gn-blue);
  border-color: var(--gn-blue);
  box-shadow: 0 16px 34px rgba(25, 118, 243, 0.26);
}

.gn-quote-actions .gn-button-primary:hover,
.gn-quote-actions .gn-button-primary:focus {
  background: var(--gn-blue-dark);
  border-color: var(--gn-blue-dark);
}

.gn-quote-actions .gn-button-secondary {
  min-width: 250px;
  color: var(--gn-white);
  background: #202229;
  border-color: #202229;
  box-shadow: 0 14px 34px rgba(14, 18, 28, 0.18);
}

.gn-quote-actions .gn-button-secondary:hover,
.gn-quote-actions .gn-button-secondary:focus {
  color: var(--gn-white);
  background: #111827;
  border-color: #111827;
}

.gn-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.18fr) repeat(4, minmax(150px, 0.62fr));
  column-gap: clamp(48px, 6vw, 120px);
  row-gap: 34px;
  align-items: start;
  padding: 46px clamp(34px, 4vw, 78px) 48px;
  color: rgba(255, 255, 255, 0.65);
  background: #060a10;
}

.gn-footer > div {
  display: grid;
  grid-template-rows: 45px;
  grid-auto-rows: max-content;
  row-gap: 10px;
  align-content: start;
}

.gn-footer img {
  width: 148px;
  height: auto;
  filter: invert(1);
}

.gn-footer p {
  max-width: 360px;
  margin: 0;
  line-height: 1.7;
}

.gn-footer .gn-footer-about-title {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 400;
  line-height: 1.25;
}

.gn-footer strong {
  display: block;
  align-self: start;
  margin: 0;
  padding-top: 2px;
  color: var(--gn-white);
  line-height: 1.25;
}

.gn-footer a {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.gn-footer a:hover,
.gn-footer a:focus {
  color: var(--gn-white);
}

@media (max-width: 1180px) {
  .gn-primary-nav {
    gap: 13px;
    font-size: 12px;
  }

  .gn-scene-notes {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: 1fr;
    width: min(620px, 100%);
    margin: -118px 0 0 clamp(22px, 5vw, 86px);
  }

  .gn-section-heading,
  .gn-why-layout,
  .gn-application-grid,
  .gn-match-layout,
  .gn-product-stage-head,
  .gn-quote-section {
    grid-template-columns: 1fr;
  }

  .gn-quote-actions {
    justify-self: start;
    justify-content: flex-start;
  }

  .gn-about-system {
    grid-template-columns: 1fr;
  }

  .gn-about-line {
    min-height: 116px;
    border-right: 0;
    border-bottom: 1px solid var(--gn-line);
  }

  .gn-about-line::before {
    width: 78%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(25, 118, 243, 0.78), transparent);
  }

  .gn-about-line span {
    top: 50%;
    left: auto;
    transform: translate(-50%, -50%);
  }

  .gn-about-line span:nth-child(1) {
    left: 28%;
  }

  .gn-about-line span:nth-child(2) {
    left: 50%;
  }

  .gn-about-line span:nth-child(3) {
    left: 72%;
  }

  .gn-about-line span::after {
    display: none;
  }

  .gn-about-focus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gn-application-card-large {
    min-height: 430px;
  }

  .gn-category-grid,
  .gn-product-grid,
  .gn-use-case-grid,
  .gn-proof-grid,
  .gn-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gn-product-card {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .gn-product-card:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 900px) {
  .gn-header {
    min-height: 64px;
  }

  .gn-brand {
    width: 136px;
  }

  .gn-nav-toggle {
    display: block;
  }

  .gn-primary-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 22px 18px;
    background: var(--gn-white);
    border-bottom: 1px solid var(--gn-line);
    box-shadow: 0 20px 34px rgba(12, 18, 28, 0.14);
  }

  .gn-header.is-open .gn-primary-nav {
    display: flex;
  }

  .gn-primary-nav a {
    padding: 14px 0;
  }

  .gn-field-hero {
    padding-top: 64px;
  }

  .gn-hero-bg,
  .gn-hero-shade {
    top: 64px;
    height: calc(100% - 64px);
  }

  .gn-hero-content {
    min-height: calc(100svh - 64px);
    min-height: calc(100vh - 64px);
  }

  .gn-section,
  .gn-quote-section {
    min-height: auto;
  }

  .gn-scenario-row,
  .gn-footer {
    grid-template-columns: 1fr;
  }

  .gn-footer > div {
    grid-template-rows: auto;
    row-gap: 9px;
  }

  .gn-scenario-row a {
    white-space: normal;
  }
}

@media (max-width: 620px) {
  .gn-hero-bg {
    object-position: 68% center;
  }

  .gn-hero-shade {
    background:
      linear-gradient(180deg, rgba(6, 10, 16, 0.94), rgba(6, 10, 16, 0.76) 54%, rgba(6, 10, 16, 0.58)),
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 82px),
      repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 82px);
  }

  .gn-hero-content {
    align-content: end;
    padding: 60px 18px 26px;
    transform: none;
    overflow: hidden;
  }

  .gn-hero-content > * {
    width: min(100%, 354px);
  }

  .gn-field-hero h1 {
    max-width: 354px;
    font-size: 34px;
    line-height: 1.06;
  }

  .gn-hero-lede {
    max-width: 354px;
    font-size: 17px;
    line-height: 1.36;
  }

  .gn-hero-summary {
    max-width: 354px;
    font-size: 14px;
  }

  .gn-hero-actions .gn-button {
    width: 100%;
  }

  .gn-scene-notes {
    margin: -12px 18px 26px;
    width: auto;
  }

  .gn-section {
    padding: 58px 16px;
  }

  .gn-application-grid,
  .gn-category-grid,
  .gn-product-grid,
  .gn-use-case-grid,
  .gn-proof-grid,
  .gn-feature-grid {
    grid-template-columns: 1fr;
  }

  .gn-why-section .gn-proof-grid {
    grid-template-columns: 1fr;
  }

  .gn-about-copy,
  .gn-about-focus-grid {
    grid-template-columns: 1fr;
  }

  .gn-about-focus-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--gn-line);
  }

  .gn-about-focus-item:last-child {
    border-bottom: 0;
  }

  .gn-application-card,
  .gn-application-card-large {
    min-height: 360px;
  }

  .gn-match-copy {
    padding: 26px 20px;
  }

  .gn-scenario-row {
    grid-template-columns: 74px 1fr;
    padding: 14px;
  }

  .gn-scenario-row img {
    width: 74px;
    height: 68px;
  }

  .gn-scenario-row a {
    grid-column: 1 / -1;
  }

  .gn-product-card {
    min-height: auto;
    border-right: 0;
  }

  .gn-category-card,
  .gn-use-case-card,
  .gn-proof-card,
  .gn-feature-card {
    min-height: auto;
  }

  .gn-use-case-card h3 {
    min-height: auto;
  }

  .gn-use-case-card p {
    min-height: auto;
  }

  .gn-product-card figure {
    min-height: 230px;
  }

  .gn-product-card img {
    max-height: 196px;
  }

  .gn-quote-section {
    width: calc(100% - 32px);
    margin: 36px auto;
    padding: 30px 20px;
  }

  .gn-quote-copy h2 {
    font-size: 30px;
  }

  .gn-quote-actions {
    justify-self: stretch;
  }

  .gn-quote-actions .gn-button {
    width: 100%;
  }
}

.gn-category-card-link {
  color: inherit;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.gn-category-card-link:hover,
.gn-category-card-link:focus-visible {
  border-color: rgba(25, 118, 243, 0.46);
  box-shadow: 0 24px 56px rgba(12, 18, 28, 0.13);
  transform: translateY(-4px);
}

.gn-category-card-link:focus-visible {
  outline: 3px solid rgba(25, 118, 243, 0.34);
  outline-offset: 4px;
}

.gn-terminal-hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  padding-top: 70px;
  overflow: hidden;
  color: var(--gn-white);
  background: var(--gn-dark);
}

.gn-terminal-hero-bg {
  position: absolute;
  inset: 70px 0 0;
  width: 100%;
  height: calc(100% - 70px);
  max-width: none;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(1.04) contrast(1.02) brightness(0.98);
}

.gn-terminal-hero-shade {
  position: absolute;
  inset: 70px 0 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 14, 0.96) 0%, rgba(7, 12, 19, 0.82) 34%, rgba(7, 12, 19, 0.34) 68%, rgba(7, 12, 19, 0.08) 100%),
    linear-gradient(180deg, rgba(5, 8, 14, 0.04), rgba(5, 8, 14, 0.54)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 96px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.032) 0, rgba(255, 255, 255, 0.032) 1px, transparent 1px, transparent 96px);
}

.gn-terminal-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: calc(100svh - 70px);
  min-height: calc(100vh - 70px);
  padding: clamp(72px, 10vh, 118px) clamp(22px, 5vw, 86px) clamp(44px, 5vw, 74px) clamp(28px, 4.8vw, 96px);
}

.gn-terminal-hero-content > * {
  width: min(760px, 100%);
  max-width: 100%;
}

.gn-terminal-hero h1,
.gn-terminal-copy h2,
.gn-terminal-spec-layout h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 900;
  line-height: 1.03;
  overflow-wrap: break-word;
}

.gn-terminal-hero h1,
.gn-terminal-copy h2 {
  color: var(--gn-white);
}

.gn-terminal-path-grid,
.gn-terminal-kit-grid,
.gn-terminal-step-list,
.gn-terminal-application-grid,
.gn-terminal-faq-grid {
  display: grid;
  gap: 18px;
}

.gn-terminal-geo {
  min-height: auto;
  padding-top: clamp(28px, 3.8vw, 56px);
  padding-bottom: clamp(28px, 3.8vw, 56px);
  background:
    linear-gradient(90deg, rgba(25, 118, 243, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(25, 118, 243, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
  background-size: 82px 82px, 82px 82px, auto;
}

.gn-terminal-geo-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 3.2vw, 42px);
  border: 1px solid rgba(139, 184, 245, 0.32);
  border-radius: 8px;
  color: var(--gn-white);
  background:
    linear-gradient(135deg, #101923 0%, #0e2a52 58%, #1976f3 100%);
  box-shadow: 0 26px 70px rgba(12, 31, 64, 0.22);
}

.gn-terminal-geo-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
}

.gn-terminal-geo-labels,
.gn-terminal-geo-panel p,
.gn-terminal-geo-tags {
  position: relative;
  z-index: 1;
}

.gn-terminal-geo-labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.gn-terminal-geo-labels strong {
  color: var(--gn-white);
  font-size: clamp(19px, 1.65vw, 26px);
  line-height: 1.1;
}

.gn-terminal-geo-labels span {
  color: #c8dcff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-align: right;
  text-transform: uppercase;
}

.gn-terminal-geo-panel p {
  width: min(1120px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.72;
}

.gn-terminal-geo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.gn-terminal-geo-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: var(--gn-white);
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
}

.gn-terminal-at-glance {
  min-height: auto;
  padding-top: clamp(22px, 3vw, 38px);
  padding-bottom: clamp(22px, 3vw, 38px);
  border-bottom: 1px solid var(--gn-line);
}

.gn-terminal-glance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--gn-line);
  border-radius: var(--gn-radius);
  background:
    linear-gradient(90deg, rgba(25, 118, 243, 0.06), transparent 32%),
    var(--gn-white);
  box-shadow: 0 18px 42px rgba(12, 18, 28, 0.07);
}

.gn-terminal-glance-grid article {
  min-height: 160px;
  padding: clamp(22px, 2.2vw, 34px);
  border-right: 1px solid var(--gn-line);
}

.gn-terminal-glance-grid article:last-child {
  border-right: 0;
}

.gn-terminal-glance-grid span,
.gn-terminal-compare-table .gn-terminal-compare-head span {
  display: block;
  color: var(--gn-blue);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.gn-terminal-glance-grid strong {
  display: block;
  margin-top: 12px;
  color: var(--gn-ink);
  font-size: clamp(20px, 1.5vw, 28px);
  line-height: 1.12;
}

.gn-terminal-glance-grid p {
  margin: 12px 0 0;
  color: var(--gn-muted);
  line-height: 1.6;
}

.gn-terminal-sku-hub {
  align-content: start;
}

.gn-terminal-sku-family-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: clamp(26px, 4vw, 48px);
}

.gn-terminal-sku-family-grid a {
  display: grid;
  align-content: start;
  min-height: 142px;
  padding: 18px;
  border: 1px solid var(--gn-line);
  border-radius: var(--gn-radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 253, 0.94)),
    radial-gradient(circle at 18% 0%, rgba(25, 118, 243, 0.12), transparent 42%);
  box-shadow: 0 16px 34px rgba(12, 18, 28, 0.06);
}

.gn-terminal-sku-family-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 999px;
  color: var(--gn-white);
  background: var(--gn-blue);
  font-size: 13px;
  font-weight: 900;
}

.gn-terminal-sku-family-grid strong {
  color: var(--gn-ink);
  font-size: 16px;
  line-height: 1.2;
}

.gn-terminal-sku-family-grid em {
  margin-top: 8px;
  color: var(--gn-muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.gn-terminal-sku-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gn-terminal-sku-modal-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(20px, 2.5vw, 30px);
  border: 1px solid rgba(25, 118, 243, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 253, 0.94)),
    radial-gradient(circle at 0% 0%, rgba(25, 118, 243, 0.13), transparent 34%);
  box-shadow: 0 18px 42px rgba(12, 18, 28, 0.07);
}

.gn-terminal-sku-modal-entry span {
  color: var(--gn-blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.gn-terminal-sku-modal-entry strong {
  display: block;
  margin-top: 8px;
  color: var(--gn-ink);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.1;
}

.gn-terminal-sku-modal-entry p {
  max-width: 680px;
  margin: 10px 0 0;
  color: var(--gn-muted);
  line-height: 1.62;
}

.gn-terminal-sku-card {
  overflow: hidden;
  border: 1px solid var(--gn-line);
  border-radius: var(--gn-radius);
  background: var(--gn-white);
  box-shadow: 0 16px 36px rgba(12, 18, 28, 0.07);
}

.gn-terminal-sku-card figure {
  display: grid;
  place-items: center;
  margin: 0;
  padding: clamp(12px, 1.4vw, 20px);
  aspect-ratio: 1 / 1;
  border-bottom: 1px solid var(--gn-line);
  background:
    radial-gradient(circle at 50% 44%, rgba(25, 118, 243, 0.08), transparent 55%),
    #f7f9fc;
}

.gn-terminal-sku-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.gn-terminal-sku-card div {
  display: grid;
  align-content: start;
  min-height: 212px;
  padding: 18px 18px 20px;
}

.gn-terminal-sku-card span {
  color: var(--gn-blue);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.gn-terminal-sku-card h3 {
  margin: 9px 0 10px;
  color: var(--gn-ink);
  font-size: clamp(17px, 1.2vw, 22px);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.gn-terminal-sku-card p {
  margin: 0;
  color: var(--gn-muted);
  font-size: 13px;
  line-height: 1.58;
}

.gn-terminal-sku-card a {
  align-self: end;
  justify-self: start;
  margin-top: 18px;
  color: var(--gn-blue);
  font-size: 13px;
  font-weight: 900;
}

.gn-modal-open {
  overflow: hidden;
}

.gn-sku-modal[hidden] {
  display: none;
}

.gn-sku-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  padding: clamp(14px, 2.4vw, 28px);
  background:
    radial-gradient(circle at 50% 0%, rgba(25, 118, 243, 0.2), transparent 38%),
    rgba(6, 11, 20, 0.76);
  backdrop-filter: blur(8px);
}

.gn-sku-modal-panel {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(1120px, 100%);
  max-height: min(88vh, 920px);
  border: 1px solid rgba(218, 226, 236, 0.95);
  border-radius: 12px;
  background:
    linear-gradient(180deg, #ffffff 0, #f6f9fd 118px, #eef3f9 100%);
  box-shadow: 0 34px 90px rgba(2, 8, 20, 0.46);
  outline: none;
}

.gn-sku-modal-bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  justify-self: stretch;
  width: 100%;
  min-height: 48px;
  margin: 0;
  padding: 7px 14px;
  border-radius: 12px 12px 0 0;
  color: var(--gn-white);
  background:
    linear-gradient(135deg, var(--gn-blue), #0e62d7);
  box-shadow: 0 10px 22px rgba(25, 118, 243, 0.2);
}

.gn-sku-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  min-width: 32px;
  height: 32px;
  min-height: 32px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 6px;
  color: var(--gn-white);
  background: rgba(255, 255, 255, 0.12);
  font: inherit;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.gn-sku-modal-close:hover,
.gn-sku-modal-close:focus {
  border-color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.2);
}

.gn-sku-modal-bar h2 {
  margin: 0;
  color: var(--gn-white);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.08;
}

.gn-sku-modal-bar p {
  display: none;
  margin: 0;
}

.gn-sku-modal-body {
  overflow: auto;
  margin: 0 10px 10px;
  padding: clamp(14px, 2.2vw, 24px);
  border: 1px solid rgba(218, 226, 236, 0.78);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(249, 251, 254, 0.98), rgba(238, 244, 251, 0.98)),
    repeating-linear-gradient(90deg, rgba(30, 42, 60, 0.04) 0, rgba(30, 42, 60, 0.04) 1px, transparent 1px, transparent 76px),
    repeating-linear-gradient(0deg, rgba(30, 42, 60, 0.035) 0, rgba(30, 42, 60, 0.035) 1px, transparent 1px, transparent 76px);
}

.gn-sku-modal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gn-sku-modal-grid .gn-terminal-sku-card {
  border-color: rgba(204, 216, 230, 0.92);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(12, 18, 28, 0.08);
}

.gn-sku-modal-grid .gn-terminal-sku-card figure {
  padding: 14px;
  background:
    radial-gradient(circle at 50% 46%, rgba(25, 118, 243, 0.07), transparent 58%),
    linear-gradient(180deg, #ffffff, #f4f7fb);
}

.gn-sku-modal-grid .gn-terminal-sku-card div {
  min-height: 172px;
  padding: 15px 16px 16px;
}

.gn-sku-modal-grid .gn-terminal-sku-card h3 {
  font-size: clamp(16px, 1.1vw, 20px);
}

.gn-terminal-path-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gn-terminal-path-card,
.gn-terminal-kit-grid article,
.gn-terminal-step-list article,
.gn-terminal-application-grid article,
.gn-terminal-faq-grid article {
  position: relative;
  min-height: 240px;
  padding: clamp(22px, 2.4vw, 34px);
  border: 1px solid var(--gn-line);
  border-radius: var(--gn-radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 253, 0.94)),
    radial-gradient(circle at 12% 0%, rgba(25, 118, 243, 0.14), transparent 38%);
  box-shadow: 0 18px 42px rgba(12, 18, 28, 0.07);
}

.gn-terminal-path-card::before,
.gn-terminal-kit-grid article::before,
.gn-terminal-application-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gn-blue), rgba(25, 118, 243, 0.18));
}

.gn-terminal-path-card span,
.gn-terminal-kit-grid span,
.gn-terminal-step-list span,
.gn-terminal-application-grid span {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  margin-bottom: 22px;
  border-radius: 999px;
  color: var(--gn-white);
  background: var(--gn-blue);
  font-size: 13px;
  font-weight: 900;
}

.gn-terminal-path-card h3,
.gn-terminal-kit-grid h3,
.gn-terminal-step-list h3,
.gn-terminal-application-grid h3,
.gn-terminal-faq-grid h3 {
  margin: 0 0 12px;
  color: var(--gn-ink);
  font-size: clamp(21px, 1.55vw, 29px);
  line-height: 1.12;
}

.gn-terminal-path-card p,
.gn-terminal-kit-grid p,
.gn-terminal-step-list p,
.gn-terminal-application-grid p,
.gn-terminal-faq-grid p {
  margin: 0;
  color: var(--gn-muted);
  line-height: 1.66;
}

.gn-terminal-comparison {
  align-content: start;
  background:
    linear-gradient(90deg, rgba(10, 17, 27, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(10, 17, 27, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
  background-size: 88px 88px, 88px 88px, auto;
}

.gn-terminal-comparison-head {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 0.7fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: end;
  margin-bottom: 22px;
}

.gn-terminal-comparison-head h2 {
  margin: 0;
  color: var(--gn-ink);
  font-size: clamp(34px, 4vw, 64px);
  font-weight: 900;
  line-height: 1.03;
}

.gn-terminal-compare-note {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(25, 118, 243, 0.2);
  border-radius: 8px;
  color: var(--gn-white);
  background:
    linear-gradient(135deg, #0d1a2b 0%, #102f5d 58%, #1976f3 100%);
  box-shadow: 0 22px 48px rgba(25, 118, 243, 0.2);
}

.gn-terminal-compare-note::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
}

.gn-terminal-compare-note span,
.gn-terminal-compare-note strong,
.gn-terminal-compare-note p {
  position: relative;
  z-index: 1;
}

.gn-terminal-compare-note span {
  display: block;
  color: #9fc7ff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.gn-terminal-compare-note strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(20px, 1.7vw, 28px);
  line-height: 1.14;
}

.gn-terminal-compare-note p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.62;
}

.gn-terminal-compare-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.gn-terminal-compare-strip article {
  position: relative;
  min-height: 148px;
  padding: 20px 20px 20px 74px;
  border: 1px solid rgba(207, 219, 234, 0.95);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 253, 0.96));
  box-shadow: 0 16px 34px rgba(12, 18, 28, 0.06);
}

.gn-terminal-compare-strip span {
  position: absolute;
  left: 20px;
  top: 20px;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: var(--gn-white);
  background: var(--gn-blue);
  font-size: 12px;
  font-weight: 900;
}

.gn-terminal-compare-strip strong {
  display: block;
  color: var(--gn-ink);
  font-size: 18px;
  line-height: 1.18;
}

.gn-terminal-compare-strip p {
  margin: 8px 0 0;
  color: var(--gn-muted);
  font-size: 14px;
  line-height: 1.55;
}

.gn-terminal-compare-table {
  overflow: hidden;
  border: 1px solid rgba(190, 206, 226, 0.95);
  border-radius: 8px;
  background: var(--gn-white);
  box-shadow: 0 26px 64px rgba(12, 18, 28, 0.12);
}

.gn-terminal-compare-table > div {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(250px, 0.92fr) minmax(420px, 1.5fr) minmax(260px, 0.96fr);
  border-bottom: 1px solid rgba(210, 222, 236, 0.92);
}

.gn-terminal-compare-table > div:last-child {
  border-bottom: 0;
}

.gn-terminal-compare-table .gn-terminal-compare-head {
  background:
    linear-gradient(135deg, #0c1829, #123e79 64%, #1976f3);
}

.gn-terminal-compare-table .gn-terminal-compare-head > span {
  color: #d7e7ff;
  font-size: 12px;
  letter-spacing: 0;
}

.gn-terminal-compare-table > div > strong,
.gn-terminal-compare-table > div > span {
  display: block;
  min-width: 0;
  padding: 22px;
  border-right: 1px solid rgba(210, 222, 236, 0.92);
  color: var(--gn-ink-soft);
  line-height: 1.58;
}

.gn-terminal-compare-table .gn-terminal-compare-head > span,
.gn-terminal-compare-table > div > strong:last-child,
.gn-terminal-compare-table > div > span:last-child {
  border-right: 0;
}

.gn-terminal-compare-table > div > strong {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gn-ink);
  font-size: 17px;
  line-height: 1.28;
}

.gn-compare-family-title {
  display: block;
}

.gn-compare-family-title small {
  display: block;
  margin-top: 5px;
  color: var(--gn-blue);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.gn-terminal-compare-row {
  background:
    linear-gradient(90deg, rgba(25, 118, 243, 0.055), rgba(255, 255, 255, 0) 26%),
    #ffffff;
}

.gn-terminal-compare-row:nth-child(odd) {
  background:
    linear-gradient(90deg, rgba(25, 118, 243, 0.075), rgba(255, 255, 255, 0) 28%),
    #f8fbff;
}

.gn-compare-index {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: var(--gn-white);
  background: var(--gn-blue);
  font-size: 12px;
  font-weight: 900;
}

.gn-terminal-compare-table > div > strong::before,
.gn-terminal-compare-table > div > span::before {
  display: none;
  content: attr(data-label);
}

.gn-compare-sku-list {
  display: flex !important;
  flex-wrap: wrap;
  align-content: center;
  gap: 7px;
}

.gn-compare-sku-list em {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 8px;
  border: 1px solid rgba(25, 118, 243, 0.2);
  border-radius: 6px;
  color: #0f4d9a;
  background: rgba(25, 118, 243, 0.08);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.2;
}

.gn-compare-check {
  background:
    linear-gradient(90deg, rgba(25, 118, 243, 0.1), rgba(255, 255, 255, 0) 14%);
}

.gn-terminal-split,
.gn-terminal-kit-layout,
.gn-terminal-step-layout,
.gn-terminal-spec-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(620px, 1.18fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.gn-terminal-copy p:not(.gn-eyebrow),
.gn-terminal-spec-layout p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.76;
}

.gn-terminal-spec-layout p {
  color: var(--gn-muted);
}

.gn-terminal-proof-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.gn-terminal-proof-list div {
  position: relative;
  padding: 18px 20px 18px 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--gn-radius);
  background: rgba(255, 255, 255, 0.045);
}

.gn-terminal-proof-list div::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 23px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--gn-blue);
  border-radius: 50%;
  background: var(--gn-white);
}

.gn-terminal-proof-list strong {
  display: block;
  color: var(--gn-white);
  font-size: 16px;
}

.gn-terminal-proof-list span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.58;
}

.gn-terminal-before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.gn-terminal-before-after figure,
.gn-terminal-step-media-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--gn-radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
}

.gn-terminal-before-after img,
.gn-terminal-step-media-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gn-terminal-before-after img {
  transform: scale(1.08);
  filter: contrast(1.06) saturate(1.04);
}

.gn-terminal-before-after figure:first-child img {
  object-position: 52% 50%;
}

.gn-terminal-before-after figure:last-child img {
  object-position: 50% 48%;
}

.gn-terminal-before-after figure {
  display: grid;
  grid-template-rows: minmax(250px, 320px) auto;
}

.gn-terminal-before-after figcaption {
  display: grid;
  align-content: center;
  min-height: 88px;
  padding: 14px 20px;
}

.gn-terminal-before-after figcaption span,
.gn-terminal-map-image figcaption span {
  display: block;
  color: #72aeff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.gn-terminal-before-after figcaption strong,
.gn-terminal-map-image figcaption strong {
  display: block;
  margin-top: 7px;
  color: var(--gn-white);
  font-size: 18px;
  line-height: 1.35;
}

.gn-terminal-wide-image,
.gn-terminal-product-image,
.gn-terminal-map-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--gn-line);
  border-radius: var(--gn-radius);
  background: var(--gn-white);
  box-shadow: 0 22px 54px rgba(12, 18, 28, 0.12);
}

.gn-section-dark .gn-terminal-wide-image {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.gn-terminal-wide-image img,
.gn-terminal-product-image img,
.gn-terminal-map-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gn-terminal-product-image img,
.gn-terminal-map-image img {
  object-fit: contain;
  background: var(--gn-white);
}

.gn-terminal-kit-layout {
  grid-template-columns: minmax(320px, 0.9fr) minmax(620px, 1.1fr);
  align-items: stretch;
}

.gn-terminal-product-image {
  display: grid;
  place-items: center;
  padding: clamp(12px, 2vw, 24px);
}

.gn-terminal-kit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gn-terminal-kit-grid article {
  min-height: 210px;
}

.gn-terminal-kit-grid span {
  width: auto;
  padding-inline: 14px;
}

.gn-terminal-map-image {
  width: min(1320px, 100%);
  margin: 0 auto;
}

.gn-terminal-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(1180px, 100%);
  margin: 24px auto 0;
}

.gn-terminal-detail-grid .gn-terminal-map-image {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(220px, 0.46fr) minmax(220px, 0.54fr);
  grid-template-rows: 260px;
}

.gn-terminal-detail-grid .gn-terminal-map-image img {
  object-fit: contain;
  padding: clamp(16px, 1.9vw, 28px);
  background:
    radial-gradient(circle at 50% 46%, rgba(25, 118, 243, 0.08), transparent 48%),
    #ffffff;
}

.gn-terminal-map-image figcaption {
  display: grid;
  align-content: center;
  padding: 22px 24px;
  background: var(--gn-dark-2);
}

.gn-terminal-map-image figcaption strong {
  color: var(--gn-white);
}

.gn-terminal-steps .gn-section-heading h2,
.gn-terminal-faq .gn-section-heading h2 {
  color: var(--gn-white);
}

.gn-terminal-step-layout {
  grid-template-columns: minmax(620px, 1.18fr) minmax(320px, 0.82fr);
}

.gn-terminal-step-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gn-terminal-step-media-grid figure {
  aspect-ratio: 1.16 / 1;
  background: #ffffff;
}

.gn-terminal-step-media-grid img {
  object-fit: contain;
  padding: 8px;
  background: #ffffff;
}

.gn-terminal-step-list {
  grid-template-columns: 1fr;
}

.gn-terminal-step-list article,
.gn-terminal-faq-grid article {
  min-height: auto;
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
  box-shadow: none;
}

.gn-terminal-step-list span {
  width: auto;
  height: auto;
  margin-bottom: 10px;
  padding: 0;
  color: #72aeff;
  background: transparent;
}

.gn-terminal-step-list h3,
.gn-terminal-faq-grid h3 {
  color: var(--gn-white);
}

.gn-terminal-step-list p,
.gn-terminal-faq-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.gn-terminal-spec-layout {
  grid-template-columns: minmax(320px, 0.72fr) minmax(540px, 1fr);
}

.gn-terminal-spec-table {
  overflow: hidden;
  border: 1px solid var(--gn-line);
  border-radius: var(--gn-radius);
  background: var(--gn-white);
  box-shadow: 0 18px 42px rgba(12, 18, 28, 0.08);
}

.gn-terminal-spec-table div {
  display: grid;
  grid-template-columns: minmax(170px, 0.42fr) minmax(0, 1fr);
  min-height: 70px;
  border-bottom: 1px solid var(--gn-line);
}

.gn-terminal-spec-table div:last-child {
  border-bottom: 0;
}

.gn-terminal-spec-table span,
.gn-terminal-spec-table strong {
  display: flex;
  align-items: center;
  padding: 18px 22px;
  font-size: clamp(16px, 1.4vw, 22px);
}

.gn-terminal-spec-table span {
  color: var(--gn-white);
  background: #7f858d;
}

.gn-terminal-spec-table strong {
  color: var(--gn-ink);
  background: #f1f3f6;
}

.gn-terminal-application-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
}

.gn-terminal-application-grid article {
  overflow: hidden;
  min-height: 250px;
  padding: 0;
}

.gn-terminal-application-grid figure {
  margin: 0;
  aspect-ratio: 1.16 / 1;
  overflow: hidden;
  border-bottom: 1px solid var(--gn-line);
  background: #e8edf4;
}

.gn-terminal-application-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gn-terminal-application-grid span {
  margin: 22px 24px 16px;
}

.gn-terminal-application-grid h3,
.gn-terminal-application-grid p {
  margin-right: 24px;
  margin-left: 24px;
}

.gn-terminal-application-grid p {
  margin-bottom: 26px;
}

.gn-terminal-faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 1180px) {
  .gn-terminal-split,
  .gn-terminal-kit-layout,
  .gn-terminal-step-layout,
  .gn-terminal-spec-layout {
    grid-template-columns: 1fr;
  }

  .gn-terminal-path-grid,
  .gn-terminal-kit-grid,
  .gn-terminal-application-grid,
  .gn-terminal-sku-grid,
  .gn-sku-modal-grid,
  .gn-terminal-sku-family-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gn-terminal-glance-grid {
    grid-template-columns: 1fr;
  }

  .gn-terminal-glance-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--gn-line);
  }

  .gn-terminal-glance-grid article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 900px) {
  .gn-terminal-hero {
    padding-top: 64px;
  }

  .gn-terminal-hero-bg,
  .gn-terminal-hero-shade {
    top: 64px;
    height: calc(100% - 64px);
  }

  .gn-terminal-hero-content {
    min-height: calc(100svh - 64px);
    min-height: calc(100vh - 64px);
  }

  .gn-terminal-comparison-head,
  .gn-terminal-compare-strip {
    grid-template-columns: 1fr;
  }

  .gn-terminal-compare-note {
    padding: 20px;
  }

  .gn-terminal-compare-strip article {
    min-height: auto;
  }

  .gn-terminal-compare-table {
    display: grid;
    gap: 14px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .gn-terminal-compare-table > div {
    grid-template-columns: 1fr;
    overflow: hidden;
    border: 1px solid rgba(210, 222, 236, 0.95);
    border-radius: 8px;
    background: var(--gn-white);
    box-shadow: 0 16px 34px rgba(12, 18, 28, 0.07);
  }

  .gn-terminal-compare-table .gn-terminal-compare-head {
    display: none;
  }

  .gn-terminal-compare-table > div > strong,
  .gn-terminal-compare-table > div > span {
    border-right: 0;
    border-bottom: 1px solid rgba(210, 222, 236, 0.92);
  }

  .gn-terminal-compare-table > div > strong::before,
  .gn-terminal-compare-table > div > span::before {
    display: block;
    margin-bottom: 7px;
    color: var(--gn-blue);
    font-size: 11px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .gn-terminal-compare-table > div > span:last-child {
    border-bottom: 0;
  }

  .gn-sku-modal {
    padding: 12px;
  }

  .gn-sku-modal-panel {
    max-height: 90vh;
  }

  .gn-sku-modal-bar {
    align-items: center;
  }

  .gn-terminal-sku-modal-entry {
    grid-template-columns: 1fr;
  }

  .gn-terminal-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .gn-category-card-link:hover,
  .gn-category-card-link:focus-visible {
    transform: none;
  }

  .gn-terminal-hero-bg {
    object-position: 66% center;
  }

  .gn-terminal-hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 8, 14, 0.94), rgba(5, 8, 14, 0.78) 56%, rgba(5, 8, 14, 0.62)),
      repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 82px),
      repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 82px);
  }

  .gn-terminal-hero-content {
    align-content: end;
    padding: 60px 18px 28px;
  }

  .gn-terminal-geo {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .gn-terminal-geo-panel {
    padding: 22px;
  }

  .gn-terminal-geo-labels {
    display: grid;
    gap: 8px;
  }

  .gn-terminal-geo-labels span {
    text-align: left;
  }

  .gn-terminal-geo-tags span {
    min-height: 32px;
    font-size: 12px;
  }

  .gn-terminal-hero h1,
  .gn-terminal-copy h2,
  .gn-terminal-spec-layout h2 {
    font-size: 34px;
  }

  .gn-terminal-path-grid,
  .gn-terminal-kit-grid,
  .gn-terminal-step-list,
  .gn-terminal-application-grid,
  .gn-terminal-faq-grid,
  .gn-terminal-before-after,
  .gn-terminal-detail-grid,
  .gn-terminal-step-media-grid,
  .gn-terminal-sku-grid,
  .gn-sku-modal-grid,
  .gn-terminal-sku-family-grid {
    grid-template-columns: 1fr;
  }

  .gn-sku-modal-panel {
    max-height: 92vh;
  }

  .gn-sku-modal-bar {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    min-height: 46px;
    padding: 7px 10px;
  }

  .gn-sku-modal-close {
    justify-self: start;
  }

  .gn-sku-modal-body {
    padding: 12px;
  }

  .gn-terminal-sku-modal-entry .gn-button {
    width: 100%;
  }

  .gn-terminal-path-card,
  .gn-terminal-kit-grid article,
  .gn-terminal-application-grid article {
    min-height: auto;
  }

  .gn-terminal-detail-grid .gn-terminal-map-image {
    grid-template-columns: 1fr;
    grid-template-rows: 240px auto;
  }

  .gn-terminal-spec-table div {
    grid-template-columns: 1fr;
  }
}
