:root {
  --ink: #050505;
  --ink-2: #111111;
  --panel: #171717;
  --panel-2: #222222;
  --paper: #f6f6f2;
  --muted: #b9b9b2;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(5, 5, 5, 0.14);
  --accent: #ff3d00;
  --accent-2: #ff6a3a;
  --cyan: #11a6bd;
  --green: #4fb870;
  --max: 1180px;
  --wide: 1440px;
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--paper);
  background: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  width: min(100% - 32px, var(--wide));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 2px solid var(--paper);
  color: var(--accent);
  font-weight: 900;
}

.brand-mark-image {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  text-transform: uppercase;
}

.nav-item {
  position: relative;
}

.nav-products-row {
  display: flex;
  align-items: center;
}

.nav-products-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-products-toggle {
  display: none;
}

.nav-products-link::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  display: grid;
  width: 280px;
  gap: 0;
  padding: 15px;
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, 8px);
  background: #111;
  border: 1px solid var(--line);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.28);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-dropdown strong {
  padding: 4px 10px 10px;
  color: var(--accent-2);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.nav-dropdown a {
  padding: 9px 10px;
  border: 0;
  color: var(--paper);
  font-size: 13px;
  line-height: 1.25;
  text-transform: none;
}

.nav-dropdown a:hover {
  background: rgba(255, 61, 0, 0.14);
  color: #fff;
}

.nav-products:hover .nav-dropdown,
.nav-products:focus-within .nav-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.nav-links a {
  padding: 28px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active,
.nav-item.active > .nav-products-link {
  color: var(--paper);
  border-bottom-color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--paper);
  border-radius: var(--radius);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 0 auto;
  content: "";
}

.menu-toggle span::before {
  transform: translateY(-7px);
}

.menu-toggle span::after {
  transform: translateY(5px);
}

.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: 760;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-2);
}

.btn-light {
  background: var(--paper);
  color: var(--ink);
}

.btn-outline {
  color: var(--paper);
  border-color: var(--line);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--accent);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.78) 45%, rgba(5, 5, 5, 0.2) 100%),
    radial-gradient(circle at 78% 22%, rgba(255, 61, 0, 0.26), transparent 32%),
    linear-gradient(135deg, #050505 0%, #171717 55%, #2a160f 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, transparent, black 20%, black 88%, transparent);
  opacity: 0.55;
}

.hero-inner {
  position: relative;
  width: min(100% - 32px, var(--wide));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.8fr);
  gap: 32px;
  align-items: center;
  padding: 86px 0 112px;
}

.hero-inner > *,
.section-head > *,
.split > *,
.detail-layout > *,
.cta-band > *,
.product-card,
.solution-card,
.panel {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-2);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.page-hero h1 {
  margin: 20px 0 18px;
  max-width: 900px;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero p {
  max-width: 620px;
  color: #deded7;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-device {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
}

.hero-device::before {
  content: "";
  position: absolute;
  width: 88%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transform: rotate(12deg);
}

.device-svg {
  width: min(100%, 620px);
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.52));
}

.signal-line {
  stroke: var(--accent);
  stroke-width: 3;
  fill: none;
  stroke-dasharray: 9 13;
  animation: dash 12s linear infinite;
}

@keyframes dash {
  to {
    stroke-dashoffset: -180;
  }
}

.section {
  padding: 92px 0;
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.section-dark {
  background: var(--ink);
  color: var(--paper);
}

.section-muted {
  background: #101010;
}

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.wide-container {
  width: min(100% - 32px, var(--wide));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(260px, 0.5fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 42px;
}

.section-head h2,
.split h2,
.panel h2 {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 66px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

.section-head p,
.split p,
.panel p,
.muted {
  color: var(--muted);
}

.section-light .section-head p,
.section-light .muted,
.section-light .split p,
.section-light .panel p {
  color: #555550;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.solution-card {
  min-height: 340px;
  padding: 28px;
  background: #151515;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.solution-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.1;
  text-transform: uppercase;
}

.solution-card p {
  color: #c8c8c0;
}

.solution-art {
  height: 118px;
  margin-top: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 61, 0, 0.24), transparent 62%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08) 1px, transparent 1px, transparent 24px);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric {
  min-height: 150px;
  padding: 26px 24px;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric b {
  display: block;
  font-size: 36px;
  color: var(--accent);
}

.metric span {
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  background: #151515;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 100%;
}

.product-card.light {
  background: white;
  color: var(--ink);
  border-color: var(--line-dark);
}

.homepage-product-card > a {
  display: grid;
  height: 100%;
  grid-template-rows: 260px 1fr;
}

.homepage-product-card .product-media {
  position: relative;
  aspect-ratio: auto;
  height: 260px;
  min-height: 0;
  overflow: hidden;
  padding: 24px;
}

.product-media {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 61, 0, 0.12), transparent 44%),
    #0d0d0d;
  padding: 30px;
}

