:root {
  --ink: #06131f;
  --ink-2: #0b1f31;
  --ink-3: #12304a;
  --paper: #eef4f8;
  --white: #ffffff;
  --steel: #dce7ef;
  --muted: #526a7e;
  --muted-dark: #a9bac8;
  --accent: #0b5ed7;
  --accent-hover: #0849a9;
  --aqua: #1bc4d6;
  --lime: #b9e853;
  --signal: #f4c951;
  --line: rgba(7, 16, 25, 0.12);
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 60px rgba(6, 19, 31, 0.12);
  --shadow-deep: 0 34px 90px rgba(2, 12, 22, 0.34);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --max: 1240px;
  --gutter: clamp(20px, 4.5vw, 64px);
  --font-display: "Archivo", Arial, sans-serif;
  --font-body: "Barlow", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

html {
  font-size: 16px;
}

body {
  font-size: clamp(1rem, 0.22vw + 0.96rem, 1.06rem);
  opacity: 0;
  transform: translateY(8px);
  background:
    linear-gradient(rgba(238, 244, 248, 0.96), rgba(238, 244, 248, 0.96)),
    repeating-linear-gradient(90deg, rgba(6, 19, 31, 0.025) 0, rgba(6, 19, 31, 0.025) 1px, transparent 1px, transparent 88px);
  transition: opacity 320ms ease, transform 320ms ease;
}

body.is-loaded {
  opacity: 1;
  transform: translateY(0);
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

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

img {
  display: block;
  height: auto;
}

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--aqua);
  outline-offset: 3px;
}

.wrap {
  width: min(100% - calc(var(--gutter) * 2), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(248, 251, 253, 0.9);
  border-bottom: 1px solid rgba(6, 19, 31, 0.1);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(22px);
  transition: padding 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-compact {
  background: rgba(248, 251, 253, 0.97);
  border-color: rgba(7, 16, 25, 0.16);
  box-shadow: 0 12px 34px rgba(6, 19, 31, 0.08);
}

.wrap.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 24px;
  padding: 14px 0;
  transition: min-height 220ms ease, padding 220ms ease;
}

.site-header.is-compact .wrap.nav {
  min-height: 70px;
  padding: 9px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-height: 44px;
  color: var(--ink);
}

.logo img {
  width: auto;
  height: 50px;
  object-fit: contain;
}

.logo-word {
  display: grid;
  line-height: 1.05;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.logo-word small {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(6, 19, 31, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  min-width: auto;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--ink-2);
  font-size: 0.96rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.desktop-nav a:hover {
  color: var(--accent);
  background: rgba(11, 94, 215, 0.07);
}

.desktop-nav a[aria-current="page"] {
  color: var(--accent);
  background: var(--white);
  box-shadow: 0 5px 15px rgba(6, 19, 31, 0.09);
}

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

.nav-phone {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink-2);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(6, 19, 31, 0.24);
}

.button,
.nav-cta,
.text-link,
.mobile-menu-phone,
.sticky-call a {
  transition: transform 200ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.button,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid var(--accent);
  border-radius: 10px;
  background: linear-gradient(135deg, #1269e3, var(--accent));
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(11, 94, 215, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.button:hover,
.nav-cta:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 16px 34px rgba(11, 94, 215, 0.3);
}

.button.light {
  background: var(--white);
  color: var(--accent);
  border-color: var(--white);
  box-shadow: none;
}

.button.light:hover {
  background: #e9f7ff;
  color: var(--accent-hover);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: inherit;
  font-weight: 750;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
}

.text-link:hover {
  color: var(--aqua);
}

.nav-toggle,
.menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(7, 16, 25, 0.14);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span,
.menu-close span {
  position: absolute;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 220ms ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.menu-close span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-close span:nth-child(2) {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: var(--ink);
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  transition: opacity 340ms cubic-bezier(0.16, 1, 0.3, 1), visibility 340ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: max(20px, env(safe-area-inset-top)) var(--gutter) max(20px, env(safe-area-inset-bottom));
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.mobile-menu .logo {
  color: var(--white);
}

.mobile-menu .logo-word small {
  color: var(--muted-dark);
}

.mobile-menu-nav {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  min-height: 64px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 6vw, 1.75rem);
  font-weight: 800;
  text-decoration: none;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 260ms ease, transform 260ms ease, color 180ms ease;
}

.mobile-menu.is-open .mobile-menu-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.is-open .mobile-menu-link:nth-child(1) {
  transition-delay: 110ms;
}

.mobile-menu.is-open .mobile-menu-link:nth-child(2) {
  transition-delay: 165ms;
}

.mobile-menu.is-open .mobile-menu-link:nth-child(3) {
  transition-delay: 220ms;
}

.mobile-menu.is-open .mobile-menu-link:nth-child(4) {
  transition-delay: 275ms;
}

.mobile-menu.is-open .mobile-menu-link:nth-child(5) {
  transition-delay: 330ms;
}

.mobile-menu-link[aria-current="page"],
.mobile-menu-link:hover {
  color: var(--aqua);
}

.mobile-menu-footer {
  display: grid;
  gap: 14px;
  padding: 28px 0 8px;
  border-top: 1px solid var(--line-dark);
}

.mobile-menu-phone {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: auto;
  isolation: isolate;
  background:
    radial-gradient(circle at 86% 18%, rgba(27, 196, 214, 0.22), transparent 26%),
    radial-gradient(circle at 62% 76%, rgba(11, 94, 215, 0.3), transparent 34%),
    linear-gradient(112deg, #04101a 0%, #081d30 58%, #0a3c77 100%);
  color: var(--white);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 100%;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 112px),
    linear-gradient(0deg, rgba(3, 12, 21, 0.6), transparent 38%);
  z-index: -1;
}

.hero-inner {
  display: grid;
  gap: clamp(28px, 5vw, 60px);
  min-height: min(740px, calc(100svh - 84px));
  padding: clamp(54px, 6vw, 84px) 0 clamp(50px, 5.5vw, 76px);
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: 20px;
  max-width: 680px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--aqua);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
.section-number {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 700px;
  font-size: clamp(2.45rem, 5.1vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 3.15rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

h3 {
  font-size: clamp(1.15rem, 1.05vw, 1.42rem);
  line-height: 1.16;
}

.lead {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 0.48vw + 0.98rem, 1.25rem);
  line-height: 1.55;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.hero-stage {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 380px;
}

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 24px;
  background: #102236;
  box-shadow: var(--shadow-deep), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.hero-photo {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: 52% 45%;
  filter: saturate(0.92) contrast(1.08);
  transform: scale(1.015);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 19, 31, 0.02) 48%, rgba(6, 19, 31, 0.6) 100%),
    linear-gradient(90deg, rgba(6, 19, 31, 0.22), transparent 52%);
}

.spec-rail {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  margin: -96px 14px 14px;
}

.spec-chip {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(5, 17, 28, 0.84);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.spec-chip span {
  color: var(--muted-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.spec-chip strong {
  font-size: 0.95rem;
}

.hero-proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
}

.proof-fact {
  display: grid;
  grid-template-columns: minmax(92px, 0.44fr) 1fr;
  gap: 14px;
  align-items: center;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}

.proof-value {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 0.75vw + 0.95rem, 1.34rem);
  font-weight: 800;
  line-height: 1.05;
}

.proof-term {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.88rem;
  line-height: 1.38;
}

.section {
  padding: clamp(68px, 8vw, 112px) 0;
}

.section.dark {
  background:
    radial-gradient(circle at 8% 10%, rgba(11, 94, 215, 0.2), transparent 28%),
    linear-gradient(135deg, #05111c, #071a2a);
  color: var(--white);
}

.section.blue {
  background:
    radial-gradient(circle at 90% 20%, rgba(27, 196, 214, 0.34), transparent 28%),
    linear-gradient(135deg, #073879, var(--accent));
  color: var(--white);
}

.section.light {
  background:
    linear-gradient(rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.98)),
    repeating-linear-gradient(90deg, rgba(6, 19, 31, 0.04) 0, rgba(6, 19, 31, 0.04) 1px, transparent 1px, transparent 96px);
}

.section-head {
  display: grid;
  gap: 14px;
  max-width: 790px;
  margin-bottom: clamp(26px, 3.6vw, 44px);
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head p {
  color: var(--muted);
  font-size: clamp(1rem, 0.28vw + 0.95rem, 1.06rem);
  line-height: 1.55;
}

.dark .section-head p,
.blue .section-head p {
  color: rgba(255, 255, 255, 0.78);
}

.system-grid {
  display: grid;
  gap: 16px;
}

.system-card {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 184px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: transform 250ms ease, border-color 250ms ease, background 250ms ease;
}

.system-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--aqua), transparent 72%);
  opacity: 0.8;
}

.system-card.feature {
  background:
    radial-gradient(circle at 86% 18%, rgba(27, 196, 214, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.08);
}

.system-card:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 184, 200, 0.72);
  background: rgba(255, 255, 255, 0.115);
  box-shadow: 0 22px 50px rgba(2, 11, 20, 0.24);
}

.system-index {
  color: var(--aqua);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
}

.system-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  line-height: 1.58;
}

.system-card a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  align-self: end;
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
}

.system-card a:hover {
  color: var(--aqua);
}

.proof-layout {
  display: grid;
  gap: clamp(26px, 4.5vw, 56px);
  align-items: center;
}

.proof-photo,
.feature-photo {
  overflow: hidden;
  border: 1px solid rgba(6, 19, 31, 0.08);
  border-radius: 22px;
  background: var(--steel);
  box-shadow: var(--shadow);
}

.proof-photo img,
.feature-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.proof-photo:hover img,
.feature-photo:hover img {
  transform: scale(1.025);
}

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

.proof-item {
  display: grid;
  gap: 8px;
  padding: 18px 0 18px 18px;
  border-top: 1px solid var(--line);
  border-left: 2px solid rgba(11, 94, 215, 0.16);
}

.proof-item:first-child {
  border-top: 0;
}

.proof-item strong {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 800;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.application-grid span {
  display: flex;
  align-items: center;
  min-height: 62px;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  font-weight: 750;
  box-shadow: 0 8px 22px rgba(6, 19, 31, 0.04);
}

.application-grid span::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 2px;
  background: var(--aqua);
  box-shadow: 0 0 0 4px rgba(27, 196, 214, 0.12);
}

.equipment-strip {
  display: grid;
  gap: 18px;
}

.equipment-card {
  display: grid;
  min-height: 100%;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(7, 16, 25, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 250ms ease;
}

.equipment-card:hover {
  transform: translateY(-4px);
}

.equipment-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 22px;
  background:
    radial-gradient(circle at 50% 40%, #ffffff, #eaf1f6 72%),
    repeating-linear-gradient(90deg, rgba(6, 19, 31, 0.03) 0, rgba(6, 19, 31, 0.03) 1px, transparent 1px, transparent 48px);
}

.equipment-card-body {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.equipment-card-body p {
  color: var(--muted);
}

.cut-console {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--line);
  overflow: hidden;
}

.cut-row {
  display: grid;
  gap: 8px;
  padding: 21px 22px;
  background: var(--white);
}

.cut-row span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.cut-row a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.cut-row a:hover {
  color: var(--accent-hover);
}

.contact-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(27, 196, 214, 0.2), transparent 28%),
    linear-gradient(115deg, #04101a, #0a3970 88%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 64px);
  color: var(--white);
}

.contact-layout {
  display: grid;
  gap: 22px;
  align-items: stretch;
}

.contact-panel,
.map-panel,
.form-panel,
.location-panel {
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-panel,
.form-panel,
.location-panel {
  padding: clamp(24px, 4vw, 38px);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.contact-list span {
  display: block;
  color: var(--muted-dark);
  font-size: 0.88rem;
}

.map-panel {
  min-height: 320px;
  overflow: hidden;
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  filter: saturate(0.72) contrast(1.08);
}

.location-panel {
  display: grid;
  align-content: end;
  gap: 18px;
  min-height: 320px;
  background:
    linear-gradient(140deg, rgba(7, 16, 25, 0.18), rgba(5, 68, 164, 0.36)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0.08) 1px, transparent 1px, transparent 54px);
}

.location-name {
  max-width: 620px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.05vw, 3.1rem);
  font-weight: 800;
  line-height: 1.02;
}

.section.light .location-panel {
  color: var(--white);
  background:
    linear-gradient(140deg, rgba(7, 16, 25, 0.92), rgba(5, 68, 164, 0.78)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0, rgba(255, 255, 255, 0.08) 1px, transparent 1px, transparent 54px);
}

.page-hero {
  padding: clamp(64px, 7.8vw, 104px) 0 clamp(58px, 6.4vw, 86px);
  background:
    radial-gradient(circle at 78% 20%, rgba(27, 196, 214, 0.22), transparent 26%),
    linear-gradient(112deg, #04101a, #0a3970),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 84px);
  color: var(--white);
}

.page-hero .wrap {
  display: grid;
  gap: clamp(24px, 3.6vw, 44px);
  max-width: 1040px;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 0.32vw + 0.96rem, 1.08rem);
}

.page-hero-copy {
  display: grid;
  gap: 16px;
  align-content: center;
}

.page-hero-media {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  box-shadow: var(--shadow-deep);
}

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(7, 16, 25, 0.36), rgba(7, 16, 25, 0.02));
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.05);
}

