:root {
  --ink: #071d24;
  --ink-soft: #1c3641;
  --paper: #f5f2ea;
  --paper-strong: #fffefe;
  --moss: #1c3641;
  --moss-dark: #0a252e;
  --sage: #d9d9d9;
  --clay: #cbaf5e;
  --gold: #d6ad51;
  --steel: #b4b4b4;
  --muted: #5f6e72;
  --deck-blue: #1c3641;
  --deck-blue-soft: #244957;
  --deck-blue-dark: #061820;
  --deck-card: rgba(28, 54, 65, 0.82);
  --deck-card-soft: rgba(255, 255, 255, 0.08);
  --line: rgba(28, 54, 65, 0.16);
  --max: 1180px;
  --header-h: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(144px, 190px) 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: var(--header-h);
  padding: 14px clamp(18px, 4vw, 44px);
  background: rgba(245, 242, 234, 0.92);
  border-bottom: 1px solid rgba(28, 54, 65, 0.14);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: 172px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.5vw, 34px);
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 40px;
  padding: 0 13px;
  color: var(--ink);
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.lang-toggle__divider {
  width: 1px;
  height: 15px;
  background: var(--line);
}


.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  color: var(--ink);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  color: #fff;
  background: var(--moss-dark);
  border-color: var(--moss-dark);
  transform: translateY(-1px);
}

.button--small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.78rem;
}