.gateway-hero-image,
.gateway-main-image,
.gateway-card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.homepage-product-card .gateway-card-image {
  position: absolute;
  inset: 24px;
  width: calc(100% - 48px);
  height: calc(100% - 48px);
  max-width: none;
  max-height: none;
  object-fit: contain;
}

.gateway-hero-stage {
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 20px;
}

.gateway-hero-stage img {
  width: min(100%, 620px);
  filter: drop-shadow(0 26px 36px rgba(0, 0, 0, 0.36));
}

.gateway-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 36px;
  align-items: center;
}

.hero .gateway-hero-grid h1,
.page-hero .gateway-hero-grid h1 {
  font-size: clamp(38px, 5vw, 76px);
  line-height: 1.02;
  max-width: 760px;
  text-wrap: balance;
}

.page-hero .contact-hero-copy h1 {
  font-size: clamp(38px, 4.8vw, 72px);
  line-height: 1.03;
  max-width: 820px;
}

.page-hero .gateway-hero-grid p {
  max-width: 680px;
}

.gateway-quick-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.gateway-quick-spec {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.gateway-quick-spec b {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
  color: var(--paper);
}

.gateway-quick-spec span {
  color: var(--muted);
  font-size: 13px;
}

.gateway-feature-grid,
.gateway-application-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.gateway-feature,
.gateway-application {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  padding: 22px;
}

.gateway-feature h3,
.gateway-application h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.18;
}

.gateway-feature p,
.gateway-application p {
  margin: 0;
  color: var(--muted);
}

.product-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-category-card {
  border: 1px solid rgba(5, 5, 5, 0.12);
  background: #fff;
}

.product-category-card a {
  display: grid;
  min-height: 100%;
}

.product-category-media {
  display: grid;
  min-height: 230px;
  place-items: center;
  padding: 24px;
  background: #f4f6f8;
}

.product-category-media img {
  width: 100%;
  height: 190px;
  object-fit: contain;
}

.product-category-body {
  padding: 28px;
  color: #101828;
}

.product-category-body h3 {
  margin: 0 0 10px;
  color: #111;
  font-size: 30px;
  line-height: 1.08;
}

.product-category-body p {
  min-height: 58px;
  margin: 0 0 18px;
  color: #344054;
  font-size: 16px;
  line-height: 1.45;
}

.product-category-body span {
  color: #0b82d8;
  font-weight: 800;
}

.product-category-body span::before {
  content: "\2197";
  margin-right: 10px;
}

.gateway-overview {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 36px;
  align-items: center;
}

.gateway-media-stage {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #101010;
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 22px;
}

.gateway-media-stage.light {
  background: #f0f0ec;
}

.gateway-spec-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.74fr);
  gap: 28px;
  align-items: start;
}

.gateway-spec-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.gateway-spec-table th,
.gateway-spec-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
}

.gateway-spec-table th {
  width: 32%;
  color: var(--muted);
  font-weight: 620;
}

.gateway-resource-box {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #101010;
}

.gateway-resource-box p {
  color: var(--muted);
}

.gateway-resource-box .btn {
  width: 100%;
  margin-top: 10px;
}

.gateway-order-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: 32px;
  align-items: center;
}

.gateway-quote-panel {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.gateway-field {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
  color: #39414a;
  font-size: 13px;
  font-weight: 760;
}

.gateway-field input,
.gateway-field select,
.gateway-field textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid #cbd5df;
  border-radius: 4px;
  padding: 10px 12px;
  font: inherit;
}

.gateway-field textarea { min-height: 100px; resize: vertical; }

.gateway-tab-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.gateway-tab {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

.gateway-tab.active {
  color: var(--paper);
  border-color: var(--accent);
  background: rgba(255, 61, 0, 0.12);
}

.gateway-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
}

.gateway-badge {
  padding: 5px 8px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.about-hero {
  position: relative;
  min-height: 720px;
  align-items: end;
  background: #050505;
  border-bottom: 1px solid var(--line);
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.76) 48%, rgba(5, 5, 5, 0.24) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.18) 0%, rgba(5, 5, 5, 0.46) 100%);
  pointer-events: none;
}

.about-hero-media {
  position: absolute;
  inset: 0;
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 760px);
  margin: 0 auto;
  padding: 96px 0 112px;
}

