@font-face {
  font-family: "Inter";
  src: url("assets/fonts/package/files/inter-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/package/files/inter-latin-wght-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --navy-950: #020a0f;
  --navy-900: #06131a;
  --navy-850: #091922;
  --navy-800: #0c2029;
  --paper: #f3f7f9;
  --paper-strong: #e9f1f4;
  --white: #ffffff;
  --ink: #07141b;
  --teal: #35c9be;
  --teal-strong: #18b8ad;
  --light-copy: #bdcbd0;
  --dark-copy: #405861;
  --line-dark: rgba(183, 218, 222, 0.17);
  --line-light: #cfdbdf;
  --page: min(1248px, calc(100% - 80px));
  --header-page: min(1344px, calc(100% - 64px));
  --font: "Inter", "Segoe UI", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--navy-950);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
}

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

h1,
h2,
h3 {
  margin-bottom: 0;
  font-weight: 720;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

::selection {
  background: var(--teal);
  color: var(--navy-950);
}

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.eyebrow {
  margin-bottom: 20px;
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: #08756f;
}

.button,
.header-cta {
  min-height: 48px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 760;
  line-height: 1.2;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.button:active,
.header-cta:active {
  transform: translateY(0);
}

.button-primary,
.header-cta {
  background: var(--teal);
  color: var(--navy-950);
}

.button-primary:hover,
.header-cta:hover {
  background: #63ded5;
}

.button-secondary {
  border-color: rgba(226, 243, 244, 0.35);
  background: rgba(2, 10, 15, 0.44);
  color: var(--white);
}

.button-secondary:hover {
  border-color: var(--teal);
  background: var(--navy-900);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 78px;
  background: rgba(2, 10, 15, 0.97);
  border-bottom: 1px solid var(--line-dark);
  transition: background-color 160ms ease, box-shadow 160ms ease;
}

.site-header.is-scrolled {
  background: rgba(2, 10, 15, 0.92);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.header-shell {
  width: var(--header-page);
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 282px 1fr 230px;
  align-items: center;
  gap: 36px;
}

.brand {
  width: 268px;
  height: 42px;
  overflow: hidden;
}

.brand img,
.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 2.9vw, 44px);
}

.site-nav a {
  position: relative;
  padding: 28px 0 26px;
  color: #d5e0e3;
  font-size: 0.8rem;
  font-weight: 690;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--teal);
}

.header-cta {
  width: 230px;
  min-height: 40px;
  padding: 11px 18px;
}

.nav-toggle {
  display: none;
}

/* Hero */

.hero {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: var(--navy-950);
  border-bottom: 1px solid var(--line-dark);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(2, 10, 15, 0.28);
  pointer-events: none;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}

.hero-video {
  z-index: 0;
  display: block;
  object-position: center 75%;
}

.hero-overlay {
  z-index: 2;
  object-fit: contain;
  object-position: right bottom;
  pointer-events: none;
  transform: translate(24px, 160px) scale(1.7);
  transform-origin: right bottom;
}

@media (max-width: 1700px) and (min-width: 1351px) {
  .hero-overlay {
    transform: translateY(90px) scale(1.45);
  }
}

@media (max-width: 1350px) and (min-width: 921px) {
  .hero-overlay {
    transform: translateY(50px) scale(1.1);
  }
}

.hero-shell {
  position: relative;
  z-index: 3;
  width: var(--header-page);
  min-height: 540px;
  margin-inline: auto;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: 500px;
  padding-bottom: 2px;
  transform: translateY(10px);
}

.hero h1 {
  max-width: 460px;
  color: var(--white);
  font-size: clamp(3.45rem, 4.15vw, 3.9rem);
  line-height: 0.96;
}

.hero-intro {
  max-width: 465px;
  margin: 28px 0 0;
  color: #c0cdd1;
  font-size: 0.98rem;
  line-height: 1.78;
}

.hero-assurance {
  max-width: 450px;
  margin: 20px 0 0;
  padding: 10px 0 10px 17px;
  border-left: 3px solid var(--teal);
  color: #edf6f7;
  font-size: 0.86rem;
  font-weight: 720;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

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

.hero-actions .button {
  min-width: 180px;
  min-height: 48px;
}

/* Sector rail */

.sector-strip {
  min-height: 62px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--paper);
  color: var(--ink);
  border-bottom: 1px solid var(--line-light);
}