.product-layout,
.technical-layout,
.about-layout {
  display: grid;
  gap: clamp(24px, 4.2vw, 48px);
}

.product-module {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(7, 16, 25, 0.08);
}

.product-module img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  background: linear-gradient(145deg, #f8fbfd, #e7eff5);
  object-fit: contain;
  padding: 18px;
}

.product-copy {
  display: grid;
  gap: 16px;
}

.spec-list {
  display: grid;
  gap: 10px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.spec-list li {
  display: grid;
  grid-template-columns: minmax(100px, 0.4fr) 1fr;
  gap: 14px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.spec-list strong {
  color: var(--accent);
}

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

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

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

th {
  position: sticky;
  top: 0;
  background: #edf4fc;
  color: var(--ink);
  font-family: var(--font-display);
}

tr:nth-child(even) td {
  background: #fbfdff;
}

.download-grid {
  display: grid;
  gap: 12px;
}

.download-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 70px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
  transition: transform 220ms ease, border-color 220ms ease, color 220ms ease;
}

.download-link:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  color: var(--accent);
}

.download-link span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--white);
  font-weight: 750;
}

.field input,
.field textarea,
.field select {
  min-height: 56px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-size: 16px;
  padding: 12px 14px;
}

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

.hidden {
  display: none;
}