.about-hero h1 {
  margin: 16px 0 18px;
  font-size: clamp(44px, 6vw, 92px);
  line-height: 0.96;
  text-transform: uppercase;
  text-wrap: balance;
}

.about-hero p {
  max-width: 680px;
  color: #e3e3dc;
  font-size: 19px;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.about-proof-strip {
  padding-top: 34px;
  padding-bottom: 34px;
}

.about-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.about-proof-item {
  padding: 18px 18px 20px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #fff;
}

.about-proof-item b {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 30px;
  line-height: 1;
}

.about-proof-item span {
  color: #555550;
}

.about-intro-grid,
.about-factory-grid,
.about-map-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.78fr);
  gap: 34px;
  align-items: center;
}

.about-intro-grid h2,
.about-factory-copy h2,
.about-map-grid h2 {
  margin: 14px 0 18px;
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1;
  text-transform: uppercase;
  text-wrap: balance;
}

.about-intro-grid p,
.about-factory-copy p,
.about-map-grid p {
  color: #555550;
  font-size: 17px;
}

.about-photo-card,
.about-map-card,
.about-cert-card {
  margin: 0;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.about-photo-card img,
.about-map-card img,
.about-cert-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo-card figcaption {
  padding: 14px 16px 16px;
  color: #555550;
  font-size: 13px;
}

.about-photo-card-large img {
  aspect-ratio: 4 / 3;
}

.about-photo-card-wide img {
  aspect-ratio: 16 / 9;
}

.about-factory-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.about-factory-gallery .about-photo-card-wide {
  grid-column: 1 / -1;
}

.about-capability-grid,
.about-industry-grid,
.about-cert-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.about-capability,
.about-industry {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  padding: 22px;
}

.about-capability span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.about-capability h3,
.about-industry h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.16;
}

.about-capability p,
.about-industry p {
  margin: 0;
  color: var(--muted);
}

.about-industry {
  background: #151515;
}

.about-ip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.about-ip-stat {
  padding: 18px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #fff;
}

.about-ip-stat b {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
}

.about-ip-stat span {
  color: #555550;
}

.about-cert-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-cert-card img {
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.about-cert-card {
  padding: 12px;
  background: #fff;
}

.about-map-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.9fr);
}

.about-map-card {
  background: #0d0d0d;
}

.about-map-card img {
  aspect-ratio: 16 / 10;
}

.about-service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.about-service-list span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--paper);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.about-cta {
  align-items: center;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: #555550;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

.company-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 34px;
  align-items: start;
}

.company-intro-grid h2 {
  margin: 14px 0 18px;
  font-size: clamp(34px, 4.5vw, 64px);
  line-height: 1;
  text-transform: uppercase;
}

.company-intro-grid p {
  color: #555550;
  font-size: 17px;
}

.company-intro-map {
  margin: 34px 0 0;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
  background: #eef1f3;
}

.company-intro-map img {
  display: block;
  width: 100%;
  aspect-ratio: 2.228 / 1;
  object-fit: contain;
}

.company-intro-map figcaption {
  padding: 12px 16px;
  border-top: 1px solid var(--line-dark);
  background: #fff;
  color: #555550;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.company-intro-panel {
  padding: 0;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.company-intro-media {
  margin: 0;
  border-bottom: 1px solid var(--line-dark);
  background: #061624;
}

.company-intro-media img {
  width: 100%;
  aspect-ratio: 1.96 / 1;
  display: block;
  object-fit: contain;
  object-position: center;
}

.company-intro-panel p {
  margin: 0;
  padding: 24px 26px 0;
}

.company-intro-panel p + p {
  padding-top: 14px;
  padding-bottom: 26px;
}

.company-intro-panel p:last-child {
  margin-bottom: 0;
}

.company-contact-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 56px;
}

.company-contact-strip div {
  padding: 18px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #fff;
}

.company-contact-strip span {
  display: block;
  margin-bottom: 8px;
  color: #777;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.company-contact-strip strong {
  display: block;
  color: #17212b;
  font-size: 18px;
  line-height: 1.24;
}

.product-detail-hero {
  min-height: 560px;
}

.product-detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 42px;
  align-items: center;
}

.product-detail-hero h1 {
  font-size: clamp(40px, 5vw, 78px);
  line-height: 1.02;
  max-width: 820px;
}

.product-headline {
  margin: 10px 0 14px;
  color: var(--accent-2);
  font-size: 18px;
  font-weight: 760;
  line-height: 1.35;
}

.product-detail-hero-media {
  min-height: 380px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 61, 0, 0.18), transparent 50%),
    #111;
  padding: 26px;
}

.product-detail-hero-media img {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.36));
}

