/* =====================================================
   RESET
===================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --navy: #08131d;
  --navy-soft: #0e1c27;
  --graphite: #121b21;

  --white: #f4f5f2;

  --grey: #89949a;
  --grey-dark: #627078;

  --line: rgba(255, 255, 255, 0.12);

  --green: #70b28a;
  --amber: #d7aa58;
  --red: #c84741;
  --blue: #39a5df;
}

body {
  background: var(--navy);
  color: var(--white);

  font-family:
    Inter,
    Arial,
    Helvetica,
    sans-serif;

  overflow-x: hidden;
}

a {
  color: inherit;
}


/* =====================================================
   NAVBAR
===================================================== */

.site-header {
  position: fixed;

  top: 0;
  left: 0;
  right: 0;

  z-index: 1000;

  background:
    rgba(5, 12, 18, 0.56);

  backdrop-filter:
    blur(18px);

  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.1);
}


.nav-container {
  max-width: 1600px;

  height: 82px;

  margin: 0 auto;

  padding:
    0 6vw;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;
}


.brand {
  display: flex;

  align-items: center;

  gap: 14px;

  text-decoration: none;
}


.brand-mark {
  width: 45px;
  height: 45px;

  display: flex;

  align-items: center;

  justify-content: center;

  border:
    1px solid
    rgba(255, 255, 255, 0.35);

  background:
    rgba(255, 255, 255, 0.04);

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 1.3px;
}


.brand-text {
  display: flex;

  flex-direction: column;

  gap: 3px;
}


.brand-title {
  font-size: 13px;

  font-weight: 700;
}


.brand-subtitle {
  color:
    rgba(255, 255, 255, 0.46);

  font-size: 9px;

  letter-spacing: 1.4px;

  text-transform: uppercase;
}


.nav-links {
  display: flex;

  align-items: center;

  gap: 30px;
}


.nav-links a {
  color:
    rgba(255, 255, 255, 0.67);

  text-decoration: none;

  font-size: 12px;

  transition:
    0.2s ease;
}


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


.nav-dashboard {
  padding:
    12px 16px;

  border:
    1px solid
    rgba(255, 255, 255, 0.3);

  background:
    rgba(255, 255, 255, 0.05);

  text-decoration: none;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 1px;

  text-transform: uppercase;

  transition:
    0.2s ease;
}


.nav-dashboard:hover {
  background: white;

  color: var(--navy);
}


/* =====================================================
   HERO
===================================================== */

.hero {
  position: relative;

  min-height: 100vh;

  overflow: hidden;

  display: flex;

  align-items: flex-end;

  padding:
    150px 7vw
    88px;
}


.hero-image {
  position: absolute;

  inset: 0;

  z-index: 0;

  background-image:
    url("/images/hero-mountain.jpg");

  background-size: cover;

  background-position: center;

  transform:
    scale(1.04);
}


.hero-overlay {
  position: absolute;

  inset: 0;

  z-index: 1;

  background:
    linear-gradient(
      90deg,
      rgba(4, 12, 18, 0.94) 0%,
      rgba(4, 12, 18, 0.67) 41%,
      rgba(4, 12, 18, 0.22) 72%,
      rgba(4, 12, 18, 0.2) 100%
    );
}


.hero-top-shadow {
  position: absolute;

  top: 0;
  left: 0;
  right: 0;

  z-index: 2;

  height: 230px;

  background:
    linear-gradient(
      to bottom,
      rgba(2, 8, 12, 0.75),
      transparent
    );
}


.hero-bottom-shadow {
  position: absolute;

  bottom: 0;
  left: 0;
  right: 0;

  z-index: 2;

  height: 310px;

  background:
    linear-gradient(
      to top,
      rgba(4, 11, 16, 0.92),
      transparent
    );
}


.hero-content {
  position: relative;

  z-index: 5;

  max-width: 900px;

  padding-bottom: 105px;
}


.hero-kicker {
  display: block;

  margin-bottom: 25px;

  color:
    rgba(255, 255, 255, 0.64);

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 3px;
}


.hero h1 {
  max-width: 920px;

  margin-bottom: 30px;

  font-size:
    clamp(
      72px,
      9.3vw,
      150px
    );

  line-height: 0.82;

  letter-spacing: -7px;

  font-weight: 700;
}


.hero h1 span {
  display: block;

  color:
    rgba(244, 245, 242, 0.44);
}


.hero-description {
  max-width: 670px;

  margin-bottom: 34px;

  color:
    rgba(245, 247, 245, 0.76);

  font-size: 16px;

  line-height: 1.75;
}


.hero-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;
}


.button {
  min-height: 52px;

  padding:
    0 24px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  text-decoration: none;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1.4px;

  text-transform: uppercase;

  transition:
    0.25s ease;
}


.button-primary {
  background: white;

  color: var(--navy);

  border:
    1px solid white;
}


.button-primary:hover {
  background: transparent;

  color: white;
}


.button-secondary {
  color: white;

  border:
    1px solid
    rgba(255, 255, 255, 0.4);
}


.button-secondary:hover {
  background:
    rgba(255, 255, 255, 0.1);

  border-color: white;
}


.hero-coordinate {
  position: absolute;

  z-index: 5;

  top: 125px;

  right: 7vw;

  display: flex;

  flex-direction: column;

  align-items: flex-end;

  gap: 7px;
}


.hero-coordinate span {
  color:
    rgba(255, 255, 255, 0.4);

  font-size: 8px;

  letter-spacing: 1.7px;
}


.hero-coordinate strong {
  font-family:
    "Courier New",
    monospace;

  font-size: 12px;

  font-weight: 400;
}


.hero-meta {
  position: absolute;

  z-index: 5;

  left: 7vw;
  right: 7vw;
  bottom: 30px;

  padding-top: 18px;

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  border-top:
    1px solid
    rgba(255, 255, 255, 0.2);
}


.meta-item {
  display: flex;

  flex-direction: column;

  gap: 6px;
}


.meta-item span {
  color:
    rgba(255, 255, 255, 0.4);

  font-size: 8px;

  letter-spacing: 1.7px;
}


.meta-item strong {
  font-size: 11px;

  font-weight: 600;
}


.scroll-indicator {
  position: absolute;

  z-index: 6;

  right: 32px;

  bottom: 105px;

  display: flex;

  align-items: center;

  gap: 13px;

  transform:
    rotate(90deg);

  transform-origin:
    right bottom;
}


.scroll-indicator span {
  color:
    rgba(255, 255, 255, 0.4);

  font-size: 8px;

  letter-spacing: 1.7px;
}


.scroll-line {
  width: 72px;

  height: 1px;

  background:
    rgba(255, 255, 255, 0.35);
}


/* =====================================================
   SHARED SECTION TYPOGRAPHY
===================================================== */

.section-number {
  display: block;

  margin-bottom: 20px;

  color:
    rgba(255, 255, 255, 0.43);

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 2.2px;
}


.section-heading {
  max-width: 980px;

  margin-bottom: 72px;
}


.section-heading h2,
.problem-content h2,
.telemetry-copy h2,
.testing-content h2 {
  font-size:
    clamp(
      48px,
      5.7vw,
      88px
    );

  line-height: 0.96;

  letter-spacing: -3px;

  font-weight: 600;
}


.section-heading h2 span,
.problem-content h2 span,
.telemetry-copy h2 span,
.testing-content h2 span {
  display: block;

  color: #7d898f;
}


.section-heading p,
.problem-content > p,
.telemetry-copy > p,
.testing-content > p {
  max-width: 740px;

  margin-top: 26px;

  color: #8f9ba1;

  font-size: 16px;

  line-height: 1.8;
}


/* =====================================================
   PROJECT ORIGIN
===================================================== */

.origin-section {
  position: relative;

  min-height: 900px;

  overflow: hidden;

  padding:
    130px 7vw;

  background:
    #07111a;
}


.origin-background {
  position: absolute;

  inset: 0;

  z-index: 0;

  background-image:
    url("/images/origin-mountain.jpg");

  background-size: cover;

  background-position: center;
}


.origin-overlay {
  position: absolute;

  inset: 0;

  z-index: 1;

  background:
    linear-gradient(
      90deg,
      rgba(5, 13, 20, 0.97) 0%,
      rgba(5, 13, 20, 0.89) 45%,
      rgba(5, 13, 20, 0.48) 100%
    );
}


.origin-inner {
  position: relative;

  z-index: 2;

  max-width: 1450px;

  margin: 0 auto;
}


.origin-heading {
  max-width: 980px;
}


.origin-heading h2 {
  max-width: 970px;

  margin-top: 18px;

  font-size:
    clamp(
      52px,
      6.3vw,
      98px
    );

  line-height: 0.94;

  letter-spacing: -3.8px;

  font-weight: 600;
}


.origin-heading h2 span {
  display: block;

  color:
    rgba(244, 245, 242, 0.42);
}


.origin-story {
  max-width: 1050px;

  margin-top: 58px;

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 70px;
}


.origin-story p {
  color:
    rgba(244, 245, 242, 0.68);

  font-size: 15px;

  line-height: 1.85;
}


.origin-story .origin-lead {
  color:
    rgba(244, 245, 242, 0.9);

  font-size: 18px;
}


.origin-metrics {
  margin-top: 85px;

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  border-top:
    1px solid
    rgba(255, 255, 255, 0.18);

  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.18);
}


.origin-metric {
  min-height: 220px;

  padding:
    32px 26px;

  display: flex;

  flex-direction: column;

  border-right:
    1px solid
    rgba(255, 255, 255, 0.15);
}


.origin-metric:last-child {
  border-right: none;
}


.origin-metric strong {
  font-size:
    clamp(
      50px,
      5vw,
      78px
    );

  line-height: 1;

  letter-spacing: -3px;

  font-weight: 600;
}


.metric-unit {
  margin-top: 8px;

  color:
    rgba(255, 255, 255, 0.48);

  font-size: 9px;

  letter-spacing: 1.8px;

  font-weight: 700;
}


.origin-metric p {
  margin-top: auto;

  color:
    rgba(255, 255, 255, 0.62);

  font-size: 12px;

  line-height: 1.5;
}


.origin-metric-text strong {
  color: #7fc39a;
}


.origin-principle {
  max-width: 950px;

  margin-top: 55px;

  padding:
    25px 28px;

  border-left:
    3px solid
    #d33c38;

  background:
    rgba(255, 255, 255, 0.035);
}


.origin-principle span {
  display: block;

  margin-bottom: 10px;

  color:
    rgba(255, 255, 255, 0.45);

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 1.8px;
}


.origin-principle p {
  color:
    rgba(255, 255, 255, 0.78);

  font-size: 14px;

  line-height: 1.75;
}


/* =====================================================
   PROBLEM
===================================================== */

.problem-section {
  position: relative;

  min-height: 950px;

  padding:
    130px 7vw;

  display: flex;

  align-items: flex-end;

  overflow: hidden;
}


.problem-image {
  position: absolute;

  inset: 0;

  z-index: 0;

  background-image:
    url("/images/problem-mountain.jpg");

  background-size: cover;

  background-position: center;
}


.problem-overlay {
  position: absolute;

  inset: 0;

  z-index: 1;

  background:
    linear-gradient(
      to right,
      rgba(5, 12, 18, 0.94),
      rgba(5, 12, 18, 0.59) 56%,
      rgba(5, 12, 18, 0.25)
    );
}


.problem-content {
  position: relative;

  z-index: 2;

  max-width: 1180px;
}


.problem-content > p {
  color:
    rgba(240, 244, 242, 0.73);
}


.problem-facts {
  margin-top: 65px;

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  border-top:
    1px solid
    rgba(255, 255, 255, 0.18);

  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.18);
}


.problem-fact {
  min-height: 245px;

  padding:
    28px 28px 32px 0;

  border-right:
    1px solid
    rgba(255, 255, 255, 0.15);
}


.problem-fact + .problem-fact {
  padding-left: 28px;
}


.problem-fact:last-child {
  border-right: none;
}


.fact-number {
  display: block;

  margin-bottom: 48px;

  color:
    rgba(255, 255, 255, 0.4);

  font-family:
    "Courier New",
    monospace;

  font-size: 9px;
}


.problem-fact strong {
  display: block;

  margin-bottom: 16px;

  font-size: 21px;

  font-weight: 500;
}


.problem-fact p {
  max-width: 310px;

  color:
    rgba(255, 255, 255, 0.61);

  font-size: 13px;

  line-height: 1.7;
}


/* =====================================================
   SYSTEM ARCHITECTURE
===================================================== */

.system-section {
  padding:
    140px 7vw;

  background:
    #0b1721;
}


.architecture-lane {
  margin-top: 70px;
}


.telemetry-lane {
  margin-top: 55px;
}


.lane-title {
  margin-bottom: 18px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;
}


.lane-title p {
  color: #6f7d85;

  font-size: 11px;
}


.lane-tag {
  min-height: 30px;

  padding:
    0 13px;

  display: inline-flex;

  align-items: center;

  border-radius: 30px;

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.4px;
}


.registration-tag {
  color: #f4f5f2;

  background:
    #15283a;
}


.telemetry-tag {
  color: #06131d;

  background:
    #39a5df;
}


/* =====================================================
   ARCHITECTURE FLOW
===================================================== */

.lane-flow {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    42px
    minmax(0, 1fr)
    42px
    minmax(0, 1fr)
    42px
    minmax(0, 1fr);

  align-items: stretch;
}


.lane-node {
  min-width: 0;

  min-height: 250px;

  padding: 25px;

  display: flex;

  flex-direction: column;

  border:
    1px solid
    rgba(255, 255, 255, 0.13);

  background:
    rgba(255, 255, 255, 0.02);
}


.radio-node {
  background:
    rgba(52, 157, 210, 0.08);

  border-color:
    rgba(52, 157, 210, 0.28);
}


.node-number {
  width: 36px;
  height: 36px;

  margin-bottom: 42px;

  display: flex;

  align-items: center;

  justify-content: center;

  border:
    1px solid
    rgba(255, 255, 255, 0.14);

  color: #77858d;

  font-family:
    "Courier New",
    monospace;

  font-size: 9px;
}


.node-type {
  margin-bottom: 9px;

  color: #63727b;

  font-size: 8px;

  letter-spacing: 1.7px;
}


.lane-node h3 {
  font-size: 19px;

  font-weight: 500;
}


.lane-node p {
  margin-top: auto;

  color: #77858d;

  font-size: 12px;

  line-height: 1.65;
}


.lane-arrow {
  width: 42px;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #52616a;

  font-size: 18px;
}


/* =====================================================
   BACKEND JOIN
===================================================== */

.backend-join {
  margin-top: 80px;

  display: flex;

  flex-direction: column;

  align-items: center;
}


.join-card {
  width:
    min(
      100%,
      1100px
    );

  padding: 44px;

  background:
    #051322;

  border:
    1px solid
    rgba(255, 255, 255, 0.13);

  box-shadow:
    0 30px 80px
    rgba(0, 0, 0, 0.25);
}


.join-kicker {
  display: block;

  margin-bottom: 15px;

  color: #4aa7dc;

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.7px;
}


.join-card > h3 {
  margin-bottom: 38px;

  font-family:
    "Courier New",
    monospace;

  font-size:
    clamp(
      26px,
      3vw,
      42px
    );

  font-weight: 500;
}


.join-equation {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    auto
    minmax(0, 1fr)
    auto
    minmax(0, 1fr);

  align-items: center;

  gap: 20px;
}


.join-equation > div {
  min-width: 0;

  min-height: 100px;

  padding: 18px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  gap: 10px;

  border:
    1px solid
    rgba(255, 255, 255, 0.1);
}


.join-equation span {
  color: #63727b;

  font-size: 8px;

  letter-spacing: 1.3px;
}


.join-equation strong {
  font-size: 12px;

  font-weight: 500;

  line-height: 1.5;
}


.join-equation .plus {
  color: #4aa7dc;

  font-size: 20px;
}


