:root {
  --blue: #2864ff;
  --ink: #111216;
  --paper: #f7f6f1;
  --white: #fff;
  --muted: #686a70;
  --line: rgba(17, 18, 22, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.nav {
  align-items: center;
  display: flex;
  height: 80px;
  justify-content: space-between;
  margin: auto;
  max-width: 1380px;
  padding: 0 5vw;
}

.wordmark {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1.8px;
}

.nav-links {
  align-items: center;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  gap: 30px;
}

.nav-button {
  background: var(--ink);
  border-radius: 999px;
  color: white;
  padding: 12px 18px;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(40px, 7vw, 100px);
  grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
  margin: auto;
  max-width: 1380px;
  min-height: calc(100vh - 80px);
  padding: 50px 5vw 100px;
}

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

.eyebrow,
.label {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

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

.eyebrow span {
  background: #2cc77b;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(44, 199, 123, 0.14);
  height: 7px;
  width: 7px;
}

h1,
h2 {
  letter-spacing: -0.07em;
  line-height: 0.94;
  margin: 0;
}

h1 {
  font-size: clamp(60px, 7.5vw, 108px);
  margin-top: 28px;
}

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

.intro {
  color: #44464c;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  margin: 30px 0 0;
  max-width: 560px;
}

.actions {
  align-items: center;
  display: flex;
  gap: 26px;
  margin-top: 34px;
}

.primary {
  align-items: center;
  background: var(--blue);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(40, 100, 255, 0.24);
  color: white;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 32px;
  padding: 17px 20px;
  transition: transform 180ms ease;
}

.primary:hover {
  transform: translateY(-3px);
}

.external-arrow {
  display: inline-block;
  flex: 0 0 auto;
  height: 12px;
  position: relative;
  width: 12px;
}

.external-arrow::before {
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  content: "";
  height: 7px;
  position: absolute;
  right: 0;
  top: 0;
  width: 7px;
}

.external-arrow::after {
  background: currentColor;
  content: "";
  height: 2px;
  position: absolute;
  right: 1px;
  top: 1px;
  transform: rotate(-45deg);
  transform-origin: right center;
  width: 12px;
}

.secondary {
  align-items: center;
  border-bottom: 1px solid var(--ink);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 9px;
  padding-bottom: 5px;
}

.visual {
  background: #f4f5f8;
  border-radius: 32px;
  box-shadow: 0 30px 70px rgba(35, 54, 100, 0.17);
  min-height: 780px;
  overflow: hidden;
  position: relative;
}

.map {
  background:
    linear-gradient(90deg, rgba(49, 73, 112, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(49, 73, 112, 0.07) 1px, transparent 1px),
    #e5ebf6;
  background-size: 48px 48px;
  border-right: 1px solid rgba(35, 54, 100, 0.1);
  bottom: 0;
  left: 0;
  position: absolute;
  top: 0;
  width: 36%;
}

.street {
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 0 0 1px rgba(49, 73, 112, 0.06),
    inset 0 1px rgba(255, 255, 255, 0.9);
  position: absolute;
}

.street-one {
  height: 32px;
  left: -4%;
  top: 22%;
  width: 108%;
}

.street-two {
  height: 110%;
  left: 43%;
  top: -5%;
  width: 32px;
}

.street-three {
  height: 34px;
  left: -4%;
  top: 59%;
  width: 108%;
}

.street-four {
  height: 110%;
  left: 17%;
  top: -5%;
  width: 22px;
}

.street-five {
  height: 19px;
  left: -4%;
  top: 42%;
  width: 108%;
}

.street-six {
  height: 110%;
  left: 76%;
  top: -5%;
  width: 20px;
}

.water {
  background: #bfd6ff;
  bottom: -8%;
  height: 28%;
  left: -8%;
  position: absolute;
  transform: rotate(12deg);
  width: 40%;
}

.park {
  background: #bfe8d3;
  border-radius: 16px;
  height: 13%;
  left: 51%;
  position: absolute;
  top: 27%;
  width: 20%;
}

.area {
  color: rgba(31, 58, 102, 0.35);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.8px;
  position: absolute;
}

.area-one {
  left: 23%;
  top: 9%;
}

.area-two {
  left: 51%;
  top: 47%;
}

.place {
  align-items: center;
  background: white;
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 5px 14px rgba(25, 41, 88, 0.2);
  display: flex;
  height: 27px;
  justify-content: center;
  position: absolute;
  width: 27px;
  z-index: 7;
}

.place::after {
  border-radius: 50%;
  content: "";
  height: 9px;
  width: 9px;
}

.start {
  border-color: var(--blue);
  left: calc(14% - 13px);
  top: calc(24% - 13px);
}

.start::after {
  background: var(--blue);
}

.end {
  border-color: var(--ink);
  left: calc(80% - 13px);
  top: calc(61% - 13px);
}

.end::after {
  background:
    linear-gradient(45deg, var(--ink) 25%, transparent 25% 75%, var(--ink) 75%),
    linear-gradient(45deg, transparent 25%, var(--ink) 25% 75%, transparent 75%);
  background-position: 0 0, 4px 4px;
  background-size: 8px 8px;
  border-radius: 1px;
  height: 11px;
  width: 11px;
}

.route {
  filter:
    drop-shadow(0 0 2px white)
    drop-shadow(0 0 2px white)
    drop-shadow(0 4px 5px rgba(40, 100, 255, 0.22));
  height: 37%;
  left: 14%;
  position: absolute;
  top: 24%;
  width: 66%;
  z-index: 5;
}

.route::before,
.route::after,
.route i {
  background: var(--blue);
  content: "";
  display: block;
  position: absolute;
}

.route::before {
  border-radius: 999px 0 0 999px;
  height: 6px;
  left: 0;
  top: 0;
  width: calc(47% + 3px);
}

.route::after {
  height: calc(100% + 3px);
  left: calc(47% - 3px);
  top: 0;
  width: 6px;
}

.route i {
  border-radius: 0 999px 999px 0;
  height: 6px;
  left: calc(47% - 3px);
  top: calc(100% - 3px);
  width: calc(53% + 3px);
}

.moving-package {
  align-items: center;
  animation: deliver 9s linear infinite;
  background: #ffad68;
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 7px 16px rgba(25, 41, 88, 0.24);
  display: flex;
  height: 36px;
  justify-content: center;
  left: 9%;
  position: absolute;
  top: calc(24% - 18px);
  width: 36px;
  z-index: 6;
}

.moving-package i {
  border: 2px solid var(--ink);
  border-radius: 2px;
  display: block;
  height: 13px;
  position: relative;
  width: 15px;
}

.moving-package i::before {
  background: var(--ink);
  content: "";
  height: 2px;
  left: -2px;
  position: absolute;
  top: 3px;
  width: 15px;
}

.moving-package i::after {
  background: var(--ink);
  content: "";
  height: 5px;
  left: 5px;
  position: absolute;
  top: -2px;
  width: 2px;
}

@keyframes deliver {
  0% {
    opacity: 0;
    left: calc(14% - 18px);
    top: calc(24% - 18px);
    transform: scale(0.92);
  }
  5% {
    opacity: 1;
  }
  36% {
    left: calc(45% - 18px);
    top: calc(24% - 18px);
    transform: scale(1);
  }
  41% {
    left: calc(45% - 18px);
    top: calc(24% - 18px);
    transform: scale(1);
  }
  68% {
    left: calc(45% - 18px);
    top: calc(61% - 18px);
    transform: scale(1);
  }
  73% {
    left: calc(45% - 18px);
    top: calc(61% - 18px);
    transform: scale(1);
  }
  95% {
    opacity: 1;
    left: calc(80% - 18px);
    top: calc(61% - 18px);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    left: calc(80% - 18px);
    top: calc(61% - 18px);
    transform: scale(1);
  }
}

.preview-pane {
  align-items: stretch;
  background: #e9ebef;
  bottom: 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 48px 16px 16px;
  position: absolute;
  right: 0;
  top: 0;
  width: 64%;
}

.demo-toolbar {
  align-items: center;
  display: flex;
  font-size: 11px;
  font-weight: 800;
  justify-content: space-between;
  left: 18px;
  letter-spacing: 0.04em;
  position: absolute;
  right: 18px;
  top: 16px;
  z-index: 4;
}

.demo-toolbar span {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  text-transform: uppercase;
}

.demo-toolbar i {
  background: #2cc77b;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(44, 199, 123, 0.14);
  height: 7px;
  width: 7px;
}

.demo-toolbar a {
  align-items: center;
  background: var(--blue);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(40, 100, 255, 0.28);
  color: white;
  display: inline-flex;
  gap: 8px;
  letter-spacing: 0;
  padding: 10px 14px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.demo-toolbar a:hover {
  box-shadow: 0 11px 24px rgba(40, 100, 255, 0.36);
  transform: translateY(-2px);
}

.demo-toolbar a:focus-visible {
  outline: 3px solid rgba(40, 100, 255, 0.3);
  outline-offset: 3px;
}

.demo-toolbar a .external-arrow {
  color: white;
  height: 11px;
  width: 11px;
}

.preview-pane iframe {
  background: #e9ebef;
  border: 0;
  border-radius: 22px;
  box-shadow:
    inset 0 0 0 1px rgba(17, 18, 22, 0.07),
    0 18px 45px rgba(35, 54, 100, 0.14);
  height: 100%;
  opacity: 0;
  transition: opacity 220ms ease;
  width: 100%;
  z-index: 3;
}

.preview-pane iframe.is-loaded {
  opacity: 1;
}

.how {
  margin: auto;
  max-width: 1380px;
  padding: 130px 5vw;
}

.section-intro {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.section-intro h2,
.contact h2 {
  font-size: clamp(46px, 5.5vw, 78px);
}

.steps {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.steps article {
  border: 1px solid var(--line);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  min-height: 440px;
  overflow: hidden;
  padding: 26px;
  position: relative;
}

.steps article:nth-child(1) {
  background: #dfe7ff;
}

.steps article:nth-child(2) {
  background: #f7dce6;
}

.steps article:nth-child(3) {
  background: #ffe0c6;
}

.card-top {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  min-height: 132px;
}

.card-number {
  font-size: 11px;
  font-weight: 900;
}

.steps h3 {
  font-size: 28px;
  letter-spacing: -0.04em;
  margin: 12px 0 10px;
}

.steps > article > p {
  color: #55575d;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  max-width: 330px;
}

.steps ul {
  border-top: 1px solid rgba(17, 18, 22, 0.12);
  display: grid;
  gap: 9px;
  list-style: none;
  margin: auto 0 0;
  padding: 20px 0 0;
}

.steps li {
  align-items: center;
  display: flex;
  font-size: 12px;
  font-weight: 700;
  gap: 9px;
}

.steps li::before {
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  content: "✓";
  display: flex;
  font-size: 9px;
  height: 18px;
  justify-content: center;
  width: 18px;
}

.connect-visual {
  align-items: center;
  display: flex;
  gap: 8px;
  margin-right: 5px;
  margin-top: 8px;
}

.connect-visual i {
  align-items: center;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(17, 18, 22, 0.1);
  border-radius: 12px;
  display: flex;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.connect-visual i:last-child {
  background: var(--blue);
  color: white;
}

.connect-visual b {
  border-top: 2px dashed rgba(17, 18, 22, 0.35);
  width: 28px;
}

.pack-visual {
  height: 98px;
  margin-right: 22px;
  position: relative;
  width: 88px;
}

.pack-visual i {
  align-items: center;
  background:
    radial-gradient(circle at 50% 50%, var(--blue) 0 18px, transparent 19px),
    #fffaf2;
  border: 2px solid rgba(17, 18, 22, 0.65);
  border-radius: 7px 7px 12px 12px;
  bottom: 0;
  color: white;
  display: flex;
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  height: 74px;
  justify-content: center;
  position: absolute;
  right: 0;
  width: 76px;
}

.pack-visual i::before {
  border: 4px solid rgba(17, 18, 22, 0.65);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  content: "";
  height: 20px;
  left: 17px;
  position: absolute;
  top: -19px;
  width: 36px;
}

.delivery-visual {
  align-items: center;
  display: flex;
  height: 80px;
  justify-content: space-between;
  margin-right: 15px;
  margin-top: 10px;
  position: relative;
  width: 150px;
}

.delivery-visual::before {
  background: rgba(17, 18, 22, 0.36);
  content: "";
  height: 3px;
  left: 12px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.delivery-visual i {
  background: var(--ink);
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(17, 18, 22, 0.16);
  height: 25px;
  position: relative;
  width: 25px;
  z-index: 2;
}

.delivery-visual b {
  align-items: center;
  background: var(--blue);
  border-radius: 50%;
  color: white;
  display: flex;
  font-size: 16px;
  height: 68px;
  justify-content: center;
  position: relative;
  width: 68px;
  z-index: 2;
}

.contact {
  align-items: center;
  background: var(--blue);
  color: white;
  display: flex;
  flex-direction: column;
  padding: 110px 20px;
  text-align: center;
}

.contact .label {
  color: #c8d6ff;
}

.contact > p:not(.label) {
  color: #dce5ff;
  font-size: 17px;
  line-height: 1.6;
  margin: 28px 0;
}

.contact-button {
  align-items: center;
  background: white;
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  gap: 28px;
  padding: 17px 21px;
}

.contact-button span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

footer {
  align-items: center;
  background: var(--ink);
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 42px 5vw;
}

footer p,
footer > a:last-child {
  color: #92949b;
  font-size: 12px;
}

@media (max-width: 800px) {
  .nav {
    height: 70px;
    padding: 0 20px;
  }

  .nav-links > a:first-child {
    display: none;
  }

  .nav-button {
    font-size: 11px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 55px 20px 75px;
  }

  h1 {
    font-size: clamp(54px, 16vw, 76px);
  }

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

  .primary {
    width: 100%;
  }

  .visual {
    min-height: 900px;
    width: 100%;
  }

  .map {
    border-bottom: 1px solid rgba(35, 54, 100, 0.1);
    border-right: 0;
    bottom: auto;
    height: 38%;
    width: 100%;
  }

  .preview-pane {
    border-top: 1px solid rgba(35, 54, 100, 0.1);
    bottom: 0;
    padding: 48px 14px 14px;
    top: 38%;
    width: 100%;
  }

  .how {
    padding: 90px 20px;
  }

  .section-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

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

  .steps article {
    min-height: 405px;
  }

  .contact {
    padding: 85px 20px;
  }

  .contact-button {
    flex-direction: column;
    gap: 4px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding: 38px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .moving-package {
    animation: none;
    left: calc(80% - 18px);
    top: calc(61% - 18px);
  }
}