.product-detail-nav {
  background: #111;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-detail-nav .container {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  white-space: nowrap;
  padding: 14px 0;
}

.product-detail-nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

.product-detail-nav a:hover {
  color: var(--paper);
}

.product-seo-intro-grid,
.product-interface-grid,
.product-spec-grid,
.product-resource-grid,
.product-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.72fr);
  gap: 34px;
  align-items: start;
}

.product-seo-intro-grid p,
.product-interface-grid p,
.product-resource-grid p,
.product-faq-grid p {
  color: #555550;
}

.product-seo-points {
  display: grid;
  gap: 14px;
}

.product-seo-points div,
.product-resource-cards div {
  padding: 18px 20px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #fff;
}

.product-seo-points b,
.product-resource-cards b {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  text-transform: uppercase;
}

.product-seo-points span,
.product-resource-cards span {
  color: #555550;
}

.product-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-feature {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #151515;
  padding: 22px;
}

.product-feature span {
  display: block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 10px;
}

.product-feature h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

.product-feature p {
  margin: 0;
  color: var(--muted);
}

.product-spec-table {
  margin: 0;
}

.product-resource-cards {
  display: grid;
  gap: 14px;
}

.download-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.download-library-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 24px;
  align-items: end;
}

.download-library-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.download-library-stats span {
  padding: 14px 16px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  color: #667085;
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.download-library-stats b {
  display: block;
  margin-bottom: 4px;
  color: #111;
  font-size: 18px;
  font-weight: 900;
  text-transform: none;
}

.download-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: end;
  justify-content: space-between;
  margin-top: 26px;
}

.download-search {
  display: grid;
  gap: 8px;
  min-width: min(100%, 360px);
}

.download-search span {
  color: #111;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.download-search input {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  border-radius: 4px;
  background: #fff;
  color: #111;
}

.download-search input:focus {
  outline: 2px solid rgba(255, 61, 0, 0.18);
  border-color: var(--accent);
}

.download-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.download-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  border-radius: 4px;
  background: #fff;
  color: #111;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.download-filter.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.download-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
}

.download-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.download-category {
  display: inline-block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.download-file-mark {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 9px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.download-card h3 {
  margin: 0 0 10px;
  color: #111;
  font-size: 21px;
  line-height: 1.25;
}

.download-card p {
  margin: 0;
  color: #667085;
  line-height: 1.55;
}

.download-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.download-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  background: #f3f5f7;
  color: #17212b;
  font-size: 12px;
  font-weight: 760;
}

.download-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 46px;
  padding: 12px 18px;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
}

.download-card-action:hover {
  background: var(--accent);
  color: #fff;
}

.download-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.product-faq-list {
  display: grid;
  gap: 12px;
}

.download-empty {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px dashed rgba(15, 23, 42, 0.18);
  color: #667085;
}

.support-hero {
  min-height: 520px;
  padding: 76px 0 64px;
}

.support-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(280px, 0.48fr);
  gap: 44px;
  align-items: end;
}

.support-hero h1 {
  max-width: 900px;
  font-size: clamp(52px, 7vw, 106px);
}

.support-hero-panel {
  display: grid;
  gap: 10px;
}

.support-hero-panel div {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.support-hero-panel b {
  display: block;
  color: #fff;
  font-size: 32px;
  line-height: 1;
}

.support-hero-panel span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.support-shortcuts {
  padding-top: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.support-shortcut-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.support-shortcut-grid a {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
  color: #111;
  text-decoration: none;
}

.support-shortcut-grid a:hover {
  border-color: var(--accent);
}

.support-shortcut-grid span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.support-shortcut-grid strong {
  font-size: 19px;
  line-height: 1.2;
}

.support-shortcut-grid em {
  color: #667085;
  font-style: normal;
  line-height: 1.45;
}

.support-download-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  scroll-margin-top: 110px;
}

.download-sidebar {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
}

.download-sidebar h2,
.download-results-head h2 {
  margin: 0 0 8px;
  color: #111;
  font-size: 28px;
  line-height: 1.1;
}

.download-sidebar p,
.download-results-head p {
  margin: 0;
  color: #667085;
}

.download-filter-block {
  display: grid;
  gap: 8px;
}

.download-filter-block h3 {
  margin: 0 0 4px;
  color: #111;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.download-filter-block .download-filter {
  width: 100%;
  justify-content: flex-start;
  text-align: left;
}

.download-results-panel {
  min-width: 0;
}

.download-results-head {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 18px;
}

.download-results-head .download-search {
  min-width: min(100%, 420px);
}

.download-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #fff;
}