.join-arrow {
  margin:
    24px 0;

  color: #4aa7dc;

  font-size: 24px;
}


/* =====================================================
   DASHBOARD RESULT
===================================================== */

.dashboard-result {
  width:
    min(
      100%,
      1100px
    );

  padding: 32px;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(320px, 0.8fr);

  gap: 50px;

  background:
    #f2f3ef;

  color:
    #08131d;
}


.dashboard-kicker {
  display: block;

  margin-bottom: 13px;

  color: #6e7b82;

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.5px;
}


.dashboard-copy h3 {
  margin-bottom: 17px;

  font-size: 32px;

  font-weight: 600;

  letter-spacing: -1px;
}


.dashboard-copy p {
  max-width: 560px;

  color: #647078;

  font-size: 13px;

  line-height: 1.7;
}


.architecture-dashboard-link {
  display: inline-block;

  margin-top: 24px;

  color:
    #08131d;

  text-decoration: none;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.4px;
}


.dashboard-mini {
  border:
    1px solid
    rgba(8, 19, 29, 0.17);
}


.mini-top,
.mini-row {
  min-height: 48px;

  padding:
    0 15px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  border-bottom:
    1px solid
    rgba(8, 19, 29, 0.12);
}


.mini-top {
  background:
    #08131d;

  color: white;
}


.mini-top strong {
  color:
    #7fd69c;
}


.mini-row:last-child {
  border-bottom: none;
}


.mini-row span {
  color: #7a858a;

  font-size: 8px;

  letter-spacing: 1.2px;
}


.mini-row strong {
  font-family:
    "Courier New",
    monospace;

  font-size: 11px;

  font-weight: 400;
}


.architecture-note {
  max-width: 1100px;

  margin:
    50px auto 0;

  padding:
    22px 25px;

  border-left:
    3px solid
    #d6a33d;

  background:
    rgba(255, 255, 255, 0.03);
}


.architecture-note span {
  display: block;

  margin-bottom: 10px;

  color:
    #d2a852;

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.5px;
}


.architecture-note p {
  color:
    #849198;

  font-size: 13px;

  line-height: 1.7;
}


/* =====================================================
   TELEMETRY
===================================================== */

.telemetry-section {
  padding:
    130px 7vw;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(380px, 0.8fr);

  align-items: center;

  gap: 8vw;

  background:
    #071019;
}


.telemetry-copy {
  max-width: 760px;
}


.text-link {
  display: inline-block;

  margin-top: 32px;

  color: white;

  text-decoration: none;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 1.5px;
}


.telemetry-panel {
  border:
    1px solid
    rgba(255, 255, 255, 0.14);

  background:
    rgba(255, 255, 255, 0.02);
}


.telemetry-top {
  padding: 24px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  border-bottom:
    1px solid
    var(--line);
}


.telemetry-top > div:first-child {
  display: flex;

  flex-direction: column;

  gap: 7px;
}


.telemetry-top span,
.telemetry-grid span {
  color: #627078;

  font-size: 8px;

  letter-spacing: 1.5px;
}


.telemetry-top strong {
  font-size: 21px;
}


.safe-badge {
  padding:
    7px 10px;

  border:
    1px solid
    rgba(112, 178, 138, 0.5);

  color:
    #7ccd9c;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.3px;
}


.telemetry-grid {
  display: grid;

  grid-template-columns:
    1fr 1fr;
}


.telemetry-grid > div {
  min-height: 105px;

  padding: 20px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  gap: 10px;

  border-right:
    1px solid
    var(--line);

  border-bottom:
    1px solid
    var(--line);
}


.telemetry-grid > div:nth-child(even) {
  border-right: none;
}


.telemetry-grid strong {
  font-family:
    "Courier New",
    monospace;

  font-size: 15px;

  font-weight: 500;
}


/* =====================================================
   FIELD TESTING
===================================================== */

.testing-section {
  position: relative;

  min-height: 900px;

  padding:
    130px 7vw;

  display: flex;

  align-items: flex-end;

  overflow: hidden;
}


.testing-image {
  position: absolute;

  inset: 0;

  z-index: 0;

  background-image:
    url("/images/testing-mountain.jpg");

  background-size: cover;

  background-position: center;
}


.testing-overlay {
  position: absolute;

  inset: 0;

  z-index: 1;

  background:
    linear-gradient(
      to right,
      rgba(4, 12, 18, 0.95),
      rgba(4, 12, 18, 0.63) 53%,
      rgba(4, 12, 18, 0.2)
    );
}


.testing-content {
  position: relative;

  z-index: 2;

  max-width: 880px;
}


.testing-content > p {
  color:
    rgba(255, 255, 255, 0.7);
}


.testing-locations {
  margin-top: 55px;

  display: flex;

  flex-wrap: wrap;

  gap: 12px;
}


.testing-locations > div {
  min-width: 170px;

  padding:
    17px 19px;

  display: flex;

  flex-direction: column;

  gap: 8px;

  border:
    1px solid
    rgba(255, 255, 255, 0.2);

  background:
    rgba(0, 0, 0, 0.15);

  backdrop-filter:
    blur(6px);
}


.testing-locations span {
  color:
    rgba(255, 255, 255, 0.4);

  font-size: 8px;
}


.testing-locations strong {
  font-size: 14px;

  font-weight: 600;
}


/* =====================================================
   ENGINEERING
===================================================== */

.engineering-section {
  padding:
    130px 7vw;

  background:
    #0d1922;
}


.engineering-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  border-top:
    1px solid
    var(--line);

  border-left:
    1px solid
    var(--line);
}


.engineering-grid article {
  min-height: 290px;

  padding: 28px;

  border-right:
    1px solid
    var(--line);

  border-bottom:
    1px solid
    var(--line);
}


.engineering-grid article > span {
  display: block;

  margin-bottom: 72px;

  color: #64717a;

  font-family:
    "Courier New",
    monospace;

  font-size: 9px;
}


.engineering-grid h3 {
  margin-bottom: 18px;

  font-size: 22px;

  font-weight: 500;
}


.engineering-grid p {
  max-width: 320px;

  color:
    #7e8b92;

  font-size: 13px;

  line-height: 1.75;
}


/* =====================================================
   DOCUMENTS
===================================================== */

.documents-section {
  padding:
    130px 7vw;

  background:
    #f0f1ed;

  color:
    #0a151d;
}


.documents-section .section-number {
  color:
    rgba(10, 21, 29, 0.45);
}


.documents-section .section-heading h2 span {
  color:
    #929b9b;
}


.documents-section .section-heading p {
  color:
    #657076;
}


.document-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  border-top:
    1px solid
    rgba(10, 21, 29, 0.18);

  border-left:
    1px solid
    rgba(10, 21, 29, 0.18);
}


.document-card {
  min-height: 310px;

  padding: 28px;

  border-right:
    1px solid
    rgba(10, 21, 29, 0.18);

  border-bottom:
    1px solid
    rgba(10, 21, 29, 0.18);
}


.document-card > span {
  display: block;

  margin-bottom: 72px;

  color:
    #8a9498;

  font-size: 9px;

  font-weight: 800;
}


.document-card h3 {
  margin-bottom: 16px;

  font-size: 23px;

  font-weight: 500;
}


.document-card p {
  max-width: 310px;

  color:
    #677277;

  font-size: 13px;

  line-height: 1.7;
}


.document-card small {
  display: block;

  margin-top: 35px;

  color:
    #90999c;

  font-size: 8px;

  letter-spacing: 1.2px;
}


/* =====================================================
   TEAM
===================================================== */

.team-section {
  padding:
    100px 7vw;

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 80px;

  background:
    #09151e;
}


.team-section h2 {
  font-size:
    clamp(
      38px,
      4vw,
      65px
    );

  letter-spacing: -2px;
}


.team-members {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  border-top:
    1px solid
    var(--line);

  border-left:
    1px solid
    var(--line);
}


.team-member {
  min-height: 150px;

  padding: 24px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  border-right:
    1px solid
    var(--line);

  border-bottom:
    1px solid
    var(--line);
}


.team-member span {
  color:
    #67747b;

  font-size: 8px;

  letter-spacing: 1.4px;
}


.team-member strong {
  font-size: 17px;

  font-weight: 500;
}


/* =====================================================
   FOOTER
===================================================== */

footer {
  padding:
    45px 7vw;

  display: flex;

  justify-content: space-between;

  gap: 30px;

  background:
    #050c11;

  border-top:
    1px solid
    var(--line);
}


footer > div {
  display: flex;

  flex-direction: column;

  gap: 7px;
}


footer strong {
  font-size: 11px;

  letter-spacing: 1.2px;
}


footer span {
  color:
    #65727a;

  font-size: 9px;

  letter-spacing: 1px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1200px) {

  .nav-links {
    display: none;
  }


  .telemetry-section {
    grid-template-columns:
      1fr;

    gap: 70px;
  }

}


@media (max-width: 1050px) {

  .lane-flow {
    grid-template-columns:
      1fr;
  }


  .lane-arrow {
    width: 100%;

    height: 42px;

    transform:
      rotate(90deg);
  }


  .lane-node {
    min-height: 190px;
  }


  .join-equation {
    grid-template-columns:
      1fr;
  }


  .join-equation .plus {
    text-align: center;
  }


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

}


@media (max-width: 900px) {

  .hero {
    padding:
      130px 24px
      150px;
  }


  .hero-content {
    padding-bottom: 40px;
  }


  .hero h1 {
    letter-spacing: -4px;
  }


  .hero-coordinate,
  .scroll-indicator {
    display: none;
  }


  .hero-meta {
    left: 24px;
    right: 24px;

    grid-template-columns:
      1fr 1fr;

    gap: 16px;
  }


  .origin-section,
  .problem-section,
  .system-section,
  .telemetry-section,
  .testing-section,
  .engineering-section,
  .documents-section {
    padding:
      100px 24px;
  }


  .origin-story {
    grid-template-columns:
      1fr;

    gap: 25px;
  }


  .origin-metrics {
    grid-template-columns:
      1fr 1fr;
  }


  .problem-facts {
    grid-template-columns:
      1fr;
  }


  .problem-fact {
    padding:
      25px 0;

    border-right: none;

    border-bottom:
      1px solid
      rgba(255, 255, 255, 0.15);
  }


  .problem-fact + .problem-fact {
    padding-left: 0;
  }


  .engineering-grid,
  .document-grid {
    grid-template-columns:
      1fr 1fr;
  }


  .team-section {
    grid-template-columns:
      1fr;
  }

}


@media (max-width: 700px) {

  .lane-title {
    align-items: flex-start;

    flex-direction: column;

    gap: 10px;
  }


  .join-card {
    padding: 25px;
  }


  .dashboard-result {
    padding: 22px;
  }

}


@media (max-width: 600px) {

  .nav-container {
    height: 72px;

    padding:
      0 18px;
  }


  .brand-subtitle {
    display: none;
  }


  .brand-title {
    font-size: 11px;
  }


  .nav-dashboard {
    padding:
      10px 11px;

    font-size: 8px;
  }


  .hero {
    padding:
      120px 20px
      150px;
  }


  .hero h1 {
    font-size: 58px;

    letter-spacing: -3px;
  }


  .hero-description {
    font-size: 14px;
  }


  .hero-meta {
    grid-template-columns:
      1fr;
  }


  .meta-item:nth-child(3),
  .meta-item:nth-child(4) {
    display: none;
  }


  .section-heading h2,
  .problem-content h2,
  .telemetry-copy h2,
  .testing-content h2 {
    letter-spacing: -2px;
  }


  .origin-metrics,
  .telemetry-grid,
  .engineering-grid,
  .document-grid,
  .team-members {
    grid-template-columns:
      1fr;
  }


  .origin-metric {
    border-right: none;

    border-bottom:
      1px solid
      rgba(255, 255, 255, 0.12);
  }


  footer {
    flex-direction: column;
  }

}
/* =====================================================
   THE DEVICE
===================================================== */

.device-section {
  padding:
    140px 7vw;

  background:
    #f1f2ee;

  color:
    #08131d;

  overflow: hidden;
}


/* =====================================================
   DEVICE HEADING
===================================================== */

.device-heading {
  max-width: 980px;

  margin-bottom: 90px;
}


.device-heading .section-number {
  color:
    rgba(8, 19, 29, 0.46);
}


.device-heading h2 {
  font-size:
    clamp(
      50px,
      6vw,
      96px
    );

  line-height: 0.94;

  letter-spacing: -4px;

  font-weight: 600;
}


.device-heading h2 span {
  display: block;

  color:
    #929b9c;
}


.device-heading > p {
  max-width: 740px;

  margin-top: 28px;

  color:
    #626e74;

  font-size: 16px;

  line-height: 1.8;
}


/* =====================================================
   PRODUCT STAGE
===================================================== */

.device-stage {
  position: relative;

  min-height: 850px;

  max-width: 1500px;

  margin:
    0 auto;

  border-top:
    1px solid
    rgba(8, 19, 29, 0.14);

  border-bottom:
    1px solid
    rgba(8, 19, 29, 0.14);
}


/* subtle centre light */

.device-glow {
  position: absolute;

  width: 650px;
  height: 650px;

  left: 50%;
  top: 50%;

  transform:
    translate(-50%, -50%);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(92, 143, 168, 0.14),
      transparent 68%
    );

  pointer-events: none;
}


/* =====================================================
   DEVICE PRODUCT IMAGE
===================================================== */

.device-product {
  position: absolute;

  width: 42%;

  max-width: 570px;

  left: 50%;
  top: 50%;

  transform:
    translate(-50%, -50%);

  z-index: 2;
}


.device-product img {
  width: 100%;

  max-height: 650px;

  display: block;

  object-fit: contain;

  filter:
    drop-shadow(
      0 35px 45px
      rgba(8, 19, 29, 0.18)
    );
}


.device-product-label {
  margin-top: 18px;

  padding-top: 14px;

  display: flex;

  justify-content: space-between;

  align-items: center;

  border-top:
    1px solid
    rgba(8, 19, 29, 0.16);
}


.device-product-label span {
  color:
    #849095;

  font-size: 8px;

  letter-spacing: 1.8px;
}


.device-product-label strong {
  font-family:
    "Courier New",
    monospace;

  font-size: 11px;

  font-weight: 500;
}


/* =====================================================
   CALLOUTS
===================================================== */

.device-callout {
  position: absolute;

  z-index: 4;

  width: 270px;

  display: grid;

  grid-template-columns:
    34px 1fr;

  gap: 15px;
}


.callout-one {
  top: 110px;
  left: 0;
}


.callout-two {
  bottom: 115px;
  left: 3%;
}


.callout-three {
  top: 120px;
  right: 0;
}


.callout-four {
  right: 3%;
  bottom: 120px;
}


.callout-number {
  width: 34px;
  height: 34px;

  display: flex;

  align-items: center;

  justify-content: center;

  border:
    1px solid
    rgba(8, 19, 29, 0.18);

  color:
    #78858a;

  font-family:
    "Courier New",
    monospace;

  font-size: 9px;
}


.callout-content {
  padding-top: 2px;
}


.callout-content > span {
  display: block;

  margin-bottom: 7px;

  color:
    #8b969a;

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 1.6px;
}


.callout-content strong {
  display: block;

  margin-bottom: 10px;

  font-size: 17px;

  font-weight: 600;
}


.callout-content p {
  color:
    #69757a;

  font-size: 11px;

  line-height: 1.65;
}


/* =====================================================
   CALLOUT LINES
===================================================== */

.callout-one::after,
.callout-two::after {
  content: "";

  position: absolute;

  left: 100%;

  top: 17px;

  width: 120px;

  height: 1px;

  margin-left: 18px;

  background:
    rgba(8, 19, 29, 0.22);
}


.callout-three::before,
.callout-four::before {
  content: "";

  position: absolute;

  right: 100%;

  top: 17px;

  width: 120px;

  height: 1px;

  margin-right: 18px;

  background:
    rgba(8, 19, 29, 0.22);
}