.site-footer {
  background:
    linear-gradient(120deg, #030a11, #071827),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0, rgba(255, 255, 255, 0.025) 1px, transparent 1px, transparent 88px);
  color: var(--white);
  padding: 42px 0 calc(72px + env(safe-area-inset-bottom));
}

.footer-layout {
  display: grid;
  gap: 32px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  min-width: 44px;
  color: var(--muted-dark);
  text-decoration: none;
}

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

.footer-small {
  color: var(--muted-dark);
  font-size: 0.92rem;
}

.sticky-call {
  position: fixed;
  right: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom));
  left: 14px;
  z-index: 800;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  transform: translateY(130%);
  transition: transform 260ms ease;
}

.sticky-call.is-visible {
  transform: translateY(0);
}

.sticky-call a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 44px rgba(7, 16, 25, 0.28);
}

.sticky-call a:last-child {
  background: var(--accent);
}

.reveal {
  opacity: 1;
  transform: none;
}

body.is-loaded .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 560ms cubic-bezier(0.16, 1, 0.3, 1), transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.is-loaded .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 680px) {
  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .proof-fact {
    grid-template-columns: 1fr;
    align-content: start;
  }

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

  .equipment-strip,
  .download-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cut-row {
    grid-template-columns: 1fr 1.2fr auto;
    align-items: center;
  }
}

@media (min-width: 900px) {
  .desktop-nav,
  .nav-actions {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.78fr);
    align-items: center;
  }

  .hero-stage {
    min-height: 520px;
  }

  .hero-media,
  .hero-photo {
    min-height: 520px;
  }

  .spec-rail {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    margin: 0;
  }

  .system-grid {
    grid-template-columns: 1.25fr 0.85fr 0.9fr;
  }

  .system-card.feature {
    grid-row: span 2;
    min-height: 400px;
  }

  .proof-layout,
  .contact-layout,
  .footer-layout {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  }

  .product-module {
    grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.16fr);
    align-items: center;
  }

  .page-hero .wrap {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
    align-items: center;
    max-width: var(--max);
  }

  .page-hero-media {
    min-height: 340px;
  }

  .page-hero-media img {
    min-height: 340px;
    aspect-ratio: 4 / 5;
  }

  .product-module:nth-child(even) img {
    order: 2;
  }

  .technical-layout,
  .about-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
  }

  .sticky-call {
    display: none;
  }
}

@media (max-width: 899px) {
  .logo-word {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: 0;
    gap: 28px;
    padding: 48px 0 58px;
  }

  .hero-copy {
    order: 1;
  }

  .hero-stage {
    order: 2;
    min-height: auto;
  }

  .hero-media {
    min-height: min(54svh, 420px);
  }

  .hero-photo {
    min-height: min(54svh, 420px);
    aspect-ratio: 4 / 5;
    object-position: 52% 35%;
  }

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

  .logo img,
  .mobile-menu .logo img {
    height: 40px;
  }
}