.sector-strip span {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line-light);
  font-size: 0.91rem;
  font-weight: 680;
}

.sector-strip span:last-child {
  border-right: 0;
}

/* Control overview */

.control-overview {
  padding: 38px 0 74px;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}

.control-heading {
  text-align: center;
}

.control-heading h2 {
  font-size: clamp(2rem, 2.7vw, 2.5rem);
  line-height: 1.04;
}

.control-grid {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) 200px;
  grid-template-areas: "left visual right";
  align-items: center;
  gap: 12px;
}

.control-note {
  padding-top: 10px;
  text-align: center;
}

.control-note-left {
  grid-area: left;
}

.control-note-right {
  grid-area: right;
}

.control-note-index {
  display: block;
  margin-bottom: 14px;
  color: #08756f;
  font-size: 0.69rem;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.control-note h3 {
  font-size: 1.1rem;
  letter-spacing: -0.025em;
}

.control-note p {
  margin: 13px 0 0;
  color: var(--dark-copy);
  font-size: 0.84rem;
  line-height: 1.75;
}

.control-visual {
  grid-area: visual;
  height: 280px;
  margin: 0;
  overflow: hidden;
  text-align: center;
}

.control-visual img {
  width: 100%;
  height: auto;
  transform: translateY(-42px);
}

.control-visual figcaption {
  margin-top: -42px;
  color: #53676f;
  font-size: 0.75rem;
}

/* Shared intros */

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: end;
  gap: 80px;
}

.section-intro h2 {
  font-size: clamp(3rem, 4.5vw, 4.15rem);
  line-height: 0.98;
}

.section-intro > p {
  margin: 0 0 4px;
  font-size: 0.91rem;
  line-height: 1.82;
}

.section-intro-dark > p {
  color: var(--light-copy);
}

.section-intro-light > p {
  color: var(--dark-copy);
}

/* Capabilities */

.capabilities {
  padding: 118px 0 128px;
  background: var(--navy-900);
  color: var(--white);
}

.capability-list {
  margin-top: 74px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.capability-list article {
  min-height: 366px;
  padding: 28px 28px 30px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line-dark);
  transition: background-color 180ms ease;
}

.capability-list article:last-child {
  border-right: 0;
}

.capability-list article:hover {
  background: var(--navy-850);
}

.capability-list article > span {
  color: var(--teal);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.capability-list h3 {
  min-height: 54px;
  margin-top: 58px;
  font-size: 1.55rem;
  line-height: 1.08;
}

.capability-list ul {
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
  color: var(--light-copy);
  font-size: 0.84rem;
  line-height: 1.75;
}

.capability-list li {
  position: relative;
  min-height: 22px;
  padding-left: 30px;
}

.capability-list li::before {
  content: "";
  position: absolute;
  top: 0.24em;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(53, 201, 190, 0.48);
  border-radius: 6px;
  background: rgba(53, 201, 190, 0.1);
  box-shadow: inset 0 0 0 3px rgba(53, 201, 190, 0.04);
}

.capability-list li::after {
  content: "";
  position: absolute;
  top: calc(0.24em + 5px);
  left: 5px;
  width: 7px;
  height: 4px;
  border-bottom: 2px solid var(--teal);
  border-left: 2px solid var(--teal);
  transform: rotate(-45deg);
}

.capability-list li + li {
  margin-top: 11px;
}

.capability-list a {
  width: fit-content;
  margin-top: auto;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--teal);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 720;
}

.capability-list a:hover {
  color: var(--teal);
}

/* Platform */

.platform {
  padding: 120px 0 132px;
  background: var(--navy-950);
  color: var(--white);
}

.platform-workspace {
  margin-top: 72px;
  border: 1px solid var(--line-dark);
}

.platform-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line-dark);
}