/* =====================================================
   DEVICE SPECS
===================================================== */

.device-specs {
  max-width: 1500px;

  margin:
    55px auto 0;

  display: grid;

  grid-template-columns:
    repeat(6, 1fr);

  border-top:
    1px solid
    rgba(8, 19, 29, 0.17);

  border-left:
    1px solid
    rgba(8, 19, 29, 0.17);
}


.device-spec {
  min-height: 140px;

  padding:
    22px;

  display: flex;

  flex-direction: column;

  border-right:
    1px solid
    rgba(8, 19, 29, 0.17);

  border-bottom:
    1px solid
    rgba(8, 19, 29, 0.17);
}


.device-spec > span {
  margin-bottom: 35px;

  color:
    #8b969a;

  font-size: 8px;

  letter-spacing: 1.5px;
}


.device-spec strong {
  font-size: 17px;

  font-weight: 600;
}


.device-spec small {
  margin-top: 6px;

  color:
    #778287;

  font-size: 10px;
}


/* =====================================================
   DEVICE DESIGN DECISION
===================================================== */

.device-decision {
  max-width: 1500px;

  margin:
    55px auto 0;

  padding:
    30px 0;

  display: grid;

  grid-template-columns:
    0.4fr
    1.4fr
    0.6fr;

  gap: 45px;

  align-items: start;

  border-top:
    1px solid
    rgba(8, 19, 29, 0.17);

  border-bottom:
    1px solid
    rgba(8, 19, 29, 0.17);
}


.decision-index {
  color:
    #8a9599;

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 1.7px;
}


.decision-main h3 {
  margin-bottom: 12px;

  font-size: 26px;

  font-weight: 500;

  letter-spacing: -0.7px;
}


.decision-main p {
  max-width: 620px;

  color:
    #69757a;

  font-size: 13px;

  line-height: 1.75;
}


.decision-status {
  display: flex;

  flex-direction: column;

  align-items: flex-end;

  gap: 8px;
}


.decision-status span {
  color:
    #8a9599;

  font-size: 8px;

  letter-spacing: 1.5px;
}


.decision-status strong {
  font-family:
    "Courier New",
    monospace;

  font-size: 11px;

  font-weight: 500;
}


/* =====================================================
   DEVICE RESPONSIVE
===================================================== */

@media (max-width: 1150px) {

  .device-stage {
    min-height: auto;

    padding:
      40px 0;
  }


  .device-product {
    position: relative;

    left: auto;
    top: auto;

    transform: none;

    width: 60%;

    margin:
      0 auto 60px;
  }


  .device-callout {
    position: relative;

    top: auto;
    right: auto;
    bottom: auto;
    left: auto;

    width: 100%;

    padding:
      24px 0;

    border-top:
      1px solid
      rgba(8, 19, 29, 0.13);
  }


  .device-callout::before,
  .device-callout::after {
    display: none;
  }


  .device-specs {
    grid-template-columns:
      repeat(3, 1fr);
  }

}


@media (max-width: 700px) {

  .device-section {
    padding:
      100px 20px;
  }


  .device-product {
    width: 85%;
  }


  .device-specs {
    grid-template-columns:
      1fr 1fr;
  }


  .device-decision {
    grid-template-columns:
      1fr;

    gap: 22px;
  }


  .decision-status {
    align-items: flex-start;
  }

}


@media (max-width: 480px) {

  .device-specs {
    grid-template-columns:
      1fr;
  }

}
/* =====================================================
   DESIGN EVOLUTION
===================================================== */

.evolution-section {
  padding:
    140px 7vw;

  background:
    #08131d;

  color:
    #f4f5f2;
}


.evolution-heading {
  margin-bottom: 85px;
}


/* =====================================================
   EVOLUTION TIMELINE
===================================================== */

.evolution-timeline {
  display: grid;

  grid-template-columns:
    1fr 110px 1fr 110px 1fr;

  align-items: center;

  max-width: 1500px;

  margin:
    0 auto;
}


.evolution-stage {
  min-height: 360px;

  padding:
    30px;

  display: flex;

  flex-direction: column;

  border:
    1px solid
    rgba(255,255,255,0.13);

  background:
    rgba(255,255,255,0.02);
}


.featured-evolution {
  background:
    rgba(57,165,223,0.08);

  border-color:
    rgba(57,165,223,0.34);
}


.evolution-stage-number {
  width: 42px;
  height: 42px;

  display: flex;

  align-items: center;

  justify-content: center;

  border:
    1px solid
    rgba(255,255,255,0.14);

  color:
    #718089;

  font-family:
    "Courier New",
    monospace;

  font-size: 9px;
}


.evolution-stage-content {
  margin-top: auto;
}


.evolution-stage-content > span {
  display: block;

  margin-bottom: 11px;

  color:
    #687781;

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 1.7px;
}


.evolution-stage-content h3 {
  margin-bottom: 16px;

  font-size: 24px;

  font-weight: 500;

  letter-spacing: -0.5px;
}


.evolution-stage-content p {
  color:
    #7f8c93;

  font-size: 13px;

  line-height: 1.75;
}


.evolution-connector {
  height: 1px;

  background:
    rgba(255,255,255,0.18);

  position: relative;
}


.evolution-connector::after {
  content: "→";

  position: absolute;

  right: -6px;
  top: 50%;

  transform:
    translateY(-50%);

  color:
    #53636d;

  background:
    #08131d;

  padding-left: 8px;
}


/* =====================================================
   DECISION STRIP
===================================================== */

.evolution-decisions {
  max-width: 1500px;

  margin:
    50px auto 0;

  display: grid;

  grid-template-columns:
    repeat(5, 1fr);

  border-top:
    1px solid
    rgba(255,255,255,0.13);

  border-left:
    1px solid
    rgba(255,255,255,0.13);
}


.evolution-decision {
  min-height: 130px;

  padding: 22px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  border-right:
    1px solid
    rgba(255,255,255,0.13);

  border-bottom:
    1px solid
    rgba(255,255,255,0.13);
}


.evolution-decision span {
  color:
    #67757d;

  font-size: 8px;

  letter-spacing: 1.5px;
}


.evolution-decision strong {
  font-size: 13px;

  font-weight: 500;

  line-height: 1.5;
}


/* =====================================================
   LED DECISION
===================================================== */

.led-decision {
  max-width: 1500px;

  margin:
    70px auto 0;

  padding:
    38px;

  display: grid;

  grid-template-columns:
    0.55fr
    1.5fr
    0.8fr;

  gap: 50px;

  align-items: start;

  background:
    #f0f1ed;

  color:
    #08131d;
}


.led-left {
  display: flex;

  flex-direction: column;

  gap: 20px;
}


.led-kicker {
  color:
    #7d888d;

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 1.5px;
}


.led-status {
  display: inline-flex;

  width: fit-content;

  padding:
    8px 11px;

  border:
    1px solid
    rgba(200,71,65,0.45);

  color:
    #b33c37;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.5px;
}


.led-main h3 {
  margin-bottom: 15px;

  font-size: 30px;

  font-weight: 500;

  letter-spacing: -1px;
}


.led-main p {
  max-width: 650px;

  color:
    #677278;

  font-size: 13px;

  line-height: 1.75;
}


.led-result {
  display: flex;

  flex-direction: column;

  gap: 10px;
}


.led-result > span {
  margin-bottom: 5px;

  color:
    #8b9599;

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 1.5px;
}


.led-result strong {
  font-size: 12px;

  font-weight: 600;
}


/* =====================================================
   RESPONSIVE EVOLUTION
===================================================== */

@media (max-width: 1100px) {

  .evolution-timeline {
    grid-template-columns:
      1fr;
  }


  .evolution-connector {
    width: 1px;

    height: 55px;

    margin:
      0 auto;
  }


  .evolution-connector::after {
    content: "↓";

    right: auto;
    left: 50%;
    top: auto;
    bottom: -8px;

    transform:
      translateX(-50%);

    padding:
      6px 0 0;
  }


  .evolution-stage {
    min-height: 260px;
  }


  .evolution-decisions {
    grid-template-columns:
      1fr 1fr;
  }


  .led-decision {
    grid-template-columns:
      1fr;

    gap: 25px;
  }

}


@media (max-width: 650px) {

  .evolution-section {
    padding:
      100px 20px;
  }


  .evolution-decisions {
    grid-template-columns:
      1fr;
  }


  .led-decision {
    padding:
      25px;
  }

}
/* =====================================================
   FIELD VALIDATION RESULTS
===================================================== */

.results-section {
  padding:
    140px 7vw;

  background:
    #e9ece8;

  color:
    #07131c;
}


/* =====================================================
   RESULTS HEADER
===================================================== */

.results-header {
  max-width: 1500px;

  margin:
    0 auto 80px;

  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 60px;
}


.results-header .section-number {
  color:
    rgba(7, 19, 28, 0.45);
}


.results-header h2 {
  max-width: 1000px;

  font-size:
    clamp(
      52px,
      6vw,
      96px
    );

  line-height: 0.94;

  letter-spacing: -4px;

  font-weight: 600;
}


.results-header h2 span {
  display: block;

  color:
    #899397;
}


.results-header-note {
  flex-shrink: 0;

  padding-bottom: 10px;

  display: flex;

  align-items: center;

  gap: 12px;
}


.verification-dot {
  width: 9px;
  height: 9px;

  border-radius: 50%;

  background:
    #57a574;

  box-shadow:
    0 0 15px
    rgba(87, 165, 116, 0.45);
}


.results-header-note > div {
  display: flex;

  flex-direction: column;

  gap: 5px;
}


.results-header-note span {
  color:
    #899397;

  font-size: 8px;

  letter-spacing: 1.4px;
}


.results-header-note strong {
  font-family:
    "Courier New",
    monospace;

  font-size: 10px;

  font-weight: 500;
}


/* =====================================================
   HERO RESULTS
===================================================== */

.results-hero-grid {
  max-width: 1500px;

  margin:
    0 auto;

  display: grid;

  grid-template-columns:
    1fr 1fr;

  border-top:
    1px solid
    rgba(7, 19, 28, 0.18);

  border-left:
    1px solid
    rgba(7, 19, 28, 0.18);
}


.result-hero {
  min-height: 430px;

  padding:
    34px;

  display: flex;

  flex-direction: column;

  border-right:
    1px solid
    rgba(7, 19, 28, 0.18);

  border-bottom:
    1px solid
    rgba(7, 19, 28, 0.18);
}


.result-distance {
  background:
    #07131c;

  color:
    #f3f5f1;
}


.result-delivery {
  background:
    #f3f4f0;
}


.result-top {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;
}


.result-top > span:first-child {
  font-size: 8px;

  font-weight: 700;

  letter-spacing: 1.6px;

  opacity: 0.55;
}


.verified-label {
  padding:
    6px 9px;

  border:
    1px solid
    rgba(94, 169, 120, 0.45);

  color:
    #4f9a69;

  font-size: 7px;

  font-weight: 800;

  letter-spacing: 1.2px;
}


.result-value {
  margin:
    auto 0;

  display: flex;

  align-items: flex-end;

  gap: 12px;
}


.result-value strong {
  font-size:
    clamp(
      90px,
      11vw,
      180px
    );

  line-height: 0.8;

  letter-spacing: -9px;

  font-weight: 600;
}


.result-value span {
  padding-bottom: 12px;

  font-size: 20px;

  font-weight: 500;
}


.result-bottom {
  padding-top: 20px;

  display: flex;

  justify-content: space-between;

  gap: 20px;

  border-top:
    1px solid
    currentColor;

  font-size: 8px;

  letter-spacing: 1.3px;

  opacity: 0.55;
}


/* =====================================================
   RESULT METRICS
===================================================== */

.results-metrics {
  max-width: 1500px;

  margin:
    55px auto 0;

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  border-top:
    1px solid
    rgba(7,19,28,0.18);

  border-left:
    1px solid
    rgba(7,19,28,0.18);
}


.result-metric {
  min-height: 245px;

  padding: 26px;

  display: flex;

  flex-direction: column;

  border-right:
    1px solid
    rgba(7,19,28,0.18);

  border-bottom:
    1px solid
    rgba(7,19,28,0.18);
}


.result-index {
  color:
    #899397;

  font-family:
    "Courier New",
    monospace;

  font-size: 9px;
}


.metric-title {
  margin-top: 38px;

  color:
    #899397;

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 1.4px;
}


.result-metric strong {
  margin-top: 10px;

  font-size: 38px;

  font-weight: 500;

  letter-spacing: -1.5px;
}


.result-metric p {
  margin-top: auto;

  max-width: 260px;

  color:
    #68757a;

  font-size: 11px;

  line-height: 1.65;
}


/* =====================================================
   STATION RESULTS
===================================================== */

.station-results {
  max-width: 1500px;

  margin:
    90px auto 0;

  padding-top: 55px;

  border-top:
    1px solid
    rgba(7,19,28,0.18);
}


.station-results-heading {
  display: grid;

  grid-template-columns:
    1fr 0.75fr;

  gap: 70px;

  align-items: end;

  margin-bottom: 50px;
}


.station-results-heading span {
  color:
    #899397;

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 1.5px;
}


.station-results-heading h3 {
  max-width: 650px;

  margin-top: 12px;

  font-size:
    clamp(
      32px,
      4vw,
      56px
    );

  line-height: 1;

  letter-spacing: -2px;

  font-weight: 500;
}


.station-results-heading p {
  max-width: 500px;

  color:
    #66747a;

  font-size: 13px;

  line-height: 1.7;
}


.station-list {
  border-top:
    1px solid
    rgba(7,19,28,0.14);
}


.station-row {
  min-height: 82px;

  display: grid;

  grid-template-columns:
    240px
    minmax(0, 1fr)
    85px;

  align-items: center;

  gap: 30px;

  border-bottom:
    1px solid
    rgba(7,19,28,0.14);
}


.station-name {
  display: flex;

  align-items: center;

  gap: 18px;
}


.station-name span {
  color:
    #8b9599;

  font-family:
    "Courier New",
    monospace;

  font-size: 9px;
}


.station-name strong {
  font-size: 13px;

  font-weight: 500;
}


.station-bar {
  height: 5px;

  overflow: hidden;

  background:
    rgba(7,19,28,0.1);
}


.station-fill {
  height: 100%;

  background:
    #213b4d;
}


.station-row-low .station-fill {
  background:
    #c78a3c;
}


.station-percentage {
  text-align: right;

  font-family:
    "Courier New",
    monospace;

  font-size: 12px;
}


/* =====================================================
   ENGINEERING INTERPRETATION
===================================================== */

.results-interpretation {
  max-width: 1500px;

  margin:
    90px auto 0;

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  border-top:
    1px solid
    rgba(7,19,28,0.18);

  border-left:
    1px solid
    rgba(7,19,28,0.18);
}


.interpretation-column {
  min-height: 310px;

  padding: 30px;

  border-right:
    1px solid
    rgba(7,19,28,0.18);

  border-bottom:
    1px solid
    rgba(7,19,28,0.18);
}


.interpretation-label {
  display: inline-block;

  padding:
    6px 8px;

  margin-bottom: 65px;

  font-size: 7px;

  font-weight: 800;

  letter-spacing: 1.3px;
}


.success-label {
  color:
    #4e9365;

  border:
    1px solid
    rgba(78,147,101,0.35);
}


.warning-label {
  color:
    #b6813d;

  border:
    1px solid
    rgba(182,129,61,0.35);
}


.next-label {
  color:
    #4a829d;

  border:
    1px solid
    rgba(74,130,157,0.35);
}


.interpretation-column h3 {
  margin-bottom: 15px;

  font-size: 24px;

  font-weight: 500;
}


.interpretation-column p {
  color:
    #657278;

  font-size: 12px;

  line-height: 1.75;
}


/* =====================================================
   CLAIM DISCIPLINE
===================================================== */