@media (max-width: 480px) {
  .hero-actions,
  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .text-link {
    width: 100%;
  }

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

  .spec-list li {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  body,
  .reveal,
  .mobile-menu-link,
  .sticky-call {
    transform: none !important;
  }
}

/* 2026 premium industrial design system */
:root {
  --ink: #06111e;
  --ink-2: #0c1d2d;
  --ink-3: #17344d;
  --paper: #f3f6f7;
  --white: #ffffff;
  --steel: #dce7ec;
  --muted: #526979;
  --muted-dark: #a9bdca;
  --accent: #135ee8;
  --accent-hover: #0b47bc;
  --aqua: #32c7dd;
  --lime: #b8e647;
  --signal: #f0cb4e;
  --line: rgba(6, 17, 30, 0.12);
  --line-dark: rgba(255, 255, 255, 0.15);
  --shadow: 0 26px 70px rgba(7, 26, 42, 0.12);
  --shadow-deep: 0 38px 110px rgba(0, 7, 17, 0.42);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --max: 1320px;
  --gutter: clamp(20px, 4.6vw, 72px);
}

::selection {
  background: var(--aqua);
  color: var(--ink);
}

html {
  scroll-padding-top: 120px;
}

body {
  opacity: 1;
  transform: none;
  background: #f8fafb;
}

body.is-loaded {
  opacity: 1;
  transform: none;
}

.utility-bar {
  overflow: hidden;
  max-height: 34px;
  background: var(--ink);
  color: #c3d4df;
  transition: max-height 220ms ease, opacity 180ms ease;
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  gap: 24px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.095em;
  line-height: 1;
  text-transform: uppercase;
}

.site-header {
  background: rgba(249, 251, 252, 0.94);
  border-bottom-color: rgba(6, 17, 30, 0.1);
  box-shadow: none;
  backdrop-filter: blur(24px) saturate(150%);
}

.site-header.is-compact {
  background: rgba(249, 251, 252, 0.98);
  box-shadow: 0 14px 40px rgba(6, 17, 30, 0.08);
}

.site-header.is-compact .utility-bar {
  max-height: 0;
  opacity: 0;
}

.wrap.nav {
  min-height: 88px;
  padding: 12px 0;
}

.site-header.is-compact .wrap.nav {
  min-height: 72px;
  padding: 8px 0;
}

.logo {
  gap: 14px;
}

.logo img {
  width: 74px;
  height: 56px;
  object-fit: contain;
}

.logo-word {
  color: var(--ink);
  font-size: 0.94rem;
  letter-spacing: 0.025em;
}

.logo-word small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.desktop-nav {
  gap: 3px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.desktop-nav a {
  position: relative;
  padding: 0 13px;
  border-radius: 0;
  background: transparent;
  color: #293b49;
  font-size: 0.91rem;
  letter-spacing: 0.01em;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 13px;
  bottom: 6px;
  left: 13px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-actions {
  gap: 16px;
}

.nav-phone {
  border: 0;
  color: var(--ink);
  font-size: 0.93rem;
  letter-spacing: -0.01em;
}

.button,
.nav-cta {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 7px;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 14px 32px rgba(19, 94, 232, 0.22);
  letter-spacing: 0.005em;
}

.button::after,
.nav-cta::after {
  content: "→";
  font-size: 1.02em;
  line-height: 1;
  transition: transform 180ms ease;
}

.button:hover::after,
.nav-cta:hover::after {
  transform: translateX(3px);
}

.button.light {
  color: var(--ink);
}

.nav-toggle,
.menu-close {
  border-radius: 9px;
  background: #f8fafb;
  box-shadow: 0 10px 30px rgba(6, 17, 30, 0.08);
}

.mobile-menu {
  background:
    linear-gradient(rgba(6, 17, 30, 0.92), rgba(6, 17, 30, 0.98)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0, rgba(255, 255, 255, 0.055) 1px, transparent 1px, transparent 78px);
}

.mobile-menu-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.mobile-menu-link {
  min-height: 56px;
  border-bottom-color: rgba(255, 255, 255, 0.13);
  font-size: clamp(1.8rem, 8.5vw, 2.5rem);
}

.mobile-menu-header {
  min-height: 64px;
}

.mobile-menu-footer {
  gap: 10px;
  padding: 20px 0 6px;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 800px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 20%, rgba(30, 116, 232, 0.48), transparent 34%),
    radial-gradient(circle at 44% 118%, rgba(45, 198, 220, 0.12), transparent 38%),
    linear-gradient(115deg, #050d18 0%, #071827 50%, #0a2d54 100%);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 49.9%, rgba(255, 255, 255, 0.04) 50% 50.1%, transparent 50.2%),
    repeating-linear-gradient(90deg, transparent 0 109px, rgba(255, 255, 255, 0.045) 110px, transparent 111px),
    repeating-linear-gradient(0deg, transparent 0 109px, rgba(255, 255, 255, 0.035) 110px, transparent 111px);
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

.hero::after {
  content: "CON–SERV / WATER SYSTEMS";
  position: absolute;
  z-index: -1;
  right: -28px;
  bottom: 126px;
  color: rgba(255, 255, 255, 0.032);
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.8;
  white-space: nowrap;
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 0;
  padding: clamp(72px, 8vw, 110px) 0 clamp(44px, 5vw, 64px);
}

.hero-copy {
  gap: 24px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
}

.kicker::before {
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero .kicker,
.dark .kicker,
.blue .kicker,
.contact-band .kicker,
.page-hero .kicker {
  color: var(--aqua);
}

h1,
h2,
h3 {
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 850px;
  font-size: clamp(3.35rem, 6.1vw, 6rem);
  line-height: 0.94;
  text-wrap: balance;
}

.hero .lead {
  max-width: 670px;
  color: rgba(229, 239, 245, 0.72);
  font-size: clamp(1.1rem, 0.5vw + 1rem, 1.34rem);
  line-height: 1.56;
}

.hero-actions {
  margin-top: 4px;
}

.hero .text-link {
  color: #eef7fb;
  border-bottom-color: rgba(255, 255, 255, 0.6);
}

.hero-stage {
  position: relative;
}

.hero-stage::before {
  content: "ENGINEERED WATER SYSTEMS · CS/001";
  position: absolute;
  z-index: 3;
  top: 24px;
  left: -18px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(4, 14, 25, 0.86);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  backdrop-filter: blur(12px);
}

.hero-media {
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius-lg);
  background: #10273a;
  box-shadow: var(--shadow-deep);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(3, 11, 18, 0.54), transparent 44%),
    linear-gradient(125deg, rgba(12, 80, 157, 0.15), transparent 52%);
}

.hero-photo {
  filter: saturate(0.82) contrast(1.08);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1), filter 300ms ease;
}

.hero-media:hover .hero-photo {
  transform: scale(1.018);
  filter: saturate(0.94) contrast(1.08);
}

.spec-rail {
  z-index: 2;
  gap: 7px;
}

.spec-chip {
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(5, 16, 27, 0.83);
  backdrop-filter: blur(18px);
}

.spec-chip span {
  color: #8fa8ba;
  font-size: 0.69rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-proof {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.proof-fact {
  min-height: 116px;
  padding: 22px clamp(14px, 2vw, 28px);
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: transparent;
}

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

.proof-value {
  color: var(--white);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  letter-spacing: -0.04em;
}

.proof-term {
  max-width: 300px;
  color: rgba(208, 222, 232, 0.68);
  font-size: 0.87rem;
}

.solution-nav {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(4, 18, 31, 0.08);
}

.solution-nav-grid {
  display: grid;
}

.solution-nav-intro,
.solution-nav a {
  display: grid;
  align-content: center;
  min-height: 138px;
  padding: 24px 26px;
  border-right: 1px solid var(--line);
}

.solution-nav-intro {
  border-left: 1px solid var(--line);
}

.solution-nav-intro .kicker {
  margin-bottom: 9px;
  font-size: 0.64rem;
}

.solution-nav-intro > strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.18;
}

.solution-nav a {
  position: relative;
  gap: 5px;
  color: var(--ink);
  text-decoration: none;
  transition: background 200ms ease, color 200ms ease;
}

.solution-nav a::after {
  content: "↗";
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--accent);
  font-size: 1.1rem;
  transition: transform 180ms ease;
}

.solution-nav a:hover {
  background: #f2f7fc;
}

.solution-nav a:hover::after {
  transform: translate(2px, -2px);
}

.solution-nav a > span {
  color: #8aa0ae;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.solution-nav a > strong {
  padding-right: 18px;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.18;
}

.solution-nav a > small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.section {
  padding: clamp(78px, 8.2vw, 124px) 0;
}

.section.light {
  background:
    linear-gradient(rgba(243, 247, 249, 0.96), rgba(243, 247, 249, 0.96)),
    repeating-linear-gradient(90deg, rgba(6, 17, 30, 0.045) 0, rgba(6, 17, 30, 0.045) 1px, transparent 1px, transparent 104px);
}

.section-head {
  max-width: 850px;
  gap: 18px;
  margin-bottom: clamp(34px, 5vw, 60px);
}

.section-head.center {
  max-width: 820px;
}

.section-head h2,
.proof-stack h2,
.contact-panel h2,
.evidence-lead h2 {
  font-size: clamp(2.25rem, 4vw, 4.6rem);
  line-height: 0.98;
  text-wrap: balance;
}

.section-head p,
.proof-stack > p,
.contact-panel > p {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.section.dark {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 14%, rgba(20, 94, 232, 0.24), transparent 25%),
    linear-gradient(125deg, #050d17, #0a2032);
}

.section.dark::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 103px, rgba(255, 255, 255, 0.035) 104px, transparent 105px);
}

.dark .section-head p,
.blue .section-head p {
  color: rgba(214, 228, 236, 0.67);
}

.system-grid {
  gap: 14px;
}

.system-card {
  min-height: 238px;
  padding: clamp(24px, 3vw, 38px);
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.system-card:hover {
  transform: translateY(-5px);
  border-color: rgba(50, 199, 221, 0.48);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035));
}