.button--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.46);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.button--light {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.button--light:hover,
.button--light:focus-visible {
  color: #fff;
  background: var(--deck-blue);
  border-color: var(--deck-blue);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: calc(92svh - var(--header-h));
  overflow: hidden;
  color: #fff;
  background: var(--deck-blue-dark);
}

.hero__media,
.hero__scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media {
  object-fit: contain;
  object-position: center;
}

.hero__scrim {
  background:
    linear-gradient(90deg, rgba(6, 24, 32, 0.86) 0%, rgba(28, 54, 65, 0.62) 42%, rgba(28, 54, 65, 0.18) 100%),
    linear-gradient(0deg, rgba(6, 24, 32, 0.82) 0%, rgba(28, 54, 65, 0.12) 48%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 12vh, 128px) 0 clamp(30px, 6vh, 58px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.section--dark .eyebrow,
.final-cta .eyebrow {
  color: var(--gold);
}

.hero .eyebrow {
  font-size: 1.29rem;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: clamp(4.4rem, 14vw, 12rem);
  line-height: 0.82;
  letter-spacing: 0;
}

h2 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(2.15rem, 5vw, 5.3rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.hero__lede {
  max-width: 720px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  line-height: 1.2;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: clamp(42px, 8vh, 82px);
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 890px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.hero__metrics div {
  padding: 18px;
  background: rgba(28, 54, 65, 0.5);
}

.hero__metrics strong,
.hero__metrics span {
  display: block;
}

.hero__metrics strong {
  margin-bottom: 5px;
  font-size: clamp(1.25rem, 2.3vw, 2.15rem);
  line-height: 1;
}

.hero__metrics span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
}

.intro-strip {
  padding: clamp(28px, 5vw, 58px) clamp(18px, 4vw, 44px);
  color: #fff;
  background: var(--deck-blue);
}

.intro-strip p {
  max-width: var(--max);
  margin: 0 auto;
  font-size: clamp(1.45rem, 3.4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section {
  padding: clamp(74px, 10vw, 136px) clamp(18px, 4vw, 44px);
}

.section--light {
  background: var(--paper);
}

.section--dark {
  color: #fff;
  background: var(--deck-blue-dark);
}

.section__grid,
.section__intro,
.process-grid,
.pilot-layout,
.mrv-list {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: start;
  gap: clamp(36px, 6vw, 86px);
}

.section__copy p,
.section__intro p,
.pilot-copy p,
.final-cta p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.section--dark .section__intro p,
.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.stat-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.stat-panel div {
  padding: clamp(22px, 3vw, 34px);
  background: #fff;
}

.stat-panel span,
.stat-panel strong {
  display: block;
}

.stat-panel span {
  margin-bottom: 8px;
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.stat-panel strong {
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.08;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.process-card {
  min-height: 285px;
  padding: 22px;
  background: var(--deck-card);
}

.process-card span {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--gold);
  font-weight: 900;
}

.process-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.96rem;
}

.media-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--deck-blue-dark);
}

.media-band figure {
  position: relative;
  min-height: 540px;
  margin: 0;
  overflow: hidden;
}

.media-band img,
.media-band video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-band figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  color: #fff;
  background: rgba(6, 24, 32, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.section--pilot {
  background:
    linear-gradient(90deg, rgba(217, 217, 217, 0.72), rgba(245, 242, 234, 0.36)),
    var(--paper);
}

.pilot-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(34px, 7vw, 92px);
}

.pilot-media {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  background: var(--steel);
}

.pilot-media img,
.pilot-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pilot-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.pilot-points div {
  min-height: 150px;
  padding: 20px;
  background: #fff;
}

.pilot-points strong,
.pilot-points span {
  display: block;
}

.pilot-points strong {
  margin-bottom: 10px;
  color: var(--moss-dark);
  font-size: 1rem;
}

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

.section--environment {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6, 24, 32, 0.98), rgba(28, 54, 65, 0.94)),
    var(--deck-blue-dark);
}

.environment-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.environment-copy p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.environment-media {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: var(--deck-blue-dark);
}

.environment-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.environment-media figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  color: #fff;
  background: rgba(6, 24, 32, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.environment-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.environment-points article {
  min-height: 150px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.environment-points strong,
.environment-points span {
  display: block;
}

.environment-points strong {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 1rem;
}

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

.section--mrv {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(28, 54, 65, 0.96), rgba(6, 24, 32, 0.98)),
    var(--deck-blue-dark);
}

.mrv-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.mrv-list article {
  min-height: 250px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.mrv-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}


.section--team {
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(214, 173, 81, 0.18), transparent 34%),
    linear-gradient(135deg, #1c3641 0%, #102b33 44%, #061820 100%);
}

.team-shell {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.team-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.team-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 5vw, 5.4rem);
}

.team-heading p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.team-groups {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(270px, 0.65fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.team-group {
  padding: clamp(20px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.06);
}

.team-group h3 {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.team-group--advisors {
  grid-column: 1 / -1;
}

.team-cards,
.advisor-grid {
  display: grid;
  gap: 14px;
}

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

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

.person-card {
  display: grid;
  grid-template-columns: 129px minmax(0, 1fr);
  gap: 16px;
  min-height: 100%;
  padding: 18px;
  background: rgba(28, 54, 65, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.person-card img {
  align-self: start;
  width: 129px;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: bottom center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
}

.person-card span,
.person-card h4,
.person-card p {
  display: block;
  margin: 0;
}

.person-card span {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.person-card h4 {
  color: #fff;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  line-height: 1.1;
}

.person-card p {
  margin-top: 5px;
  color: var(--gold);
  font-size: 0.88rem;
  font-style: italic;
  font-weight: 800;
  line-height: 1.2;
}

.person-card ul {
  margin: 12px 0 0;
  padding-left: 1.1em;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  line-height: 1.34;
}

.person-card li + li {
  margin-top: 6px;
}

.person-card--compact {
  grid-template-columns: 109px minmax(0, 1fr);
}

.person-card--compact img {
  width: 109px;
}

@media (min-width: 981px) {
  .section--team {
    padding-top: clamp(58px, 7vw, 104px);
    padding-bottom: clamp(58px, 7vw, 104px);
  }
}

.final-cta {
  min-height: 76svh;
  color: #fff;
  background:
    linear-gradient(rgba(6, 24, 32, 0.74), rgba(6, 24, 32, 0.9)),
    url("assets/hero-field-operations.jpg") center / cover;
}

.final-cta img,
.final-cta .eyebrow,
.final-cta h2,
.final-cta p,
.final-cta a {
  width: min(var(--max), 100%);
  margin-left: auto;
  margin-right: auto;
}

.final-cta img {
  width: 190px;
  margin-bottom: clamp(46px, 8vw, 96px);
}

.final-cta h2 {
  max-width: 900px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 44px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--deck-blue-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .section__grid,
  .pilot-layout,
  .environment-layout {
    grid-template-columns: 1fr;
  }

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

  .process-card:last-child {
    grid-column: 1 / -1;
  }

  .media-band {
    grid-template-columns: 1fr;
  }

  .media-band figure {
    min-height: 420px;
  }

  .pilot-points,
  .environment-points,
  .mrv-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-heading,
  .team-groups {
    grid-template-columns: 1fr;
  }

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

}

@media (max-width: 680px) {
  :root {
    --header-h: 66px;
  }

  .site-header {
    gap: 12px;
    padding: 12px 16px;
  }

  .brand img {
    width: 142px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .button {
    display: none;
  }

  .site-nav {
    gap: 18px;
    font-size: 0.8rem;
  }

  .hero {
    min-height: calc(88svh - var(--header-h));
  }

  .hero__scrim {
    background:
      linear-gradient(0deg, rgba(6, 24, 32, 0.9) 0%, rgba(28, 54, 65, 0.28) 100%),
      linear-gradient(90deg, rgba(6, 24, 32, 0.6), rgba(28, 54, 65, 0.14));
  }

  .hero__content {
    width: min(100% - 28px, var(--max));
  }

  .hero__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero__metrics,
  .process-grid,
  .pilot-points,
  .environment-points,
  .mrv-list {
    grid-template-columns: 1fr;
  }

  .team-cards--leadership,
  .advisor-grid {
    grid-template-columns: 1fr;
  }

  .person-card,
  .person-card--compact {
    grid-template-columns: 101px minmax(0, 1fr);
    padding: 14px;
  }

  .person-card img,
  .person-card--compact img {
    width: 101px;
  }

  .hero__metrics div,
  .process-card,
  .pilot-points div,
  .environment-points article,
  .mrv-list article {
    min-height: auto;
  }

  .process-card span {
    margin-bottom: 28px;
  }

  .media-band figure {
    min-height: 360px;
  }

  .site-footer {
    flex-direction: column;
  }
}

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