.claim-discipline {
  max-width: 1500px;

  margin:
    65px auto 0;

  padding:
    38px;

  display: grid;

  grid-template-columns:
    0.8fr
    1.2fr;

  gap: 70px;

  background:
    #07131c;

  color:
    #f3f4f0;
}


.claim-discipline span {
  color:
    #cc9b4d;

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.5px;
}


.claim-discipline h3 {
  margin-top: 12px;

  font-size:
    clamp(
      28px,
      3vw,
      44px
    );

  font-weight: 500;

  letter-spacing: -1.3px;
}


.claim-discipline > p {
  color:
    #9ba6ab;

  font-size: 13px;

  line-height: 1.75;
}


/* =====================================================
   RESULTS RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

  .results-header {
    align-items: flex-start;

    flex-direction: column;
  }


  .results-hero-grid {
    grid-template-columns:
      1fr;
  }


  .results-metrics {
    grid-template-columns:
      1fr 1fr;
  }


  .station-results-heading {
    grid-template-columns:
      1fr;
  }


  .results-interpretation {
    grid-template-columns:
      1fr;
  }


  .claim-discipline {
    grid-template-columns:
      1fr;

    gap: 30px;
  }

}


@media (max-width: 700px) {

  .results-section {
    padding:
      100px 20px;
  }


  .result-hero {
    min-height: 330px;

    padding: 24px;
  }


  .result-value strong {
    font-size: 85px;

    letter-spacing: -5px;
  }


  .results-metrics {
    grid-template-columns:
      1fr;
  }


  .station-row {
    grid-template-columns:
      130px
      minmax(0, 1fr)
      55px;

    gap: 12px;
  }


  .station-name {
    gap: 8px;

    flex-direction: column;

    align-items: flex-start;
  }


  .claim-discipline {
    padding: 25px;
  }

}
/* =====================================================
   SAFETY STATE LOGIC
===================================================== */

.safety-section {
  padding:
    140px 7vw;

  background:
    #071019;

  color:
    #f3f5f2;
}


/* =====================================================
   SAFETY HEADING
===================================================== */

.safety-heading {
  max-width: 980px;

  margin-bottom: 85px;
}


.safety-heading h2 {
  font-size:
    clamp(
      52px,
      6vw,
      96px
    );

  line-height: 0.94;

  letter-spacing: -4px;

  font-weight: 600;
}


.safety-heading h2 span {
  display: block;

  color:
    #758189;
}


.safety-heading > p {
  max-width: 740px;

  margin-top: 28px;

  color:
    #87949a;

  font-size: 16px;

  line-height: 1.8;
}


/* =====================================================
   STATES
===================================================== */

.state-system {
  max-width: 1500px;

  margin:
    0 auto;

  display: grid;

  grid-template-columns:
    1fr
    90px
    1fr
    90px
    1fr;

  align-items: stretch;
}


.state-card {
  position: relative;

  min-height: 470px;

  padding: 30px;

  display: flex;

  flex-direction: column;

  overflow: hidden;

  border:
    1px solid
    rgba(255,255,255,0.12);

  background:
    rgba(255,255,255,0.02);
}


.state-card::before {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  top: 0;

  height: 3px;
}


.state-green::before {
  background:
    #62b47e;
}


.state-yellow::before {
  background:
    #d0a348;
}


.state-red::before {
  background:
    #c94640;
}


.state-header {
  display: flex;

  align-items: center;

  gap: 10px;
}


.state-header span {
  color:
    #78868d;

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.7px;
}


.state-light {
  width: 9px;
  height: 9px;

  border-radius: 50%;
}


.state-green .state-light {
  background:
    #62b47e;

  box-shadow:
    0 0 16px
    rgba(98,180,126,0.7);
}


.state-yellow .state-light {
  background:
    #d0a348;

  box-shadow:
    0 0 16px
    rgba(208,163,72,0.6);
}


.state-red .state-light {
  background:
    #c94640;

  box-shadow:
    0 0 18px
    rgba(201,70,64,0.7);
}


.state-number {
  margin-top: 55px;

  color:
    #64727a;

  font-family:
    "Courier New",
    monospace;

  font-size: 10px;
}


.state-card h3 {
  margin-top: 22px;

  font-size: 29px;

  font-weight: 500;

  letter-spacing: -0.8px;
}


.state-card > p {
  margin-top: 18px;

  color:
    #7c8990;

  font-size: 13px;

  line-height: 1.75;
}


.state-conditions {
  margin-top: auto;

  border-top:
    1px solid
    rgba(255,255,255,0.11);
}


.state-conditions > div {
  min-height: 48px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  border-bottom:
    1px solid
    rgba(255,255,255,0.08);
}


.state-conditions > div:last-child {
  border-bottom: none;
}


.state-conditions span {
  color:
    #64727a;

  font-size: 7px;

  letter-spacing: 1.3px;
}


.state-conditions strong {
  font-family:
    "Courier New",
    monospace;

  font-size: 9px;

  font-weight: 500;
}


/* =====================================================
   STATE TRANSITION
===================================================== */

.state-transition {
  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 13px;
}


.state-transition span {
  color:
    #53616a;

  font-size: 7px;

  letter-spacing: 1.2px;

  writing-mode:
    vertical-rl;

  transform:
    rotate(180deg);
}


.transition-line {
  width: 1px;

  height: 90px;

  background:
    rgba(255,255,255,0.12);
}


.state-transition strong {
  color:
    #65747d;

  font-size: 18px;

  font-weight: 400;
}


/* =====================================================
   SOS SEQUENCE
===================================================== */

.sos-section {
  max-width: 1500px;

  margin:
    100px auto 0;

  padding-top: 60px;

  display: grid;

  grid-template-columns:
    0.65fr
    1.35fr;

  gap: 75px;

  border-top:
    1px solid
    rgba(255,255,255,0.13);
}


.sos-kicker {
  color:
    #c94741;

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.6px;
}


.sos-copy h3 {
  margin-top: 14px;

  font-size:
    clamp(
      34px,
      4vw,
      58px
    );

  line-height: 1;

  letter-spacing: -2px;

  font-weight: 500;
}


.sos-copy p {
  max-width: 520px;

  margin-top: 22px;

  color:
    #7c8990;

  font-size: 13px;

  line-height: 1.75;
}


.sos-sequence {
  display: grid;

  grid-template-columns:
    1fr
    auto
    1fr
    auto
    1fr
    auto
    1fr;

  align-items: stretch;
}


.sos-step {
  min-height: 190px;

  padding: 22px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  border:
    1px solid
    rgba(255,255,255,0.12);
}


.sos-step-number {
  color:
    #66747d;

  font-family:
    "Courier New",
    monospace;

  font-size: 8px;
}


.sos-step strong {
  font-size: 15px;

  font-weight: 600;
}


.sos-step small {
  color:
    #69777f;

  font-size: 9px;
}


.sos-timer {
  background:
    rgba(208,163,72,0.07);

  border-color:
    rgba(208,163,72,0.25);
}


.sos-critical {
  background:
    rgba(201,70,64,0.1);

  border-color:
    rgba(201,70,64,0.35);
}


.sos-critical strong {
  color:
    #e35c55;
}


.sos-sequence-arrow {
  width: 30px;

  display: flex;

  align-items: center;

  justify-content: center;

  color:
    #53616a;
}


/* =====================================================
   ALERT REASONS
===================================================== */

.alert-reasons {
  max-width: 1500px;

  margin:
    100px auto 0;

  padding-top: 60px;

  border-top:
    1px solid
    rgba(255,255,255,0.13);
}


.alert-heading {
  margin-bottom: 45px;

  display: grid;

  grid-template-columns:
    0.4fr
    1fr;

  gap: 50px;

  align-items: end;
}


.alert-heading > span {
  color:
    #68767e;

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 1.5px;
}


.alert-heading h3 {
  font-size:
    clamp(
      34px,
      4vw,
      58px
    );

  line-height: 1;

  letter-spacing: -2px;

  font-weight: 500;
}


.alert-reason-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  border-top:
    1px solid
    rgba(255,255,255,0.12);

  border-left:
    1px solid
    rgba(255,255,255,0.12);
}


.alert-reason-grid > div {
  min-height: 220px;

  padding: 25px;

  display: flex;

  flex-direction: column;

  border-right:
    1px solid
    rgba(255,255,255,0.12);

  border-bottom:
    1px solid
    rgba(255,255,255,0.12);
}


.alert-reason-grid span {
  color:
    #d0a348;

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.4px;
}


.alert-reason-grid strong {
  margin-top: 55px;

  font-size: 18px;

  font-weight: 500;
}


.alert-reason-grid p {
  margin-top: auto;

  color:
    #75828a;

  font-size: 11px;

  line-height: 1.65;
}


.alert-red-reason {
  background:
    rgba(201,70,64,0.08);
}


.alert-red-reason span {
  color:
    #d9554f;
}


/* =====================================================
   SAFETY NOTE
===================================================== */

.safety-note {
  max-width: 1500px;

  margin:
    60px auto 0;

  padding:
    25px 28px;

  display: grid;

  grid-template-columns:
    0.35fr
    1fr;

  gap: 50px;

  border-left:
    3px solid
    #c94741;

  background:
    rgba(255,255,255,0.03);
}


.safety-note span {
  color:
    #c94741;

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.5px;
}


.safety-note p {
  max-width: 900px;

  color:
    #859198;

  font-size: 12px;

  line-height: 1.7;
}


/* =====================================================
   SAFETY RESPONSIVE
===================================================== */

@media (max-width: 1100px) {

  .state-system {
    grid-template-columns:
      1fr;
  }


  .state-transition {
    min-height: 70px;

    flex-direction: row;
  }


  .state-transition span {
    writing-mode:
      horizontal-tb;

    transform: none;
  }


  .transition-line {
    width: 80px;

    height: 1px;
  }


  .sos-section {
    grid-template-columns:
      1fr;
  }


  .sos-sequence {
    grid-template-columns:
      1fr;
  }


  .sos-sequence-arrow {
    width: 100%;

    height: 35px;

    transform:
      rotate(90deg);
  }


  .alert-reason-grid {
    grid-template-columns:
      1fr 1fr;
  }

}


@media (max-width: 700px) {

  .safety-section {
    padding:
      100px 20px;
  }


  .alert-heading {
    grid-template-columns:
      1fr;
  }


  .alert-reason-grid {
    grid-template-columns:
      1fr;
  }


  .safety-note {
    grid-template-columns:
      1fr;

    gap: 15px;
  }

}
/* =====================================================
   OFFLINE ARCHITECTURE
===================================================== */

.offline-section {
  padding:
    140px 7vw;

  background:
    #edf0ec;

  color:
    #08131d;
}


/* =====================================================
   OFFLINE HEADING
===================================================== */

.offline-heading {
  max-width: 1000px;

  margin-bottom: 85px;
}


.offline-heading .section-number {
  color:
    rgba(8, 19, 29, 0.45);
}


.offline-heading h2 {
  font-size:
    clamp(
      52px,
      6vw,
      96px
    );

  line-height: 0.94;

  letter-spacing: -4px;

  font-weight: 600;
}


.offline-heading h2 span {
  display: block;

  color:
    #90999b;
}


.offline-heading > p {
  max-width: 760px;

  margin-top: 28px;

  color:
    #657177;

  font-size: 16px;

  line-height: 1.8;
}


/* =====================================================
   OFFLINE STACK
===================================================== */

.offline-stack {
  max-width: 1500px;

  margin:
    0 auto;

  border-top:
    1px solid
    rgba(8, 19, 29, 0.17);
}


.offline-layer {
  min-height: 120px;

  padding:
    25px 0;

  display: grid;

  grid-template-columns:
    90px
    minmax(0, 1fr)
    auto;

  gap: 35px;

  align-items: center;

  border-bottom:
    1px solid
    rgba(8, 19, 29, 0.17);
}


.offline-index {
  color:
    #8a9498;

  font-family:
    "Courier New",
    monospace;

  font-size: 10px;
}


.offline-layer-main {
  display: grid;

  grid-template-columns:
    180px
    250px
    minmax(0, 1fr);

  align-items: center;

  gap: 35px;
}


.offline-layer-main > span {
  color:
    #8a9498;

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 1.5px;
}


.offline-layer-main h3 {
  font-size: 24px;

  font-weight: 500;

  letter-spacing: -0.5px;
}


.offline-layer-main p {
  max-width: 520px;

  color:
    #667278;

  font-size: 12px;

  line-height: 1.7;
}


.offline-status-badge {
  padding:
    8px 10px;

  border:
    1px solid
    rgba(60, 137, 92, 0.34);

  color:
    #43885c;

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.3px;
}


/* =====================================================
   INTERNET ROLE
===================================================== */

.internet-role {
  max-width: 1500px;

  margin:
    90px auto 0;

  padding-top: 60px;

  display: grid;

  grid-template-columns:
    0.65fr
    1.35fr;

  gap: 80px;

  border-top:
    1px solid
    rgba(8, 19, 29, 0.17);
}


.internet-role-left > span {
  color:
    #879195;

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 1.5px;
}


.internet-role-left h3 {
  margin-top: 14px;

  max-width: 430px;

  font-size:
    clamp(
      34px,
      4vw,
      58px
    );

  line-height: 1;

  letter-spacing: -2px;

  font-weight: 500;
}


.internet-role-grid {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  border-top:
    1px solid
    rgba(8, 19, 29, 0.17);

  border-left:
    1px solid
    rgba(8, 19, 29, 0.17);
}


.internet-role-grid > div {
  min-height: 230px;

  padding: 27px;

  display: flex;

  flex-direction: column;

  border-right:
    1px solid
    rgba(8, 19, 29, 0.17);

  border-bottom:
    1px solid
    rgba(8, 19, 29, 0.17);
}


.internet-role-grid span {
  color:
    #8a9498;

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 1.5px;
}


.internet-role-grid strong {
  margin-top: 55px;

  font-size: 22px;

  font-weight: 500;
}


.internet-role-grid p {
  margin-top: auto;

  color:
    #68747a;

  font-size: 12px;

  line-height: 1.7;
}


/* =====================================================
   OFFLINE CHAIN
===================================================== */

.offline-chain {
  max-width: 1500px;

  margin:
    90px auto 0;

  padding-top: 60px;

  border-top:
    1px solid
    rgba(8, 19, 29, 0.17);
}


.offline-chain-heading {
  margin-bottom: 45px;
}


.offline-chain-heading > span {
  color:
    #879195;

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 1.5px;
}


.offline-chain-heading h3 {
  margin-top: 12px;

  font-size:
    clamp(
      32px,
      4vw,
      56px
    );

  font-weight: 500;

  letter-spacing: -2px;
}


.offline-chain-flow {
  display: grid;

  grid-template-columns:
    1fr auto
    1fr auto
    1fr auto
    1fr auto
    1fr auto
    1fr auto
    1fr;

  align-items: stretch;
}


.offline-chain-node {
  min-height: 140px;

  padding: 20px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  border:
    1px solid
    rgba(8, 19, 29, 0.17);
}


.offline-chain-node span {
  color:
    #8b9599;

  font-family:
    "Courier New",
    monospace;

  font-size: 8px;
}


.offline-chain-node strong {
  font-size: 14px;

  font-weight: 600;
}


.offline-chain-arrow {
  width: 28px;

  display: flex;

  align-items: center;

  justify-content: center;

  color:
    #879195;
}


/* =====================================================
   OFFLINE PRINCIPLE
===================================================== */

.offline-principle {
  max-width: 1500px;

  margin:
    75px auto 0;

  padding:
    38px;

  display: grid;

  grid-template-columns:
    0.9fr
    1.1fr;

  gap: 70px;

  background:
    #08131d;

  color:
    #f4f5f2;
}


.offline-principle span {
  color:
    #66a9ca;

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.5px;
}


.offline-principle h3 {
  margin-top: 12px;

  max-width: 620px;

  font-size:
    clamp(
      28px,
      3.5vw,
      48px
    );

  line-height: 1;

  letter-spacing: -1.5px;

  font-weight: 500;
}


