:root {
  --ink: #162026;
  --muted: #62707a;
  --soft: #eef3f3;
  --line: #d7e1e2;
  --paper: #f8faf8;
  --white: #ffffff;
  --navy: #0d2732;
  --teal: #0e6a67;
  --teal-dark: #084744;
  --blue: #255d84;
  --amber: #bd8b2d;
  --shadow: 0 18px 44px rgba(13, 39, 50, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 72px;
  padding: 12px clamp(20px, 5vw, 72px);
  background: rgba(13, 39, 50, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 34px rgba(7, 21, 26, 0.18);
  backdrop-filter: blur(12px);
}

.brand {
  display: block;
  width: 162px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  background: transparent;
  color: var(--white);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 670px;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--teal), var(--blue), var(--amber));
  z-index: 2;
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 29, 37, 0.92), rgba(8, 29, 37, 0.72) 46%, rgba(8, 29, 37, 0.32)),
    linear-gradient(0deg, rgba(8, 29, 37, 0.62), rgba(8, 29, 37, 0.08) 54%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.06);
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 112px 0 78px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  width: min(920px, 100%);
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 5.6vw, 5rem);
  line-height: 1;
  font-weight: 800;
}

h2 {
  max-width: 880px;
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 3.8vw, 3.25rem);
  line-height: 1.08;
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.enterprise-hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.enterprise-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 22, 28, 0.94), rgba(7, 22, 28, 0.74) 43%, rgba(7, 22, 28, 0.2)),
    linear-gradient(0deg, rgba(7, 22, 28, 0.72), rgba(7, 22, 28, 0.1) 56%);
}

.enterprise-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.06);
}

.enterprise-hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(92px, 12vw, 160px) 0 180px;
}

.enterprise-hero-content h1 {
  max-width: 980px;
  color: var(--white);
}

.enterprise-hero-content .hero-copy {
  max-width: 760px;
}

.hero-proof {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, calc(100% - 40px));
  margin: -128px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(9, 32, 40, 0.9);
  backdrop-filter: blur(10px);
}

.hero-proof div {
  min-height: 126px;
  padding: 24px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.22rem;
  line-height: 1.15;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.13rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 11px 17px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--amber);
  color: #171204;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.button.contact-button {
  margin-top: 6px;
  background: var(--amber);
  color: #171204;
}

.hero-certifications {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 1px;
  width: fit-content;
  margin-top: 46px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.16);
}

.hero-certifications span {
  padding: 12px 16px;
  background: rgba(13, 39, 50, 0.64);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 800;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.78fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 124px) 0;
}

.home-hero-copy h1 {
  color: var(--navy);
}

.home-hero-copy .hero-copy {
  color: var(--muted);
}

.home-hero-copy .button.secondary {
  border-color: var(--line);
  color: var(--navy);
}

.home-hero-panel {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.home-hero-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.home-hero-panel dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border-top: 1px solid var(--line);
}

.home-hero-panel div {
  padding: 18px 16px;
  border-right: 1px solid var(--line);
}

.home-hero-panel div:last-child {
  border-right: 0;
}

.home-hero-panel dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-hero-panel dd {
  margin: 0;
  color: var(--teal-dark);
  font-size: 1rem;
  font-weight: 900;
}

.page-hero {
  padding: clamp(82px, 10vw, 138px) clamp(20px, 5vw, 72px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.page-hero.dark {
  background: var(--navy);
  color: var(--white);
}

.page-hero h1,
.page-hero p {
  width: min(960px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.page-hero .eyebrow {
  width: min(960px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.page-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.page-hero.dark p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.image-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding-top: 170px;
  padding-bottom: 82px;
  color: var(--white);
  background: var(--navy);
}

.image-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 25, 32, 0.9), rgba(8, 25, 32, 0.66) 48%, rgba(8, 25, 32, 0.2)),
    linear-gradient(0deg, rgba(8, 25, 32, 0.66), rgba(8, 25, 32, 0.06) 58%);
}

.image-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.05);
}

.image-hero > div {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.image-hero h1,
.image-hero p,
.image-hero .eyebrow {
  width: auto;
  margin-left: 0;
}

.image-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.facility-hero > img {
  object-position: center 48%;
}

.overview-grid,
.preview-grid {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 auto;
}

.overview-item,
.preview-card {
  display: block;
  border: 1px solid var(--line);
  background: var(--white);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(13, 39, 50, 0.07);
}

.overview-item {
  min-height: 250px;
  padding: 28px 24px;
}

.overview-item span {
  display: block;
  margin-bottom: 46px;
  color: var(--amber);
  font-weight: 900;
}

.overview-item p,
.preview-card p {
  color: var(--muted);
}

.positioning-section {
  background: var(--white);
}

.positioning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.positioning-grid article {
  min-height: 270px;
  padding: 30px 28px;
  border-right: 1px solid var(--line);
}

.positioning-grid article:last-child {
  border-right: 0;
}

.positioning-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--amber);
  font-weight: 900;
}