.download-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.download-table th,
.download-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
  color: #17212b;
  text-align: left;
  vertical-align: middle;
}

.download-table th:first-child,
.download-table td:first-child {
  width: 32%;
}

.download-table th:last-child,
.download-table td:last-child {
  width: 112px;
  min-width: 112px;
}

.download-table th {
  background: #f3f5f7;
  color: #475467;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.download-file-cell {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.download-file-cell > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 32px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.download-file-cell strong {
  display: block;
  color: #111;
  line-height: 1.3;
}

.download-file-cell em {
  display: block;
  margin-top: 5px;
  color: #667085;
  font-size: 13px;
  font-style: normal;
}

.download-actions {
  display: grid;
  gap: 8px;
}

.download-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 10px;
  border: 1px solid rgba(15, 23, 42, 0.18);
  color: #111;
  font-size: 12px;
  font-weight: 860;
  text-decoration: none;
  text-transform: uppercase;
}

.download-actions a:last-child {
  border-color: #111;
  background: #111;
  color: #fff;
}

.download-actions a:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.product-faq-list details {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #fff;
  padding: 16px 18px;
}

.product-faq-list summary {
  cursor: pointer;
  color: #111;
  font-weight: 760;
  font-size: 16px;
}

.product-faq-list p {
  margin: 12px 0 0;
  color: #555550;
}

.solutions-hero {
  min-height: 520px;
  padding: 72px 0;
}

.solutions-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.74fr);
  gap: 42px;
  align-items: center;
}

.solutions-hero .hero-actions {
  margin-top: 28px;
}

.solutions-hero-media {
  min-height: 330px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 61, 0, 0.18), transparent 50%),
    #111;
  padding: 24px;
}

.solutions-hero-media img {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.36));
}

.solutions-category-band {
  padding-top: 64px;
  padding-bottom: 64px;
}

.solutions-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.solutions-category-grid a {
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.solutions-category-grid a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.solutions-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.solutions-card {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #151515;
  overflow: hidden;
}

.solutions-card a {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.solutions-card-media {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 61, 0, 0.14), transparent 48%),
    #0d0d0d;
  padding: 20px;
}

.solutions-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.solutions-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.solutions-card-category {
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.solutions-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.16;
}

.solutions-card p {
  margin: 0;
  color: var(--muted);
}

.solutions-card-model {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.solutions-card-model span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.solutions-card-model strong {
  display: block;
  color: var(--paper);
  line-height: 1.28;
}

.solutions-card-plain {
  display: flex;
  min-height: 360px;
  background:
    linear-gradient(135deg, rgba(255, 61, 0, 0.18), transparent 56%),
    #151515;
}

.solutions-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(340px, 0.86fr);
  gap: 46px;
  align-items: start;
}

.solutions-flow h2 {
  margin: 14px 0 18px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.02;
  text-transform: uppercase;
}

.solutions-flow p {
  color: #555550;
}

.solutions-flow-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-dark);
}

.solutions-flow-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-dark);
}

.solutions-flow-item b {
  color: var(--accent);
}

.solutions-flow-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
}

.solutions-flow-item p {
  margin: 0;
}

.solutions-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.solutions-cta h2 {
  margin: 12px 0 14px;
  font-size: clamp(34px, 4.5vw, 64px);
  line-height: 1;
  text-transform: uppercase;
}

.solutions-cta p {
  max-width: 760px;
  color: var(--muted);
}

.product-card.light .product-media {
  background:
    linear-gradient(135deg, rgba(255, 61, 0, 0.14), transparent 44%),
    #eeeeea;
}

.product-body {
  padding: 22px;
}

.homepage-product-card .product-body {
  display: flex;
  flex-direction: column;
}

.product-body h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.15;
}

.homepage-product-card .product-body h3 {
  min-height: 51px;
}

.homepage-product-card .product-body p {
  min-height: 75px;
  margin-bottom: 16px;
}

.homepage-product-card .gateway-badge-row {
  min-height: 38px;
  align-content: flex-start;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
}

.tag {
  padding: 5px 8px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.58fr);
  gap: 54px;
  align-items: center;
}

.process-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.process-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.process-item b {
  color: var(--accent);
}

.diagram {
  min-height: 440px;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(255, 61, 0, 0.22), transparent 48%),
    repeating-linear-gradient(0deg, transparent, transparent 35px, rgba(255, 255, 255, 0.08) 36px),
    #151515;
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.node {
  position: absolute;
  min-width: 124px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(5, 5, 5, 0.82);
  color: var(--paper);
  font-weight: 760;
}

.node small {
  display: block;
  color: var(--muted);
  font-weight: 500;
}