.offline-principle > p {
  color:
    #8d9aa0;

  font-size: 13px;

  line-height: 1.75;
}


/* =====================================================
   OFFLINE RESPONSIVE
===================================================== */

@media (max-width: 1100px) {

  .offline-layer {
    grid-template-columns:
      60px
      1fr;
  }


  .offline-status-badge {
    grid-column:
      2;
    justify-self: start;
  }


  .offline-layer-main {
    grid-template-columns:
      1fr;
    gap: 10px;
  }


  .internet-role {
    grid-template-columns:
      1fr;
  }


  .offline-chain-flow {
    grid-template-columns:
      1fr;
  }


  .offline-chain-arrow {
    width: 100%;
    height: 35px;

    transform:
      rotate(90deg);
  }


  .offline-principle {
    grid-template-columns:
      1fr;

    gap: 30px;
  }

}


@media (max-width: 700px) {

  .offline-section {
    padding:
      100px 20px;
  }


  .internet-role-grid {
    grid-template-columns:
      1fr;
  }


  .offline-layer {
    grid-template-columns:
      40px
      1fr;

    gap: 20px;
  }


  .offline-principle {
    padding: 25px;
  }

}
/* =====================================================
   FIELD VALIDATION JOURNEY
===================================================== */

.field-validation-section {
  position: relative;

  min-height: 1200px;

  padding:
    145px 7vw;

  overflow: hidden;

  color:
    #f4f5f2;

  background:
    #071019;
}


/* =====================================================
   BACKGROUND IMAGE
===================================================== */

.field-validation-image {
  position: absolute;

  inset: 0;

  z-index: 0;

  background-image:
    url("/images/field-validation-hero.jpeg");

  background-size: cover;

  background-position: center;

  background-attachment: fixed;

  transform:
    scale(1.02);
}


.field-validation-overlay {
  position: absolute;

  inset: 0;

  z-index: 1;

  background:
    linear-gradient(
      90deg,
      rgba(4, 12, 18, 0.98) 0%,
      rgba(4, 12, 18, 0.93) 38%,
      rgba(4, 12, 18, 0.75) 68%,
      rgba(4, 12, 18, 0.48) 100%
    );
}


/* =====================================================
   CONTENT
===================================================== */

.field-validation-content {
  position: relative;

  z-index: 2;

  max-width: 1500px;

  margin:
    0 auto;
}


/* =====================================================
   HEADER
===================================================== */

.field-validation-header {
  display: grid;

  grid-template-columns:
    1.4fr
    0.6fr;

  gap: 90px;

  align-items: end;

  margin-bottom: 90px;
}


.field-validation-header h2 {
  max-width: 950px;

  font-size:
    clamp(
      54px,
      6.5vw,
      104px
    );

  line-height: 0.92;

  letter-spacing: -4.5px;

  font-weight: 600;
}


.field-validation-header h2 span {
  display: block;

  color:
    rgba(244, 245, 242, 0.43);
}


.field-validation-intro {
  padding-bottom: 10px;
}


.field-validation-intro > span {
  display: block;

  margin-bottom: 15px;

  color:
    #6ca9c8;

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.7px;
}


.field-validation-intro p {
  max-width: 440px;

  color:
    rgba(244, 245, 242, 0.66);

  font-size: 13px;

  line-height: 1.75;
}


/* =====================================================
   ROUTE
===================================================== */

.field-route {
  max-width: 1100px;

  margin:
    0;
}


/* =====================================================
   STATION
===================================================== */

.field-station {
  min-height: 155px;

  padding:
    25px 0;

  display: grid;

  grid-template-columns:
    90px
    minmax(0, 1fr)
    220px;

  gap: 30px;

  align-items: center;
}


.station-marker {
  width: 52px;
  height: 52px;

  display: flex;

  align-items: center;

  justify-content: center;

  border:
    1px solid
    rgba(255, 255, 255, 0.24);

  background:
    rgba(255, 255, 255, 0.035);

  backdrop-filter:
    blur(8px);
}


.station-marker span {
  font-family:
    "Courier New",
    monospace;

  color:
    rgba(255,255,255,0.7);

  font-size: 8px;
}


.field-station-copy {
  max-width: 600px;
}


.field-station-type {
  display: block;

  margin-bottom: 8px;

  color:
    #71818b;

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 1.5px;
}


.field-station-copy h3 {
  margin-bottom: 8px;

  font-size: 22px;

  font-weight: 500;

  letter-spacing: -0.5px;
}


.field-station-copy p {
  color:
    rgba(255, 255, 255, 0.55);

  font-size: 11px;

  line-height: 1.65;
}


.field-station-data {
  display: flex;

  flex-direction: column;

  align-items: flex-end;

  gap: 7px;
}


.field-station-data span {
  color:
    #687881;

  font-size: 7px;

  letter-spacing: 1.3px;
}


.field-station-data strong {
  font-family:
    "Courier New",
    monospace;

  font-size: 15px;

  font-weight: 500;
}


/* =====================================================
   ROUTE LINE
===================================================== */

.field-route-line {
  width: 1px;

  height: 32px;

  margin-left: 26px;

  background:
    rgba(255,255,255,0.17);
}


/* =====================================================
   IMPORTANT STATIONS
===================================================== */

.field-station-highlight {
  padding:
    25px 20px;

  margin-left: -20px;

  border:
    1px solid
    rgba(57,165,223,0.25);

  background:
    rgba(57,165,223,0.055);
}


.field-station-highlight .station-marker {
  border-color:
    rgba(57,165,223,0.55);

  color:
    #55a8d4;
}


.field-station-final {
  padding:
    28px 20px;

  margin-left: -20px;

  border:
    1px solid
    rgba(112,178,138,0.32);

  background:
    rgba(112,178,138,0.055);
}


.field-station-final .station-marker {
  border-color:
    rgba(112,178,138,0.55);
}


.field-station-final .field-station-data strong {
  color:
    #8ed0a5;
}


/* =====================================================
   SUMMARY METRICS
===================================================== */

.field-validation-summary {
  margin-top: 90px;

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  border-top:
    1px solid
    rgba(255,255,255,0.16);

  border-left:
    1px solid
    rgba(255,255,255,0.16);
}


.field-validation-summary > div {
  min-height: 180px;

  padding: 24px;

  display: flex;

  flex-direction: column;

  border-right:
    1px solid
    rgba(255,255,255,0.16);

  border-bottom:
    1px solid
    rgba(255,255,255,0.16);

  background:
    rgba(6,15,22,0.45);

  backdrop-filter:
    blur(9px);
}


.field-validation-summary span {
  color:
    #6f7d85;

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 1.4px;
}


.field-validation-summary strong {
  margin-top: 35px;

  font-size:
    clamp(
      24px,
      2.6vw,
      38px
    );

  line-height: 1;

  letter-spacing: -1px;

  font-weight: 500;
}


.field-validation-summary small {
  margin-top: auto;

  color:
    rgba(255,255,255,0.45);

  font-size: 9px;
}


/* =====================================================
   RESULTS LINK
===================================================== */

.field-results-link {
  margin-top: 45px;

  display: inline-flex;

  align-items: center;

  gap: 15px;

  color:
    #f4f5f2;

  text-decoration: none;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.6px;
}


.field-results-link span {
  color:
    #69afd0;

  font-size: 17px;

  transition:
    transform 0.2s ease;
}


.field-results-link:hover span {
  transform:
    translateY(5px);
}


/* =====================================================
   FIELD RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

  .field-validation-image {
    background-attachment: scroll;
  }


  .field-validation-header {
    grid-template-columns:
      1fr;

    gap: 35px;
  }


  .field-station {
    grid-template-columns:
      70px
      1fr;
  }


  .field-station-data {
    grid-column:
      2;

    align-items:
      flex-start;
  }


  .field-validation-summary {
    grid-template-columns:
      1fr 1fr;
  }

}


@media (max-width: 650px) {

  .field-validation-section {
    padding:
      100px 20px;
  }


  .field-validation-header h2 {
    letter-spacing:
      -3px;
  }


  .field-station {
    grid-template-columns:
      55px
      1fr;

    gap: 15px;
  }


  .field-validation-summary {
    grid-template-columns:
      1fr;
  }


  .field-station-highlight,
  .field-station-final {
    margin-left: 0;
  }

}
/* =====================================================
   QR REGISTRATION
===================================================== */

.registration-section {
  padding:
    140px 7vw;

  background:
    #f1f2ee;

  color:
    #08131d;
}


/* =====================================================
   HEADING
===================================================== */

.registration-heading {
  max-width: 980px;

  margin-bottom: 90px;
}


.registration-heading .section-number {
  color:
    rgba(8,19,29,0.45);
}


.registration-heading h2 {
  font-size:
    clamp(
      52px,
      6vw,
      96px
    );

  line-height: 0.94;

  letter-spacing: -4px;

  font-weight: 600;
}


.registration-heading h2 span {
  display: block;

  color:
    #929b9c;
}


.registration-heading > p {
  max-width: 760px;

  margin-top: 28px;

  color:
    #647177;

  font-size: 16px;

  line-height: 1.8;
}


/* =====================================================
   MAIN LAYOUT
===================================================== */

.registration-layout {
  max-width: 1500px;

  margin:
    0 auto;

  display: grid;

  grid-template-columns:
    minmax(320px, 0.8fr)
    minmax(0, 1.2fr);

  gap: 90px;

  align-items: center;
}


/* =====================================================
   PHONE VISUAL
===================================================== */

.registration-visual {
  max-width: 520px;
}


.registration-image-wrap {
  padding: 28px;

  background:
    #08131d;

  box-shadow:
    0 30px 70px
    rgba(8,19,29,0.16);
}


.registration-image-wrap img {
  width: 100%;

  display: block;

  object-fit: contain;
}


.registration-visual-meta {
  padding-top: 16px;

  display: flex;

  justify-content: space-between;

  gap: 20px;

  border-top:
    1px solid
    rgba(8,19,29,0.15);
}


.registration-visual-meta span {
  color:
    #899397;

  font-size: 8px;

  letter-spacing: 1.4px;
}


.registration-visual-meta strong {
  font-size: 11px;

  font-weight: 600;
}


/* =====================================================
   WORKFLOW
===================================================== */

.registration-workflow {
  position: relative;
}


.registration-step {
  min-height: 145px;

  display: grid;

  grid-template-columns:
    70px
    1fr;

  gap: 25px;

  align-items: start;
}


.registration-step-number {
  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;

  justify-content: center;

  border:
    1px solid
    rgba(8,19,29,0.18);

  color:
    #7f8a8f;

  font-family:
    "Courier New",
    monospace;

  font-size: 9px;
}


.registration-step-type {
  display: block;

  margin-bottom: 8px;

  color:
    #8a9599;

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 1.5px;
}


.registration-step h3 {
  margin-bottom: 10px;

  font-size: 24px;

  font-weight: 500;

  letter-spacing: -0.5px;
}


.registration-step p {
  max-width: 520px;

  color:
    #68747a;

  font-size: 12px;

  line-height: 1.7;
}


.registration-line {
  width: 1px;

  height: 38px;

  margin:
    -28px 0 8px 24px;

  background:
    rgba(8,19,29,0.18);
}


.registration-step-final {
  padding:
    22px;

  border:
    1px solid
    rgba(57,165,223,0.28);

  background:
    rgba(57,165,223,0.06);
}


/* =====================================================
   TRIP RECORD
===================================================== */

.trip-record {
  max-width: 1500px;

  margin:
    100px auto 0;

  padding-top: 60px;

  border-top:
    1px solid
    rgba(8,19,29,0.17);
}


.trip-record-heading {
  margin-bottom: 40px;
}


.trip-record-heading > span {
  color:
    #899397;

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 1.5px;
}


.trip-record-heading h3 {
  margin-top: 12px;

  font-size:
    clamp(
      32px,
      4vw,
      56px
    );

  font-weight: 500;

  letter-spacing: -2px;
}


.trip-fields {
  display: grid;

  grid-template-columns:
    repeat(5, 1fr);

  border-top:
    1px solid
    rgba(8,19,29,0.16);

  border-left:
    1px solid
    rgba(8,19,29,0.16);
}


.trip-fields > div {
  min-height: 120px;

  padding: 20px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  border-right:
    1px solid
    rgba(8,19,29,0.16);

  border-bottom:
    1px solid
    rgba(8,19,29,0.16);
}


.trip-fields span {
  color:
    #8a9599;

  font-size: 8px;

  letter-spacing: 1.3px;
}


.trip-fields strong {
  font-family:
    "Courier New",
    monospace;

  font-size: 11px;

  font-weight: 500;
}


/* =====================================================
   ARCHITECTURE BOUNDARY
===================================================== */

.registration-boundary {
  max-width: 1500px;

  margin:
    55px auto 0;

  padding:
    25px 28px;

  display: grid;

  grid-template-columns:
    0.3fr
    1fr;

  gap: 50px;

  border-left:
    3px solid
    #d4a24b;

  background:
    rgba(8,19,29,0.035);
}


.registration-boundary span {
  color:
    #b8883c;

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.5px;
}


.registration-boundary p {
  max-width: 900px;

  color:
    #667278;

  font-size: 12px;

  line-height: 1.7;
}


/* =====================================================
   RESPONSIVE REGISTRATION
===================================================== */

@media (max-width: 1000px) {

  .registration-layout {
    grid-template-columns:
      1fr;

    gap: 70px;
  }


  .registration-visual {
    max-width: 600px;
  }


  .trip-fields {
    grid-template-columns:
      1fr 1fr;
  }


  .registration-boundary {
    grid-template-columns:
      1fr;

    gap: 15px;
  }

}


@media (max-width: 650px) {

  .registration-section {
    padding:
      100px 20px;
  }


  .trip-fields {
    grid-template-columns:
      1fr;
  }


  .registration-step {
    grid-template-columns:
      55px
      1fr;
  }


  .registration-image-wrap {
    padding: 16px;
  }

}
/* =====================================================
   OPERATOR DASHBOARD
===================================================== */

.dashboard-section {
  padding: 145px 7vw;
  background: #071019;
  color: #f2f4f1;
}


/* HEADER */

.dashboard-header {
  max-width: 1500px;
  margin: 0 auto 85px;

  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 90px;

  align-items: end;
}


.dashboard-header h2 {
  max-width: 950px;

  font-size: clamp(54px, 6.5vw, 102px);
  line-height: 0.92;
  letter-spacing: -4.5px;

  font-weight: 600;
}


.dashboard-header h2 span {
  display: block;
  color: #6f7c84;
}


.dashboard-intro > span {
  display: block;
  margin-bottom: 15px;

  color: #69afd0;

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.6px;
}


.dashboard-intro p {
  max-width: 430px;

  color: #839097;

  font-size: 13px;
  line-height: 1.75;
}


/* =====================================================
   DASHBOARD SHOWCASE
===================================================== */

.dashboard-showcase {
  max-width: 1500px;
  margin: 0 auto;
}


.dashboard-browser {
  overflow: hidden;

  border:
    1px solid
    rgba(255,255,255,0.14);

  background: #0b151d;

  box-shadow:
    0 45px 100px
    rgba(0,0,0,0.35);
}


.dashboard-browser-bar {
  height: 52px;
  padding: 0 18px;

  display: grid;
  grid-template-columns: 120px 1fr 120px;

  align-items: center;

  border-bottom:
    1px solid
    rgba(255,255,255,0.1);
}


.browser-dots {
  display: flex;
  gap: 7px;
}


.browser-dots span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background:
    rgba(255,255,255,0.25);
}


.browser-address {
  justify-self: center;

  color: #697780;

  font-family:
    "Courier New",
    monospace;

  font-size: 9px;
}


.browser-status {
  justify-self: end;

  color: #6db188;

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.4px;
}


.dashboard-image-container {
  position: relative;

  min-height: 500px;

  background: #0a1219;
}