.system-card.feature {
  background:
    radial-gradient(circle at 100% 0%, rgba(50, 199, 221, 0.26), transparent 32%),
    linear-gradient(150deg, #0b4ec3, #0c2f69);
}

.system-card h3 {
  font-size: clamp(1.4rem, 2vw, 2.15rem);
  line-height: 1.04;
}

.system-card p {
  color: rgba(214, 227, 235, 0.7);
}

.system-card a {
  gap: 8px;
}

.system-card a::after {
  content: "→";
  transition: transform 180ms ease;
}

.system-card a:hover::after {
  transform: translateX(4px);
}

.system-index {
  color: var(--aqua);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.proof-layout {
  gap: clamp(38px, 7vw, 96px);
}

.proof-photo,
.feature-photo {
  position: relative;
  border-radius: 16px;
  box-shadow: 0 34px 80px rgba(7, 26, 42, 0.16);
}

.proof-photo::after,
.feature-photo::after {
  content: "LAKELAND / FL";
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 12px;
  background: rgba(5, 16, 27, 0.84);
  color: var(--white);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.proof-photo img,
.feature-photo img {
  aspect-ratio: 16 / 11;
  filter: saturate(0.82) contrast(1.06);
}

.proof-stack {
  gap: 14px;
}

.proof-item {
  grid-template-columns: minmax(0, 1fr);
  gap: 6px;
  padding: 22px 0;
  border-top-color: rgba(6, 17, 30, 0.12);
  border-left: 0;
}

.proof-item strong {
  color: var(--ink);
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.proof-item p {
  color: var(--muted);
}

.evidence-section {
  position: relative;
  overflow: hidden;
  background: #dff5f8;
}

.evidence-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(19, 94, 232, 0.12), transparent 32%),
    repeating-linear-gradient(90deg, transparent 0 103px, rgba(6, 17, 30, 0.055) 104px, transparent 105px);
}

.evidence-layout {
  position: relative;
  display: grid;
  gap: clamp(24px, 4vw, 48px);
}

.evidence-lead {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(28px, 4vw, 52px);
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 14%, rgba(50, 199, 221, 0.24), transparent 32%),
    linear-gradient(140deg, #071421, #0b3260);
  color: var(--white);
  box-shadow: var(--shadow-deep);
}

.evidence-number {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 4px 0 -2px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 8vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.86;
}

.evidence-number span {
  color: var(--aqua);
  font-size: 0.13em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.evidence-lead h2 {
  font-size: clamp(1.75rem, 3vw, 3.35rem);
}

.evidence-lead > p:not(.evidence-number) {
  color: rgba(219, 233, 241, 0.7);
}

.evidence-lead .text-link {
  width: fit-content;
  color: var(--white);
}

.quote-grid {
  display: grid;
  gap: 14px;
}

.quote-card {
  display: grid;
  align-content: space-between;
  gap: 28px;
  min-height: 200px;
  margin: 0;
  padding: clamp(25px, 3.4vw, 40px);
  border: 1px solid rgba(6, 17, 30, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 55px rgba(7, 26, 42, 0.08);
  backdrop-filter: blur(14px);
}

.quote-card p {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.28;
}

.quote-card footer {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.application-grid {
  counter-reset: application;
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.application-grid span {
  counter-increment: application;
  position: relative;
  min-height: 100px;
  padding: 38px 18px 16px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  transition: background 180ms ease;
}

.application-grid span:hover {
  background: #edf4fb;
}

.application-grid span::before {
  content: counter(application, decimal-leading-zero);
  position: absolute;
  top: 13px;
  left: 18px;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: var(--accent);
  font-size: 0.66rem;
  letter-spacing: 0.11em;
}

.equipment-strip {
  gap: 14px;
}

.equipment-card {
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(7, 26, 42, 0.09);
}

.equipment-card:hover {
  transform: translateY(-6px);
}

.equipment-card img {
  aspect-ratio: 1 / 0.92;
  padding: clamp(26px, 4vw, 50px);
  background:
    radial-gradient(circle at 52% 36%, #ffffff, #e5eef3 74%),
    repeating-linear-gradient(90deg, rgba(6, 17, 30, 0.04) 0, rgba(6, 17, 30, 0.04) 1px, transparent 1px, transparent 54px);
}

.equipment-card-body {
  min-height: 160px;
  padding: 28px;
}

.equipment-card-body h3 {
  font-size: 1.35rem;
}

.section.blue {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 10%, rgba(50, 199, 221, 0.24), transparent 27%),
    linear-gradient(125deg, #0b4fc7, #0a306e);
}

.cut-console {
  gap: 0;
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: transparent;
  box-shadow: 0 30px 90px rgba(0, 18, 58, 0.25);
}

.cut-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.cut-row:last-child {
  border-bottom: 0;
}

.cut-row span {
  color: rgba(225, 236, 243, 0.72);
}

.cut-row a {
  color: var(--white);
}

.contact-band {
  background:
    radial-gradient(circle at 86% 12%, rgba(50, 199, 221, 0.2), transparent 29%),
    linear-gradient(118deg, #040c15, #092b4d);
}

.contact-panel,
.form-panel,
.location-panel {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
}

.contact-panel,
.form-panel,
.location-panel {
  padding: clamp(28px, 4vw, 52px);
}

.contact-list {
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.contact-list li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.contact-list span {
  margin-bottom: 2px;
  color: #8fa8ba;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.location-panel {
  min-height: 410px;
  background:
    linear-gradient(140deg, rgba(4, 13, 23, 0.32), rgba(15, 82, 166, 0.52)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.075) 0, rgba(255, 255, 255, 0.075) 1px, transparent 1px, transparent 62px);
}

.location-name {
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  letter-spacing: -0.055em;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(74px, 8vw, 118px) 0;
  background:
    radial-gradient(circle at 83% 12%, rgba(28, 119, 237, 0.46), transparent 32%),
    linear-gradient(118deg, #050e18, #082746);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 103px, rgba(255, 255, 255, 0.045) 104px, transparent 105px);
  mask-image: linear-gradient(to bottom, #000, transparent);
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
  gap: clamp(34px, 6vw, 90px);
}

.page-hero-copy {
  gap: 22px;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(3.25rem, 6vw, 6rem);
  line-height: 0.94;
  text-wrap: balance;
}

.page-hero p {
  max-width: 700px;
  color: rgba(221, 233, 241, 0.7);
  font-size: clamp(1.08rem, 0.45vw + 1rem, 1.28rem);
}

.page-hero-media {
  border-radius: 18px;
  box-shadow: var(--shadow-deep);
}

.page-hero-media::before {
  content: "BUILT + TESTED / LAKELAND, FL";
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 9px 11px;
  background: rgba(4, 13, 23, 0.82);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.page-hero-media::after {
  z-index: 1;
  background: linear-gradient(130deg, rgba(7, 23, 37, 0.25), rgba(7, 23, 37, 0.02));
}

.page-hero-media img {
  filter: saturate(0.82) contrast(1.07);
}

.product-layout {
  gap: 0;
  border-top: 1px solid var(--line);
}

.product-module {
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(36px, 5.5vw, 74px) 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-module img {
  border-radius: 16px;
  padding: clamp(26px, 4vw, 48px);
  background:
    radial-gradient(circle at 50% 40%, #ffffff, #e7eff3 72%),
    repeating-linear-gradient(90deg, rgba(6, 17, 30, 0.035) 0, rgba(6, 17, 30, 0.035) 1px, transparent 1px, transparent 58px);
  box-shadow: 0 26px 68px rgba(7, 26, 42, 0.1);
}

.product-copy {
  gap: 19px;
}

.product-copy h2 {
  font-size: clamp(2rem, 3.6vw, 4rem);
  line-height: 0.98;
}

.product-copy > p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.05rem;
}

.spec-list {
  gap: 0;
  border-top: 1px solid var(--line);
}

.spec-list li {
  padding: 15px 0;
}

.spec-list strong {
  color: var(--ink);
  font-size: 0.83rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.table-wrap {
  border-radius: 14px;
  box-shadow: 0 22px 64px rgba(7, 26, 42, 0.08);
}

th {
  background: #e2edf7;
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.download-grid {
  gap: 10px;
}

.download-link {
  min-height: 78px;
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(7, 26, 42, 0.05);
}

.download-link::after {
  content: "↓";
  color: var(--accent);
}

.form-panel {
  background: rgba(255, 255, 255, 0.075);
}

.form-grid {
  gap: 18px;
}

.field label {
  color: #d9e7ef;
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  min-height: 58px;
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(250, 252, 253, 0.98);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 0;
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px rgba(50, 199, 221, 0.14);
}

.form-note {
  margin: -4px 0 0;
  color: #9db2c0;
  font-size: 0.82rem;
}

.thank-you-hero {
  min-height: 680px;
}

.site-footer {
  padding: 64px 0 calc(72px + env(safe-area-inset-bottom));
  background:
    linear-gradient(120deg, #02080e, #071a29),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 104px);
}

.footer-layout {
  gap: 48px;
}

.footer-small {
  max-width: 560px;
}

.footer-links {
  gap: 20px;
}

.footer-links a {
  color: #b3c5d0;
  font-weight: 700;
}

.sticky-call {
  right: 10px;
  bottom: calc(10px + env(safe-area-inset-bottom));
  left: 10px;
}

.sticky-call a {
  min-height: 58px;
  border-radius: 8px;
}

@media (min-width: 680px) {
  .solution-nav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-nav-intro {
    grid-column: 1 / -1;
  }

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

  .quote-card:first-child {
    grid-column: 1 / -1;
  }

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

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: center;
  }

  .hero-copy {
    grid-column: 1 / span 7;
  }

  .hero-stage {
    grid-column: 8 / -1;
    min-height: 590px;
  }

  .hero-media,
  .hero-photo {
    min-height: 590px;
  }

  .hero-proof {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .solution-nav-grid {
    grid-template-columns: 1.12fr repeat(4, minmax(0, 1fr));
  }

  .solution-nav-intro {
    grid-column: auto;
  }

  .evidence-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: stretch;
  }

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

  .quote-card:first-child {
    grid-column: 1 / -1;
  }

  .proof-layout,
  .contact-layout,
  .footer-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .product-module {
    grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
  }

  .page-hero .wrap {
    grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.62fr);
  }
}

@media (min-width: 1080px) {
  .application-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .equipment-strip {
    grid-template-columns: 1.18fr 1fr 0.82fr;
  }
}

@media (max-width: 1120px) and (min-width: 900px) {
  .logo-word {
    display: none;
  }

  .desktop-nav a {
    padding-right: 9px;
    padding-left: 9px;
  }

  .desktop-nav a::after {
    right: 9px;
    left: 9px;
  }

  .nav-phone {
    display: none;
  }
}

@media (max-width: 899px) {
  .utility-bar {
    max-height: 30px;
  }

  .utility-inner {
    min-height: 30px;
    justify-content: center;
    font-size: 0.63rem;
    letter-spacing: 0.08em;
  }

  .utility-inner span:last-child {
    display: none;
  }

  .wrap.nav,
  .site-header.is-compact .wrap.nav {
    min-height: 72px;
    padding: 8px 0;
  }

  .logo img,
  .mobile-menu .logo img {
    width: 61px;
    height: 48px;
  }

  .hero {
    min-height: 0;
  }

  .hero-inner {
    gap: 30px;
    padding: 54px 0 34px;
  }

  .hero-copy {
    gap: 20px;
  }

  .hero h1 {
    font-size: clamp(3rem, 13vw, 4.9rem);
    line-height: 0.94;
  }

  .hero .lead {
    font-size: 1.08rem;
  }

  .hero-stage {
    min-height: 430px;
  }

  .hero-media,
  .hero-photo {
    min-height: 430px;
  }

  .hero-photo {
    aspect-ratio: 4 / 4.8;
    object-position: 52% 35%;
  }

  .hero-stage::before {
    top: 18px;
    left: -8px;
  }

  .spec-rail {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .hero-proof {
    order: 3;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .proof-fact {
    display: grid;
    align-content: center;
    min-height: 82px;
    padding: 14px 7px;
    text-align: center;
  }

  .proof-value {
    font-size: clamp(1rem, 4.4vw, 1.3rem);
    line-height: 1;
  }

  .proof-term {
    display: none;
  }

  .section-head h2,
  .proof-stack h2,
  .contact-panel h2 {
    font-size: clamp(2.3rem, 10vw, 3.8rem);
  }

  .page-hero {
    padding: 64px 0 74px;
  }

  .page-hero .wrap {
    gap: 34px;
  }

  .page-hero h1 {
    font-size: clamp(3rem, 12vw, 4.8rem);
  }

  .page-hero-media,
  .page-hero-media img {
    min-height: 360px;
    aspect-ratio: 4 / 4.3;
  }
}

@media (max-width: 679px) {
  .solution-nav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-nav-intro {
    grid-column: 1 / -1;
    min-height: 104px;
  }

  .solution-nav a {
    min-height: 142px;
    padding: 20px 16px;
  }

  .solution-nav a::after {
    top: 17px;
    right: 14px;
  }

  .evidence-number {
    font-size: clamp(4rem, 22vw, 6.8rem);
  }

  .quote-card {
    min-height: 170px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    gap: 12px;
  }

  .hero-actions .text-link {
    width: fit-content;
  }

  .hero-stage {
    min-height: 365px;
  }

  .hero-media,
  .hero-photo {
    min-height: 365px;
  }

  .spec-chip {
    display: none;
  }

  .spec-chip:first-child {
    display: flex;
  }

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

  .application-grid span {
    min-height: 108px;
    padding: 38px 13px 14px;
    font-size: 0.92rem;
    line-height: 1.28;
  }

  .application-grid span::before {
    left: 13px;
  }

  .product-module {
    padding: 44px 0;
  }

  .product-module img {
    padding: 24px;
  }

  .contact-panel,
  .form-panel,
  .location-panel,
  .evidence-lead {
    padding: 26px 22px;
  }
}

/* 2026 sleek refinement
   Quieter scale, flatter surfaces, and a more disciplined industrial rhythm. */

:root {
  --paper: #f3f5f6;
  --steel: #e6ebee;
  --muted: #596a75;
  --accent: #1456a0;
  --accent-hover: #0c437e;
  --aqua: #32aebe;
  --line: rgba(5, 20, 31, 0.13);
  --shadow: 0 12px 30px rgba(5, 20, 31, 0.08);
  --shadow-deep: 0 18px 45px rgba(2, 12, 22, 0.22);
  --radius-sm: 3px;
  --radius-md: 4px;
  --radius-lg: 5px;
  --max: 1180px;
  --gutter: clamp(18px, 3.5vw, 46px);
}

html {
  font-size: 16px;
}

body {
  background: var(--paper);
  font-size: 1rem;
  opacity: 1;
  transform: none;
  transition: none;
}

h1,
h2,
h3,
.section-number {
  font-weight: 700;
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
}

.utility-bar {
  border-bottom-color: rgba(5, 20, 31, 0.08);
  background: #e9edef;
}

.utility-inner {
  min-height: 28px;
  font-size: 0.64rem;
  letter-spacing: 0.07em;
}

.site-header,
.site-header.is-compact {
  background: rgba(250, 251, 251, 0.96);
  border-color: rgba(5, 20, 31, 0.1);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.wrap.nav,
.site-header.is-compact .wrap.nav {
  min-height: 68px;
  padding: 8px 0;
}

.logo {
  gap: 9px;
}

.logo img {
  height: 43px;
}

.logo-word {
  font-size: 0.78rem;
}

.logo-word small {
  font-size: 0.66rem;
}

.desktop-nav {
  gap: 2px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.desktop-nav a {
  min-height: 38px;
  padding: 0 11px;
  font-size: 0.88rem;
  font-weight: 600;
}

.desktop-nav a::after {
  right: 11px;
  bottom: 1px;
  left: 11px;
  height: 1px;
}

.nav-actions {
  gap: 12px;
}

.nav-phone {
  min-height: 38px;
  font-size: 0.85rem;
}

.button,
.nav-cta {
  min-height: 44px;
  gap: 8px;
  padding: 0 17px;
  border-radius: 3px;
  box-shadow: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.button:hover,
.nav-cta:hover {
  transform: none;
  box-shadow: none;
}

.nav-toggle,
.menu-close {
  border-radius: 3px;
  box-shadow: none;
}

.hero {
  min-height: 0;
  background: #071a29;
}

.hero::before {
  background:
    linear-gradient(90deg, transparent 0 67%, rgba(255, 255, 255, 0.04) 67%, rgba(255, 255, 255, 0.04) calc(67% + 1px), transparent calc(67% + 1px));
  mask-image: none;
}

.hero::after,
.hero-stage::before {
  content: none;
}

.hero-inner {
  padding: clamp(52px, 5.5vw, 76px) 0 30px;
}

.hero-copy {
  gap: 18px;
}

.kicker {
  gap: 9px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.kicker::before {
  width: 20px;
  height: 1px;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3rem, 5vw, 4.65rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.hero .lead {
  max-width: 590px;
  font-size: clamp(1rem, 0.26vw + 0.96rem, 1.13rem);
  line-height: 1.55;
}

.hero-actions {
  gap: 14px;
}

.hero-stage,
.hero-media,
.hero-photo {
  min-height: 500px;
}

.hero-media {
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  box-shadow: none;
}

.hero-photo {
  filter: saturate(0.78) contrast(1.07);
  transform: none;
}

.hero-media:hover .hero-photo {
  transform: none;
  filter: saturate(0.84) contrast(1.07);
}

.spec-rail {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: -65px 0 0;
}

.spec-chip {
  min-width: 0;
  padding: 12px 13px;
  border-width: 1px 1px 0 0;
  border-radius: 0;
  background: rgba(5, 18, 29, 0.9);
  backdrop-filter: blur(8px);
}

.spec-chip:last-child {
  border-right: 0;
}

.spec-chip span {
  display: none;
}

.spec-chip strong {
  overflow: hidden;
  font-size: 0.76rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-proof {
  margin-top: 6px;
  border-top-color: rgba(255, 255, 255, 0.12);
  border-bottom: 0;
}

.proof-fact {
  min-height: 84px;
  padding: 16px clamp(12px, 2vw, 22px);
  border-right-color: rgba(255, 255, 255, 0.1);
}

.proof-value {
  font-size: clamp(1.08rem, 1.3vw, 1.28rem);
}

.proof-term {
  font-size: 0.79rem;
  line-height: 1.35;
}

.solution-nav {
  box-shadow: none;
}

.solution-nav-intro,
.solution-nav a {
  min-height: 102px;
  padding: 17px 19px;
}

.solution-nav-intro .kicker {
  margin-bottom: 6px;
  font-size: 0.59rem;
}

.solution-nav-intro > strong {
  font-size: 1rem;
}

.solution-nav a::after {
  top: 17px;
  right: 16px;
  font-size: 0.9rem;
}

.solution-nav a > strong {
  font-size: 0.91rem;
}

.solution-nav a > small {
  font-size: 0.75rem;
}

.solution-nav a:hover {
  background: #f4f6f7;
}

.section {
  padding: clamp(62px, 6.5vw, 88px) 0;
}

.section.light {
  background: #fff;
}

.section.dark {
  background: #091a27;
}

.section.dark::before,
.evidence-section::before {
  content: none;
}

.section.blue {
  background: #104f91;
}

.section-head {
  max-width: 730px;
  gap: 12px;
  margin-bottom: clamp(28px, 3.4vw, 42px);
}

.section-head h2,
.proof-stack h2,
.contact-panel h2,
.evidence-lead h2 {
  font-size: clamp(2rem, 3.15vw, 3.35rem);
  line-height: 1.03;
}

.section-head p,
.proof-stack > p,
.contact-panel > p {
  max-width: 650px;
  font-size: 0.98rem;
  line-height: 1.58;
}

.system-grid {
  gap: 8px;
}

.system-card,
.system-card.feature {
  min-height: 184px;
  gap: 11px;
  padding: 22px 23px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
}

.system-card::before {
  width: 2px;
  height: 100%;
  right: auto;
  background: var(--aqua);
  opacity: 0.65;
}

.system-card:hover {
  transform: none;
  border-color: rgba(50, 174, 190, 0.44);
  background: rgba(255, 255, 255, 0.065);
}

.system-card h3 {
  font-size: clamp(1.16rem, 1.5vw, 1.45rem);
  line-height: 1.13;
}

.system-card p {
  font-size: 0.89rem;
  line-height: 1.5;
}

.system-card a {
  min-height: 34px;
  font-size: 0.86rem;
}

.system-index {
  font-size: 0.63rem;
}

.proof-layout {
  gap: clamp(32px, 5vw, 66px);
}

.proof-photo,
.feature-photo {
  border-radius: 3px;
  box-shadow: none;
}

.proof-photo::after,
.feature-photo::after {
  content: none;
}

.proof-photo:hover img,
.feature-photo:hover img {
  transform: none;
}

.proof-stack {
  gap: 11px;
}

.proof-item {
  padding: 16px 0;
}

.proof-item strong {
  font-size: 1rem;
  font-weight: 700;
}

.proof-item p {
  font-size: 0.92rem;
  line-height: 1.5;
}

.evidence-section {
  background: #edf1f3;
}

.evidence-layout {
  gap: 14px;
}

.evidence-lead {
  gap: 14px;
  padding: clamp(27px, 3vw, 38px);
  border-radius: 3px;
  background: #0b2132;
  box-shadow: none;
}

.evidence-number {
  gap: 11px;
  font-size: clamp(3.4rem, 5.6vw, 5.3rem);
  letter-spacing: -0.065em;
}

.evidence-lead h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
}

.evidence-lead > p:not(.evidence-number) {
  font-size: 0.91rem;
  line-height: 1.5;
}

.quote-grid {
  gap: 8px;
}

.quote-card {
  min-height: 142px;
  gap: 20px;
  padding: clamp(21px, 2.4vw, 28px);
  border-radius: 2px;
  background: #fff;
  box-shadow: none;
  backdrop-filter: none;
}

.quote-card p {
  font-size: clamp(1.04rem, 1.35vw, 1.28rem);
  font-weight: 600;
  line-height: 1.35;
}

.quote-card footer {
  font-size: 0.65rem;
}

.application-grid span {
  min-height: 76px;
  padding: 30px 14px 12px;
  font-size: 0.88rem;
  line-height: 1.3;
}

.equipment-strip {
  gap: 9px;
}

.equipment-card {
  border-radius: 3px;
  box-shadow: none;
}

.equipment-card:hover {
  transform: none;
}

.equipment-card img {
  aspect-ratio: 4 / 3;
  padding: clamp(21px, 2.8vw, 34px);
  background: #edf1f3;
}

.equipment-card-body {
  min-height: 132px;
  padding: 21px;
}

.equipment-card-body h3 {
  font-size: 1.14rem;
}

.equipment-card-body p {
  font-size: 0.9rem;
  line-height: 1.5;
}

.cut-console,
.table-wrap {
  border-radius: 3px;
  box-shadow: none;
}

.cut-row {
  padding: 17px 19px;
  backdrop-filter: none;
}

.contact-band {
  background: #081a28;
}

.contact-panel,
.form-panel,
.location-panel {
  padding: clamp(25px, 3vw, 36px);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
  backdrop-filter: none;
}

.contact-list {
  margin-top: 22px;
}

.location-panel {
  min-height: 340px;
  background: #102c42;
}

.location-name {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.page-hero {
  padding: clamp(52px, 5.5vw, 72px) 0;
  background: #081c2c;
}

.page-hero::before,
.page-hero-media::before {
  content: none;
}

.page-hero .wrap {
  gap: clamp(28px, 4vw, 54px);
}

.page-hero-copy {
  gap: 16px;
}

.page-hero h1 {
  font-size: clamp(2.75rem, 4.7vw, 4.35rem);
  line-height: 1;
}

.page-hero p {
  font-size: clamp(0.98rem, 0.25vw + 0.95rem, 1.08rem);
  line-height: 1.55;
}

.page-hero-media {
  border-radius: 3px;
  box-shadow: none;
}

.page-hero-media img {
  filter: saturate(0.8) contrast(1.06);
}

.product-layout {
  gap: 0;
}

.product-module {
  gap: clamp(25px, 4vw, 52px);
  padding: clamp(30px, 4vw, 52px) 0;
}

.product-module img {
  border-radius: 3px;
  padding: clamp(21px, 3vw, 35px);
  background: #edf1f3;
  box-shadow: none;
}

.product-copy {
  gap: 15px;
}

.product-copy h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.9rem);
  line-height: 1.03;
}

.product-copy > p {
  font-size: 0.96rem;
  line-height: 1.55;
}

.spec-list li {
  padding: 12px 0;
}

.spec-list strong {
  font-size: 0.73rem;
}

.download-link {
  min-height: 64px;
  border-radius: 2px;
  box-shadow: none;
}

.field input,
.field textarea,
.field select {
  min-height: 50px;
  border-radius: 3px;
}

.field textarea {
  min-height: 132px;
}

.form-grid {
  gap: 14px;
}

.thank-you-hero {
  min-height: 570px;
}

.site-footer {
  padding: 46px 0 calc(52px + env(safe-area-inset-bottom));
  background: #06131e;
}

.footer-layout {
  gap: 34px;
}

.sticky-call a {
  min-height: 50px;
  border-radius: 3px;
}

.reveal,
body.is-loaded .reveal {
  transform: translateY(8px);
  transition-duration: 360ms;
}

body.is-loaded .reveal.is-visible {
  transform: translateY(0);
}

@media (min-width: 900px) {
  .hero-copy {
    grid-column: 1 / span 7;
  }

  .hero-stage {
    grid-column: 8 / -1;
  }

  .evidence-layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  }
}

@media (max-width: 899px) {
  .utility-bar {
    display: none;
  }

  .wrap.nav,
  .site-header.is-compact .wrap.nav {
    min-height: 62px;
    padding: 7px 0;
  }

  .logo img,
  .mobile-menu .logo img {
    width: auto;
    height: 42px;
  }

  .hero-inner {
    gap: 24px;
    padding: 42px 0 26px;
  }

  .hero-copy {
    gap: 16px;
  }

  .hero h1 {
    max-width: 600px;
    font-size: clamp(2.55rem, 10.6vw, 3.85rem);
    line-height: 1;
  }

  .hero .lead {
    font-size: 1rem;
  }

  .hero-stage,
  .hero-media,
  .hero-photo {
    min-height: 340px;
  }

  .spec-rail {
    display: none;
  }

  .hero-proof {
    margin-top: 0;
  }

  .proof-fact {
    min-height: 66px;
    padding: 11px 6px;
  }

  .proof-value {
    font-size: clamp(0.9rem, 3.6vw, 1.08rem);
  }

  .section {
    padding: 54px 0;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .section-head h2,
  .proof-stack h2,
  .contact-panel h2 {
    font-size: clamp(1.85rem, 7.8vw, 2.75rem);
  }

  .page-hero {
    padding: 46px 0 52px;
  }

  .page-hero h1 {
    font-size: clamp(2.45rem, 10vw, 3.55rem);
  }

  .page-hero-media,
  .page-hero-media img {
    min-height: 285px;
    aspect-ratio: 4 / 3.5;
  }

  .mobile-menu-link {
    min-height: 50px;
    font-size: clamp(1.55rem, 7.2vw, 2.1rem);
  }
}

@media (max-width: 679px) {
  .solution-nav-intro {
    min-height: 82px;
    padding: 15px;
  }

  .solution-nav a {
    min-height: 108px;
    padding: 17px 14px;
  }

  .solution-nav a::after {
    top: 14px;
    right: 12px;
  }

  .evidence-number {
    font-size: clamp(3.2rem, 17vw, 4.8rem);
  }

  .quote-card {
    min-height: 132px;
  }
}

@media (max-width: 480px) {
  .hero-stage,
  .hero-media,
  .hero-photo {
    min-height: 300px;
  }

  .application-grid span {
    min-height: 86px;
    padding: 32px 12px 12px;
    font-size: 0.84rem;
  }

  .product-module {
    padding: 34px 0;
  }

  .contact-panel,
  .form-panel,
  .location-panel,
  .evidence-lead {
    padding: 22px 19px;
  }
}

/* Reduce the remaining card-heavy patterns to a cleaner specification list. */

.system-grid {
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.system-card,
.system-card.feature {
  display: grid;
  grid-template-columns: 44px minmax(190px, 0.62fr) minmax(280px, 1fr) auto;
  align-items: center;
  gap: 20px;
  min-height: 96px;
  padding: 17px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: transparent;
}

.system-card::before {
  content: none;
}

.system-card:hover,
.system-card.feature:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: transparent;
}

.system-card p {
  max-width: 560px;
}

.system-card a {
  justify-self: end;
  white-space: nowrap;
}

.hero h1 {
  font-size: clamp(2.9rem, 4.45vw, 4.15rem);
}

.section-head h2,
.proof-stack h2,
.contact-panel h2,
.evidence-lead h2 {
  font-size: clamp(1.9rem, 2.9vw, 3.05rem);
}

.page-hero {
  padding: clamp(46px, 4.8vw, 64px) 0;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.75rem);
}

.page-hero-media,
.page-hero-media img {
  min-height: 300px;
}

@media (max-width: 899px) {
  .system-card,
  .system-card.feature {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 8px 12px;
    min-height: 0;
    padding: 19px 0;
  }

  .system-card h3 {
    grid-column: 2;
  }

  .system-card p,
  .system-card a {
    grid-column: 2;
    justify-self: start;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 9.3vw, 3.3rem);
  }

  .section-head h2,
  .proof-stack h2,
  .contact-panel h2,
  .evidence-lead h2 {
    font-size: clamp(1.8rem, 7.2vw, 2.5rem);
  }

  .page-hero {
    padding: 40px 0 42px;
  }

  .page-hero h1 {
    font-size: clamp(2.15rem, 8.8vw, 3rem);
  }

  .page-hero-media,
  .page-hero-media img {
    min-height: 250px;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 480px) {
  .hero-inner {
    padding-top: 34px;
  }

  .hero-copy {
    gap: 14px;
  }

  .hero .lead {
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .hero-actions {
    align-items: center;
    flex-direction: row;
    gap: 12px;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: auto;
  }

  .hero-actions .button {
    min-height: 42px;
    padding: 0 13px;
    font-size: 0.82rem;
  }

  .hero-actions .text-link {
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .hero-stage,
  .hero-media,
  .hero-photo {
    min-height: 270px;
  }
}

/* Facility map: purposeful content instead of a stretched address block. */

.facility-map {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 3px;
  background: #102c42;
}

.facility-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  filter: grayscale(0.42) saturate(0.72) contrast(1.04);
}

.facility-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(5, 20, 31, 0.56), transparent 48%);
}

.facility-map-card {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  gap: 7px;
  max-width: 470px;
  padding: 19px 21px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(6, 24, 37, 0.94);
  color: #fff;
}

.facility-map-card .kicker {
  color: var(--aqua);
}

.facility-map-card strong {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.facility-map-card p {
  color: rgba(226, 235, 240, 0.74);
  font-size: 0.9rem;
}

.facility-map-card .text-link {
  width: fit-content;
  margin-top: 3px;
  color: #fff;
  font-size: 0.86rem;
}

.facility-map-light {
  min-height: 420px;
  border-color: var(--line);
}

.facility-map-light iframe {
  min-height: 420px;
}

@media (max-width: 899px) {
  .facility-map,
  .facility-map iframe {
    min-height: 460px;
  }
}

@media (max-width: 480px) {
  .facility-map,
  .facility-map iframe {
    min-height: 400px;
  }

  .facility-map-card {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 16px 17px;
  }
}