.node-a { left: 26px; top: 38px; }
.node-b { right: 28px; top: 78px; }
.node-c { left: 50%; top: 50%; transform: translate(-50%, -50%); border-color: var(--accent); }
.node-d { left: 42px; bottom: 42px; }
.node-e { right: 52px; bottom: 54px; }

.cta-band {
  padding: 56px;
  background:
    linear-gradient(110deg, rgba(255, 61, 0, 0.88), rgba(255, 61, 0, 0.44)),
    #151515;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.98;
  text-transform: uppercase;
}

.page-hero {
  min-height: 360px;
  padding: 86px 0 62px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.72)),
    radial-gradient(circle at 78% 18%, rgba(255, 61, 0, 0.24), transparent 30%),
    #141414;
  border-bottom: 1px solid var(--line);
}

.page-hero.about-hero {
  min-height: 720px;
  padding: 0;
  background: #050505;
}

.about-hero h1 span {
  display: block;
}

.contact-hero {
  min-height: 500px;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.72fr);
  gap: 34px;
  align-items: center;
}

.contact-hero-copy {
  min-width: 0;
}

.contact-map-visual {
  margin: 0;
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.contact-map-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: 48% 54%;
  filter: saturate(1.05) contrast(1.04);
}

.contact-map-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(5, 5, 5, 0.68));
  pointer-events: none;
}

.contact-map-visual figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  color: var(--paper);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.contact-chip {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(21, 21, 21, 0.78);
}

.contact-chip span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.contact-chip strong {
  display: block;
  color: var(--paper);
  font-size: 17px;
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}

.contact-simple-section {
  background: #fff;
  color: #17212b;
  padding-top: 86px;
}

.contact-simple-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.contact-simple-form {
  width: 100%;
}

.contact-simple-form h2 {
  margin: 0 0 20px;
  color: #17212b;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: none;
}

.contact-simple-form > p {
  margin: 0 0 56px;
  color: #17212b;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.35;
}

.contact-simple-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 32px;
}

.contact-simple-grid label {
  display: block;
  color: inherit;
  font-size: inherit;
  font-weight: 400;
  text-transform: none;
}

.contact-simple-grid label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.contact-simple-grid .full {
  grid-column: 1 / -1;
}

.contact-simple-grid input,
.contact-simple-grid textarea {
  width: 100%;
  border: 0;
  outline: 0;
  background: #ededed;
  color: #17212b;
  border-radius: 999px;
  padding: 0 46px;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
  box-shadow: none;
}

.contact-simple-grid input {
  min-height: 64px;
}

.contact-simple-grid textarea {
  min-height: 240px;
  padding-top: 34px;
  padding-bottom: 34px;
  border-radius: 38px;
  resize: vertical;
}

.contact-simple-grid input::placeholder,
.contact-simple-grid textarea::placeholder {
  color: #707070;
  opacity: 1;
}

.contact-simple-grid input:focus,
.contact-simple-grid textarea:focus {
  box-shadow: inset 0 0 0 2px rgba(255, 61, 0, 0.34);
}

.contact-simple-submit {
  margin-top: 28px;
  min-width: 170px;
}

.notice-panel {
  margin-bottom: 22px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #151515;
  font-weight: 760;
}

.notice-panel.success {
  border-color: rgba(79, 184, 112, 0.7);
  color: #d8ffe4;
}

.notice-panel.error {
  border-color: rgba(255, 61, 0, 0.72);
  color: #ffd9cf;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form h2 {
  margin: 0;
  font-size: clamp(26px, 3.1vw, 42px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-form > p,
.contact-hint {
  color: var(--muted);
}

.contact-details-panel h2 {
  margin: 0 0 16px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.02;
  text-transform: uppercase;
}

.contact-details-panel .contact-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 26px;
}

.contact-details-panel .quick-actions {
  margin-top: 22px;
}

.contact-form > p {
  margin: 12px 0 24px;
}

.contact-hint {
  margin: 18px 0;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.contact-stack {
  display: grid;
  gap: 18px;
}

.contact-flow {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.contact-step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-step:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid var(--accent);
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.contact-step b {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  text-transform: uppercase;
}

.contact-step small {
  color: var(--muted);
  line-height: 1.35;
}

.contact-list {
  display: grid;
  gap: 0;
  margin-top: 12px;
}

.contact-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.contact-line:last-child {
  border-bottom: 0;
}

.contact-line span {
  color: var(--muted);
}

.contact-line strong {
  text-align: right;
  color: var(--paper);
  overflow-wrap: anywhere;
}

.contact-stack .panel a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--paper);
  font-weight: 760;
}

.contact-stack .panel a:last-child {
  border-bottom: 0;
}

.contact-stack .panel a:hover {
  color: var(--accent-2);
}

.contact-intro {
  max-width: 900px;
}

.filter-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.filter-strip a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 760;
  text-transform: uppercase;
  font-size: 13px;
}