.dashboard-image-container img {
  width: 100%;
  height: auto;

  display: block;
}


.dashboard-caption {
  padding-top: 18px;

  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 40px;
}


.dashboard-caption span {
  color: #687780;

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
}


.dashboard-caption p {
  max-width: 600px;

  color: #74828a;

  font-size: 11px;
  line-height: 1.7;
}


/* =====================================================
   INFORMATION HIERARCHY
===================================================== */

.dashboard-hierarchy {
  max-width: 1500px;

  margin: 110px auto 0;
  padding-top: 60px;

  border-top:
    1px solid
    rgba(255,255,255,0.13);
}


.dashboard-hierarchy-heading {
  margin-bottom: 45px;
}


.dashboard-hierarchy-heading > span {
  color: #687780;

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
}


.dashboard-hierarchy-heading h3 {
  margin-top: 12px;

  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;

  letter-spacing: -2px;
  font-weight: 500;
}


.dashboard-module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border-top:
    1px solid
    rgba(255,255,255,0.12);

  border-left:
    1px solid
    rgba(255,255,255,0.12);
}


.dashboard-module {
  min-height: 300px;
  padding: 26px;

  display: flex;
  flex-direction: column;

  border-right:
    1px solid
    rgba(255,255,255,0.12);

  border-bottom:
    1px solid
    rgba(255,255,255,0.12);
}


.dashboard-module-number {
  color: #65737b;

  font-family:
    "Courier New",
    monospace;

  font-size: 8px;
}


.dashboard-module-icon {
  margin-top: 35px;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border:
    1px solid
    rgba(255,255,255,0.14);

  color: #8c9aa1;

  font-size: 18px;
}


.dashboard-module-label {
  margin-top: 34px;

  color: #66757d;

  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1.4px;
}


.dashboard-module h4 {
  margin-top: 8px;

  font-size: 20px;
  font-weight: 500;
}


.dashboard-module p {
  margin-top: auto;

  max-width: 330px;

  color: #748189;

  font-size: 11px;
  line-height: 1.7;
}


.dashboard-module-alert {
  background:
    rgba(197,68,61,0.07);
}


.dashboard-module-alert .dashboard-module-icon {
  color: #d75a53;

  border-color:
    rgba(215,90,83,0.35);
}


/* =====================================================
   OPERATOR FLOW
===================================================== */

.operator-flow {
  max-width: 1500px;

  margin: 105px auto 0;
  padding-top: 60px;

  border-top:
    1px solid
    rgba(255,255,255,0.13);
}


.operator-flow-heading {
  margin-bottom: 45px;
}


.operator-flow-heading > span {
  color: #687780;

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
}


.operator-flow-heading h3 {
  margin-top: 12px;

  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;

  letter-spacing: -2px;
  font-weight: 500;
}


.operator-flow-track {
  display: grid;

  grid-template-columns:
    1fr auto
    1fr auto
    1fr auto
    1fr auto
    1fr;

  align-items: stretch;
}


.operator-flow-step {
  min-height: 185px;
  padding: 22px;

  display: flex;
  flex-direction: column;

  border:
    1px solid
    rgba(255,255,255,0.12);
}


.operator-flow-step > span {
  color: #66747c;

  font-family:
    "Courier New",
    monospace;

  font-size: 8px;
}


.operator-flow-step strong {
  margin-top: 48px;

  font-size: 13px;
  letter-spacing: 0.5px;
}


.operator-flow-step p {
  margin-top: auto;

  color: #707e86;

  font-size: 10px;
  line-height: 1.6;
}


.operator-flow-arrow {
  width: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #56656e;
}


.operator-flow-critical {
  border-color:
    rgba(210,164,74,0.35);

  background:
    rgba(210,164,74,0.06);
}


/* =====================================================
   TELEMETRY EXAMPLE
===================================================== */

.telemetry-example {
  max-width: 1500px;

  margin: 105px auto 0;
  padding-top: 60px;

  display: grid;
  grid-template-columns: 0.8fr 1.2fr;

  gap: 90px;

  border-top:
    1px solid
    rgba(255,255,255,0.13);
}


.telemetry-example-left > span {
  color: #687780;

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
}


.telemetry-example-left h3 {
  margin-top: 12px;

  max-width: 500px;

  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;

  letter-spacing: -2px;
  font-weight: 500;
}


.telemetry-example-left p {
  max-width: 500px;

  margin-top: 22px;

  color: #748189;

  font-size: 12px;
  line-height: 1.75;
}


/* TERMINAL */

.telemetry-terminal {
  border:
    1px solid
    rgba(255,255,255,0.14);

  background: #050b10;
}


.terminal-header {
  min-height: 48px;

  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-bottom:
    1px solid
    rgba(255,255,255,0.1);

  font-family:
    "Courier New",
    monospace;

  font-size: 9px;
}


.terminal-live {
  color: #6db188;
}


.terminal-code {
  padding: 25px;

  font-family:
    "Courier New",
    monospace;

  font-size: 11px;
}


.terminal-code > div {
  min-height: 36px;

  display: grid;
  grid-template-columns: 170px 1fr;

  align-items: center;

  border-bottom:
    1px solid
    rgba(255,255,255,0.05);
}


.terminal-key {
  color: #62717a;
}


.terminal-value {
  color: #c3c9c6;
}


.terminal-false {
  color: #6db188;
}


/* =====================================================
   PRINCIPLE
===================================================== */

.dashboard-principle {
  max-width: 1500px;

  margin: 90px auto 0;
  padding: 42px;

  display: grid;
  grid-template-columns: 0.25fr 1fr 0.7fr;

  gap: 50px;

  align-items: start;

  background: #e9ece8;

  color: #08131d;
}


.dashboard-principle > span {
  color: #758186;

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.5px;
}


.dashboard-principle h3 {
  max-width: 650px;

  font-size: clamp(28px, 3vw, 45px);
  line-height: 1.05;

  letter-spacing: -1.5px;
  font-weight: 500;
}


.dashboard-principle p {
  color: #657177;

  font-size: 12px;
  line-height: 1.75;
}


/* =====================================================
   DASHBOARD RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

  .dashboard-header {
    grid-template-columns: 1fr;
    gap: 35px;
  }


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


  .operator-flow-track {
    grid-template-columns: 1fr;
  }


  .operator-flow-arrow {
    width: 100%;
    height: 35px;

    transform: rotate(90deg);
  }


  .telemetry-example {
    grid-template-columns: 1fr;
  }


  .dashboard-principle {
    grid-template-columns: 1fr;
    gap: 25px;
  }

}


@media (max-width: 650px) {

  .dashboard-section {
    padding: 100px 20px;
  }


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


  .dashboard-browser-bar {
    grid-template-columns: 70px 1fr 70px;
  }


  .browser-address {
    font-size: 7px;
  }


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


  .terminal-code > div {
    grid-template-columns: 120px 1fr;

    font-size: 9px;
  }


  .dashboard-principle {
    padding: 25px;
  }

}
/* =====================================================
   ENGINEERING EVOLUTION STORY
===================================================== */

.engineering-evolution-section {
  padding: 145px 7vw;
  background: #edf0ec;
  color: #08131d;
}


/* =====================================================
   HEADING
===================================================== */

.engineering-evolution-heading {
  max-width: 1000px;
  margin-bottom: 100px;
}


.engineering-evolution-heading .section-number {
  color: rgba(8,19,29,0.44);
}


.engineering-evolution-heading h2 {
  font-size: clamp(54px, 6.5vw, 102px);
  line-height: 0.92;
  letter-spacing: -4.5px;
  font-weight: 600;
}


.engineering-evolution-heading h2 span {
  display: block;
  color: #929b9d;
}


.engineering-evolution-heading > p {
  max-width: 760px;
  margin-top: 28px;
  color: #667278;
  font-size: 16px;
  line-height: 1.8;
}


/* =====================================================
   STORY STAGE
===================================================== */

.evolution-story-stage {
  max-width: 1500px;
  margin: 0 auto;

  min-height: 700px;

  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 85px;

  align-items: center;
}


.evolution-story-stage-reverse {
  grid-template-columns: 0.85fr 1.15fr;
}


.evolution-story-stage-reverse .evolution-story-image {
  order: 2;
}


.evolution-story-stage-reverse .evolution-story-copy {
  order: 1;
}


/* =====================================================
   IMAGE
===================================================== */

.evolution-story-image {
  position: relative;

  overflow: hidden;

  min-height: 540px;

  background: #d8dcda;
}


.evolution-story-image img {
  width: 100%;
  height: 100%;

  min-height: 540px;

  position: absolute;
  inset: 0;

  object-fit: cover;

  transition: transform 0.7s ease;
}


.evolution-story-stage:hover .evolution-story-image img {
  transform: scale(1.025);
}


.evolution-image-index {
  position: absolute;

  left: 20px;
  bottom: 20px;

  z-index: 2;

  padding: 8px 10px;

  background: rgba(7,16,25,0.8);

  color: #f2f4f1;

  font-family: "Courier New", monospace;
  font-size: 8px;
  letter-spacing: 1.2px;

  backdrop-filter: blur(8px);
}


/* =====================================================
   COPY
===================================================== */

.evolution-story-copy {
  max-width: 620px;
}


.evolution-story-kicker {
  color: #568ca6;

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.6px;
}


.evolution-story-copy h3 {
  margin-top: 15px;

  font-size: clamp(38px, 4vw, 64px);
  line-height: 0.98;

  letter-spacing: -2.5px;
  font-weight: 500;
}


.evolution-story-copy > p {
  margin-top: 25px;

  max-width: 560px;

  color: #657177;

  font-size: 13px;
  line-height: 1.8;
}


/* =====================================================
   STAGE POINTS
===================================================== */

.evolution-story-points {
  margin-top: 45px;

  display: grid;
  grid-template-columns: repeat(3,1fr);

  border-top:
    1px solid
    rgba(8,19,29,0.16);

  border-left:
    1px solid
    rgba(8,19,29,0.16);
}


.evolution-story-points > div {
  min-height: 105px;

  padding: 17px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border-right:
    1px solid
    rgba(8,19,29,0.16);

  border-bottom:
    1px solid
    rgba(8,19,29,0.16);
}


.evolution-story-points span {
  color: #899397;

  font-size: 7px;
  letter-spacing: 1.3px;
}


.evolution-story-points strong {
  font-size: 11px;
  font-weight: 600;
}


/* =====================================================
   TRANSITION
===================================================== */

.evolution-story-transition {
  max-width: 1500px;

  height: 120px;

  margin: 0 auto;

  display: grid;
  grid-template-columns: 180px 1fr 50px;

  align-items: center;

  gap: 25px;
}


.evolution-story-transition > span {
  color: #899397;

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.4px;
}


.evolution-story-transition > div {
  height: 1px;

  background:
    rgba(8,19,29,0.17);
}


.evolution-story-transition strong {
  color: #77868d;

  font-size: 18px;
  font-weight: 400;
}


/* =====================================================
   FINAL STAGE
===================================================== */

.evolution-story-final {
  padding: 50px;

  background: #08131d;

  color: #f2f4f1;
}


.evolution-story-final .evolution-story-copy > p {
  color: #87949a;
}


.evolution-story-final .evolution-story-points {
  border-color: rgba(255,255,255,0.12);
}


.evolution-story-final .evolution-story-points > div {
  border-color: rgba(255,255,255,0.12);
}


.evolution-story-final .evolution-story-points span {
  color: #687780;
}


/* =====================================================
   DECISION LOG
===================================================== */

.evolution-decision-log {
  max-width: 1500px;

  margin: 110px auto 0;
  padding-top: 60px;

  border-top:
    1px solid
    rgba(8,19,29,0.17);
}


.evolution-decision-log-heading {
  margin-bottom: 45px;
}


.evolution-decision-log-heading > span {
  color: #899397;

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
}


.evolution-decision-log-heading h3 {
  margin-top: 12px;

  font-size: clamp(34px, 4vw, 58px);

  line-height: 1;

  letter-spacing: -2px;
  font-weight: 500;
}


.evolution-decision-list {
  display: grid;
  grid-template-columns: 1fr 1fr;

  border-top:
    1px solid
    rgba(8,19,29,0.16);

  border-left:
    1px solid
    rgba(8,19,29,0.16);
}


.evolution-decision-list > div {
  min-height: 240px;

  padding: 27px;

  display: flex;
  flex-direction: column;

  border-right:
    1px solid
    rgba(8,19,29,0.16);

  border-bottom:
    1px solid
    rgba(8,19,29,0.16);
}


.decision-id {
  color: #8a9599;

  font-family:
    "Courier New",
    monospace;

  font-size: 8px;
}


.evolution-decision-list strong {
  margin-top: 45px;

  max-width: 420px;

  font-size: 20px;
  font-weight: 500;

  line-height: 1.2;
}


.evolution-decision-list p {
  margin-top: auto;

  max-width: 480px;

  color: #68747a;

  font-size: 11px;
  line-height: 1.7;
}


/* =====================================================
   PROCESS RULE
===================================================== */

.evolution-process-rule {
  max-width: 1500px;

  margin: 70px auto 0;

  padding: 35px;

  display: grid;

  grid-template-columns:
    0.3fr 1fr;

  gap: 45px;

  align-items: center;

  background: #08131d;

  color: #f2f4f1;
}


.evolution-process-rule > span {
  color: #6d7b83;

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.5px;
}


.process-rule-flow {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 18px;
}


.process-rule-flow strong {
  font-size: 11px;

  letter-spacing: 1px;
}


.process-rule-flow span {
  color: #56656e;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

  .evolution-story-stage,
  .evolution-story-stage-reverse {
    min-height: auto;

    grid-template-columns: 1fr;

    gap: 45px;

    padding: 60px 0;
  }


  .evolution-story-stage-reverse .evolution-story-image,
  .evolution-story-stage-reverse .evolution-story-copy {
    order: initial;
  }


  .evolution-story-final {
    padding: 35px;
  }


  .evolution-decision-list {
    grid-template-columns: 1fr;
  }


  .evolution-process-rule {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 650px) {

  .engineering-evolution-section {
    padding: 100px 20px;
  }


  .evolution-story-image {
    min-height: 360px;
  }


  .evolution-story-image img {
    min-height: 360px;
  }


  .evolution-story-points {
    grid-template-columns: 1fr;
  }


  .evolution-story-transition {
    grid-template-columns: 1fr;

    height: auto;

    padding: 30px 0;
  }


  .evolution-story-transition > div {
    display: none;
  }


  .process-rule-flow {
    flex-wrap: wrap;

    justify-content: flex-start;
  }

}
/* =====================================================
   STAKEHOLDER / MCHS
===================================================== */

.stakeholder-section {
  display: grid;

  grid-template-columns:
    minmax(360px, 0.78fr)
    minmax(0, 1.22fr);

  min-height: 1100px;

  background:
    #071019;

  color:
    #f2f4f1;
}


/* =====================================================
   LARGE VISUAL
===================================================== */

.stakeholder-visual {
  position: relative;

  min-height: 100%;

  overflow: hidden;
}


.stakeholder-visual img {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
}


.stakeholder-visual-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(5,13,20,0.88),
      rgba(5,13,20,0.12) 65%
    );
}


.stakeholder-visual-label {
  position: absolute;

  z-index: 3;

  left: 40px;
  right: 40px;
  bottom: 40px;

  padding-top: 18px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  border-top:
    1px solid
    rgba(255,255,255,0.3);
}


.stakeholder-visual-label span {
  color:
    rgba(255,255,255,0.52);

  font-size: 8px;

  letter-spacing: 1.5px;
}


.stakeholder-visual-label strong {
  font-size: 14px;

  font-weight: 600;
}


/* =====================================================
   CONTENT
===================================================== */

.stakeholder-content {
  padding:
    140px 6vw;
}


.stakeholder-heading {
  max-width: 850px;
}


.stakeholder-heading h2 {
  font-size:
    clamp(
      50px,
      5.5vw,
      88px
    );

  line-height: 0.94;

  letter-spacing: -4px;

  font-weight: 600;
}


