:root {
  --navy: #0d2b45;
  --navy-deep: #071d2f;
  --navy-soft: #153b5b;
  --gold: #ffaf00;
  --gold-soft: #ffc64a;
  --charcoal: #282d27;
  --white: #ffffff;
  --mist: #f4f6f7;
  --line: rgba(13, 43, 69, 0.14);
  --text-muted: #5f6d78;
  --shadow: 0 24px 70px rgba(7, 29, 47, 0.13);
  --radius: 22px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--navy);
  background: var(--white);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 118px 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--navy);
  background: var(--gold);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  background: rgba(7, 29, 47, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(7, 29, 47, 0.96);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.16);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 82px;
  gap: 36px;
}

.brand {
  flex: 0 0 auto;
  width: 196px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 31px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 400;
}

.desktop-nav a,
.login-link {
  position: relative;
  opacity: 0.86;
  transition: opacity 0.2s ease;
}

.desktop-nav a::after,
.login-link::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.login-link:hover,
.login-link:focus-visible {
  opacity: 1;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 8px;
  font-size: 14px;
  font-weight: 400;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-gold {
  color: var(--navy-deep);
  background: var(--gold);
  box-shadow: 0 10px 30px rgba(255, 175, 0, 0.18);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: var(--gold-soft);
  box-shadow: 0 14px 38px rgba(255, 175, 0, 0.27);
}

.button-navy {
  color: var(--white);
  background: var(--navy);
}

.button-navy:hover,
.button-navy:focus-visible {
  background: var(--navy-soft);
}

.header-cta {
  min-height: 42px;
  padding-inline: 20px;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 73% 41%, rgba(36, 92, 132, 0.42), transparent 27%),
    radial-gradient(circle at 96% 8%, rgba(255, 175, 0, 0.12), transparent 24%),
    linear-gradient(135deg, var(--navy-deep), var(--navy) 60%, #102f49);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.orbit::after {
  position: absolute;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--gold);
}

.orbit-one {
  top: 46px;
  right: -220px;
  width: 770px;
  height: 460px;
}

.orbit-one::after {
  top: 48px;
  left: 120px;
}

.orbit-two {
  right: -35px;
  bottom: -250px;
  width: 920px;
  height: 540px;
}

.orbit-two::after {
  top: 16px;
  right: 230px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
  align-items: center;
  gap: 76px;
  padding-top: 112px;
  padding-bottom: 52px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 23px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
}

.eyebrow span {
  width: 26px;
  height: 1px;
  background: var(--gold);
}

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

h1,
h2,
h3 {
  font-weight: 400;
  line-height: 1.04;
}

h1 {
  max-width: 720px;
  margin-bottom: 27px;
  font-size: clamp(54px, 6.3vw, 88px);
  letter-spacing: -0.055em;
}

h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero-lead {
  max-width: 655px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
  line-height: 1.6;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 400;
}

.text-link span {
  color: var(--gold);
  font-size: 18px;
  transition: transform 0.2s ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(3px, -3px);
}

.hero-visual {
  position: relative;
  max-width: 540px;
  justify-self: end;
}

.network-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035));
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(20px);
}

.network-card::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 32%);
}

.network-card-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.network-card-head div {
  display: grid;
  gap: 4px;
}

.micro-label {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.network-card-head strong {
  font-size: 18px;
  font-weight: 400;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  color: #bce7ca;
  background: rgba(87, 199, 123, 0.12);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 400;
}

.live-pill i {
  width: 6px;
  height: 6px;
  background: #72dd93;
  border-radius: 50%;
  box-shadow: 0 0 10px #72dd93;
}

.globe-wrap {
  display: grid;
  min-height: 315px;
  place-items: center;
}

.globe {
  position: relative;
  width: 242px;
  height: 242px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 175, 0, 0.18), transparent 18%),
    radial-gradient(circle, rgba(22, 73, 109, 0.7), rgba(7, 29, 47, 0.45));
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.04), 0 0 70px rgba(29, 96, 140, 0.18);
}