.filter-strip a.active,
.filter-strip a:hover {
  color: white;
  border-color: var(--accent);
  background: rgba(255, 61, 0, 0.14);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 0.52fr);
  gap: 42px;
  align-items: start;
}

.gallery {
  display: grid;
  gap: 16px;
}

.gallery-main {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 61, 0, 0.16), transparent 40%),
    #101010;
  padding: 42px;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.thumb {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #161616;
  padding: 18px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 22px;
  font-size: 15px;
}

.spec-table th,
.spec-table td {
  padding: 13px 0;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.spec-table th {
  width: 38%;
  color: var(--muted);
  font-weight: 620;
}

.panel {
  padding: 28px;
  background: #151515;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.panel + .panel {
  margin-top: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 760;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #0d0d0d;
  color: var(--paper);
  padding: 13px 14px;
}

textarea {
  min-height: 134px;
  resize: vertical;
}

.site-footer {
  padding: 54px 0 34px;
  background: #050505;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(5, minmax(128px, 0.7fr));
  gap: 34px;
}

.footer-grid h3,
.footer-grid h4 {
  margin: 0 0 14px;
}

.footer-logo {
  width: 170px;
  height: auto;
  margin: 0 0 18px;
}

.footer-grid a,
.footer-grid p {
  display: block;
  color: var(--muted);
  margin: 0 0 8px;
}

.copyright {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #777;
  font-size: 13px;
}

@media (max-width: 980px) {
  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #101010;
    border: 1px solid var(--line);
  }

  .nav-item {
    display: block;
  }

  .nav-products-link {
    display: flex;
    justify-content: space-between;
  }

  .nav-products-toggle {
    display: inline-grid;
    width: 34px;
    height: 34px;
    margin-left: auto;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: transparent;
    color: var(--paper);
  }

  .nav-products-toggle::before {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
  }

  .nav-products.open .nav-products-toggle::before {
    transform: rotate(225deg) translate(-1px, -1px);
  }

  .nav-dropdown {
    position: static;
    display: none;
    width: auto;
    margin: 0 14px 8px;
    padding: 8px;
    transform: none;
    box-shadow: none;
  }

  .nav-products.open .nav-dropdown {
    display: grid;
    transform: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero-inner,
  .section-head,
  .split,
  .detail-layout,
  .contact-hero-grid,
  .contact-layout,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-device {
    min-height: 360px;
  }

  .homepage-product-card > a {
    grid-template-rows: 240px 1fr;
  }

  .homepage-product-card .product-media {
    height: 240px;
  }

  .solution-grid,
  .metric-row,
  .product-grid,
  .contact-strip,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gateway-hero-grid,
  .gateway-overview,
  .gateway-spec-layout,
  .gateway-order-band,
  .gateway-feature-grid,
  .gateway-application-grid,
  .download-card-grid,
  .support-hero-grid,
  .support-download-layout {
    grid-template-columns: 1fr;
  }

  .product-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .download-library-head,
  .download-library-stats {
    grid-template-columns: 1fr;
  }

  .support-shortcut-grid {
    grid-template-columns: 1fr;
  }

  .download-sidebar {
    position: static;
  }

  .about-proof-grid,
  .about-capability-grid,
  .about-industry-grid,
  .about-ip-grid,
  .about-cert-grid,
  .about-factory-grid,
  .about-map-grid,
  .about-intro-grid {
    grid-template-columns: 1fr;
  }

  .about-factory-gallery {
    grid-template-columns: 1fr;
  }

  .about-factory-gallery .about-photo-card-wide {
    grid-column: auto;
  }

  .gateway-hero-stage {
    min-height: 320px;
  }

  .gateway-quick-specs,
  .gateway-feature-grid,
  .gateway-application-grid,
  .download-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solutions-hero-grid,
  .solutions-flow,
  .solutions-cta {
    grid-template-columns: 1fr;
  }

  .solutions-category-grid,
  .solutions-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-hero-grid,
  .product-seo-intro-grid,
  .product-interface-grid,
  .product-spec-grid,
  .product-resource-grid,
  .product-faq-grid,
  .company-intro-grid {
    grid-template-columns: 1fr;
  }

  .product-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .company-contact-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-details-panel .contact-list {
    grid-template-columns: 1fr;
  }

  .contact-simple-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-hero {
    min-height: 0;
  }

  .about-hero-inner {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    padding: 72px 0 80px;
  }

  .about-hero h1 {
    font-size: 42px;
    line-height: 1.02;
    max-width: 100%;
    overflow-wrap: anywhere;
    text-wrap: initial;
  }

  .about-intro-grid h2,
  .about-factory-copy h2,
  .about-map-grid h2 {
    font-size: 38px;
    line-height: 1.04;
    max-width: 100%;
    overflow-wrap: anywhere;
    text-wrap: initial;
  }

  .about-hero p {
    font-size: 17px;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .about-proof-item b,
  .about-ip-stat b {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .container,
  .wide-container,
  .hero-inner,
  .nav-wrap {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
  }

  .nav-wrap {
    min-height: 68px;
  }

  .nav-links {
    top: 68px;
  }

  .brand span:last-child {
    max-width: 170px;
    line-height: 1.05;
  }

  .hero-inner {
    padding: 58px 0 72px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 36px;
    line-height: 1.02;
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .contact-hero {
    min-height: auto;
  }

  .contact-map-visual img {
    aspect-ratio: 4 / 3;
  }

  .section-head h2,
  .split h2,
  .panel h2,
  .cta-band h2,
  .about-intro-grid h2,
  .about-factory-copy h2,
  .about-map-grid h2 {
    font-size: 32px;
    line-height: 1.05;
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
    text-wrap: initial;
  }

  .section {
    padding: 64px 0;
  }

  .solution-grid,
  .metric-row,
  .product-grid,
  .contact-strip,
  .footer-grid,
  .form-grid,
  .product-category-grid {
    grid-template-columns: 1fr;
  }

  .gateway-hero-grid,
  .gateway-overview,
  .gateway-spec-layout,
  .gateway-order-band {
    grid-template-columns: 1fr;
  }

  .gateway-quick-specs,
  .gateway-feature-grid,
  .gateway-application-grid,
  .download-card-grid {
    grid-template-columns: 1fr;
  }

  .download-tools {
    flex-direction: column;
    align-items: stretch;
  }

  .support-hero {
    min-height: 0;
    padding: 56px 0;
  }

  .support-hero h1 {
    font-size: 44px;
  }

  .download-results-head {
    align-items: stretch;
  }

  .solutions-category-grid,
  .solutions-card-grid {
    grid-template-columns: 1fr;
  }

  .product-feature-grid {
    grid-template-columns: 1fr;
  }

  .company-contact-strip {
    grid-template-columns: 1fr;
    margin-bottom: 36px;
  }

  .company-intro-grid h2 {
    font-size: 32px;
    line-height: 1.05;
  }

  .product-detail-hero {
    min-height: auto;
  }

  .product-detail-hero-media {
    min-height: 260px;
  }

  .product-detail-hero h1 {
    font-size: 34px;
    line-height: 1.05;
  }

  .product-detail-nav .container {
    gap: 16px;
  }

  .product-resource-cards div,
  .product-seo-points div {
    padding: 16px 18px;
  }

  .solutions-hero {
    min-height: auto;
    padding: 54px 0;
  }

  .solutions-hero-media {
    min-height: 250px;
  }

  .solutions-category-grid a {
    min-height: 58px;
  }

  .solutions-flow-item {
    grid-template-columns: 42px 1fr;
  }

  .gateway-spec-table th,
  .gateway-spec-table td {
    display: block;
    width: 100%;
  }

  .gateway-spec-table th {
    border-bottom: 0;
    padding-bottom: 6px;
  }

  .gateway-spec-table td {
    padding-top: 0;
  }

  .contact-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .contact-line strong {
    text-align: left;
    font-size: 14px;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .cta-band {
    padding: 30px;
  }

  .quick-actions .btn {
    width: 100%;
  }

  .contact-simple-section {
    padding-top: 56px;
  }

  .contact-simple-form > p {
    margin-bottom: 34px;
    font-size: 20px;
  }

  .contact-simple-grid input,
  .contact-simple-grid textarea {
    padding-left: 24px;
    padding-right: 24px;
    font-size: 18px;
  }

  .contact-simple-grid input {
    min-height: 58px;
  }

  .contact-simple-grid textarea {
    min-height: 190px;
    border-radius: 28px;
  }

  .contact-simple-submit {
    width: 100%;
  }

  .hero-device {
    overflow: hidden;
  }

  .thumbs {
    grid-template-columns: 1fr;
  }

  .homepage-product-card > a {
    grid-template-rows: 230px 1fr;
  }

  .homepage-product-card .product-media {
    height: 230px;
  }
}