.stakeholder-heading h2 span {
  display: block;

  color:
    #718089;
}


.stakeholder-heading > p {
  max-width: 700px;

  margin-top: 27px;

  color:
    #849198;

  font-size: 14px;

  line-height: 1.8;
}


/* =====================================================
   SUMMARY
===================================================== */

.stakeholder-summary {
  margin-top: 70px;

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  border-top:
    1px solid
    rgba(255,255,255,0.12);

  border-left:
    1px solid
    rgba(255,255,255,0.12);
}


.stakeholder-summary-item {
  min-height: 240px;

  padding: 24px;

  display: flex;

  flex-direction: column;

  border-right:
    1px solid
    rgba(255,255,255,0.12);

  border-bottom:
    1px solid
    rgba(255,255,255,0.12);
}


.stakeholder-summary-item > span {
  color:
    #687780;

  font-size: 7px;

  font-weight: 800;

  letter-spacing: 1.4px;
}


.stakeholder-summary-item strong {
  margin-top: 48px;

  font-size: 18px;

  font-weight: 500;
}


.stakeholder-summary-item p {
  margin-top: auto;

  color:
    #75828a;

  font-size: 11px;

  line-height: 1.65;
}


/* =====================================================
   FEEDBACK ACTION
===================================================== */

.feedback-action {
  margin-top: 90px;

  padding-top: 55px;

  border-top:
    1px solid
    rgba(255,255,255,0.13);
}


.feedback-action-heading {
  margin-bottom: 40px;
}


.feedback-action-heading > span {
  color:
    #687780;

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 1.5px;
}


.feedback-action-heading h3 {
  margin-top: 12px;

  max-width: 700px;

  font-size:
    clamp(
      32px,
      3.8vw,
      56px
    );

  line-height: 1;

  letter-spacing: -2px;

  font-weight: 500;
}


/* =====================================================
   ACTION ROW
===================================================== */

.feedback-action-list {
  border-top:
    1px solid
    rgba(255,255,255,0.12);
}


.feedback-action-row {
  min-height: 145px;

  padding:
    22px 0;

  display: grid;

  grid-template-columns:
    90px
    0.85fr
    1.4fr
    1fr;

  gap: 28px;

  align-items: center;

  border-bottom:
    1px solid
    rgba(255,255,255,0.12);
}


.feedback-priority {
  width: fit-content;

  padding:
    6px 8px;

  font-size: 7px;

  font-weight: 800;

  letter-spacing: 1.2px;
}


.priority-high {
  color:
    #d95d56;

  border:
    1px solid
    rgba(217,93,86,0.35);
}


.priority-medium {
  color:
    #d3a34d;

  border:
    1px solid
    rgba(211,163,77,0.35);
}


.feedback-problem span,
.feedback-impact span,
.feedback-response span {
  display: block;

  margin-bottom: 8px;

  color:
    #63727a;

  font-size: 7px;

  letter-spacing: 1.3px;
}


.feedback-problem strong,
.feedback-response strong {
  font-size: 12px;

  font-weight: 600;

  line-height: 1.5;
}


.feedback-impact p {
  color:
    #78868e;

  font-size: 10px;

  line-height: 1.6;
}


/* =====================================================
   RANGE BOUNDARY
===================================================== */

.stakeholder-range-boundary {
  margin-top: 65px;

  padding: 30px;

  display: grid;

  grid-template-columns:
    0.35fr
    1fr;

  gap: 45px;

  align-items: center;

  background:
    #edf0ec;

  color:
    #08131d;
}


.stakeholder-range-boundary > div {
  display: flex;

  flex-direction: column;

  gap: 8px;
}


.stakeholder-range-boundary span {
  color:
    #b1843f;

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.5px;
}


.stakeholder-range-boundary strong {
  font-size: 38px;

  font-weight: 500;

  letter-spacing: -1.5px;
}


.stakeholder-range-boundary p {
  max-width: 700px;

  color:
    #647177;

  font-size: 11px;

  line-height: 1.7;
}


/* =====================================================
   STAKEHOLDER PRINCIPLE
===================================================== */

.stakeholder-principle {
  margin-top: 60px;

  padding-top: 35px;

  border-top:
    1px solid
    rgba(255,255,255,0.13);
}


.stakeholder-principle > span {
  color:
    #687780;

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 1.5px;
}


.stakeholder-principle h3 {
  margin-top: 12px;

  max-width: 700px;

  font-size:
    clamp(
      28px,
      3vw,
      45px
    );

  line-height: 1.05;

  letter-spacing: -1.5px;

  font-weight: 500;
}


.stakeholder-principle p {
  max-width: 650px;

  margin-top: 18px;

  color:
    #78868e;

  font-size: 11px;

  line-height: 1.7;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1100px) {

  .stakeholder-section {
    grid-template-columns:
      1fr;
  }


  .stakeholder-visual {
    min-height: 650px;
  }


  .stakeholder-summary {
    grid-template-columns:
      1fr;
  }


  .feedback-action-row {
    grid-template-columns:
      80px
      1fr 1fr;

    gap: 20px;
  }


  .feedback-response {
    grid-column:
      2 / 4;
  }

}


@media (max-width: 650px) {

  .stakeholder-content {
    padding:
      100px 20px;
  }


  .stakeholder-visual {
    min-height: 480px;
  }


  .stakeholder-visual-label {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }


  .feedback-action-row {
    grid-template-columns:
      1fr;

    gap: 17px;
  }


  .feedback-response {
    grid-column: auto;
  }


  .stakeholder-range-boundary {
    grid-template-columns:
      1fr;

    gap: 20px;
  }

}
/* =====================================================
   DEVELOPMENT ROADMAP
===================================================== */

.roadmap-section {
  padding: 145px 7vw;
  background: #edf0ec;
  color: #08131d;
}


/* HEADING */

.roadmap-heading {
  max-width: 1000px;
  margin-bottom: 90px;
}


.roadmap-heading .section-number {
  color: rgba(8,19,29,0.45);
}


.roadmap-heading h2 {
  font-size: clamp(54px, 6.5vw, 102px);
  line-height: 0.92;
  letter-spacing: -4.5px;
  font-weight: 600;
}


.roadmap-heading h2 span {
  display: block;
  color: #929b9d;
}


.roadmap-heading > p {
  max-width: 760px;
  margin-top: 28px;
  color: #667278;
  font-size: 15px;
  line-height: 1.8;
}


/* =====================================================
   PHASES
===================================================== */

.roadmap-phases {
  max-width: 1500px;
  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(0,1fr)
    50px
    minmax(0,1fr)
    50px
    minmax(0,1fr);

  align-items: stretch;
}


.roadmap-phase {
  min-height: 610px;
  padding: 30px;

  display: flex;
  flex-direction: column;

  border: 1px solid rgba(8,19,29,0.17);
  background: rgba(255,255,255,0.18);
}


.roadmap-phase-current {
  background: #08131d;
  color: #f2f4f1;
}


.roadmap-phase-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.phase-index {
  color: #899397;
  font-family: "Courier New", monospace;
  font-size: 8px;
}


.phase-status {
  padding: 6px 8px;

  border: 1px solid rgba(91,164,118,0.4);

  color: #65aa7d;

  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1.2px;
}


.phase-status-future {
  color: #5b8fa7;
  border-color: rgba(91,143,167,0.35);
}


.phase-status-concept {
  color: #a18454;
  border-color: rgba(161,132,84,0.35);
}


.phase-kicker {
  margin-top: 60px;

  color: #899397;

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.5px;
}


.roadmap-phase h3 {
  margin-top: 12px;

  font-size: 31px;
  line-height: 1;

  letter-spacing: -1.2px;
  font-weight: 500;
}


.roadmap-phase > p {
  margin-top: 20px;

  color: #69757a;

  font-size: 12px;
  line-height: 1.7;
}


.roadmap-phase-current > p {
  color: #859198;
}


/* TASKS */

.roadmap-task-list {
  margin-top: auto;

  border-top: 1px solid rgba(8,19,29,0.15);
}


.roadmap-phase-current .roadmap-task-list {
  border-color: rgba(255,255,255,0.11);
}


.roadmap-task-list > div {
  min-height: 52px;

  display: grid;
  grid-template-columns: 35px 1fr;

  align-items: center;

  border-bottom: 1px solid rgba(8,19,29,0.11);
}


.roadmap-phase-current .roadmap-task-list > div {
  border-color: rgba(255,255,255,0.08);
}


.roadmap-task-list span {
  color: #8b9599;

  font-family: "Courier New", monospace;

  font-size: 8px;
}


.roadmap-task-list strong {
  font-size: 11px;
  font-weight: 500;
}


.roadmap-phase-arrow {
  display: flex;
  align-items: center;
  justify-content: center;

  color: #7a868b;

  font-size: 19px;
}


/* =====================================================
   GATES
===================================================== */

.roadmap-gates {
  max-width: 1500px;

  margin: 110px auto 0;
  padding-top: 60px;

  border-top: 1px solid rgba(8,19,29,0.17);
}


.roadmap-gates-heading {
  margin-bottom: 45px;
}


.roadmap-gates-heading > span {
  color: #899397;

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
}


.roadmap-gates-heading h3 {
  margin-top: 12px;

  font-size: clamp(34px,4vw,58px);
  line-height: 1;

  letter-spacing: -2px;
  font-weight: 500;
}


.roadmap-gates-heading p {
  max-width: 600px;

  margin-top: 18px;

  color: #69757a;

  font-size: 12px;
  line-height: 1.7;
}


.gate-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);

  border-top: 1px solid rgba(8,19,29,0.16);
  border-left: 1px solid rgba(8,19,29,0.16);
}


.gate-card {
  min-height: 290px;
  padding: 25px;

  display: flex;
  flex-direction: column;

  border-right: 1px solid rgba(8,19,29,0.16);
  border-bottom: 1px solid rgba(8,19,29,0.16);
}


.gate-id {
  color: #879195;

  font-family: "Courier New", monospace;

  font-size: 8px;
}


.gate-card h4 {
  margin-top: 50px;

  font-size: 19px;
  font-weight: 500;
}


.gate-card p {
  margin-top: 13px;

  color: #68747a;

  font-size: 11px;
  line-height: 1.65;
}


.gate-state {
  width: fit-content;

  margin-top: auto;

  padding: 6px 8px;

  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1.2px;
}


.gate-open {
  color: #b17d36;
  border: 1px solid rgba(177,125,54,0.35);
}


.gate-future {
  color: #648ba0;
  border: 1px solid rgba(100,139,160,0.35);
}


/* =====================================================
   NEXT VALIDATION
===================================================== */

.next-validation {
  max-width: 1500px;

  margin: 110px auto 0;
  padding-top: 60px;

  border-top: 1px solid rgba(8,19,29,0.17);
}


.next-validation-heading {
  margin-bottom: 45px;
}


.next-validation-heading > span {
  color: #899397;

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
}


.next-validation-heading h3 {
  margin-top: 12px;

  font-size: clamp(34px,4vw,58px);
  line-height: 1;

  letter-spacing: -2px;
  font-weight: 500;
}


.validation-priorities {
  display: grid;
  grid-template-columns: repeat(3,1fr);

  border-top: 1px solid rgba(8,19,29,0.16);
  border-left: 1px solid rgba(8,19,29,0.16);
}


.validation-priorities > div {
  min-height: 250px;
  padding: 25px;

  display: flex;
  flex-direction: column;

  border-right: 1px solid rgba(8,19,29,0.16);
  border-bottom: 1px solid rgba(8,19,29,0.16);
}


.validation-priorities span {
  color: #849095;

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.4px;
}


.validation-priorities strong {
  margin-top: 50px;

  font-size: 18px;
  font-weight: 500;
}


.validation-priorities p {
  margin-top: auto;

  color: #69757a;

  font-size: 11px;
  line-height: 1.65;
}


/* =====================================================
   NEXT PROTOTYPE
===================================================== */

.next-prototype {
  max-width: 1500px;

  margin: 80px auto 0;
  padding: 40px;

  display: grid;
  grid-template-columns: 0.7fr 1.3fr;

  gap: 60px;

  background: #08131d;
  color: #f2f4f1;
}


.next-prototype > div:first-child > span {
  color: #69a8c5;

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.5px;
}


.next-prototype h3 {
  margin-top: 12px;

  font-size: clamp(28px,3.4vw,48px);
  line-height: 1;

  letter-spacing: -1.5px;
  font-weight: 500;
}


.next-prototype-tags {
  display: flex;
  flex-wrap: wrap;

  align-content: center;

  gap: 10px;
}


.next-prototype-tags span {
  padding: 9px 11px;

  border: 1px solid rgba(255,255,255,0.15);

  color: #a1abad;

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.2px;
}


/* =====================================================
   BOUNDARY
===================================================== */

.roadmap-boundary {
  max-width: 1500px;

  margin: 55px auto 0;

  padding: 25px 28px;

  display: grid;
  grid-template-columns: 0.3fr 1fr;

  gap: 50px;

  border-left: 3px solid #c14b45;

  background: rgba(8,19,29,0.035);
}


.roadmap-boundary span {
  color: #b84b46;

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.5px;
}


.roadmap-boundary p {
  max-width: 900px;

  color: #657177;

  font-size: 12px;
  line-height: 1.7;
}


/* =====================================================
   RESPONSIVE ROADMAP
===================================================== */

@media (max-width: 1100px) {

  .roadmap-phases {
    grid-template-columns: 1fr;
  }


  .roadmap-phase-arrow {
    height: 55px;

    transform: rotate(90deg);
  }


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


  .validation-priorities {
    grid-template-columns: 1fr 1fr;
  }


  .next-prototype {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 650px) {

  .roadmap-section {
    padding: 100px 20px;
  }


  .roadmap-phase {
    min-height: 540px;
  }


  .gate-grid,
  .validation-priorities {
    grid-template-columns: 1fr;
  }


  .next-prototype {
    padding: 26px;
  }


  .roadmap-boundary {
    grid-template-columns: 1fr;
    gap: 15px;
  }

}
/* =====================================================
   DOCUMENTATION HUB
===================================================== */

.documents-hub-section {
  padding: 145px 7vw;
  background: #08131d;
  color: #f3f5f2;
}


/* HEADING */

.documents-hub-heading {
  max-width: 1000px;
  margin-bottom: 90px;
}


.documents-hub-heading h2 {
  font-size: clamp(54px, 6.5vw, 102px);
  line-height: 0.92;
  letter-spacing: -4.5px;
  font-weight: 600;
}


.documents-hub-heading h2 span {
  display: block;
  color: #718089;
}


.documents-hub-heading > p {
  max-width: 760px;
  margin-top: 28px;

  color: #849198;
  font-size: 15px;
  line-height: 1.8;
}


/* =====================================================
   MAIN DOCUMENTS
===================================================== */

.documents-main-grid {
  max-width: 1500px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;

  border-top: 1px solid rgba(255,255,255,0.12);
  border-left: 1px solid rgba(255,255,255,0.12);
}


.project-document-card {
  min-height: 500px;
  padding: 32px;

  display: flex;
  flex-direction: column;

  border-right: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}


.project-document-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.document-index {
  color: #687780;

  font-family: "Courier New", monospace;
  font-size: 9px;
}


.document-badge {
  padding: 6px 9px;

  border: 1px solid rgba(77,155,190,0.38);

  color: #64a7c6;

  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1.3px;
}


.document-badge-enterprise {
  color: #d0a04c;
  border-color: rgba(208,160,76,0.38);
}


.project-document-content {
  margin-top: 95px;
  max-width: 600px;
}


.document-kicker {
  display: block;

  margin-bottom: 13px;

  color: #6f7d85;

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.5px;
}


.project-document-content h3 {
  max-width: 520px;

  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1;

  letter-spacing: -1.6px;
  font-weight: 500;
}


.project-document-content p {
  max-width: 540px;
  margin-top: 22px;

  color: #819097;

  font-size: 12px;
  line-height: 1.75;
}


.project-document-link {
  margin-top: auto;

  padding-top: 22px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-top: 1px solid rgba(255,255,255,0.12);

  color: #f3f5f2;

  text-decoration: none;

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.4px;

  transition: .2s ease;
}


.project-document-link:hover {
  color: #67b2d7;
}


/* =====================================================
   EXECUTIVE SUMMARY
===================================================== */

.executive-summary-selector {
  max-width: 1500px;

  margin: 90px auto 0;
  padding-top: 60px;

  display: grid;
  grid-template-columns: 0.65fr 1.35fr;

  gap: 85px;

  border-top: 1px solid rgba(255,255,255,0.13);
}


.executive-summary-copy {
  max-width: 540px;
}


.executive-summary-copy .document-kicker {
  margin-top: 50px;
}


.executive-summary-copy h3 {
  margin-top: 12px;

  font-size: clamp(36px, 4vw, 62px);
  line-height: 1;

  letter-spacing: -2.2px;
  font-weight: 500;
}


.executive-summary-copy p {
  max-width: 470px;

  margin-top: 20px;

  color: #829097;

  font-size: 12px;
  line-height: 1.75;
}


/* LANGUAGE SELECTOR */

.language-selector {
  display: grid;
  grid-template-columns: repeat(5, 1fr);

  border-top: 1px solid rgba(255,255,255,0.12);
  border-left: 1px solid rgba(255,255,255,0.12);
}


.language-option {
  min-height: 150px;
  padding: 20px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;

  border: none;
  border-right: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);

  background: transparent;
  color: #f3f5f2;

  cursor: pointer;

  transition: .2s ease;
}


