@font-face {
  font-family: "Montserrat";
  src: url("/static/fonts/montserrat-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #101820;
  --ink-soft: #45505a;
  --blue: #0876bc;
  --blue-deep: #065b91;
  --blue-pale: #eaf5fb;
  --line: #dce3e8;
  --paper: #ffffff;
  --wash: #f3f5f6;
  --shell: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

button,
summary {
  font: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(16, 24, 32, 0.08);
  background: rgba(255, 255, 255, 0.97);
}

.header-inner {
  min-height: 102px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

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

.brand img,
.footer-logo {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 15px;
}

.desktop-nav > a:not(.nav-cta) {
  position: relative;
  padding: 8px 0;
}

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

.desktop-nav > a:hover::after,
.desktop-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  border: 1px solid var(--blue);
  padding: 11px 18px;
  color: var(--blue-deep);
  font-weight: 650;
  transition: background 180ms ease, color 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--blue);
  color: white;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #12222c;
  color: white;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 19, 28, 0.86) 0%, rgba(7, 19, 28, 0.52) 48%, rgba(7, 19, 28, 0.08) 82%),
    linear-gradient(0deg, rgba(4, 12, 18, 0.38), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #a7dcfa;
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(48px, 6.2vw, 84px);
  font-weight: 590;
  letter-spacing: -0.052em;
  line-height: 0.98;
}

.hero-copy {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: white;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0 24px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--blue-deep);
  background: var(--blue-deep);
  color: white;
}

.hero .button:hover,
.hero .button:focus-visible {
  border-color: white;
  background: white;
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-deep);
  font-size: 14px;
  font-weight: 700;
}

.text-link::after {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: width 180ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  width: 50px;
}

.light-link {
  color: white;
}

