/* Source: assets/less/site.less — compile via scripts/build-css.sh */
:root {
  --bg: #061014;
  --bg2: #09181d;
  --panel: #0c2026;
  --line: rgba(166, 220, 226, 0.14);
  --text: #f1f7f5;
  --muted: #9ab0b3;
  --cyan: #5de1e6;
  --lime: #c8f36d;
  --max: 1180px;
  --radius: 22px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
}
.nav {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 78px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: 0.35s;
}
.nav.scrolled {
  height: 68px;
  background: rgba(6, 16, 20, 0.78);
  backdrop-filter: blur(18px);
  border-color: var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 19px;
  font-weight: 750;
  letter-spacing: -0.4px;
}
.mark {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 10px;
  background: linear-gradient(145deg, var(--cyan), #147eaa 58%, var(--lime));
  position: relative;
  box-shadow: 0 0 28px rgba(93, 225, 230, 0.2);
}
.mark:after {
  content: "";
  position: absolute;
  inset: 8px 7px;
  border: 2px solid white;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-25deg);
}
.links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.links a {
  color: #c6d4d4;
  font-size: 14px;
  transition: 0.2s;
}
.links a:hover,
.links a.active {
  color: white;
}
.nav-cta,
.btn {
  border-radius: 999px;
  padding: 11px 19px;
  font-weight: 650;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: 0.25s;
}
.nav-cta {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}
.nav-cta:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
}
.menu {
  display: none;
  background: transparent;
  color: white;
  border: 0;
  font-size: 24px;
}
.hero {
  min-height: 790px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  isolation: isolate;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #061014 0%, rgba(6, 16, 20, 0.95) 28%, rgba(6, 16, 20, 0.34) 68%, rgba(6, 16, 20, 0.62) 100%), linear-gradient(0deg, #061014 0%, transparent 35%);
  z-index: -1;
}
.hero-image {
  position: absolute;
  inset: 0;
  background: url('../images/geospatial-hero.png') center / cover no-repeat;
  z-index: -2;
  opacity: 0.9;
}
.hero-content {
  max-width: 710px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--lime);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  font-weight: 750;
}
.eyebrow:before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--lime);
}
h1 {
  font-size: clamp(48px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: -4.5px;
  margin: 24px 0 26px;
  max-width: 830px;
}
.gradient {
  color: transparent;
  background: linear-gradient(110deg, #fff 20%, #89ece8 70%, #c8f36d);
  background-clip: text;
}
.lead {
  font-size: 19px;
  line-height: 1.7;
  color: #b3c4c5;
  max-width: 610px;
}
.actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}
.btn.primary {
  background: var(--lime);
  color: #0a1517;
}
.btn.primary:hover {
  box-shadow: 0 9px 30px rgba(200, 243, 109, 0.22);
  transform: translateY(-2px);
}
.btn.secondary {
  border: 1px solid var(--line);
  background: rgba(8, 24, 29, 0.7);
}
.btn.secondary:hover {
  border-color: #8fb8bb;
  transform: translateY(-2px);
}
.hero-meta {
  display: flex;
  gap: 32px;
  margin-top: 58px;
}
.metric b {
  font-size: 24px;
  display: block;
}
.metric span {
  color: var(--muted);
  font-size: 12px;
}
.scroll-hint {
  position: absolute;
  bottom: 32px;
  right: 5%;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #819497;
  writing-mode: vertical-rl;
}
.scroll-hint:after {
  content: "";
  display: block;
  width: 1px;
  height: 46px;
  background: linear-gradient(var(--cyan), transparent);
  margin: 12px auto;
}
.section {
  padding: 110px 0;
}
.section.alt {
  background: #08161b;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 48px;
}
.section h2,
.page-hero h1 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -2.6px;
  margin: 16px 0;
}
.section-head p {
  max-width: 480px;
  color: var(--muted);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  background: linear-gradient(145deg, rgba(16, 42, 48, 0.78), rgba(8, 22, 27, 0.92));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: 0.35s;
}
.card:hover {
  transform: translateY(-7px);
  border-color: rgba(93, 225, 230, 0.4);
}
.card .num {
  color: #628084;
  font-size: 12px;
  letter-spacing: 2px;
}
.icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(93, 225, 230, 0.09);
  border: 1px solid rgba(93, 225, 230, 0.2);
  display: grid;
  place-items: center;
  color: var(--cyan);
  font-size: 21px;
  margin: 30px 0 54px;
}
.card h3 {
  font-size: 22px;
  margin: 0 0 9px;
}
.card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}
.product-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}
.feature {
  display: flex;
  gap: 16px;
}
.feature i {
  font-style: normal;
  color: var(--lime);
  margin-top: 2px;
}
.feature b {
  display: block;
}
.feature span {
  color: var(--muted);
  font-size: 14px;
}
.map-stage {
  min-height: 510px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: radial-gradient(circle at 65% 40%, rgba(93, 225, 230, 0.12), transparent 28%), linear-gradient(145deg, #102a31, #061014);
  position: relative;
  overflow: hidden;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.24);
}
.map-stage:before {
  content: "";
  position: absolute;
  inset: -20%;
  background-image: linear-gradient(rgba(93, 225, 230, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(93, 225, 230, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: perspective(500px) rotateX(55deg) rotateZ(-18deg) scale(1.4);
  animation: gridmove 12s linear infinite;
}
.map-stage .route {
  position: absolute;
  width: 72%;
  height: 40%;
  left: 14%;
  top: 28%;
  border: 3px solid var(--cyan);
  border-color: transparent var(--cyan) var(--cyan) transparent;
  border-radius: 50%;
  transform: rotate(-12deg);
  filter: drop-shadow(0 0 7px var(--cyan));
}
.map-stage .route:after,
.map-stage .route:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 8px rgba(200, 243, 109, 0.12), 0 0 25px var(--lime);
}
.map-stage .route:before {
  left: 7%;
  bottom: -4px;
}
.map-stage .route:after {
  right: 6%;
  top: -3px;
}
.float-panel {
  position: absolute;
  padding: 16px 18px;
  background: rgba(4, 15, 18, 0.78);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 12px;
  color: var(--muted);
}
.float-panel b {
  color: #fff;
  font-size: 18px;
  display: block;
}
.float-panel.one {
  left: 6%;
  top: 9%;
}
.float-panel.two {
  right: 5%;
  bottom: 8%;
}
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
}
.ticker-track {
  display: flex;
  width: max-content;
  color: #698083;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  animation: ticker 24s linear infinite;
}
.ticker-group {
  display: flex;
  flex-shrink: 0;
  gap: 70px;
  padding-right: 70px;
}
.ticker span:before {
  content: "✦";
  color: var(--lime);
  margin-right: 70px;
}
.cta {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 60px;
  background: radial-gradient(circle at 80% 20%, rgba(93, 225, 230, 0.14), transparent 24%), #0a1b20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.cta h2 {
  font-size: clamp(34px, 4vw, 54px);
  margin: 0;
  max-width: 670px;
}
.footer {
  padding: 70px 0 35px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 50px;
}
.footer p,
.footer a {
  color: var(--muted);
  font-size: 13px;
}
.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}
.footer-col b {
  margin-bottom: 7px;
}
.copyright {
  display: flex;
  justify-content: space-between;
  color: #64787a;
  font-size: 12px;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.page-hero {
  min-height: 590px;
  padding: 170px 0 90px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(93, 225, 230, 0.12), transparent 25%), linear-gradient(180deg, #081b21, #061014);
}
.page-hero:after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -55%;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(93, 225, 230, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(93, 225, 230, 0.025), 0 0 0 160px rgba(93, 225, 230, 0.02);
}
.page-hero .lead {
  max-width: 700px;
}
.page-hero h1 {
  max-width: 900px;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 35px;
}
.chip {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #a9bec0;
  font-size: 12px;
}
.phone-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 550px;
  position: relative;
}
.phone {
  width: 270px;
  height: 550px;
  border: 8px solid #26383c;
  border-radius: 40px;
  background: linear-gradient(155deg, #0f2d34, #071417);
  box-shadow: 0 30px 80px #000, 0 0 60px rgba(93, 225, 230, 0.08);
  position: relative;
  overflow: hidden;
  transform: rotate(3deg);
}
.phone:before {
  content: "";
  position: absolute;
  width: 90px;
  height: 22px;
  border-radius: 0 0 14px 14px;
  background: #26383c;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.phone-map {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 58% 53%, rgba(200, 243, 109, 0.7) 0 3px, transparent 4px), linear-gradient(32deg, transparent 49%, rgba(93, 225, 230, 0.7) 50%, transparent 51%), linear-gradient(-40deg, transparent 49%, rgba(93, 225, 230, 0.25) 50%, transparent 51%);
  background-size: auto, 58px 58px, 45px 45px;
}
.phone-ui {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 18px;
  padding: 18px;
  background: rgba(6, 16, 20, 0.88);
  border: 1px solid var(--line);
  border-radius: 20px;
}
.phone-ui b {
  font-size: 14px;
}
.phone-ui p {
  font-size: 11px;
  color: var(--muted);
  margin: 4px 0 0;
}
.orbit {
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(93, 225, 230, 0.12);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}
.orbit:after {
  content: "";
  position: absolute;
  top: 35px;
  left: 46px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 20px var(--lime);
}
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}
.step {
  background: #09191e;
  padding: 32px;
  min-height: 240px;
}
.step:before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  color: var(--lime);
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 58px;
}
.step h3 {
  font-size: 18px;
}
.step p {
  color: var(--muted);
  font-size: 13px;
}
.about-quote {
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.22;
  letter-spacing: -2px;
  max-width: 1050px;
}
.values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.value {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
}
.value span {
  color: var(--lime);
  font-size: 12px;
}
.value p {
  color: var(--muted);
  margin: 6px 0;
}
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s, transform 0.7s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@keyframes gridmove {
  to {
    background-position: 84px 84px;
  }
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 850px) {
  .links {
    position: fixed;
    top: 68px;
    left: 20px;
    right: 20px;
    padding: 20px;
    background: #0b2025;
    border: 1px solid var(--line);
    border-radius: 18px;
    display: none;
    flex-direction: column;
    gap: 18px;
  }
  .links.open {
    display: flex;
  }
  .menu {
    display: block;
  }
  .nav-cta {
    display: none;
  }
  h1 {
    letter-spacing: -2.5px;
  }
  .hero {
    min-height: 720px;
  }
  .hero:before {
    background: linear-gradient(90deg, #061014 0%, rgba(6, 16, 20, 0.85) 100%), linear-gradient(0deg, #061014, transparent);
  }
  .grid-3,
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .product-split {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .section-head,
  .cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .wrap {
    width: min(var(--max), calc(100% - 28px));
  }
  .section {
    padding: 78px 0;
  }
  .grid-3,
  .steps,
  .values {
    grid-template-columns: 1fr;
  }
  .hero-meta {
    gap: 20px;
    flex-wrap: wrap;
  }
  .actions {
    align-items: stretch;
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  .card .icon {
    margin-bottom: 34px;
  }
  .cta {
    padding: 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .copyright {
    flex-direction: column;
    gap: 8px;
  }
  .page-hero {
    min-height: 540px;
  }
  .map-stage {
    min-height: 400px;
  }
  .phone {
    transform: scale(0.88);
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto!important;
    animation: none!important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
