:root {
  --navy: #07182d;
  --navy-soft: #102943;
  --green: #12813b;
  --green-bright: #2bbf67;
  --steel: #2e6f9f;
  --steel-bright: #6bb9e8;
  --gold: #c79b3b;
  --white: #ffffff;
  --line: #dce2e7;
  --ink: #0b1b2e;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--navy);
  font-family: Aptos, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.gateway-header {
  position: relative;
  z-index: 5;
  display: flex;
  height: 76px;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  border-top: 6px solid var(--navy);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.gateway-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.gateway-brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.gateway-mark {
  display: block;
  width: 42px;
  height: 42px;
  overflow: hidden;
}

.gateway-mark img {
  display: block;
  width: 42px;
  height: auto;
}

.gateway-wordmark {
  color: var(--navy);
  font-size: 25px;
  font-weight: 750;
}

.gateway-brandline {
  margin-top: 6px;
  color: #667487;
  font-size: 10px;
  font-weight: 650;
}

.gateway-meta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #687688;
  font-size: 12px;
  font-weight: 650;
}

.gateway-meta span + span {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.gateway-location {
  color: var(--navy-soft);
  font-size: 13px;
  font-weight: 600;
}

.gateway-intro {
  min-height: 142px;
  padding: 28px 40px;
  background: var(--white);
}

.gateway-intro-inner {
  display: grid;
  width: min(100%, 1360px);
  min-height: 86px;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 72px;
  margin: 0 auto;
}

.gateway-intro-inner > div > p {
  margin: 0 0 8px;
  color: var(--navy-soft);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.gateway-intro h1 {
  margin: 0;
  color: var(--navy);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.12;
}

.gateway-intro-note {
  margin: 0;
  padding-left: 24px;
  border-left: 3px solid var(--gold);
  color: #596879;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.division-grid {
  display: grid;
  min-height: calc(100svh - 262px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--white);
}

.division {
  position: relative;
  isolation: isolate;
  display: block;
  min-height: 560px;
  overflow: hidden;
  color: var(--white);
  text-decoration: none;
}

.division + .division {
  border-left: 1px solid rgba(255, 255, 255, 0.9);
}

.division > img {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.division-services > img {
  object-position: center 52%;
}

.division-technologies > img {
  object-position: center 56%;
}

.division-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: rgba(5, 21, 38, 0.64);
  transition: background-color 300ms ease;
}

.division-technologies .division-shade {
  background: rgba(5, 22, 42, 0.67);
}

.division-content {
  position: absolute;
  right: 7.5%;
  bottom: 46px;
  left: 7.5%;
  display: flex;
  max-width: 650px;
  flex-direction: column;
  align-items: flex-start;
  animation: division-enter 650ms both;
}

.division-technologies .division-content {
  animation-delay: 100ms;
}

.division-rule {
  width: 88px;
  height: 4px;
  margin-bottom: 20px;
  background: var(--green-bright);
}

.division-technologies .division-rule {
  background: var(--steel-bright);
}

.division-heading {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.division-number {
  display: inline-flex;
  min-width: 28px;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(142, 240, 179, 0.55);
  border-radius: 3px;
  color: #b8f5cf;
  font-size: 11px;
  font-weight: 750;
}

.division-technologies .division-number {
  border-color: rgba(155, 215, 250, 0.55);
  color: #c8eaff;
}

.division-kicker {
  color: #8ef0b3;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.division-technologies .division-kicker {
  color: #9bd7fa;
}

.division-title {
  max-width: 650px;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.08;
}

.division-summary {
  margin-top: 13px;
  font-size: 17px;
  line-height: 1.5;
}

.division-capabilities {
  display: flex;
  flex-wrap: wrap;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 650;
}

.division-capabilities span + span {
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.division-action {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 30px;
  margin-top: 24px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: var(--green);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
  transition: background-color 180ms ease, transform 180ms ease;
}

.division-technologies .division-action {
  background: var(--steel);
}

.arrow {
  position: relative;
  display: block;
  width: 18px;
  height: 12px;
  transition: transform 180ms ease;
}

.arrow::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 17px;
  height: 2px;
  background: currentColor;
  content: "";
}

.arrow::after {
  position: absolute;
  top: 2px;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.division:hover > img {
  transform: scale(1.025);
}

.division:hover .division-shade {
  background: rgba(5, 21, 38, 0.57);
}

.division:hover .division-action {
  transform: translateY(-2px);
}

.division:hover .arrow {
  transform: translateX(4px);
}

.division:focus-visible {
  z-index: 2;
  outline: 4px solid #f2c14e;
  outline-offset: -4px;
}

.gateway-footer {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 14px;
  padding: 0 40px;
  color: rgba(255, 255, 255, 0.84);
  background: var(--navy);
  font-size: 13px;
}

.gateway-footer span + span::before {
  padding-right: 14px;
  color: rgba(255, 255, 255, 0.42);
  content: "|";
}

@keyframes division-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .gateway-header {
    height: 70px;
    padding: 0 22px;
  }

  .gateway-intro {
    min-height: 156px;
    padding: 26px 22px;
  }

  .gateway-intro-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gateway-intro-note {
    max-width: 680px;
    padding-left: 16px;
  }

  .gateway-intro h1 {
    font-size: 30px;
  }

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

  .division {
    min-height: 500px;
  }

  .division + .division {
    border-top: 1px solid rgba(255, 255, 255, 0.9);
    border-left: 0;
  }

  .division-title {
    font-size: 35px;
  }
}

@media (max-width: 560px) {
  .gateway-header {
    height: 66px;
    padding: 0 16px;
    border-top-width: 4px;
  }

  .gateway-mark {
    width: 36px;
    height: 36px;
  }

  .gateway-mark img {
    width: 36px;
  }

  .gateway-wordmark {
    font-size: 21px;
  }

  .gateway-brandline {
    display: none;
  }

  .gateway-meta > span:first-child {
    display: none;
  }

  .gateway-meta span + span {
    padding-left: 0;
    border-left: 0;
  }

  .gateway-location {
    max-width: 96px;
    font-size: 12px;
    line-height: 1.25;
    text-align: right;
  }

  .gateway-intro {
    min-height: 158px;
    padding: 22px 16px;
  }

  .gateway-intro h1 {
    font-size: 27px;
  }

  .gateway-intro-note {
    padding-left: 14px;
    font-size: 13px;
  }

  .division {
    min-height: 500px;
  }

  .division-content {
    right: 22px;
    bottom: 34px;
    left: 22px;
  }

  .division-rule {
    margin-bottom: 18px;
  }

  .division-title {
    font-size: 31px;
  }

  .division-summary {
    font-size: 16px;
  }

  .division-capabilities {
    display: none;
  }

  .division-action {
    min-height: 48px;
    margin-top: 24px;
    padding: 0 18px;
  }

  .gateway-footer {
    justify-content: center;
    padding: 0 16px;
  }
}

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

  .division-content {
    animation: none;
  }

  .division > img,
  .division-action,
  .arrow {
    transition: none;
  }
}