.globe::before,
.globe::after,
.globe-line {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.globe::before {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 95px;
  transform: translateX(-50%);
}

.globe::after {
  top: 50%;
  right: 0;
  left: 0;
  height: 75px;
  transform: translateY(-50%);
}

.line-a {
  inset: 28px -18px;
  transform: rotate(-24deg);
  border-color: rgba(255, 175, 0, 0.45);
}

.line-b {
  inset: 55px -10px;
  transform: rotate(23deg);
}

.line-c {
  inset: 10px 62px;
  transform: rotate(55deg);
}

.node {
  position: absolute;
  z-index: 2;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border: 2px solid var(--navy-deep);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--gold);
}

.node-a { top: 40px; left: 49px; }
.node-b { top: 81px; right: 22px; }
.node-c { right: 66px; bottom: 30px; }
.node-d { bottom: 71px; left: 21px; }

.network-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.network-metrics div {
  display: grid;
  gap: 5px;
  padding: 22px 16px 2px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.network-metrics div:first-child {
  padding-left: 0;
}

.network-metrics div:last-child {
  padding-right: 0;
  border-right: 0;
}

.network-metrics span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.network-metrics strong {
  font-size: 25px;
  font-weight: 400;
}

.signal-card {
  position: absolute;
  right: -24px;
  bottom: 91px;
  display: flex;
  min-width: 166px;
  align-items: center;
  gap: 13px;
  padding: 15px 17px;
  color: var(--navy);
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.signal-card div {
  display: grid;
}

.signal-card small {
  color: #87939c;
  font-size: 9px;
  font-weight: 400;
  text-transform: uppercase;
}

.signal-card strong {
  font-size: 14px;
  font-weight: 500;
}

.signal-icon {
  display: flex;
  height: 26px;
  align-items: flex-end;
  gap: 3px;
}

.signal-icon i {
  width: 4px;
  background: var(--gold);
  border-radius: 4px;
}

.signal-icon i:nth-child(1) { height: 9px; }
.signal-icon i:nth-child(2) { height: 16px; }
.signal-icon i:nth-child(3) { height: 24px; }

.hero-foot {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 70px;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.44);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-foot i {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

.split-heading {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  gap: 80px;
}

.section-kicker {
  color: #a06f06;
}

.section-kicker.light {
  color: var(--gold);
}

.split-heading h2,
.section-heading h2,
.platform-copy h2,
.process-intro h2,
.contact-panel h2 {
  margin-bottom: 24px;
  font-size: clamp(40px, 4.3vw, 61px);
  letter-spacing: -0.045em;
}

.split-heading > div > p,
.section-heading > p,
.platform-copy > p,
.contact-panel > div > p {
  max-width: 730px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.7;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 77px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-grid article {
  min-height: 222px;
  padding: 35px 42px;
  border-right: 1px solid var(--line);
}

.proof-grid article:first-child {
  padding-left: 0;
}

.proof-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.proof-grid strong {
  display: block;
  margin-bottom: 20px;
  font-size: 65px;
  font-weight: 300;
  letter-spacing: -0.05em;
}

.proof-grid strong span {
  color: var(--gold);
}

.proof-grid p {
  max-width: 250px;
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.solutions {
  color: var(--white);
  background: var(--charcoal);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 60px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.solution-card {
  position: relative;
  min-height: 450px;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.solution-card:hover {
  z-index: 2;
  border-color: rgba(255, 175, 0, 0.42);
  background: rgba(255, 255, 255, 0.065);
  transform: translateY(-5px);
}

.solution-card.featured {
  background: var(--navy);
}

.card-number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
}

.card-icon {
  position: relative;
  width: 58px;
  height: 58px;
  margin-bottom: 43px;
  color: var(--gold);
  border: 1px solid rgba(255, 175, 0, 0.3);
  border-radius: 50%;
}

.dish-icon span {
  position: absolute;
  top: 14px;
  left: 17px;
  width: 25px;
  height: 18px;
  border-bottom: 3px solid currentColor;
  border-radius: 0 0 50% 50%;
  transform: rotate(-35deg);
}

.dish-icon i {
  position: absolute;
  bottom: 13px;
  left: 26px;
  width: 2px;
  height: 16px;
  background: currentColor;
}

.billing-icon span,
.billing-icon i,
.billing-icon b {
  position: absolute;
  left: 17px;
  width: 25px;
  height: 2px;
  background: currentColor;
}

.billing-icon span { top: 18px; }
.billing-icon i { top: 27px; }
.billing-icon b { top: 36px; width: 16px; }

.fleet-icon span,
.fleet-icon i,
.fleet-icon b {
  position: absolute;
  width: 8px;
  height: 8px;
  background: currentColor;
  border-radius: 50%;
}

.fleet-icon span { top: 14px; left: 24px; }
.fleet-icon i { right: 12px; bottom: 14px; }
.fleet-icon b { bottom: 14px; left: 12px; }

.fleet-icon::before,
.fleet-icon::after {
  position: absolute;
  content: "";
  background: currentColor;
  transform-origin: left;
}

.fleet-icon::before { top: 24px; left: 27px; width: 22px; height: 1px; transform: rotate(45deg); }
.fleet-icon::after { top: 25px; left: 28px; width: 22px; height: 1px; transform: rotate(135deg); }

.support-icon span {
  position: absolute;
  inset: 14px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.support-icon i {
  position: absolute;
  right: 10px;
  bottom: 11px;
  width: 15px;
  height: 15px;
  background: var(--charcoal);
  border: 3px solid currentColor;
  border-radius: 50%;
}

.solution-card h3 {
  margin-bottom: 17px;
  font-size: 29px;
  letter-spacing: -0.02em;
}

.solution-card > p {
  max-width: 500px;
  margin-bottom: 27px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 15px;
  line-height: 1.65;
}

.solution-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.solution-card li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.solution-card li::before {
  width: 5px;
  height: 5px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
}

.platform {
  overflow: hidden;
  background: var(--mist);
}

.platform-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 76px;
}

.platform-copy h2 {
  max-width: 520px;
}

.platform-copy > p {
  max-width: 570px;
  font-size: 16px;
}

.feature-list {
  display: grid;
  margin: 39px 0 35px;
}

.feature-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 19px 0;
  border-top: 1px solid var(--line);
}

.feature-list > div:last-child {
  border-bottom: 1px solid var(--line);
}

.feature-list span {
  padding-top: 3px;
  color: #9d710e;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.feature-list p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.feature-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 500;
}

.portal-frame {
  overflow: hidden;
  width: 780px;
  color: var(--navy);
  background: var(--white);
  border: 8px solid var(--white);
  border-radius: 24px;
  box-shadow: 0 35px 85px rgba(13, 43, 69, 0.17);
}

.portal-topbar {
  display: flex;
  height: 70px;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 1px solid #e8ecef;
}

.portal-topbar img {
  width: 128px;
}

.portal-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.portal-user span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 500;
}

.portal-user i {
  width: 6px;
  height: 6px;
  border-right: 1px solid #7c8790;
  border-bottom: 1px solid #7c8790;
  transform: rotate(45deg) translateY(-2px);
}

.portal-body {
  display: grid;
  min-height: 482px;
  grid-template-columns: 68px 1fr;
}

.portal-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  padding-top: 34px;
  background: #f7f8f8;
  border-right: 1px solid #e8ecef;
}

.portal-sidebar span {
  width: 18px;
  height: 18px;
  opacity: 0.65;
  border: 2px solid #9ba5ad;
  border-radius: 5px;
}

.portal-sidebar span.active {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 8px rgba(255, 175, 0, 0.12);
}

.portal-content {
  padding: 28px;
}

.portal-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.portal-title div {
  display: grid;
}

.portal-title small,
.portal-stats small {
  color: #99a3aa;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portal-title strong {
  font-size: 21px;
  font-weight: 400;
}

.portal-title button {
  padding: 9px 14px;
  color: var(--navy);
  background: var(--gold);
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-size: 9px;
  font-weight: 500;
}

.portal-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-bottom: 24px;
}

.portal-stats div {
  display: grid;
  min-height: 112px;
  align-content: center;
  padding: 16px;
  background: #f7f8f8;
  border: 1px solid #edf0f2;
  border-radius: 10px;
}

.portal-stats strong {
  margin: 5px 0;
  font-size: 23px;
  font-weight: 400;
}

.portal-stats em {
  color: #66a777;
  font-size: 8px;
  font-style: normal;
  font-weight: 400;
}

.portal-table {
  overflow: hidden;
  border: 1px solid #e9edef;
  border-radius: 10px;
}

.portal-table > div {
  display: grid;
  min-height: 48px;
  grid-template-columns: 1.3fr 0.9fr 0.6fr;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid #edf0f2;
  font-size: 9px;
  font-weight: 400;
}

.portal-table > div:last-child {
  border-bottom: 0;
}

.portal-table .table-head {
  min-height: 35px;
  color: #99a3aa;
  background: #fafbfb;
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.portal-table div span:first-child {
  display: flex;
  align-items: center;
  gap: 7px;
}

.portal-table i {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.portal-table b {
  width: fit-content;
  padding: 4px 7px;
  color: #4f9262;
  background: #eaf6ee;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 500;
}

.industries {
  background: var(--white);
}

.section-heading.dark > p {
  color: var(--text-muted);
}

.industry-list {
  border-top: 1px solid var(--line);
}

.industry-list article {
  display: grid;
  min-height: 125px;
  grid-template-columns: 80px minmax(230px, 0.75fr) 1fr;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line);
  transition: padding 0.22s ease, background 0.22s ease;
}

.industry-list article:hover {
  padding: 0 20px;
  background: var(--mist);
}

.industry-list span {
  color: #9d710e;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.industry-list h3 {
  margin-bottom: 0;
  font-size: 25px;
  letter-spacing: -0.025em;
}

.industry-list p {
  max-width: 500px;
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.process {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 115%, rgba(255, 175, 0, 0.13), transparent 30%),
    var(--navy);
}

.process-intro {
  margin-bottom: 58px;
}

.process-intro h2 {
  margin-bottom: 0;
}

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

.process-grid article {
  min-height: 264px;
  padding: 31px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-right: 0;
}

.process-grid article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.process-grid article > span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 64px;
  place-items: center;
  color: var(--navy);
  background: var(--gold);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 500;
}

.process-grid h3 {
  margin-bottom: 10px;
  font-size: 26px;
}

.process-grid p {
  max-width: 310px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.contact {
  background: var(--mist);
}

.contact-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 375px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 70px;
  padding: 72px 76px;
  color: var(--navy);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-panel::before {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 420px;
  height: 420px;
  content: "";
  border: 1px solid rgba(13, 43, 69, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(13, 43, 69, 0.025), 0 0 0 120px rgba(13, 43, 69, 0.018);
}

.contact-panel > div {
  position: relative;
  z-index: 1;
}

.contact-panel h2 {
  max-width: 760px;
}

.contact-panel > div > p {
  margin-bottom: 0;
  font-size: 16px;
}

.contact-actions {
  display: grid;
  min-width: 225px;
  justify-items: center;
  gap: 24px;
}

.text-link.dark {
  color: var(--navy);
}

.site-footer {
  color: var(--white);
  background: var(--navy-deep);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  padding-top: 74px;
  padding-bottom: 65px;
}

.footer-brand img {
  width: 210px;
  margin-bottom: 23px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 60px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  min-height: 75px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: rgba(255, 255, 255, 0.34);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 20px;
  }

  .header-actions {
    gap: 16px;
  }

  .hero-inner {
    grid-template-columns: 1fr 0.88fr;
    gap: 38px;
  }

  .hero-visual {
    transform: scale(0.9);
    transform-origin: right center;
  }

  .portal-frame {
    width: 700px;
  }
}

@media (max-width: 960px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .header-inner {
    height: 74px;
  }

  .brand {
    width: 178px;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 11px;
    place-content: center;
    gap: 5px;
    color: inherit;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 99;
    top: 74px;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    background: rgba(7, 29, 47, 0.99);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu-inner {
    display: grid;
    align-content: start;
    gap: 0;
    padding-top: 22px;
  }

  .mobile-menu a:not(.button) {
    padding: 19px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 21px;
    font-weight: 300;
  }

  .mobile-menu .button {
    margin-top: 28px;
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 150px;
    padding-bottom: 90px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    width: 100%;
    max-width: 600px;
    justify-self: center;
    transform: none;
  }

  .network-card {
    width: 100%;
  }

  .split-heading,
  .section-heading,
  .platform-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .proof-grid article {
    padding-inline: 28px;
  }

  .portal-frame {
    width: 100%;
  }

  .industry-list article {
    grid-template-columns: 60px 0.8fr 1fr;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    padding: 62px;
  }

  .contact-actions {
    min-width: 0;
    justify-items: start;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 82px 0;
  }

  .hero {
    min-height: 0;
  }

  .hero-inner {
    gap: 58px;
    padding-top: 132px;
    padding-bottom: 70px;
  }

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

  .hero-lead {
    font-size: 16px;
  }

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

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

  .network-card {
    padding: 22px;
    border-radius: 22px;
  }

  .globe-wrap {
    min-height: 260px;
    transform: scale(0.86);
  }

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

  .network-metrics div {
    padding-inline: 9px;
  }

  .network-metrics span {
    font-size: 8px;
  }

  .network-metrics strong {
    font-size: 20px;
  }

  .signal-card {
    right: -7px;
    bottom: 82px;
    transform: scale(0.84);
    transform-origin: right center;
  }

  .hero-foot {
    flex-wrap: wrap;
    gap: 10px;
    padding-block: 18px;
    font-size: 9px;
  }

  .split-heading h2,
  .section-heading h2,
  .platform-copy h2,
  .process-intro h2,
  .contact-panel h2 {
    font-size: clamp(37px, 11vw, 50px);
  }

  .split-heading > div > p,
  .section-heading > p,
  .platform-copy > p,
  .contact-panel > div > p {
    font-size: 16px;
  }

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

  .proof-grid article,
  .proof-grid article:first-child,
  .proof-grid article:last-child {
    min-height: auto;
    padding: 27px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-grid article:last-child {
    border-bottom: 0;
  }

  .proof-grid strong {
    margin-bottom: 7px;
    font-size: 50px;
  }

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

  .solution-card {
    min-height: 0;
    padding: 31px 26px;
  }

  .card-icon {
    margin-bottom: 34px;
  }

  .portal-frame {
    border-width: 5px;
    border-radius: 17px;
  }

  .portal-topbar {
    height: 55px;
    padding-inline: 15px;
  }

  .portal-topbar img {
    width: 100px;
  }

  .portal-body {
    min-height: 330px;
    grid-template-columns: 40px 1fr;
  }

  .portal-sidebar {
    gap: 20px;
    padding-top: 25px;
  }

  .portal-sidebar span {
    width: 13px;
    height: 13px;
  }

  .portal-content {
    overflow: hidden;
    padding: 17px;
  }

  .portal-title button {
    display: none;
  }

  .portal-stats {
    gap: 6px;
  }

  .portal-stats div {
    min-height: 90px;
    padding: 10px;
  }

  .portal-stats strong {
    font-size: 17px;
  }

  .portal-stats em {
    display: none;
  }

  .portal-table > div {
    min-width: 440px;
  }

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

  .industry-list article {
    min-height: 0;
    grid-template-columns: 38px 1fr;
    gap: 10px;
    padding: 28px 0;
  }

  .industry-list article:hover {
    padding: 28px 12px;
  }

  .industry-list p {
    grid-column: 2;
  }

  .industry-list h3 {
    font-size: 22px;
  }

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

  .process-grid article {
    min-height: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 0;
  }

  .process-grid article:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .process-grid article > span {
    margin-bottom: 36px;
  }

  .contact-panel {
    min-height: 0;
    gap: 38px;
    padding: 43px 26px;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-top: 58px;
    padding-bottom: 50px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
    padding-block: 24px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
