:root {
  --green: #20b77a;
  --blue: #176dc1;
  --navy: #071b30;
  --ink: #0b2032;
  --muted: #657585;
  --line: #dce4e9;
  --paper: #f6f8f7;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: Manrope,"Noto Sans SC",sans-serif;
  background: #fff;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1180px,calc(100% - 48px));
  margin: auto;
}
.section {
  padding: 120px 0;
}
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.nav-wrap {
  position: fixed;
  z-index: 50;
  top: 0;
  width: 100%;
  transition: .3s;
  border-bottom: 1px solid transparent;
}
.nav-wrap.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  border-color: #e6ecef;
}
.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}
.brand-symbol {
  width: 60px;
  height: 60px;
  display: block;
}
.brand-symbol img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.brand b {
  display: block;
  font-size: 28px;
  letter-spacing: 1.4px;
  font-style: italic;
  color: #1870bc;
}
.brand small {
  display: block;
  font-size: 15px;
  letter-spacing: 5px;
  color: #1c6fae;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 600;
}
.nav-links>a:not(.nav-cta) {
  position: relative;
}
.nav-links>a:not(.nav-cta):after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: .25s;
}
.nav-links>a:hover:after {
  width: 100%;
}
.nav-cta {
  padding: 12px 18px;
  background: var(--ink);
  color: white;
}
.nav-cta span {
  color: #5bddad;
  margin-left: 10px;
}
.nav-wrap:not(.scrolled) .brand b,
.nav-wrap:not(.scrolled) .brand small {
  color: #d3e8f6;
}
.nav-wrap:not(.scrolled) .nav-links>a:not(.nav-cta) {
  color: #e6eff5;
}
.nav-wrap:not(.scrolled) .nav-cta {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.28);
}
.menu-btn {
  display: none;
  background: none;
  border: 0;
}
.hero {
  position: relative;
  min-height: 860px;
  color: #fff;
  background: linear-gradient(112deg,rgba(4,16,29,.96) 0%,rgba(6,23,41,.86) 42%,rgba(7,27,48,.58) 100%),url("assets/hero-bg.jpg") center/cover no-repeat,linear-gradient(118deg,#0c2c46 0%,#071b30 55%,#0e344f 100%);
  padding-top: 82px;
  overflow: hidden;
}
.hero:before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(80,217,166,.16);
  border-radius: 50%;
  right: -250px;
  top: 90px;
  box-shadow: 0 0 0 100px rgba(80,217,166,.035),0 0 0 220px rgba(56,165,255,.035);
}
.hero-grid {
  min-height: 745px;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(250px,300px);
  grid-template-rows: 1fr auto;
  align-items: center;
  column-gap: clamp(42px,7vw,115px);
  row-gap: 36px;
  padding: 42px 0 34px;
}
.eyebrow,
.section-no {
  font-size: 11px;
  letter-spacing: 2.4px;
  font-weight: 800;
  color: var(--blue);
}
.eyebrow span {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--green);
  vertical-align: middle;
  margin-right: 10px;
}
.hero h1 {
  font-size: clamp(64px,6.4vw,92px);
  line-height: 1.3;
  letter-spacing: -5px;
  letter-spacing: .10em;
  margin: 28px 0 25px;
  font-weight: 800;
}
.hero h1 em {
  font-style: normal;
  display: inline-block;
  position: relative;
  letter-spacing: .10em;
  color: transparent;
  background: linear-gradient(110deg,#7ee8c8 0%,#5cb8ff 42%,#8fd0ff 68%,#63d9ab 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 18px rgba(92,184,255,.28));
  animation: heroEmShine 6s ease-in-out infinite;
}
@keyframes heroEmShine {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.hero-copy>p {
  font-size: 17px;
  line-height: 2;
  color: #a9bfd0;
  max-width: 590px;
}
.hero .eyebrow {
  color: #63d9ab;
}
.hero .btn.ghost {
  border-color: rgba(255,255,255,.32);
  color: #fff;
}
.hero-actions {
  display: flex;
  gap: 15px;
  margin: 38px 0 55px;
}
.btn {
  padding: 16px 23px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid #cbd7de;
}
.btn.primary {
  background: linear-gradient(135deg,var(--blue),#14589a);
  border: 0;
  color: #fff;
}
.btn span {
  margin-left: 35px;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(16,65,99,.14);
}
.hero-highlights {
  position: relative;
  z-index: 1;
  grid-column: 1;
  justify-self: start;
  width: min(100%,590px);
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid rgba(166,213,235,.2);
}
.hero-highlights:before {
  display: none;
}
.hero-highlight {
  position: relative;
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 9px;
  min-height: 82px;
  padding: 17px 16px;
  border-right: 1px solid rgba(166,213,235,.14);
  text-align: left;
  transition: opacity .25s ease,transform .25s ease;
}
.hero-highlight:first-of-type {
  padding-left: 0;
}
.hero-highlight:last-child {
  border-right: 0;
  padding-right: 0;
}
.hero-highlight:hover {
  transform: translateY(-3px);
}
.highlight-index {
  grid-column: 1;
  grid-row: 1;
  padding-top: 0;
  color: #5ccba8;
  font-size: 9px;
  letter-spacing: 1px;
}
.hero-highlight:after {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #63d9ab;
  box-shadow: 0 0 0 4px rgba(99,217,171,.08);
}
.hero-highlight>div {
  grid-column: 2;
  grid-row: 1;
}
.hero-highlight strong {
  display: block;
  color: #eef7fa;
  font-size: clamp(19px,1.65vw,23px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.055em;
}
.radar-card {
  background: rgba(7,24,42,.72);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(112,200,255,.16);
  color: white;
  box-shadow: 0 30px 90px rgba(2,12,24,.55);
  padding: 18px;
}
.radar-head,
.radar-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #7990a5;
  font-size: 9px;
  letter-spacing: 1.5px;
}
.radar-head i {
  font-style: normal;
  color: #50d9a6;
}
.radar-head i:before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #50d9a6;
  display: inline-block;
  margin-right: 6px;
  box-shadow: 0 0 8px #50d9a6;
}
.radar {
  height: 430px;
  margin: 16px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(50,126,160,.07) 1px,transparent 1px),linear-gradient(90deg,rgba(50,126,160,.07) 1px,transparent 1px);
  background-size: 32px 32px;
}
.ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(85,185,196,.24);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}
.r1 {
  width: 120px;
  height: 120px;
}
.r2 {
  width: 240px;
  height: 240px;
}
.r3 {
  width: 360px;
  height: 360px;
}
.cross {
  position: absolute;
  background: rgba(85,185,196,.18);
}
.cross.x {
  width: 100%;
  height: 1px;
  top: 50%;
}
.cross.y {
  height: 100%;
  width: 1px;
  left: 50%;
}
.sweep {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 180px;
  height: 180px;
  transform-origin: 0 0;
  background: conic-gradient(from 270deg,rgba(32,183,122,.34),transparent 25%);
  animation: scan 4s linear infinite;
}
.center-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 40px;
  height: 40px;
  background: var(--green);
  display: grid;
  place-items: center;
  font-weight: 900;
  clip-path: polygon(50% 0,95% 25%,95% 75%,50% 100%,5% 75%,5% 25%);
}
.point {
  position: absolute;
  left: 23%;
  top: 30%;
  font-size: 8px;
  color: #8bffda;
  display: flex;
  align-items: center;
  gap: 6px;
}
.point b {
  width: 7px;
  height: 7px;
  background: #36d39a;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(54,211,154,.12),0 0 15px #36d39a;
  animation: pulse 1.8s infinite;
}
.point.p2 {
  left: 70%;
  top: 62%;
}
.point.p3 {
  left: 30%;
  top: 78%;
}
.point.blue b {
  background: #38a5ff;
  box-shadow: 0 0 0 5px rgba(56,165,255,.12),0 0 15px #38a5ff;
}
.radar-foot b {
  font-size: 14px;
  color: #55d5ad;
}
.radar-foot span:first-child i {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #4fe0ad;
  border-radius: 50%;
}
@keyframes scan {
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  50% {
    transform: scale(1.35);
  }
}
.narrow {
  max-width: 900px;
  margin: auto;
}
.statement {
  background: #fff;
  text-align: center;
}
.statement h2 {
  font-size: 48px;
  line-height: 1.45;
  margin: 25px 0;
}
.statement p {
  max-width: 760px;
  margin: auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
}
.dark {
  background: var(--navy);
  color: #fff;
}
.section-title {
  display: grid;
  grid-template-columns: minmax(0,1fr) 410px;
  grid-template-rows: auto auto;
  column-gap: 40px;
  margin-bottom: 60px;
}
.section-title>div {
  display: contents;
}
.section-title .section-no {
  grid-column: 1;
  grid-row: 1;
}
.section-title h2 {
  grid-column: 1;
  grid-row: 2;
  font-size: 45px;
  margin: 14px 0 0;
}
.section-title>p {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  color: #7890a5;
  line-height: 1.9;
  font-size: 14px;
}
.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.tech-card {
  border: 1px solid #1c3b55;
  background: #0b243b;
  padding: 30px 34px 40px;
  transition: .35s;
}
.tech-card:hover {
  transform: translateY(-5px);
  border-color: #2f8b7a;
}
.tech-top {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #4ed2a4;
}
.tech-top i {
  font-style: normal;
  color: #557086;
  letter-spacing: 2px;
}
.tech-visual {
  height: 220px;
  position: relative;
  display: grid;
  place-items: center;
  margin: 10px 0;
  overflow: hidden;
  border: 1px solid rgba(64,122,152,.28);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.tech-visual.satellites {
  background-image: linear-gradient(155deg,#143d5f,#0d503c);
}
.tech-visual.uwb {
  background-image: linear-gradient(155deg,#0e3151,#1c4a6e);
}
.tech-visual.satellites.is-loaded {
  background-image: url("assets/tech-rtk.jpg");
}
.tech-visual.uwb.is-loaded {
  background-image: url("assets/tech-uwb.jpg");
}
.tech-card h3 {
  font-size: 25px;
  margin: 5px 0 14px;
}
.tech-card p {
  color: #8396a6;
  line-height: 1.85;
  font-size: 14px;
}
.tech-card ul {
  list-style: none;
  padding: 20px 0 0;
  margin: 25px 0 0;
  border-top: 1px solid #1d3c54;
  display: flex;
  gap: 25px;
  color: #b7c6d0;
  font-size: 11px;
}
.tech-card li:before {
  content: "+";
  color: #53d5a5;
  margin-right: 7px;
}
.solutions {
  background: #f6f8f7;
}
.solution-wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: start;
}
.solution-visual {
  position: sticky;
  top: 110px;
  height: 600px;
  overflow: hidden;
  background: #0c2135;
  box-shadow: 0 30px 80px rgba(10,40,60,.18);
}
.scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity .55s ease,transform 1.4s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.scene.visible {
  opacity: 1;
  transform: none;
}
.scene-rail {
  background-image: linear-gradient(155deg,#143d5f,#0d503c);
}
.scene-ship {
  background-image: linear-gradient(155deg,#0e3151,#1c4a6e);
}
.scene-port {
  background-image: linear-gradient(155deg,#0f2f4a,#0d4a38);
}
.scene-rail.is-loaded {
  background-image: linear-gradient(180deg,rgba(7,27,48,.02) 45%,rgba(7,27,48,.6)),url("assets/scene-rail.jpg"),linear-gradient(155deg,#143d5f,#0d503c);
}
.scene-ship.is-loaded {
  background-image: linear-gradient(180deg,rgba(7,27,48,.02) 45%,rgba(7,27,48,.6)),url("assets/scene-ship.jpg"),linear-gradient(155deg,#0e3151,#1c4a6e);
}
.scene-port.is-loaded {
  background-image: linear-gradient(180deg,rgba(7,27,48,.02) 45%,rgba(7,27,48,.6)),url("assets/scene-port.jpg"),linear-gradient(155deg,#0f2f4a,#0d4a38);
}
.solution-media {
  display: none;
  background-size: cover;
  background-position: center;
}
.solution-list {
  border-top: 1px solid #cfd9de;
}
.solution {
  display: grid;
  grid-template-columns: 56px 1fr 36px;
  gap: 18px;
  padding: 34px 16px;
  border-bottom: 1px solid #cfd9de;
  transition: .3s;
}
.solution:hover,
.solution.active {
  background: #fff;
  padding-left: 30px;
  box-shadow: 0 18px 45px rgba(22,57,75,.07);
}
.solution .index {
  font-size: 12px;
  color: var(--green);
}
.solution small {
  letter-spacing: 2px;
  color: #7990a0;
}
.solution h3 {
  font-size: 24px;
  margin: 7px 0 10px;
}
.solution p {
  color: var(--muted);
  line-height: 1.8;
  max-width: 760px;
  font-size: 14px;
}
.solution>i {
  font-style: normal;
  font-size: 22px;
  align-self: center;
  color: var(--blue);
}
.tags {
  display: flex;
  gap: 8px;
}
.tags b {
  font-size: 10px;
  font-weight: 600;
  padding: 6px 9px;
  background: #edf4f2;
  color: #477366;
}
.capabilities {
  background: linear-gradient(118deg,#0c2c46 0%,#071b30 55%,#0e344f 100%);
  color: white;
}
.section-title.light .section-no {
  color: #66e1b4;
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1px solid rgba(255,255,255,.25);
  border-left: 1px solid rgba(255,255,255,.25);
}
.cap-grid article {
  min-height: 300px;
  border-right: 1px solid rgba(255,255,255,.25);
  border-bottom: 1px solid rgba(255,255,255,.25);
  padding: 28px;
}
.cap-grid article>span {
  font-size: 10px;
  color: #73e1b9;
}
.cap-icon {
  font-size: 40px;
  color: #71e3ba;
  margin: 50px 0 25px;
}
.cap-grid h3 {
  font-size: 19px;
}
.cap-grid p {
  font-size: 13px;
  line-height: 1.85;
  color: #b8d6ec;
}
.panorama {
  position: relative;
  color: #fff;
  padding: 150px 0;
  background: linear-gradient(180deg,rgba(5,18,32,.82),rgba(5,18,32,.5) 45%,rgba(5,18,32,.86)),linear-gradient(120deg,#0c2c46,#071b30 55%,#0e3a2d);
}
.panorama.is-loaded {
  background: linear-gradient(180deg,rgba(5,18,32,.82),rgba(5,18,32,.5) 45%,rgba(5,18,32,.86)),url("assets/panorama.jpg") center/cover no-repeat fixed,linear-gradient(120deg,#0c2c46,#071b30 55%,#0e3a2d);
}
.panorama-tag {
  font-size: 10px;
  letter-spacing: 3px;
  color: #63d9ab;
  font-weight: 800;
}
.panorama h2 {
  font-size: clamp(34px,4vw,52px);
  line-height: 1.4;
  margin: 22px 0 42px;
  max-width: 720px;
}
.panorama-stats {
  position: relative;
  width: min(760px,100%);
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  padding: 6px;
  overflow: hidden;
  border: 1px solid rgba(126,205,225,.16);
  background: linear-gradient(115deg,rgba(7,26,44,.64),rgba(8,35,52,.34));
  box-shadow: 0 20px 55px rgba(1,10,20,.22),inset 0 1px 0 rgba(255,255,255,.04);
  -webkit-backdrop-filter: blur(16px) saturate(115%);
  backdrop-filter: blur(16px) saturate(115%);
}
.panorama-stats:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -1px;
  left: -1px;
  width: 96px;
  height: 2px;
  background: linear-gradient(90deg,#63d9ab,rgba(99,217,171,0));
  box-shadow: 0 0 16px rgba(99,217,171,.5);
}
.panorama-stat {
  position: relative;
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 26px 18px;
  border-right: 1px solid rgba(143,200,220,.14);
  transition: background-color .25s ease,transform .25s ease;
}
.panorama-stat:last-child {
  border-right: 0;
}
.panorama-stat:before {
  content: attr(data-index);
  position: absolute;
  top: 14px;
  right: 16px;
  color: rgba(118,214,183,.55);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
}
.panorama-stat:after {
  content: "";
  position: absolute;
  left: 26px;
  bottom: 0;
  width: 24px;
  height: 2px;
  background: #63d9ab;
  box-shadow: 0 0 12px rgba(99,217,171,.55);
}
.panorama-stat:hover {
  z-index: 1;
  background: rgba(57,137,157,.1);
  transform: translateY(-2px);
}
.panorama-stat strong {
  display: block;
  color: #f3f8fb;
  font-size: clamp(26px,2.25vw,31px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.04em;
  text-shadow: 0 2px 18px rgba(0,0,0,.2);
}
.panorama-stat strong small {
  font-size: .62em;
  font-weight: 600;
  letter-spacing: -.02em;
}
.panorama-stat>span {
  margin-top: 8px;
  color: #9fb9c9;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
}
.about {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 90% 15%,rgba(23,109,193,.05),transparent 30%),#fff;
}
.about:before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -150px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(23,109,193,.06);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(32,183,122,.018),0 0 0 180px rgba(23,109,193,.014);
  pointer-events: none;
}
.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px,.94fr) minmax(0,1.06fr);
  gap: clamp(60px,7vw,104px);
  align-items: center;
}
.about-photo {
  position: relative;
  margin: 0;
  min-height: 640px;
  background: linear-gradient(200deg,rgba(7,27,48,0) 55%,rgba(7,27,48,.5)),linear-gradient(160deg,#134263,#0d4a38);
  box-shadow: 0 30px 70px rgba(7,27,48,.14);
}
.about-photo.is-loaded {
  background: linear-gradient(200deg,rgba(7,27,48,0) 55%,rgba(7,27,48,.5)),url("assets/about-team.jpg") center/cover no-repeat,linear-gradient(160deg,#134263,#0d4a38);
}
.about-photo:before {
  content: "";
  position: absolute;
  top: -16px;
  left: -16px;
  width: 96px;
  height: 96px;
  border-top: 2px solid var(--green);
  border-left: 2px solid var(--green);
}
.about-photo:after {
  content: "";
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 96px;
  height: 96px;
  border-bottom: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
}
.about-copy {
  max-width: 650px;
}
.about-copy .section-no {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.about-copy .section-no:before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--green);
}
.about h2 {
  font-size: clamp(40px,3.75vw,54px);
  line-height: 1.34;
  letter-spacing: -.045em;
  margin: 24px 0 30px;
}
.about-copy>p {
  font-size: 15px;
  color: #566a7a;
  line-height: 2.05;
  margin: 0 0 16px;
}
.values {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin-top: 38px;
}
.values span {
  position: relative;
  border-top: 2px solid var(--green);
  padding: 17px 14px 16px;
  background: linear-gradient(145deg,#f6faf8,#fff);
  font-size: 11px;
  color: #728493;
  transition: transform .25s ease,box-shadow .25s ease;
}
.values span:after {
  content: attr(data-index);
  position: absolute;
  top: 17px;
  right: 12px;
  color: #a6b9c4;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
}
.values span:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(13,53,72,.08);
}
.values b {
  display: block;
  color: var(--ink);
  font-size: 17px;
  margin-bottom: 8px;
}
.contact {
  padding: 0 0 100px;
}
.contact-box {
  background: linear-gradient(100deg,rgba(6,22,39,.97) 35%,rgba(6,22,39,.82)),url("assets/hero-bg.jpg") center/cover no-repeat var(--navy);
  color: white;
  padding: 70px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 80px;
  align-items: end;
  position: relative;
  overflow: hidden;
}
.contact-box:after {
  content: "H";
  position: absolute;
  right: -20px;
  top: -100px;
  font-size: 380px;
  font-weight: 900;
  color: rgba(255,255,255,.025);
}
.contact-box span {
  font-size: 10px;
  letter-spacing: 2px;
  color: #61dfb1;
}
.contact-box h2 {
  font-size: 43px;
  line-height: 1.45;
  margin: 15px 0;
}
.contact-box p {
  color: #92a7b9;
  line-height: 1.8;
}
.contact-box a {
  display: flex;
  justify-content: space-between;
  background: var(--green);
  padding: 18px 22px;
  margin-top: 25px;
  font-weight: 700;
  font-size: 13px;
}
.contact-box small {
  display: block;
  margin-top: 12px;
  color: #587086;
  font-size: 10px;
}
footer {
  background: #f5f7f6;
  padding: 65px 0 25px;
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 50px;
}
.footer-brand .brand {
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 12px;
  color: #758594;
  margin: 0;
}
.footer-main>div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 12px;
  color: #6a7b89;
}
.footer-main b {
  color: var(--ink);
  margin-bottom: 8px;
}
.copyright {
  border-top: 1px solid #d9e0e3;
  margin-top: 50px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  color: #8b989f;
  font-size: 13px;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s,transform .8s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.delay {
  transition-delay: .15s;
}
@media (max-width: 900px) {
  .container {
    width: min(100% - 32px,700px);
  }
  .section {
    padding: 80px 0;
  }
  .nav {
    height: 68px;
  }
  .menu-btn {
    display: block;
    width: 36px;
    height: 36px;
    position: relative;
  }
  .menu-btn i {
    position: absolute;
    width: 20px;
    height: 1px;
    background: var(--ink);
    left: 8px;
    top: 13px;
    transition: .2s;
  }
  .menu-btn i+ i {
    top: 21px;
  }
  .menu-btn.open i {
    transform: rotate(45deg);
    top: 17px;
  }
  .menu-btn.open i+i {
    transform: rotate(-45deg);
    top: 17px;
  }
  .nav-links {
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: #081d33;
    padding: 25px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    box-shadow: 0 20px 40px rgba(0,10,25,.35);
  }
  .nav-links a {
    color: #e8f1f6;
  }
  .nav-links .nav-cta {
    border: 1px solid rgba(255,255,255,.22);
  }
  .nav-wrap:not(.scrolled) .menu-btn i {
    background: #e8f1f6;
  }
  .nav-links.open {
    display: flex;
  }
  .hero {
    min-height: auto;
    padding-top: 68px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding: 90px 0 45px;
    gap: 58px;
  }
  .hero-highlights {
    justify-self: start;
    width: min(100%,590px);
  }
  .hero h1 {
    font-size: 57px;
    letter-spacing: -3px;
  }
  .radar {
    height: 360px;
  }
  .statement h2,
  .section-title h2,
  .about h2,
  .contact-box h2 {
    font-size: 34px;
  }
  .section-title {
    display: block;
  }
  .section-title>div {
    display: block;
  }
  .section-title>p {
    width: auto;
  }
  .tech-grid,
  .about-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }
  .cap-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid {
    gap: 45px;
  }
  .about-photo {
    min-height: 440px;
  }
  .about-copy {
    max-width: none;
  }
  .solution-wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .solution-visual {
    display: none;
  }
  .solution-media {
    display: block;
    grid-column: 1/-1;
    height: 220px;
    margin-bottom: 12px;
  }
  .panorama {
    padding: 90px 0;
    background-attachment: scroll;
  }
  .panorama-stats {
    width: 100%;
  }
  .panorama-stat {
    padding-inline: 20px;
  }
  .panorama-stat:after {
    left: 20px;
  }
  .contact-box {
    padding: 45px 32px;
    gap: 15px;
  }
  .footer-main {
    grid-template-columns: 1.5fr 1fr;
  }
  .footer-main>div:nth-child(3),
  .footer-main>div:nth-child(4) {
    margin-top: 20px;
  }
}
@media (max-width: 560px) {
  .hero h1 {
    font-size: 45px;
  }
  .hero-copy>p {
    font-size: 15px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .btn {
    text-align: center;
  }
  .hero-highlights {
    width: 100%;
    grid-template-columns: 1fr;
    padding: 0 0 0 22px;
    border-top: 0;
    border-left: 1px solid rgba(166,213,235,.2);
  }
  .hero-highlight {
    min-height: 72px;
    grid-template-columns: 24px 1fr;
    gap: 12px;
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(166,213,235,.12);
    text-align: left;
  }
  .hero-highlight:last-child {
    border-bottom: 0;
  }
  .hero-highlight:after {
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
  }
  .hero-highlight strong {
    font-size: 21px;
  }
  .radar-card {
    margin: 0 -5px;
  }
  .radar {
    height: 310px;
  }
  .statement h2,
  .section-title h2,
  .about h2,
  .contact-box h2 {
    font-size: 28px;
  }
  .tech-grid {
    grid-template-columns: 1fr;
  }
  .tech-card {
    padding: 25px 22px;
  }
  .tech-card ul {
    flex-wrap: wrap;
    gap: 12px;
  }
  .solution {
    grid-template-columns: 42px 1fr 15px;
    padding: 28px 5px;
  }
  .solution:hover,
  .solution.active {
    padding-left: 10px;
  }
  .solution h3 {
    font-size: 21px;
  }
  .solution-media {
    height: 180px;
  }
  .about-photo {
    min-height: 340px;
  }
  .panorama {
    padding: 70px 0;
  }
  .panorama-stats {
    grid-template-columns: 1fr;
    padding: 7px;
  }
  .panorama-stat {
    min-height: 88px;
    padding: 16px 20px 15px;
    border-right: 0;
    border-bottom: 1px solid rgba(143,200,220,.14);
  }
  .panorama-stat:last-child {
    border-bottom: 0;
  }
  .panorama-stat:before {
    top: 15px;
  }
  .panorama-stat:after {
    left: 20px;
  }
  .panorama-stat strong {
    font-size: 27px;
  }
  .panorama-stat>span {
    margin-top: 7px;
  }
  .cap-grid {
    grid-template-columns: 1fr;
  }
  .cap-grid article {
    min-height: 230px;
  }
  .cap-icon {
    margin: 30px 0 15px;
  }
  .values {
    grid-template-columns: 1fr;
  }
  .values span {
    padding-inline: 16px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .copyright {
    display: block;
  }
  .copyright span {
    display: block;
    margin-top: 8px;
  }
}

.copyright a {
  color: inherit;
  text-decoration: none;
}
.copyright a:hover {
  color: #4a5b68;
}