.platform-tab {
  position: relative;
  min-height: 108px;
  padding: 21px 18px 19px;
  display: grid;
  grid-template-columns: 26px 1fr;
  grid-template-rows: auto auto;
  column-gap: 11px;
  align-content: center;
  border: 0;
  border-right: 1px solid var(--line-dark);
  background: var(--navy-900);
  text-align: left;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.platform-tab:last-child {
  border-right: 0;
}

.platform-tab:hover,
.platform-tab.is-active {
  background: var(--navy-800);
}

.platform-tab.is-active {
  box-shadow: inset 0 3px 0 var(--teal);
}

.platform-tab span {
  grid-row: 1 / 3;
  color: var(--teal);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.platform-tab strong {
  font-size: 0.85rem;
  font-weight: 720;
  line-height: 1.3;
}

.platform-tab small {
  margin-top: 5px;
  color: var(--light-copy);
  color: #c2d0d5;
  font-size: 0.7rem;
  line-height: 1.4;
}

.platform-panel {
  background: #02070e;
}

.platform-panel figure {
  position: relative;
  height: 520px;
  min-height: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  overflow: hidden;
}

.platform-panel figure > img {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.platform-callout {
  position: static;
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  width: auto;
  min-height: 0;
  margin: 0;
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--navy-900);
  border: 0;
  border-right: 1px solid var(--line-dark);
  box-shadow: none;
}

.platform-callout > span {
  display: block;
  margin-bottom: 22px;
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.platform-callout strong {
  display: block;
  font-size: 1.75rem;
  line-height: 1.08;
}

.platform-callout p {
  margin: 20px 0 0;
  color: var(--light-copy);
  font-size: 0.86rem;
  line-height: 1.75;
}

.platform-callout.is-switching {
  animation: callout-in 220ms ease both;
}

@keyframes callout-in {
  from {
    opacity: 0.45;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Dashboard */

.dashboard {
  padding: 122px 0 132px;
  background: var(--paper);
  color: var(--ink);
}

.dashboard-tabs {
  margin-top: 66px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line-dark);
  border-bottom: 0;
}

.dashboard-tab {
  min-height: 108px;
  padding: 21px 18px 19px;
  display: grid;
  grid-template-columns: 26px 1fr;
  grid-template-rows: auto auto;
  column-gap: 11px;
  align-content: center;
  border: 0;
  border-right: 1px solid var(--line-dark);
  background: var(--navy-900);
  color: var(--white);
  text-align: left;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.dashboard-tab:last-child {
  border-right: 0;
}

.dashboard-tab:hover {
  background: var(--navy-800);
}

.dashboard-tab.is-active {
  background: var(--navy-800);
  box-shadow: inset 0 3px 0 var(--teal);
}

.dashboard-tab span {
  grid-row: 1 / 3;
  color: var(--teal);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.dashboard-tab strong {
  font-size: 0.85rem;
  font-weight: 720;
  line-height: 1.3;
}

.dashboard-tab small {
  margin-top: 5px;
  color: var(--light-copy);
  color: #c2d0d5;
  font-size: 0.7rem;
  line-height: 1.4;
}

.dashboard-panel {
  height: 520px;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  border: 1px solid var(--line-light);
  background: var(--white);
  box-shadow: 0 24px 80px rgba(7, 20, 27, 0.09);
}

.dashboard-screen {
  min-height: 0;
  padding: 12px;
  overflow: hidden;
  background: #0c151f;
}

.dashboard-image-frame {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 14px;
}

.dashboard-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
  transform: scale(1.08);
  transform-origin: left top;
  opacity: 1;
  transition: opacity 120ms ease;
}

.dashboard-screen img.is-switching {
  opacity: 0.45;
}

.dashboard-copy {
  min-height: 0;
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--navy-900);
  color: var(--white);
}

.dashboard-copy > span {
  margin-bottom: 22px;
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.dashboard-copy h3 {
  font-size: 1.75rem;
  line-height: 1.08;
}

.dashboard-copy p {
  margin: 20px 0 0;
  color: var(--light-copy);
  font-size: 0.86rem;
  line-height: 1.75;
}

/* Operations */

.operations {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  background: var(--navy-900);
  color: var(--white);
}

.operations-media {
  min-height: 640px;
  overflow: hidden;
}

.operations-media img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: 72% center;
}

.operations-copy {
  max-width: 620px;
  padding: 96px clamp(44px, 6vw, 100px);
  align-self: center;
}

.operations-copy h2 {
  font-size: clamp(2.8rem, 4vw, 3.85rem);
  line-height: 0.99;
}

.operations-copy > p:not(.eyebrow) {
  margin: 30px 0 0;
  color: var(--light-copy);
  font-size: 0.88rem;
  line-height: 1.8;
}

.operations-copy ul {
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.operations-copy li {
  min-height: 76px;
  padding: 18px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  color: #d5e1e4;
  font-size: 0.72rem;
  font-weight: 660;
  line-height: 1.45;
}

/* Leadership */

.leadership {
  padding: 122px 0 130px;
  background: var(--white);
  color: var(--ink);
}

.leadership-grid {
  margin-top: 68px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.leader {
  min-height: 260px;
  padding: 34px 38px 34px 0;
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 32px;
}

.leader + .leader {
  padding-left: 38px;
  border-left: 1px solid var(--line-light);
}

.leader img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.04);
}

.leader span {
  color: #08756f;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.leader h3 {
  margin-top: 12px;
  font-size: 1.75rem;
}

.leader p {
  margin: 17px 0 0;
  color: var(--dark-copy);
  font-size: 0.77rem;
  line-height: 1.65;
}

.leader a {
  width: fit-content;
  margin-top: 22px;
  display: block;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--teal-strong);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 720;
}

.leader a:hover {
  color: #087c75;
}

/* Contact and footer */

.contact {
  padding: 110px 32px 116px;
  background: var(--navy-900);
  color: var(--white);
  text-align: center;
  border-top: 1px solid var(--line-dark);
}

.contact-shell {
  width: min(820px, 100%);
  margin-inline: auto;
}

.contact h2 {
  font-size: clamp(3.2rem, 5.7vw, 5.1rem);
  line-height: 0.96;
}

.contact-shell > p:not(.eyebrow) {
  max-width: 590px;
  margin: 28px auto 0;
  color: var(--light-copy);
  font-size: 0.9rem;
  line-height: 1.8;
}

.contact-actions {
  margin-top: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.contact-link {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(53, 201, 190, 0.55);
  color: #dce7e9;
  font-size: 0.84rem;
  font-weight: 650;
}

.contact-link:hover {
  color: var(--teal);
}

.site-footer {
  padding: 66px 40px 26px;
  background: var(--navy-950);
  color: var(--white);
}

.footer-main,
.footer-base {
  width: var(--page);
  margin-inline: auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 80px;
}

.footer-brand {
  width: 268px;
  height: 42px;
  display: block;
  overflow: hidden;
}

.footer-main p {
  margin: 20px 0 0;
  color: var(--light-copy);
  font-size: 0.81rem;
}

.footer-main nav {
  display: grid;
  grid-template-columns: repeat(2, 130px);
  gap: 14px 34px;
}

.footer-main nav a,
.footer-base {
  color: #879ca4;
  font-size: 0.76rem;
  font-weight: 650;
}

.footer-main nav a:hover,
.footer-base a:hover {
  color: var(--teal);
}

.footer-base {
  margin-top: 52px;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line-dark);
}

/* Contact page */

.contact-page-main {
  background: var(--paper);
  color: var(--ink);
}

.contact-page-hero {
  position: relative;
  overflow: hidden;
  padding: 118px 0 108px;
  background:
    radial-gradient(circle at 78% 18%, rgba(53, 201, 190, 0.18), transparent 28%),
    linear-gradient(135deg, var(--navy-950) 0%, #071923 58%, #0b252d 100%);
  color: var(--white);
  border-bottom: 1px solid var(--line-dark);
}

.contact-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(129, 192, 196, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(129, 192, 196, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 48%, #000);
  mask-image: linear-gradient(to right, transparent, #000 48%, #000);
  pointer-events: none;
}

.contact-page-hero .section-shell {
  position: relative;
  z-index: 1;
}

.contact-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: end;
  gap: 96px;
}

.contact-page-hero h1 {
  max-width: 780px;
  font-size: clamp(4rem, 6.4vw, 6.2rem);
  line-height: 0.94;
}

.contact-page-lead {
  max-width: 670px;
  margin: 30px 0 0;
  color: #c7d5d9;
  font-size: 1.05rem;
  line-height: 1.8;
}

.contact-page-context {
  padding: 26px 28px;
  border-top: 3px solid var(--teal);
  background: rgba(2, 10, 15, 0.56);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.contact-page-context strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1.3;
}

.contact-page-context p {
  margin: 12px 0 0;
  color: var(--light-copy);
  font-size: 0.88rem;
  line-height: 1.7;
}

.contact-form-section {
  padding: 108px 0 124px;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  align-items: start;
  gap: clamp(60px, 8vw, 112px);
}

.contact-form-intro h2 {
  font-size: clamp(2.7rem, 4vw, 4rem);
  line-height: 0.98;
}

.contact-form-intro > p:not(.eyebrow) {
  margin: 26px 0 0;
  color: var(--dark-copy);
  font-size: 0.95rem;
  line-height: 1.8;
}

.contact-checklist {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.contact-checklist li {
  position: relative;
  padding: 17px 0 17px 32px;
  border-bottom: 1px solid var(--line-light);
  color: #27414b;
  font-size: 0.86rem;
  font-weight: 660;
  line-height: 1.45;
}

.contact-checklist li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 3px;
  width: 10px;
  height: 10px;
  border: 2px solid #08756f;
  transform: rotate(45deg);
}

.contact-direct {
  margin-top: 30px;
  color: var(--dark-copy);
  font-size: 0.82rem;
}

.contact-direct a {
  color: #08756f;
  font-weight: 760;
  border-bottom: 1px solid rgba(8, 117, 111, 0.34);
}

.contact-form {
  padding: clamp(30px, 4.5vw, 54px);
  border: 1px solid var(--line-light);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 28px 90px rgba(7, 20, 27, 0.1);
}

.contact-form-header {
  margin-bottom: 34px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line-light);
}

.contact-form-header h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
}

.contact-form-header p {
  margin: 14px 0 0;
  color: var(--dark-copy);
  font-size: 0.9rem;
  line-height: 1.7;
}

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

.form-field {
  display: grid;
  gap: 9px;
}

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

.form-field label,
.form-legend {
  color: #1a333d;
  font-size: 0.79rem;
  font-weight: 760;
  line-height: 1.35;
}

.form-field label span,
.form-legend span {
  color: #08756f;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid #b9c9ce;
  border-radius: 6px;
  background: #fbfdfe;
  color: var(--ink);
  font-size: 0.93rem;
  line-height: 1.45;
  transition: border-color 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

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

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #70858d;
  opacity: 1;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: #08756f;
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(53, 201, 190, 0.15);
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.form-consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 12px;
  color: var(--dark-copy);
  font-size: 0.78rem;
  line-height: 1.55;
  cursor: pointer;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: #08756f;
}

.contact-submit-row {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-submit-row p {
  max-width: 390px;
  margin: 0;
  color: var(--dark-copy);
  font-size: 0.76rem;
  line-height: 1.6;
}

.contact-submit-row .button {
  min-width: 180px;
  cursor: pointer;
}

.contact-result-main {
  min-height: calc(100vh - 78px);
  padding: 110px 24px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 75% 20%, rgba(53, 201, 190, 0.15), transparent 30%),
    var(--navy-950);
}

.contact-result-card {
  width: min(680px, 100%);
  padding: clamp(36px, 6vw, 64px);
  border: 1px solid var(--line-dark);
  border-top: 4px solid var(--teal);
  background: var(--navy-900);
  color: var(--white);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.contact-result-card h1 {
  margin-top: 18px;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
}

.contact-result-card p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--light-copy);
  font-size: 0.96rem;
  line-height: 1.8;
}

.contact-result-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Responsive */

@media (max-width: 1180px) {
  :root {
    --page: min(1040px, calc(100% - 56px));
    --header-page: calc(100% - 48px);
  }

  .header-shell {
    grid-template-columns: 242px 1fr 178px;
    gap: 24px;
  }

  .brand {
    width: 232px;
    height: 38px;
  }

  .site-nav {
    gap: 28px;
  }

  .header-cta {
    width: 178px;
    font-size: 0.7rem;
  }

  .hero-copy {
    width: 455px;
  }

  .hero h1 {
    max-width: 450px;
  }

  .control-grid {
    grid-template-columns: 190px minmax(0, 1fr) 190px;
  }

  .control-note p {
    font-size: 0.73rem;
  }

  .capability-list article {
    padding-inline: 22px;
  }

  .platform-panel figure,
  .dashboard-panel {
    grid-template-columns: 270px minmax(0, 1fr);
  }
}

@media (max-width: 920px) {
  :root {
    --page: calc(100% - 40px);
    --header-page: calc(100% - 32px);
  }

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

  .site-header {
    height: 68px;
  }

  .header-shell {
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 214px;
  }

  .nav-toggle {
    min-width: 68px;
    min-height: 38px;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-dark);
    border-radius: 2px;
    background: transparent;
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 720;
    cursor: pointer;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    background: var(--navy-950);
    border-top: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .site-header.is-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    padding: 17px 22px;
    border-bottom: 1px solid var(--line-dark);
    font-size: 0.8rem;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-video,
  .hero-overlay {
    top: auto;
    bottom: 0;
    height: 330px;
  }

  .hero-video {
    object-position: center center;
  }

  .hero-overlay {
    object-position: right bottom;
    transform: scale(1.16);
  }

  .hero-shell {
    min-height: 760px;
    align-items: flex-start;
    padding-top: 70px;
  }

  .hero-copy {
    width: min(590px, 100%);
  }

  .hero h1 {
    max-width: 560px;
    font-size: clamp(3.35rem, 8.7vw, 4.65rem);
  }

  .hero-intro {
    max-width: 550px;
  }

  .control-overview {
    padding-block: 64px 88px;
  }

  .control-grid {
    max-width: 680px;
    margin: 30px auto 0;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "visual visual"
      "left right";
    gap: 34px;
  }

  .control-visual figcaption {
    margin-top: -8px;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-intro > p {
    max-width: 650px;
  }

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

  .capability-list article:nth-child(2) {
    border-right: 0;
  }

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

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

  .platform-tab:nth-child(2) {
    border-right: 0;
  }

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

  .platform-panel figure {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .platform-panel figure > img {
    grid-column: 1;
    grid-row: 2;
    height: 350px;
    min-height: 350px;
  }

  .platform-callout {
    grid-column: 1;
    grid-row: 1;
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .dashboard-tabs {
    display: flex;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .dashboard-tab {
    flex: 0 0 205px;
  }

  .dashboard-panel {
    height: auto;
  }

  .dashboard-screen {
    height: 350px;
  }

  .dashboard-panel {
    grid-template-columns: 1fr;
  }

  .dashboard-copy {
    min-height: 240px;
  }

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

  .operations-media,
  .operations-media img {
    min-height: 440px;
    height: 440px;
  }

  .operations-copy {
    max-width: none;
    width: var(--page);
    margin-inline: auto;
    padding: 84px 0 94px;
  }

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

  .leader {
    padding-right: 0;
  }

  .leader + .leader {
    padding-left: 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }
}

@media (max-width: 600px) {
  :root {
    --page: calc(100% - 28px);
    --header-page: calc(100% - 24px);
  }

  body {
    font-size: 15px;
  }

  .site-header {
    height: 64px;
  }

  .brand {
    width: min(218px, 62vw);
    height: 34px;
  }

  .site-nav {
    top: 64px;
  }

  .nav-toggle {
    min-width: 62px;
    min-height: 36px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-shell {
    min-height: 720px;
    padding-top: 58px;
  }

  .hero-video,
  .hero-overlay {
    height: 260px;
  }

  .hero-video {
    object-position: center center;
  }

  .hero-overlay {
    object-position: right bottom;
    transform: scale(1.12);
  }

  .hero .eyebrow {
    margin-bottom: 16px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 3.65rem);
    line-height: 0.98;
  }

  .hero-intro {
    margin-top: 24px;
    font-size: 0.91rem;
    line-height: 1.66;
  }

  .hero-actions {
    margin-top: 26px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
  }

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

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

  .sector-strip span {
    min-height: 54px;
    font-size: 0.78rem;
  }

  .sector-strip span:nth-child(2) {
    border-right: 0;
  }

  .sector-strip span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-light);
  }

  .control-overview {
    padding-block: 58px 72px;
  }

  .control-heading h2 {
    font-size: 2.35rem;
  }

  .control-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "left"
      "right";
    gap: 30px;
  }

  .control-visual {
    height: auto;
    margin-inline: -6px;
    overflow: visible;
  }

  .control-visual img {
    transform: none;
  }

  .control-visual figcaption {
    margin-top: 2px;
  }

  .control-note {
    padding: 20px 0 2px;
  }

  .capabilities,
  .platform,
  .dashboard,
  .leadership {
    padding-block: 82px 88px;
  }

  .section-intro h2 {
    font-size: 2.75rem;
  }

  .capability-list {
    margin-top: 52px;
    grid-template-columns: 1fr;
  }

  .capability-list article {
    min-height: 330px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .capability-list article:last-child {
    border-bottom: 0;
  }

  .capability-list h3 {
    margin-top: 42px;
  }

  .platform-workspace {
    margin-top: 50px;
  }

  .platform-tabs {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .platform-tab {
    flex: 0 0 220px;
    min-height: 106px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 0 !important;
    scroll-snap-align: start;
  }

  .platform-panel figure {
    min-height: 0;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
  }

  .platform-panel figure > img {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    height: 270px;
    min-height: 270px;
    object-position: 54% center;
  }

  .platform-callout {
    position: static;
    grid-column: 1;
    grid-row: 1;
    width: auto;
    min-height: 238px;
    margin: 0;
    border: 0;
    border-bottom: 1px solid var(--line-dark);
    box-shadow: none;
    padding: 32px 26px;
  }

  .dashboard-tabs {
    margin-top: 50px;
  }

  .dashboard-tab {
    flex-basis: 205px;
  }

  .dashboard-screen {
    height: 270px;
    padding: 7px;
  }

  .dashboard-image-frame {
    border-radius: 10px;
  }

  .dashboard-screen img {
    height: 100%;
  }

  .dashboard-copy {
    min-height: 238px;
    padding: 32px 26px;
  }

  .operations-media,
  .operations-media img {
    min-height: 320px;
    height: 320px;
  }

  .operations-copy {
    padding-block: 72px 82px;
  }

  .operations-copy h2 {
    font-size: 2.65rem;
  }

  .operations-copy ul {
    grid-template-columns: 1fr;
  }

  .operations-copy li {
    min-height: 62px;
  }

  .leadership-grid {
    margin-top: 48px;
  }

  .leader {
    min-height: 0;
    padding-block: 28px;
    grid-template-columns: 92px 1fr;
    align-items: start;
    gap: 22px;
  }

  .leader img {
    width: 92px;
    height: 92px;
  }

  .leader h3 {
    font-size: 1.45rem;
  }

  .leader p {
    font-size: 0.72rem;
  }

  .contact {
    padding: 80px 20px 86px;
  }

  .contact h2 {
    font-size: 3rem;
  }

  .contact-actions {
    display: grid;
    gap: 20px;
  }

  .contact-actions .button {
    width: 100%;
  }

  .contact-link {
    width: fit-content;
    margin-inline: auto;
  }

  .site-footer {
    padding: 54px 20px 22px;
  }

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

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

  .footer-base {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 920px) {
  .contact-page-hero {
    padding: 88px 0 82px;
  }

  .contact-page-hero-grid,
  .contact-form-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-page-context {
    max-width: 620px;
  }

  .contact-form-section {
    padding: 82px 0 92px;
  }

  .contact-form-intro {
    max-width: 680px;
  }
}

@media (max-width: 600px) {
  .hero-assurance {
    margin-top: 18px;
    font-size: 0.8rem;
  }

  .contact-page-hero {
    padding: 70px 0 68px;
  }

  .contact-page-hero h1 {
    font-size: clamp(3.25rem, 15vw, 4rem);
  }

  .contact-page-lead {
    margin-top: 24px;
    font-size: 0.94rem;
  }

  .contact-page-context {
    padding: 22px;
  }

  .contact-form-section {
    padding: 68px 0 76px;
  }

  .contact-form-layout {
    gap: 40px;
  }

  .contact-form {
    padding: 26px 20px;
    border-radius: 8px;
  }

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

  .form-field-full {
    grid-column: auto;
  }

  .contact-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-submit-row .button {
    width: 100%;
  }

  .contact-result-main {
    padding: 72px 20px;
  }

  .contact-result-actions {
    display: grid;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .platform-tabs,
  .dashboard-tabs,
  .contact-actions {
    display: none !important;
  }

  body,
  .capabilities,
  .platform,
  .operations,
  .contact,
  .site-footer {
    background: #fff !important;
    color: #000 !important;
  }
}
