* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #f7faf9;
  color: #071a39;
  font-family: Arial, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
header {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(6vw, 24px);
  background: #fff;
  border-bottom: 1px solid #dce7e5;
}
.brand img {
  width: 128px;
  height: 68px;
  object-fit: contain;
}
nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 700;
}
.nav-cta,
.primary {
  padding: 15px 22px;
  border-radius: 13px;
  background: #0daaa5;
  color: #fff;
}
.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 5vw;
  padding: 80px max(6vw, 24px);
  overflow: hidden;
  background: linear-gradient(140deg, #fff 0 54%, #e6f6f2 54%);
}
.kicker,
.section-head span,
.privacy span {
  color: #087f7c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.hero h1 {
  margin: 22px 0;
  font-size: clamp(3.8rem, 7.5vw, 7.5rem);
  line-height: 0.87;
  letter-spacing: -0.075em;
}
.hero h1 em {
  color: #0daaa5;
  font-style: normal;
}
.hero-copy > p {
  max-width: 650px;
  color: #5c6980;
  font-size: 1.2rem;
  line-height: 1.65;
}
.actions {
  display: flex;
  gap: 12px;
  margin: 32px 0;
}
.secondary {
  padding: 15px 22px;
  border: 1px solid #bdcfcc;
  border-radius: 13px;
  background: #fff;
  font-weight: 700;
}
.hero small {
  color: #758096;
}
.orbit {
  position: relative;
  min-height: 540px;
  border-radius: 48% 52% 44% 56%;
  background: #071a39;
  box-shadow: 0 40px 90px #071a3930;
}
.route {
  position: absolute;
  inset: 13%;
  border: 5px solid #0daaa5;
  border-left-color: transparent;
  border-radius: 44% 56% 39% 61%;
  transform: rotate(-17deg);
}
.route i,
.route b,
.route span {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 6px solid #fff;
  border-radius: 50%;
  background: #0daaa5;
}
.route i {
  left: 7%;
  top: 65%;
}
.route b {
  right: 8%;
  top: 18%;
}
.route span {
  right: 30%;
  bottom: 4%;
}
.float-card {
  position: absolute;
  padding: 20px;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 24px 70px #0003;
}
.float-card p {
  margin: 6px 0 0;
  color: #657087;
}
.top {
  right: -3%;
  top: 13%;
}
.bottom {
  left: -5%;
  bottom: 12%;
}
.trust {
  display: flex;
  justify-content: space-around;
  gap: 25px;
  padding: 24px max(6vw, 24px);
  background: #071a39;
  color: #90aaa8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
}
.section {
  padding: 120px max(6vw, 24px);
}
.section-head {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 30px;
  align-items: start;
}
.section-head h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.055em;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 70px;
}
.steps article {
  padding: 28px;
  border-top: 3px solid #0daaa5;
  background: #fff;
}
.steps b {
  color: #0daaa5;
}
.steps h3 {
  margin: 45px 0 12px;
  font-size: 1.35rem;
}
.steps p {
  color: #657087;
  line-height: 1.55;
}
.privacy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  padding: 100px max(6vw, 24px);
  background: #071a39;
  color: #fff;
}
.privacy h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1;
  margin: 18px 0;
}
.privacy p {
  color: #c8d6dd;
  font-size: 1.15rem;
  line-height: 1.7;
}
.privacy > a {
  grid-column: 2;
  color: #69ddd5;
  font-weight: 800;
}
.final {
  text-align: center;
  padding: 120px 24px;
}
.final h2 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 6rem);
  letter-spacing: -0.065em;
}
.final p {
  margin: 22px;
  color: #657087;
  font-size: 1.2rem;
}
.final .primary {
  display: inline-block;
  margin-top: 16px;
}
footer {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 35px max(6vw, 24px);
  border-top: 1px solid #dce7e5;
  background: #fff;
}
footer img {
  width: 100px;
}
footer p {
  color: #657087;
}
footer a {
  margin-left: auto;
  font-weight: 700;
}
@media (max-width: 850px) {
  nav > a:not(.nav-cta) {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 55px;
    background: #fff;
  }
  .hero h1 {
    font-size: 4rem;
  }
  .orbit {
    min-height: 400px;
  }
  .trust {
    overflow: auto;
    justify-content: flex-start;
  }
  .section-head,
  .privacy {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .privacy > a {
    grid-column: auto;
  }
  .top {
    right: 2%;
  }
  .bottom {
    left: 2%;
  }
}
.tracking-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  gap: 56px;
  align-items: center;
  padding: 100px clamp(28px, 6vw, 120px);
  background: #071a39;
  color: #fff;
}
.tracking-story > div > span { color: #47ddd5; font-size: .8rem; font-weight: 900; letter-spacing: .14em; }
.tracking-story h2 { max-width: 760px; margin: 14px 0 20px; font-size: clamp(2.5rem, 5vw, 5.4rem); line-height: .98; }
.tracking-story p { max-width: 700px; color: #c8d5e2; font-size: 1.08rem; line-height: 1.75; }
.tracking-points { display: grid; gap: 14px; }
.tracking-points article { display: grid; grid-template-columns: 110px 1fr; align-items: center; gap: 18px; padding: 24px; border: 1px solid rgba(255,255,255,.13); border-radius: 20px; background: rgba(255,255,255,.07); }
.tracking-points b { color: #47ddd5; font-size: 1.45rem; }
.tracking-points span { color: #fff; font-size: 1rem; font-weight: 700; }
@media (max-width: 850px) {
  .tracking-story { grid-template-columns: 1fr; gap: 30px; padding: 70px 24px; }
}
@media (max-width: 540px) {
  header {
    padding: 0 15px;
  }
  .brand img {
    width: 105px;
  }
  .nav-cta {
    padding: 12px;
  }
  .hero {
    min-height: auto;
    padding: 50px 20px;
  }
  .hero h1 {
    font-size: 3.4rem;
  }
  .actions {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }
  .orbit {
    min-height: 330px;
  }
  .float-card {
    padding: 14px;
    font-size: 0.8rem;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .section,
  .privacy,
  .final {
    padding: 75px 20px;
  }
}