.language-option > span {
  font-size: 20px;
  font-weight: 500;
}


.language-option small {
  color: #6e7d85;

  font-size: 9px;
}


.language-option:hover {
  background: rgba(255,255,255,0.04);
}


.language-option.active {
  background: #edf0ec;
  color: #08131d;
}


.language-option.active small {
  color: #69757a;
}


/* SELECTED LANGUAGE */

.selected-language-row {
  margin-top: 25px;

  display: grid;
  grid-template-columns: 0.7fr 1.3fr;

  gap: 20px;
}


.selected-language-row > div:first-child {
  min-height: 90px;
  padding: 18px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border: 1px solid rgba(255,255,255,0.12);
}


.selected-language-row > div:first-child span {
  color: #66757d;

  font-size: 7px;
  letter-spacing: 1.3px;
}


.selected-language-row > div:first-child strong {
  font-size: 15px;
  font-weight: 500;
}


.executive-summary-open {
  min-height: 90px;
  padding: 0 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: #f0f2ef;
  color: #08131d;

  text-decoration: none;

  transition: .2s ease;
}


.executive-summary-open span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.3px;
}


.executive-summary-open strong {
  font-size: 20px;
  font-weight: 400;

  transition: transform .2s ease;
}


.executive-summary-open:hover strong {
  transform: translate(4px, -4px);
}


/* =====================================================
   DIGITAL ACCESS
===================================================== */

.digital-access {
  max-width: 1500px;

  margin: 105px auto 0;
  padding-top: 60px;

  border-top: 1px solid rgba(255,255,255,0.13);
}


.digital-access-heading {
  margin-bottom: 40px;
}


.digital-access-heading > span {
  color: #687780;

  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
}


.digital-access-heading h3 {
  margin-top: 12px;

  font-size: clamp(34px,4vw,58px);
  line-height: 1;

  letter-spacing: -2px;
  font-weight: 500;
}


.digital-access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}


.digital-access-card {
  min-height: 230px;
  padding: 26px;

  display: flex;
  flex-direction: column;

  border: 1px solid rgba(255,255,255,0.12);

  color: #f3f5f2;
  text-decoration: none;

  transition: .25s ease;
}


.digital-access-card:hover {
  background: rgba(255,255,255,0.05);
}


.digital-access-card > span {
  color: #6d7b83;

  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.4px;
}


.digital-access-card > strong {
  margin-top: 45px;

  font-size: 25px;
  font-weight: 500;
}


.digital-access-card > small {
  margin-top: 8px;

  color: #65737b;

  font-size: 8px;
  letter-spacing: 1.2px;
}


.digital-access-card > div {
  margin-top: auto;

  align-self: flex-end;

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.3px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

  .documents-main-grid {
    grid-template-columns: 1fr;
  }


  .executive-summary-selector {
    grid-template-columns: 1fr;
  }


  .language-selector {
    grid-template-columns: repeat(5,1fr);
  }

}


@media (max-width: 700px) {

  .documents-hub-section {
    padding: 100px 20px;
  }


  .language-selector {
    grid-template-columns: 1fr 1fr;
  }


  .selected-language-row {
    grid-template-columns: 1fr;
  }


  .digital-access-grid {
    grid-template-columns: 1fr;
  }

}
/* =====================================================
   TEAM / FINAL CLOSE
===================================================== */

.team-final-section {
  position: relative;

  min-height: 1150px;

  overflow: hidden;

  background:
    #071019;

  color:
    #f3f5f2;
}


/* =====================================================
   BACKGROUND IMAGE
===================================================== */

.team-final-image {
  position: absolute;

  inset: 0;

  z-index: 0;
}


.team-final-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;
}


.team-final-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(4,12,18,0.97) 0%,
      rgba(4,12,18,0.86) 42%,
      rgba(4,12,18,0.48) 72%,
      rgba(4,12,18,0.28) 100%
    );
}


/* =====================================================
   CONTENT
===================================================== */

.team-final-content {
  position: relative;

  z-index: 2;

  max-width: 1500px;

  margin:
    0 auto;

  padding:
    145px 7vw 70px;
}


/* =====================================================
   HEADING
===================================================== */

.team-final-heading {
  max-width: 970px;
}


.team-final-heading h2 {
  font-size:
    clamp(
      54px,
      6.5vw,
      104px
    );

  line-height: 0.92;

  letter-spacing: -4.5px;

  font-weight: 600;
}


.team-final-heading h2 span {
  display: block;

  color:
    rgba(244,245,242,0.43);
}


.team-final-heading > p {
  max-width: 720px;

  margin-top: 28px;

  color:
    rgba(244,245,242,0.7);

  font-size: 15px;

  line-height: 1.8;
}


/* =====================================================
   MEMBERS
===================================================== */

.team-final-members {
  max-width: 900px;

  margin-top: 85px;

  display: grid;

  grid-template-columns:
    1fr 1fr;

  border-top:
    1px solid
    rgba(255,255,255,0.18);

  border-left:
    1px solid
    rgba(255,255,255,0.18);
}


.team-final-member {
  min-height: 230px;

  padding: 27px;

  display: flex;

  flex-direction: column;

  background:
    rgba(5,13,20,0.5);

  backdrop-filter:
    blur(8px);

  border-right:
    1px solid
    rgba(255,255,255,0.18);

  border-bottom:
    1px solid
    rgba(255,255,255,0.18);
}


.team-final-member > span {
  color:
    rgba(255,255,255,0.45);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.5px;
}


.team-final-member strong {
  margin-top: 50px;

  font-size: 23px;

  font-weight: 500;
}


.team-final-member p {
  margin-top: auto;

  max-width: 330px;

  color:
    rgba(255,255,255,0.56);

  font-size: 11px;

  line-height: 1.65;
}


/* =====================================================
   PROJECT STATUS
===================================================== */

.team-project-status {
  margin-top: 70px;

  display: grid;

  grid-template-columns:
    repeat(4,1fr);

  border-top:
    1px solid
    rgba(255,255,255,0.17);

  border-left:
    1px solid
    rgba(255,255,255,0.17);
}


.team-project-status > div {
  min-height: 130px;

  padding: 20px;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  background:
    rgba(5,13,20,0.38);

  backdrop-filter:
    blur(8px);

  border-right:
    1px solid
    rgba(255,255,255,0.17);

  border-bottom:
    1px solid
    rgba(255,255,255,0.17);
}


.team-project-status span {
  color:
    rgba(255,255,255,0.42);

  font-size: 7px;

  letter-spacing: 1.3px;
}


.team-project-status strong {
  font-size: 11px;

  font-weight: 600;
}


/* =====================================================
   FINAL CTA
===================================================== */

.team-final-cta {
  margin-top: 80px;

  padding-top: 55px;

  display: grid;

  grid-template-columns:
    0.6fr
    1.4fr;

  gap: 70px;

  border-top:
    1px solid
    rgba(255,255,255,0.18);
}


.team-final-cta > div:first-child > span {
  color:
    rgba(255,255,255,0.43);

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 1.5px;
}


.team-final-cta h3 {
  margin-top: 12px;

  font-size:
    clamp(
      30px,
      3.5vw,
      48px
    );

  font-weight: 500;

  letter-spacing: -1.5px;
}


.team-final-links {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  border-top:
    1px solid
    rgba(255,255,255,0.15);

  border-left:
    1px solid
    rgba(255,255,255,0.15);
}


.team-final-links a {
  min-height: 95px;

  padding: 20px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  border-right:
    1px solid
    rgba(255,255,255,0.15);

  border-bottom:
    1px solid
    rgba(255,255,255,0.15);

  color:
    #f3f5f2;

  text-decoration: none;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1.2px;

  transition:
    .2s ease;
}


.team-final-links a:hover {
  background:
    rgba(255,255,255,0.08);
}


.team-final-links a span {
  font-size: 17px;

  font-weight: 400;

  transition:
    transform .2s ease;
}


.team-final-links a:hover span {
  transform:
    translate(3px,-3px);
}


/* =====================================================
   FINAL LINE
===================================================== */

.team-final-line {
  margin-top: 80px;

  padding-top: 22px;

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 30px;

  border-top:
    1px solid
    rgba(255,255,255,0.2);
}


.team-final-line span {
  color:
    rgba(255,255,255,0.42);

  font-size: 8px;

  letter-spacing: 1.5px;
}


.team-final-line strong {
  font-size: 9px;

  font-weight: 700;

  letter-spacing: 1.4px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {

  .team-final-members {
    grid-template-columns:
      1fr;
  }


  .team-project-status {
    grid-template-columns:
      1fr 1fr;
  }


  .team-final-cta {
    grid-template-columns:
      1fr;

    gap: 35px;
  }

}


@media (max-width: 650px) {

  .team-final-content {
    padding:
      100px 20px 50px;
  }


  .team-project-status {
    grid-template-columns:
      1fr;
  }


  .team-final-links {
    grid-template-columns:
      1fr;
  }


  .team-final-line {
    align-items:
      flex-start;

    flex-direction:
      column;
  }

}
/* =====================================================
   FINAL NAVIGATION
===================================================== */

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


.ars-nav {
  position: fixed;

  top: 0;
  left: 0;
  right: 0;

  z-index: 9999;

  height: 74px;

  padding: 0 3vw;

  display: grid;

  grid-template-columns:
    1fr auto 1fr;

  align-items: center;

  background:
    rgba(6,15,23,0.78);

  border-bottom:
    1px solid
    rgba(255,255,255,0.09);

  backdrop-filter:
    blur(18px);

  -webkit-backdrop-filter:
    blur(18px);

  transition:
    background .3s ease,
    transform .3s ease,
    border-color .3s ease;
}


/* =====================================================
   BRAND
===================================================== */

.ars-nav-brand {
  justify-self: start;

  display: flex;

  align-items: center;

  gap: 14px;

  color: #f3f5f2;

  text-decoration: none;
}


.ars-nav-mark {
  width: 40px;
  height: 40px;

  display: flex;

  align-items: center;

  justify-content: center;

  border:
    1px solid
    rgba(255,255,255,0.25);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 1px;
}


.ars-nav-brand-copy {
  display: flex;

  flex-direction: column;

  gap: 3px;
}


.ars-nav-brand-copy strong {
  font-size: 8px;

  font-weight: 800;

  letter-spacing: 1.4px;
}


.ars-nav-brand-copy small {
  color:
    rgba(255,255,255,0.4);

  font-size: 6px;

  letter-spacing: 1.2px;
}


/* =====================================================
   LINKS
===================================================== */

.ars-nav-links {
  display: flex;

  align-items: center;

  gap: 30px;
}


.ars-nav-links a {
  position: relative;

  padding:
    29px 0 27px;

  color:
    rgba(255,255,255,0.48);

  text-decoration: none;

  font-size: 7px;

  font-weight: 800;

  letter-spacing: 1.4px;

  transition:
    color .2s ease;
}


.ars-nav-links a::after {
  content: "";

  position: absolute;

  left: 0;
  right: 100%;
  bottom: -1px;

  height: 1px;

  background:
    #f3f5f2;

  transition:
    right .25s ease;
}


.ars-nav-links a:hover,
.ars-nav-links a.active {
  color:
    #f3f5f2;
}


.ars-nav-links a.active::after {
  right: 0;
}


/* =====================================================
   CTA
===================================================== */

.ars-nav-cta {
  justify-self: end;

  min-height: 38px;

  padding:
    0 15px;

  display: flex;

  align-items: center;

  gap: 16px;

  border:
    1px solid
    rgba(255,255,255,0.2);

  color:
    #f3f5f2;

  text-decoration: none;

  font-size: 7px;

  font-weight: 800;

  letter-spacing: 1.3px;

  transition:
    background .2s ease,
    color .2s ease;
}


.ars-nav-cta:hover {
  background:
    #f3f5f2;

  color:
    #08131d;
}


/* =====================================================
   MOBILE BUTTON
===================================================== */

.ars-mobile-menu-button {
  display: none;

  justify-self: end;

  width: 42px;
  height: 42px;

  padding: 0;

  position: relative;

  border:
    1px solid
    rgba(255,255,255,0.18);

  background:
    transparent;

  cursor: pointer;
}


.ars-mobile-menu-button span {
  position: absolute;

  left: 12px;

  width: 17px;
  height: 1px;

  background:
    #f3f5f2;

  transition:
    .25s ease;
}


.ars-mobile-menu-button span:first-child {
  top: 16px;
}


.ars-mobile-menu-button span:last-child {
  top: 23px;
}


.ars-mobile-menu-button.open span:first-child {
  top: 20px;

  transform:
    rotate(45deg);
}


.ars-mobile-menu-button.open span:last-child {
  top: 20px;

  transform:
    rotate(-45deg);
}


/* =====================================================
   MOBILE MENU
===================================================== */

.ars-mobile-menu {
  position: fixed;

  z-index: 9998;

  top: 74px;
  left: 0;
  right: 0;

  padding:
    20px;

  display: none;

  flex-direction: column;

  background:
    rgba(6,15,23,0.98);

  border-bottom:
    1px solid
    rgba(255,255,255,0.12);

  backdrop-filter:
    blur(20px);
}


.ars-mobile-menu.open {
  display: flex;
}


.ars-mobile-menu a {
  min-height: 68px;

  padding:
    0 8px;

  display: grid;

  grid-template-columns:
    50px 1fr;

  align-items: center;

  border-bottom:
    1px solid
    rgba(255,255,255,0.1);

  color:
    #f3f5f2;

  text-decoration: none;

  font-size: 12px;

  font-weight: 600;

  letter-spacing: .5px;
}


.ars-mobile-menu a span {
  color:
    #62727b;

  font-family:
    "Courier New",
    monospace;

  font-size: 8px;
}


/* =====================================================
   NAV RESPONSIVE
===================================================== */

@media (max-width: 1050px) {

  .ars-nav {
    grid-template-columns:
      1fr auto;
  }


  .ars-nav-links,
  .ars-nav-cta {
    display: none;
  }


  .ars-mobile-menu-button {
    display: block;
  }

}


@media (max-width: 550px) {

  .ars-nav {
    height: 66px;

    padding:
      0 16px;
  }


  .ars-nav-brand-copy small {
    display: none;
  }


  .ars-mobile-menu {
    top: 66px;
  }

}