.hero-index {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 28px;
  z-index: 2;
  display: flex;
  gap: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-index span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-index span::before {
  width: 5px;
  height: 5px;
  background: #74c9f7;
  content: "";
}

.section {
  padding: 108px 0;
}

.section-muted {
  background: var(--wash);
}

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

.section-heading h2,
.reach-copy h2,
.contact-band h2,
.about-lead-grid h2 {
  max-width: 770px;
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 590;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 70px;
}

.split-heading > p {
  margin: 0 0 3px;
  color: var(--ink-soft);
  font-size: 17px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.capability-card {
  min-height: 315px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 34px 28px;
  transition: background 180ms ease, transform 180ms ease;
}

.capability-card:hover {
  background: var(--blue-pale);
  transform: translateY(-3px);
}

.card-number {
  display: block;
  margin-bottom: 70px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.capability-card h3 {
  margin: 0 0 14px;
  font-size: 21px;
  line-height: 1.2;
}

.capability-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

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

.image-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.image-card img,
.image-card-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.image-card img {
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.image-card:hover img {
  transform: scale(1.04);
}

.image-card-shade {
  background: linear-gradient(0deg, rgba(6, 16, 24, 0.92), rgba(6, 16, 24, 0.02) 70%);
}

.image-card-copy {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  z-index: 1;
}

.image-card-copy strong {
  display: block;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.image-card-copy > span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.section-action {
  margin-top: 36px;
}

.reach-section {
  padding: 110px 0;
  overflow: hidden;
}

.reach-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(430px, 1.2fr);
  align-items: center;
  gap: 70px;
}

.reach-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.reach-map {
  width: 100%;
  height: auto;
  filter: grayscale(1) contrast(0.8);
}

.reach-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 38px;
}

.reach-stats div {
  border-left: 2px solid var(--blue);
  padding-left: 16px;
}

.reach-stats strong,
.reach-stats span {
  display: block;
}

.reach-stats strong {
  font-size: 18px;
}

.reach-stats span {
  color: var(--ink-soft);
  font-size: 13px;
}

.contact-band {
  background: var(--blue);
  color: white;
  padding: 78px 0;
}

.contact-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.contact-band h2 {
  font-size: clamp(32px, 4vw, 50px);
}

.contact-band p:not(.eyebrow) {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.button-light {
  flex: 0 0 auto;
  border-color: white;
  background: white;
  color: var(--ink);
}

.button-light:hover,
.button-light:focus-visible {
  background: transparent;
  color: white;
}

.site-footer {
  border-bottom: 8px solid var(--blue);
  background: #101820;
  color: white;
  padding: 72px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.55fr 1fr;
  gap: 70px;
}

.footer-logo {
  width: 240px;
  filter: brightness(0) invert(1);
}

.footer-note {
  max-width: 370px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
}

.footer-label {
  margin: 0 0 20px;
  color: #79cef9;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.6;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 62px;
  padding-top: 25px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
}

.legal-links {
  display: flex;
  gap: 22px;
}

.page-intro {
  position: relative;
  overflow: hidden;
  background: var(--wash);
  padding: 95px 0 90px;
}

.page-intro::after {
  position: absolute;
  top: -160px;
  right: -120px;
  width: 520px;
  height: 520px;
  border: 90px solid rgba(8, 118, 188, 0.07);
  border-radius: 50%;
  content: "";
}

.page-intro h1 {
  position: relative;
  z-index: 1;
  max-width: 940px;
  margin: 0;
  font-size: clamp(46px, 6vw, 76px);
  font-weight: 590;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.page-intro-copy {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.about-lead-grid {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 70px;
}

.about-lead-grid p:not(.eyebrow) {
  max-width: 760px;
  color: var(--ink-soft);
}

.about-lead-grid .large-copy {
  margin: 30px 0 20px;
  color: var(--ink);
  font-size: 21px;
}

.process-list {
  margin-top: 90px;
}

.process-row {
  display: grid;
  grid-template-columns: 70px 0.75fr 1.25fr;
  gap: 30px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding: 32px 0;
}

.process-row:last-child {
  border-bottom: 1px solid var(--line);
}

.process-row > span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.process-row h3,
.process-row p {
  margin: 0;
}

.process-row h3 {
  font-size: 22px;
  line-height: 1.25;
}

.process-row p {
  color: var(--ink-soft);
}

.products-section {
  padding-top: 40px;
}

.product-list {
  display: flex;
  flex-direction: column;
}

.product-row {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 70px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 70px 0;
  scroll-margin-top: 32px;
}

.product-row:nth-child(even) .product-image-wrap {
  order: 2;
}

.product-row:nth-child(even) .product-copy {
  order: 1;
}

.product-image-wrap {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  background: var(--wash);
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.product-number {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 62px;
  background: var(--blue);
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 18px;
  text-align: center;
}

.product-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 590;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.product-copy > p:not(.eyebrow) {
  margin: 22px 0 28px;
  color: var(--ink-soft);
  font-size: 17px;
}

.product-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-items li {
  position: relative;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
  padding: 9px 0 3px 15px;
}

.product-items li::before {
  position: absolute;
  top: 17px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--blue);
  content: "";
}

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

.supplier-card {
  border: 1px solid var(--line);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.supplier-card:hover,
.supplier-card:focus-visible {
  border-color: #8abddb;
  box-shadow: 0 14px 28px rgba(16, 24, 32, 0.08);
  transform: translateY(-3px);
}

.supplier-logo-wrap {
  display: flex;
  min-height: 210px;
  align-items: center;
  justify-content: center;
  background: var(--wash);
  padding: 35px;
}

.supplier-logo-wrap img {
  max-width: 100%;
  max-height: 120px;
  width: auto;
  height: auto;
  mix-blend-mode: multiply;
}

.supplier-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
}

.supplier-meta strong {
  font-size: 15px;
}

.supplier-meta > span {
  color: var(--ink-soft);
  font-size: 12px;
}

.contact-page {
  min-height: 520px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 100px;
}

.contact-email {
  display: inline-block;
  max-width: 100%;
  border-bottom: 2px solid var(--blue);
  margin-bottom: 25px;
  font-size: clamp(26px, 3.6vw, 45px);
  font-weight: 560;
  letter-spacing: -0.04em;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.contact-primary > p:not(.eyebrow) {
  max-width: 610px;
  margin: 0 0 32px;
  color: var(--ink-soft);
  font-size: 17px;
}

.contact-details {
  border-top: 1px solid var(--line);
}

.contact-details > div {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 25px;
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.contact-details span {
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details p,
.contact-details address {
  margin: 0;
  color: var(--ink-soft);
  font-style: normal;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 90px;
}

.legal-layout aside {
  position: sticky;
  top: 30px;
  align-self: start;
  border-top: 2px solid var(--blue);
  color: var(--ink-soft);
  font-size: 13px;
  padding-top: 16px;
}

.legal-layout aside p {
  margin: 0 0 6px;
}

.legal-layout aside a {
  color: var(--blue-deep);
  font-weight: 700;
}

.legal-content {
  max-width: 800px;
}

.legal-content > section {
  border-top: 1px solid var(--line);
  padding: 30px 0;
}

.legal-content > section:last-child {
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 16px;
  font-size: 23px;
  letter-spacing: -0.02em;
}

.legal-content p {
  margin: 0 0 13px;
  color: var(--ink-soft);
}

.legal-notice {
  border-left: 3px solid var(--blue);
  color: var(--ink) !important;
  font-weight: 700;
  padding-left: 18px;
}

.health-page,
.not-found {
  min-height: 68vh;
  display: flex;
  align-items: center;
}

.health-page {
  width: min(700px, calc(100vw - 40px));
  margin-inline: auto;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.health-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #27a769;
  box-shadow: 0 0 0 7px rgba(39, 167, 105, 0.13);
}

.health-page h1,
.not-found h1 {
  margin: 24px 0 12px;
  font-size: clamp(38px, 5vw, 62px);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.health-page p,
.not-found p:not(.eyebrow) {
  color: var(--ink-soft);
}

.health-page a {
  margin-top: 8px;
  color: var(--blue-deep);
  font-weight: 700;
}

.not-found .button {
  margin-top: 18px;
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 40px, 900px);
  }

  .desktop-nav {
    gap: 22px;
  }

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

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

  .product-feature-grid .image-card:last-child {
    grid-column: 1 / -1;
    min-height: 380px;
  }

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

  .reach-map {
    max-width: 720px;
    margin-inline: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 0.6fr;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .product-row,
  .product-row:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .product-row:nth-child(even) .product-image-wrap,
  .product-row:nth-child(even) .product-copy {
    order: initial;
  }

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

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

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 32px, 640px);
  }

  .header-inner {
    min-height: 82px;
  }

  .brand {
    width: 205px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    position: relative;
    display: block;
  }

  .mobile-nav summary {
    border: 1px solid var(--line);
    color: var(--ink);
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    list-style: none;
    padding: 8px 12px;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 210px;
    border: 1px solid var(--line);
    background: white;
    box-shadow: 0 16px 28px rgba(16, 24, 32, 0.14);
    padding: 8px;
  }

  .mobile-nav-panel a {
    display: block;
    padding: 10px 12px;
  }

  .mobile-nav-panel a:last-child {
    background: var(--blue);
    color: white;
  }

  .hero {
    min-height: 650px;
  }

  .hero-image {
    object-position: 63% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(7, 19, 28, 0.9), rgba(7, 19, 28, 0.36));
  }

  .hero-content {
    padding-top: 92px;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 64px);
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-index {
    right: 16px;
    bottom: 18px;
    left: 16px;
    flex-wrap: wrap;
    gap: 8px 18px;
  }

  .section,
  .reach-section {
    padding: 76px 0;
  }

  .split-heading,
  .about-lead-grid,
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .product-feature-grid .image-card:last-child {
    grid-column: auto;
  }

  .capability-card {
    min-height: 250px;
  }

  .card-number {
    margin-bottom: 46px;
  }

  .image-card {
    min-height: 410px;
  }

  .reach-grid {
    gap: 45px;
  }

  .contact-band-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }

  .page-intro {
    padding: 70px 0;
  }

  .page-intro::after {
    right: -300px;
  }

  .page-intro h1 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .process-list {
    margin-top: 60px;
  }

  .process-row {
    grid-template-columns: 44px 1fr;
    gap: 15px;
  }

  .process-row p {
    grid-column: 2;
  }

  .product-row {
    padding: 50px 0;
  }

  .product-image-wrap,
  .product-image-wrap img {
    min-height: 290px;
  }

  .legal-layout aside {
    position: static;
  }
}

@media (max-width: 430px) {
  .brand {
    width: 170px;
  }

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

  .hero-index span:nth-child(3) {
    display: none;
  }

  .reach-stats,
  .product-items {
    grid-template-columns: 1fr;
  }

  .contact-details > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .legal-links {
    flex-direction: column;
    gap: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
