:root {
  --ink: #101820;
  --muted: #5c6875;
  --line: #d8dee5;
  --panel: #ffffff;
  --band: #edf4f1;
  --accent: #007c74;
  --accent-strong: #005a56;
  --gold: #d69b2d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  background: #fafafa;
}

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

.topbar {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: rgba(250, 250, 250, .92);
  border-bottom: 1px solid rgba(16, 24, 32, .08);
  backdrop-filter: blur(14px);
}

.brand,
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-weight: 750;
}

.brand-logo {
  display: block;
  width: 190px;
  height: auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--accent);
  border-radius: 6px;
}

.nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  padding: 110px 32px 72px;
  overflow: hidden;
  color: #fff;
  background: #0a2227;
}

#gnssCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 24, 28, .9), rgba(6, 24, 28, .56), rgba(6, 24, 28, .2));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-left: max(0px, calc((100vw - 1180px) / 2));
}

.product-logo {
  display: block;
  width: min(520px, 100%);
  height: auto;
  margin-bottom: 24px;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, .24));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: .98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, .86);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions,
.section-heading,
.pricing,
.feature-grid,
.dashboard-preview,
.form {
  position: relative;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 750;
  cursor: pointer;
}

.primary {
  color: #fff;
  background: var(--accent);
}

.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .12);
}

.tertiary {
  color: var(--accent-strong);
  border-color: var(--line);
  background: #fff;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 92px 32px;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(300px, 1.2fr);
  gap: 56px;
}

.section p {
  color: var(--muted);
  line-height: 1.65;
}

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

.feature,
.plan,
.dashboard-preview,
.form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.feature {
  padding: 24px;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  color: var(--accent-strong);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.muted {
  max-width: none;
  background: var(--band);
}

.muted > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.pricing-page {
  background: #f4f7f6;
}

.pricing-topbar {
  position: sticky;
}

.pricing-hero {
  padding: 150px 32px 72px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(6, 24, 28, .92), rgba(6, 24, 28, .64)),
    linear-gradient(135deg, #0a2227, #007c74);
}

.pricing-hero-content {
  max-width: 1180px;
  margin: 0 auto;
}

.pricing-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, .84);
  font-size: 19px;
  line-height: 1.6;
}

.pricing-section {
  padding-top: 70px;
}

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

.pricing-details {
  padding-top: 76px;
}

.pricing-teaser .section-heading {
  text-align: center;
}

.pricing-teaser .section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.teaser-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.plan {
  padding: 26px;
}

.plan.highlighted {
  border-color: var(--accent);
  box-shadow: 0 18px 46px rgba(0, 124, 116, .13);
}

.badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 9px;
  color: var(--accent-strong);
  background: #dff2ee;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.price {
  color: var(--ink) !important;
  font-size: 28px;
  font-weight: 800;
}

.price small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.plan ul {
  min-height: 150px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}

.dashboard-band {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 44px;
  align-items: center;
}

.dashboard-preview {
  overflow: hidden;
}

.map-strip {
  position: relative;
  height: 280px;
  background:
    linear-gradient(90deg, rgba(0, 124, 116, .08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 124, 116, .08) 1px, transparent 1px),
    #f7fbfa;
  background-size: 42px 42px;
}

.station {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(16, 24, 32, .12);
}

.source {
  left: 52%;
  top: 42%;
  background: var(--accent);
}

.rover {
  background: var(--gold);
}

.rover.one {
  left: 24%;
  top: 58%;
}

.rover.two {
  right: 22%;
  top: 28%;
}

.link {
  position: absolute;
  z-index: 1;
  height: 2px;
  background: rgba(0, 124, 116, .42);
  transform-origin: left center;
}

.link.one {
  left: 27%;
  top: 61%;
  width: 30%;
  transform: rotate(-17deg);
}

.link.two {
  left: 54%;
  top: 45%;
  width: 26%;
  transform: rotate(-28deg);
}

.status-list {
  padding: 18px;
}

.status-list p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.status-list p:last-child {
  border-bottom: 0;
}

.contact {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 48px;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

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

input,
select,
textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

select {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

.form-status {
  align-self: center;
  margin: 0;
  font-weight: 700;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 32px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-logo {
  display: block;
  width: 180px;
  height: auto;
}

.footer-content {
  display: grid;
  justify-items: end;
  gap: 10px;
  text-align: right;
}

.footer-content address {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  font-size: 13px;
  font-weight: 650;
}

.footer-links a,
.legal-document a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-page {
  min-height: 100vh;
  background: #f4f7f6;
}

.legal-topbar {
  position: static;
  background: #fff;
}

.legal-shell {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 80px;
}

.legal-heading {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.legal-heading h1 {
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
}

.legal-updated {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.legal-document {
  padding-top: 18px;
  color: #26313b;
  font-size: 16px;
  line-height: 1.7;
}

.legal-document section {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.legal-document section:last-child {
  border-bottom: 0;
}

.legal-document h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.25;
}

.legal-document h3 {
  margin-top: 22px;
  font-size: 18px;
}

.legal-document p,
.legal-document ul {
  margin-bottom: 12px;
}

.legal-document li + li {
  margin-top: 7px;
}

@media (max-width: 820px) {
  .topbar {
    height: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 14px 20px;
  }

  .brand-logo {
    width: 160px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero {
    min-height: 680px;
    padding: 150px 20px 56px;
  }

  .product-logo {
    width: min(340px, 100%);
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-content {
    justify-items: start;
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .section {
    padding: 64px 20px;
  }

  .split,
  .pricing,
  .pricing-section .pricing,
  .dashboard-band,
  .contact,
  .form,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .plan ul {
    min-height: auto;
  }
}