.positioning-grid p {
  color: var(--muted);
}

.platform-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(38px, 6vw, 82px);
  align-items: start;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.platform-section .button {
  margin-top: 12px;
}

.platform-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.platform-list div {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.platform-list strong {
  color: var(--teal-dark);
  font-size: 1.02rem;
}

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

.proof-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  background: var(--navy);
  color: var(--white);
}

.proof-band p:not(.eyebrow) {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.74);
}

.proof-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.dark-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.home-band,
.home-cta {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.home-band {
  background: var(--navy);
  color: var(--white);
}

.home-band .section-lede {
  color: rgba(255, 255, 255, 0.74);
}

.preview-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.preview-card h3,
.preview-card p {
  padding-right: 20px;
  padding-left: 20px;
}

.preview-card h3 {
  padding-top: 20px;
}

.preview-card p {
  padding-bottom: 22px;
}

.detail-grid {
  grid-template-columns: repeat(2, 1fr);
}

.section {
  padding: clamp(70px, 8vw, 116px) clamp(20px, 5vw, 72px);
}

.section-heading,
.intro-grid,
.metrics,
.application-grid,
.product-block,
.product-pair,
.gallery,
.split-section,
.contact-section {
  width: min(1180px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.section-heading {
  margin-bottom: 38px;
}

.section-heading.compact {
  margin-bottom: 30px;
}

.section-lede {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.03rem;
}

.intro {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 34px;
  color: var(--muted);
  font-size: 1rem;
}

.intro-grid p {
  padding-top: 18px;
  border-top: 3px solid var(--line);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 36px rgba(13, 39, 50, 0.07);
}

.metrics div {
  min-height: 126px;
  padding: 24px 22px;
  border-right: 1px solid var(--line);
}

.metrics div:last-child {
  border-right: 0;
}

.metrics strong {
  display: block;
  margin-bottom: 9px;
  color: var(--teal);
  font-size: 2rem;
  line-height: 1;
}

.metrics span {
  color: var(--muted);
  font-size: 0.92rem;
}

.group-section {
  background: linear-gradient(180deg, #f1f6f6, #ffffff);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.group-grid,
.product-summary {
  width: min(1180px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.group-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 34px rgba(13, 39, 50, 0.07);
}

.group-grid article {
  min-height: 230px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.group-grid article:last-child {
  border-right: 0;
}

.group-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--amber);
  font-size: 0.86rem;
  font-weight: 900;
}

.group-grid h3 {
  color: var(--navy);
}

.group-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.certification-section {
  background: var(--navy);
  color: var(--white);
}

.certification-section .section-lede {
  color: rgba(255, 255, 255, 0.72);
}

.certification-grid {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.16);
}

.certification-grid article {
  min-height: 245px;
  padding: 26px 24px;
  background: #102f3c;
}

.certification-grid span {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--amber);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.certification-grid h3 {
  color: var(--white);
}

.certification-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.certification-grid strong {
  display: block;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: start;
  padding-top: 0;
}

.split-copy p:last-child {
  color: var(--muted);
  font-size: 1.04rem;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.capability-list span {
  min-height: 70px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border-left: 4px solid var(--teal);
  background: #f6f9f9;
  font-weight: 800;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.application-card {
  display: grid;
  grid-template-rows: 170px 1fr;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(13, 39, 50, 0.08);
}

.application-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.application-card div {
  padding: 20px 20px 22px;
}

.application-card p,
.product-block p,
.product-mini p,
.contact-copy p {
  color: var(--muted);
}

.selector-section {
  background: var(--white);
}

.selector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1180px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  background: #f7faf9;
}

.selector-grid div {
  min-height: 210px;
  padding: 24px 22px;
  border-right: 1px solid var(--line);
}

.selector-grid div:last-child {
  border-right: 0;
}

.selector-grid strong,
.selector-grid span {
  display: block;
}

.selector-grid strong {
  margin-bottom: 38px;
  color: var(--navy);
  font-size: 1.03rem;
}

.selector-grid span {
  color: var(--muted);
  font-size: 0.95rem;
}

.application-showcase {
  background: #edf3f3;
}

.application-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  width: min(1180px, 100%);
  margin: 0 auto 18px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(13, 39, 50, 0.08);
}

.application-feature img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.application-feature div {
  padding: clamp(30px, 5vw, 56px);
  align-self: center;
}

.application-feature p:not(.eyebrow) {
  color: var(--muted);
}

.process-section {
  background: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, 100%);
  margin: 0 auto;
  gap: 16px;
}

.process-steps article {
  min-height: 250px;
  padding: 26px 24px;
  border: 1px solid var(--line);
  background: #f7faf9;
}

.process-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 32px;
  background: var(--teal-dark);
  color: var(--white);
  font-weight: 900;
}

.process-steps p {
  color: var(--muted);
}

.product-section {
  background: var(--white);
}

.product-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.product-summary span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  background: #f7faf9;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.product-block {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 34px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.product-block h3 {
  color: var(--teal-dark);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--white);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

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

th {
  background: var(--navy);
  color: var(--white);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

td:first-child {
  color: var(--teal-dark);
  font-weight: 800;
}

tr:last-child td {
  border-bottom: 0;
}

.product-pair {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.product-mini {
  padding: 22px;
  border: 1px solid var(--line);
  background: #f7faf9;
}

.product-mini h3 {
  color: var(--navy);
}

.product-mini ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.product-mini li + li {
  margin-top: 7px;
}

.product-image-card img {
  width: 100%;
  max-height: 138px;
  margin-bottom: 18px;
  object-fit: contain;
  background: var(--white);
}

.facility-section {
  background: #e8efef;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(13, 39, 50, 0.1);
}

.gallery img:first-child,
.gallery img:nth-child(4) {
  grid-column: span 2;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 56px;
  align-items: start;
  padding: clamp(72px, 8vw, 116px) clamp(20px, 5vw, 72px);
}

.contact-page {
  min-height: calc(100vh - 145px);
  align-items: center;
}

.contact-copy h1 {
  color: var(--navy);
}

.contact-copy h2 {
  max-width: 720px;
}

.contact-panel {
  padding: 30px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-panel h2,
.contact-panel h3 {
  color: var(--white);
}

.contact-panel a {
  color: var(--white);
}

.reveal-contact {
  margin-bottom: 18px;
}

.contact-links {
  display: grid;
  gap: 8px;
  margin: 8px 0 20px;
}

.warehouse-grid {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.warehouse-grid strong,
.warehouse-grid span {
  display: block;
}

.warehouse-grid span {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 24px clamp(20px, 5vw, 72px);
  background: #08161b;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--white);
}

.site-footer span:last-child {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 1060px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 8px;
    background: var(--navy);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .intro-grid,
  .home-hero,
  .split-section,
  .product-block,
  .contact-section,
  .platform-section,
  .proof-band,
  .application-feature {
    grid-template-columns: 1fr;
  }

  .metrics,
  .group-grid,
  .certification-grid,
  .application-grid,
  .overview-grid,
  .preview-grid,
  .product-pair,
  .positioning-grid,
  .selector-grid,
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-band,
  .home-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .proof-actions {
    justify-content: flex-start;
  }

  .positioning-grid article:nth-child(2),
  .selector-grid div:nth-child(2) {
    border-right: 0;
  }

  .positioning-grid article:nth-child(-n + 2),
  .selector-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .platform-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .group-grid article:nth-child(2) {
    border-right: 0;
  }

  .group-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .metrics div:nth-child(2) {
    border-right: 0;
  }

  .metrics div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery img:first-child,
  .gallery img:nth-child(4) {
    grid-column: span 1;
  }

  .contact-section {
    gap: 34px;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 66px;
  }

  .brand {
    width: 138px;
  }

  .hero {
    min-height: 590px;
  }

  .hero-content {
    padding: 70px 0 52px;
  }

  h1 {
    font-size: 2.28rem;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-certifications,
  .hero-proof,
  .metrics,
  .group-grid,
  .certification-grid,
  .application-grid,
  .overview-grid,
  .preview-grid,
  .product-pair,
  .gallery,
  .capability-list,
  .positioning-grid,
  .selector-grid,
  .process-steps {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .enterprise-hero {
    min-height: 660px;
  }

  .enterprise-hero-content {
    padding-bottom: 210px;
  }

  .hero-proof {
    margin-top: -180px;
  }

  .hero-proof div,
  .positioning-grid article,
  .selector-grid div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .positioning-grid article,
  .selector-grid div {
    border-bottom-color: var(--line);
  }

  .hero-proof div:last-child,
  .positioning-grid article:last-child,
  .selector-grid div:last-child {
    border-bottom: 0;
  }

  .positioning-grid span,
  .selector-grid strong {
    margin-bottom: 18px;
  }

  .image-hero {
    min-height: 500px;
    padding-top: 120px;
    padding-bottom: 58px;
  }

  .hero-certifications {
    grid-template-columns: repeat(2, 1fr);
  }

  .metrics div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics div:last-child {
    border-bottom: 0;
  }

  .group-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .group-grid article:last-child {
    border-bottom: 0;
  }

  .group-grid span {
    margin-bottom: 18px;
  }

  .application-card {
    grid-template-rows: 210px 1fr;
  }

  .home-hero-panel dl {
    grid-template-columns: 1fr;
  }

  .home-hero-panel div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-hero-panel div:last-child {
    border-bottom: 0;
  }
}
