:root {
  --amber: #ffc107;
  --amber-deep: #e7a900;
  --amber-soft: #fff1bd;
  --amber-pale: #fff8df;
  --brown: #8a3c14;
  --brown-dark: #5b260f;
  --blue: #77afe0;
  --blue-pale: #e6f3ff;
  --ink: #171b1f;
  --ink-soft: #475467;
  --cream: #fffaf0;
  --paper: #fffefb;
  --mist: #f4f5f6;
  --line: rgba(23, 27, 31, .1);
  --white: #fff;
  --green: #29a957;
  --header-height: 88px;
  --container: 1180px;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --shadow-soft: 0 24px 70px rgba(78, 48, 15, .09);
  --shadow-card: 0 18px 50px rgba(52, 39, 20, .08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

button,
a {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  padding: 0;
  border: 0;
}

img {
  display: block;
  max-width: 100%;
}

svg {
  display: block;
}

[hidden] {
  display: none !important;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

#icon-apple,
#icon-playstore {
  fill: currentColor;
  stroke: none;
}

.container {
  width: min(calc(100% - 44px), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: 116px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  color: var(--white);
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.grain {
  position: fixed;
  z-index: 999;
  inset: 0;
  opacity: .025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.02em;
  cursor: pointer;
  transition: transform .25s var(--ease-out), box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button .icon {
  transition: transform .25s var(--ease-out);
}

.button:hover .icon {
  transform: translateX(3px);
}

.button--small {
  min-height: 46px;
  padding: 11px 16px;
  border-radius: 13px;
  font-size: 13px;
}

.button--dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(23, 27, 31, .18);
}

.button--dark:hover {
  background: #282e34;
  box-shadow: 0 16px 36px rgba(23, 27, 31, .22);
}

.button--primary {
  color: #141414;
  background: linear-gradient(135deg, #ffd141, var(--amber));
  box-shadow: 0 18px 36px rgba(231, 169, 0, .25), inset 0 1px rgba(255, 255, 255, .6);
}

.button--primary:hover {
  box-shadow: 0 22px 44px rgba(231, 169, 0, .34), inset 0 1px rgba(255, 255, 255, .6);
}

.button--ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, .7);
  border-color: rgba(23, 27, 31, .13);
  box-shadow: 0 12px 30px rgba(62, 43, 14, .06);
  backdrop-filter: blur(10px);
}

.button--ghost:hover {
  background: var(--white);
  border-color: rgba(231, 169, 0, .4);
}

.play-dot {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--brown);
  background: var(--amber-soft);
  border-radius: 50%;
}

.play-dot .icon {
  width: 13px;
  height: 13px;
  margin-left: 2px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: height .3s var(--ease-out), background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(255, 250, 240, .9);
  border-color: var(--line);
  box-shadow: 0 10px 35px rgba(60, 43, 16, .06);
  backdrop-filter: blur(18px) saturate(150%);
}

.nav-shell {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 28px;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.06em;
}

.brand img {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(23, 27, 31, .08);
  border-radius: 12px;
  box-shadow: 0 7px 18px rgba(77, 47, 10, .08);
}

.brand > span > span {
  color: var(--brown);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding-block: 10px;
  color: #59616a;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: color .2s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--amber-deep);
  border-radius: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease-out);
}

.desktop-nav a:hover {
  color: var(--ink);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-download {
  flex-shrink: 0;
}

.nav-download .icon {
  width: 17px;
  height: 17px;
}

.nav-download:hover .icon {
  transform: translateY(2px);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  padding-top: var(--header-height);
  background:
    radial-gradient(circle at 78% 32%, rgba(255, 193, 7, .18), transparent 30%),
    linear-gradient(180deg, var(--cream), #fffdf8 78%, var(--white));
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(121, 80, 9, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(121, 80, 9, .03) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.hero-sun {
  position: absolute;
  top: 145px;
  right: max(-170px, calc((100vw - var(--container)) / 2 - 230px));
  width: 590px;
  height: 590px;
  background: linear-gradient(145deg, #ffd45b, var(--amber));
  border-radius: 50%;
  box-shadow: inset 0 1px rgba(255, 255, 255, .6), 0 38px 100px rgba(234, 172, 7, .22);
  opacity: .95;
}

.hero-route {
  position: absolute;
  right: -80px;
  bottom: -20px;
  width: min(68vw, 900px);
  opacity: .34;
}

.hero-route path {
  fill: none;
  stroke: var(--brown);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 4 14;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(820px - var(--header-height));
  align-items: center;
  grid-template-columns: .92fr 1.08fr;
  gap: 40px;
  padding-block: 65px 72px;
}

.hero-copy {
  min-width: 0;
  max-width: 590px;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #865b00;
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .095em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 7px 12px 7px 7px;
  background: rgba(255, 255, 255, .62);
  border: 1px solid rgba(143, 97, 6, .13);
  border-radius: 999px;
  box-shadow: 0 8px 26px rgba(91, 55, 0, .04);
}

.eyebrow-icon {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--brown);
  background: var(--amber);
  border-radius: 50%;
}

.eyebrow-icon .icon {
  width: 14px;
  height: 14px;
  stroke-width: 2.2;
}

.hero h1,
.section-heading h2,
.steps-copy h2,
.demo-copy h2,
.download-copy h2,
.video-placeholder h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: .98;
}

.hero h1 {
  max-width: 590px;
  margin-top: 23px;
  font-size: clamp(53px, 5.15vw, 76px);
}

.hero h1 span,
.section-heading h2 span,
.steps-copy h2 span,
.demo-copy h2 span {
  color: var(--brown);
}

.hero-lead {
  max-width: 570px;
  margin: 25px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

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

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 19px;
  margin: 26px 0 0;
  padding: 0;
  color: #5b6269;
  font-size: 12px;
  font-weight: 600;
  list-style: none;
}

.hero-assurances li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-assurances .icon {
  width: 15px;
  height: 15px;
  padding: 2px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  stroke-width: 2.5;
}

.hero-visual {
  --rotate-x: 0deg;
  --rotate-y: 0deg;
  position: relative;
  min-width: 0;
  width: 100%;
  min-height: 640px;
  transform: perspective(1200px) rotateX(var(--rotate-x)) rotateY(var(--rotate-y));
  transform-style: preserve-3d;
  transition: transform .45s var(--ease-out);
}

.visual-orbit {
  position: absolute;
  top: 50%;
  left: 54%;
  border: 1px solid rgba(102, 51, 11, .22);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
}

.visual-orbit--one {
  width: 580px;
  height: 410px;
}

.visual-orbit--two {
  width: 470px;
  height: 330px;
  border-style: dashed;
  opacity: .6;
}

.phone {
  position: absolute;
  overflow: hidden;
  aspect-ratio: 1206 / 2622;
  background: var(--white);
  border: 9px solid #171717;
  border-radius: 46px;
  box-shadow: 0 36px 75px rgba(50, 29, 7, .28), inset 0 0 0 1px rgba(255, 255, 255, .2);
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone--main {
  z-index: 4;
  top: 1%;
  left: 28%;
  width: min(48%, 302px);
  transform: translateZ(45px) rotate(1.5deg);
}

.phone--back {
  z-index: 2;
  top: 9%;
  left: 58%;
  width: min(39%, 250px);
  border-width: 7px;
  border-radius: 39px;
  box-shadow: 0 26px 58px rgba(73, 39, 8, .18);
  opacity: .7;
  transform: translateZ(10px) rotate(8deg);
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 50%;
  width: 35%;
  height: 21px;
  background: #171717;
  border-radius: 999px;
  transform: translateX(-50%);
}

.floating-card {
  position: absolute;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(23, 27, 31, .09);
  border-radius: 17px;
  box-shadow: 0 20px 45px rgba(58, 35, 10, .14);
  backdrop-filter: blur(12px);
}

.floating-card--route {
  top: 27%;
  left: 2%;
  animation: float-card 5s ease-in-out infinite;
}

.floating-card--parcel {
  right: -1%;
  bottom: 20%;
  animation: float-card 5.8s ease-in-out .6s infinite reverse;
}

.floating-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  color: #7b5300;
  background: var(--amber-soft);
  border-radius: 12px;
}

.floating-icon--brown {
  color: var(--white);
  background: var(--brown);
}

.floating-icon .icon {
  width: 19px;
  height: 19px;
}

.floating-card div {
  display: grid;
  gap: 1px;
}

.floating-card small {
  color: #7a8189;
  font-size: 10px;
  font-weight: 700;
}

.floating-card strong {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
}

.status-dot {
  width: 8px;
  height: 8px;
  margin-left: 5px;
  background: var(--green);
  border: 2px solid #d8f4e2;
  border-radius: 50%;
  box-sizing: content-box;
}

.plane-chip {
  position: absolute;
  z-index: 5;
  top: 8%;
  right: 7%;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: var(--brown);
  border: 5px solid rgba(255, 255, 255, .65);
  border-radius: 50%;
  box-shadow: 0 16px 32px rgba(89, 37, 10, .22);
  animation: float-card 4.8s ease-in-out infinite reverse;
}

.plane-chip .icon {
  width: 23px;
  height: 23px;
}

@keyframes float-card {
  0%, 100% { transform: translate3d(0, 0, 90px); }
  50% { transform: translate3d(0, -11px, 90px); }
}

.promise-strip {
  position: relative;
  z-index: 4;
  color: var(--white);
  background: var(--ink);
}

.promise-grid {
  display: grid;
  min-height: 132px;
  align-items: center;
  grid-template-columns: .72fr 1.5fr .72fr;
  gap: 30px;
}

.promise-grid > p {
  display: grid;
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

.promise-grid > p span {
  color: #aeb4bb;
}

.promise-grid > p strong {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
}

.promise-result {
  text-align: right;
}

.promise-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

.promise-flow span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: #ced2d6;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.promise-flow .promise-center {
  color: var(--ink);
  background: var(--amber);
  border-color: var(--amber);
}

.promise-flow .icon {
  width: 17px;
  height: 17px;
}

.promise-flow i {
  width: 22px;
  border-top: 1px dashed rgba(255, 255, 255, .3);
}

.audiences {
  background: var(--white);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 46px;
}

.section-heading h2,
.steps-copy h2,
.demo-copy h2 {
  margin-top: 13px;
  font-size: clamp(40px, 4vw, 58px);
}

.section-heading > p,
.steps-copy > p {
  max-width: 560px;
  margin: 19px 0 0;
  color: #68717a;
  font-size: 16px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.audience-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(23, 27, 31, .08);
  border-radius: 30px;
  box-shadow: var(--shadow-card);
}

.audience-card::before,
.audience-card::after {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  content: "";
}

.audience-card::before {
  top: -150px;
  right: -100px;
  width: 340px;
  height: 340px;
  background: rgba(255, 255, 255, .42);
}

.audience-card::after {
  right: 50px;
  bottom: -180px;
  width: 300px;
  height: 300px;
  border: 1px dashed rgba(68, 38, 7, .14);
}

.audience-card--sender {
  background: linear-gradient(145deg, #fff9df, #fff2b9);
}

.audience-card--traveler {
  background: linear-gradient(145deg, #ecf7ff, #d6eaff);
}

.audience-card > * {
  position: relative;
  z-index: 1;
}

.audience-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 55px;
}

.audience-number {
  color: rgba(23, 27, 31, .42);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
}

.audience-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  color: var(--white);
  background: var(--brown);
  border-radius: 19px;
  box-shadow: 0 14px 28px rgba(97, 42, 13, .2);
  transform: rotate(4deg);
}

.audience-card--traveler .audience-icon {
  color: var(--ink);
  background: var(--amber);
  box-shadow: 0 14px 28px rgba(145, 104, 0, .19);
  transform: rotate(-4deg);
}

.audience-icon .icon {
  width: 29px;
  height: 29px;
}

.card-kicker {
  display: block;
  margin-bottom: 10px;
  color: #895000;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.audience-card--traveler .card-kicker {
  color: #38698f;
}

.audience-card h3 {
  max-width: 500px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(26px, 2.7vw, 37px);
  letter-spacing: -.045em;
  line-height: 1.13;
}

.audience-card > p {
  max-width: 480px;
  margin: 18px 0 0;
  color: #545b61;
  font-size: 15px;
  line-height: 1.7;
}

.audience-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.audience-card li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, .58);
  border: 1px solid rgba(23, 27, 31, .07);
  border-radius: 999px;
  color: #545b61;
  font-size: 11px;
  font-weight: 700;
}

.audience-card li .icon {
  width: 13px;
  height: 13px;
  color: var(--green);
  stroke-width: 2.5;
}

.audience-card > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(23, 27, 31, .3);
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.audience-card > a .icon {
  width: 16px;
  height: 16px;
  transition: transform .2s var(--ease-out);
}

.audience-card > a:hover .icon {
  transform: translateX(4px);
}

.steps {
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 193, 7, .13), transparent 22%),
    linear-gradient(145deg, #f7f8f9, #fff);
}

.steps-layout {
  display: grid;
  align-items: center;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
}

.steps-copy {
  position: sticky;
  top: 120px;
}

.steps-note {
  display: flex;
  max-width: 440px;
  align-items: flex-start;
  gap: 13px;
  margin-top: 32px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 17px;
  box-shadow: 0 14px 38px rgba(37, 37, 37, .06);
}

.steps-note > .icon {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  padding: 3px;
  color: #805500;
  background: var(--amber-soft);
  border-radius: 7px;
  box-sizing: content-box;
}

.steps-note div {
  display: grid;
  gap: 3px;
}

.steps-note strong {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
}

.steps-note span {
  color: #747c83;
  font-size: 12px;
}

.steps-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-card {
  display: grid;
  min-height: 150px;
  align-items: center;
  grid-template-columns: 35px 68px 1fr;
  gap: 22px;
  padding: 25px 27px;
  background: rgba(255, 255, 255, .84);
  border: 1px solid var(--line);
  border-radius: 23px;
  box-shadow: 0 16px 45px rgba(44, 44, 44, .055);
  transition: transform .3s var(--ease-out), box-shadow .3s ease;
}

.step-card:hover {
  box-shadow: 0 22px 55px rgba(44, 44, 44, .09);
  transform: translateX(-6px);
}

.step-number {
  align-self: start;
  color: #a2a7ac;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.step-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  color: var(--brown);
  background: var(--amber-pale);
  border: 1px solid rgba(218, 154, 0, .17);
  border-radius: 19px;
}

.step-card:nth-child(2) .step-icon {
  color: #346c96;
  background: var(--blue-pale);
  border-color: rgba(52, 108, 150, .12);
}

.step-card:nth-child(3) .step-icon {
  color: var(--white);
  background: var(--brown);
  border-color: var(--brown);
}

.step-icon .icon {
  width: 27px;
  height: 27px;
}

.step-card h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  letter-spacing: -.025em;
}

.step-card p {
  margin: 6px 0 0;
  color: #747c83;
  font-size: 13px;
}

.demo {
  background: var(--white);
}

.demo-stage {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 560px;
  overflow: hidden;
  padding: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 73% 40%, rgba(255, 193, 7, .2), transparent 28%),
    linear-gradient(135deg, #181d22, #272016 62%, #4d230f);
  border-radius: 35px;
  grid-template-columns: .8fr 1.2fr;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 35px 90px rgba(33, 27, 19, .17);
  isolation: isolate;
}

.demo-stage::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 85%);
}

.demo-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  padding: 60px 0 60px 60px;
}

.section-label--dark {
  color: var(--amber);
}

.demo-copy h2 {
  max-width: 480px;
  font-size: clamp(43px, 4vw, 60px);
}

.demo-copy h2 span {
  color: var(--amber);
}

.demo-copy > p {
  max-width: 440px;
  margin: 20px 0 0;
  color: #c6cbd0;
  font-size: 15px;
  line-height: 1.7;
}

.demo-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 29px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.demo-cta i {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  color: var(--ink);
  background: var(--amber);
  border-radius: 50%;
  transition: transform .25s var(--ease-out);
}

.demo-stage:hover .demo-cta i {
  transform: scale(1.08);
}

.demo-cta .icon {
  width: 16px;
  height: 16px;
  margin-left: 2px;
}

.demo-screen {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.demo-screen-glow {
  position: absolute;
  top: 50%;
  left: 55%;
  width: 460px;
  height: 460px;
  background: var(--amber);
  border-radius: 50%;
  filter: blur(4px);
  opacity: .95;
  transform: translate(-50%, -50%);
}

.demo-screen-phone {
  position: absolute;
  overflow: hidden;
  aspect-ratio: 1206 / 2622;
  background: var(--white);
  border: 8px solid #0e1012;
  border-radius: 39px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .3);
}

.demo-screen-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.demo-screen-phone--one {
  z-index: 1;
  top: 58px;
  left: 12%;
  width: 235px;
  transform: rotate(-8deg);
}

.demo-screen-phone--two {
  top: 104px;
  left: 47%;
  width: 218px;
  transform: rotate(8deg);
}

.demo-play {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 255, 255, .92);
  border: 7px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease-out), background .3s ease;
  background-clip: padding-box;
}

.demo-stage:hover .demo-play {
  background: var(--amber);
  transform: translate(-50%, -50%) scale(1.08);
}

.demo-play .icon {
  width: 29px;
  height: 29px;
  margin-left: 4px;
}

.confidence {
  padding-top: 0;
  background: var(--white);
}

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

.confidence-card {
  padding: 27px;
  background: #fafafa;
  border: 1px solid var(--line);
  border-radius: 23px;
  transition: transform .3s var(--ease-out), background .3s ease;
}

.confidence-card:hover {
  background: var(--white);
  transform: translateY(-5px);
}

.confidence-icon {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  color: var(--brown);
  background: var(--amber-pale);
  border-radius: 14px;
}

.confidence-card:nth-child(2) .confidence-icon {
  color: #346c96;
  background: var(--blue-pale);
}

.confidence-card:nth-child(3) .confidence-icon {
  color: var(--white);
  background: var(--brown);
}

.confidence-icon .icon {
  width: 21px;
  height: 21px;
}

.confidence-card h3 {
  margin: 20px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  letter-spacing: -.025em;
}

.confidence-card p {
  margin: 8px 0 0;
  color: #747c83;
  font-size: 13px;
  line-height: 1.65;
}

.download {
  padding-top: 0;
  background: var(--white);
}

.download-shell {
  position: relative;
  display: grid;
  min-height: 570px;
  overflow: hidden;
  color: var(--white);
  background: var(--brown);
  border-radius: 35px;
  grid-template-columns: .95fr 1.05fr;
  isolation: isolate;
}

.download-shell::before {
  position: absolute;
  z-index: -1;
  right: -170px;
  bottom: -290px;
  width: 670px;
  height: 670px;
  background: #61280d;
  border-radius: 50%;
  content: "";
}

.download-route {
  position: absolute;
  z-index: 0;
  top: 40px;
  right: 0;
  width: 57%;
  height: 70%;
  border: 2px dashed rgba(255, 193, 7, .3);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-17deg);
}

.download-visual {
  position: relative;
  min-height: 570px;
}

.download-sun {
  position: absolute;
  top: 70px;
  left: -90px;
  width: 390px;
  height: 390px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 24px 70px rgba(71, 26, 4, .3);
}

.download-phone {
  position: absolute;
  z-index: 3;
  bottom: -190px;
  left: 27%;
  width: 275px;
  overflow: hidden;
  aspect-ratio: 1206 / 2622;
  background: var(--white);
  border: 9px solid var(--ink);
  border-radius: 44px;
  box-shadow: 0 34px 70px rgba(46, 16, 2, .3);
  transform: rotate(-5deg);
}

.download-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.download-package {
  position: absolute;
  z-index: 5;
  right: 8%;
  bottom: 65px;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  color: var(--brown);
  background: var(--amber);
  border: 6px solid rgba(255, 255, 255, .24);
  border-radius: 22px;
  box-shadow: 0 16px 38px rgba(53, 19, 3, .25);
  transform: rotate(7deg);
}

.download-package .icon {
  width: 31px;
  height: 31px;
}

.download-pin {
  position: absolute;
  z-index: 1;
  width: 19px;
  height: 19px;
  background: var(--white);
  border: 6px solid var(--amber);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.download-pin--one {
  top: 82px;
  right: 5%;
}

.download-pin--two {
  bottom: 77px;
  left: 4%;
}

.download-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 70px 75px 70px 35px;
}

.section-label--light {
  color: #ffd45e;
}

.download-copy h2 {
  max-width: 530px;
  margin-top: 14px;
  font-size: clamp(43px, 4.4vw, 64px);
}

.download-copy > p {
  max-width: 490px;
  margin: 21px 0 0;
  color: #f0d6c8;
  font-size: 16px;
  line-height: 1.7;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.store-button {
  display: flex;
  min-width: 185px;
  min-height: 62px;
  align-items: center;
  gap: 11px;
  padding: 10px 16px;
  color: var(--white);
  background: #151515;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(42, 11, 0, .2);
  transition: transform .25s var(--ease-out), background .25s ease;
}

.store-button:hover {
  background: #252525;
  transform: translateY(-3px);
}

.store-icon {
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  fill: currentColor;
}

.store-button > span {
  display: grid;
  line-height: 1.1;
}

.store-button small {
  margin-bottom: 3px;
  color: #c6c6c6;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .02em;
}

.store-button strong {
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.035em;
}

.store-hint {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 17px;
  color: #e6c9ba;
  font-size: 10px;
  font-weight: 600;
}

.store-hint .icon {
  width: 14px;
  height: 14px;
  color: var(--amber);
}

.site-footer {
  padding: 65px 0 26px;
  background: var(--white);
}

.footer-main {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.brand--footer img {
  width: 38px;
  height: 38px;
}

.footer-main > p {
  margin: 0;
  color: #848a90;
  font-size: 12px;
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 21px;
}

.footer-main nav a {
  color: #626970;
  font-size: 12px;
  font-weight: 600;
  transition: color .2s ease;
}

.footer-main nav a:hover {
  color: var(--brown);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  color: #9a9fa4;
  font-size: 10px;
}

.video-modal {
  width: min(calc(100% - 30px), 780px);
  max-height: calc(100vh - 30px);
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 28px;
  box-shadow: 0 35px 110px rgba(0, 0, 0, .35);
}

.video-modal::backdrop {
  background: rgba(15, 13, 11, .72);
  backdrop-filter: blur(8px);
}

.video-modal.has-video {
  width: min(calc(100% - 30px), 480px);
  background: #000;
}

.video-modal.has-video .video-modal-shell {
  min-height: 0;
  background: #000;
}

.video-modal-shell {
  position: relative;
  min-height: 490px;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 17%, rgba(255, 193, 7, .23), transparent 35%),
    var(--cream);
}

.modal-close {
  position: absolute;
  z-index: 10;
  top: 18px;
  right: 18px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 255, 255, .75);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.modal-close .icon {
  width: 18px;
  height: 18px;
}

.video-placeholder {
  display: flex;
  min-height: 490px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 55px;
  text-align: center;
}

.placeholder-animation {
  position: relative;
  display: flex;
  width: 160px;
  height: 105px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 28px;
  background: var(--ink);
  border-radius: 25px;
  box-shadow: 0 20px 45px rgba(23, 27, 31, .18);
}

.placeholder-animation span {
  width: 4px;
  height: 22px;
  background: rgba(255, 255, 255, .22);
  border-radius: 999px;
  animation: wave 1.2s ease-in-out infinite;
}

.placeholder-animation span:nth-child(2) { animation-delay: .12s; }
.placeholder-animation span:nth-child(3) { animation-delay: .24s; }
.placeholder-animation span:nth-child(4) { animation-delay: .36s; }
.placeholder-animation span:nth-child(5) { animation-delay: .48s; }

.placeholder-animation i {
  position: absolute;
  right: -13px;
  bottom: -13px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--ink);
  background: var(--amber);
  border: 4px solid var(--cream);
  border-radius: 50%;
}

.placeholder-animation .icon {
  width: 18px;
  height: 18px;
  margin-left: 2px;
}

@keyframes wave {
  0%, 100% { height: 16px; background: rgba(255, 255, 255, .2); }
  50% { height: 48px; background: var(--amber); }
}

.video-placeholder h2 {
  margin-top: 13px;
  font-size: clamp(35px, 5vw, 52px);
}

.video-placeholder p {
  max-width: 510px;
  margin: 17px 0 0;
  color: #687078;
  font-size: 14px;
}

.video-player {
  width: 100%;
  max-height: calc(100vh - 30px);
  background: #000;
}

.video-modal.has-video .video-player {
  display: block;
  width: 100%;
  height: min(calc(100vh - 30px), 854px);
  object-fit: contain;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 24px;
  bottom: 24px;
  max-width: min(360px, calc(100vw - 48px));
  padding: 13px 17px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 13px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, .25);
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity .25s ease, transform .25s var(--ease-out);
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s var(--ease-out);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal--delay-1 { transition-delay: .1s; }
.js .reveal--delay-2 { transition-delay: .2s; }
.js .reveal--delay-3 { transition-delay: .3s; }
.js .reveal--delay-4 { transition-delay: .4s; }

@media (max-width: 1080px) {
  :root { --container: 940px; }

  .hero-layout {
    grid-template-columns: 1fr .9fr;
    gap: 5px;
  }

  .hero-visual {
    min-height: 590px;
  }

  .phone--main {
    left: 18%;
    width: 58%;
  }

  .phone--back {
    left: 58%;
    width: 46%;
  }

  .floating-card--route { left: -5%; }
  .floating-card--parcel { right: -8%; }

  .promise-grid {
    grid-template-columns: 1fr 1.7fr;
  }

  .promise-result { display: none !important; }

  .steps-layout { gap: 45px; }

  .demo-stage {
    grid-template-columns: .9fr 1.1fr;
  }

  .demo-copy { padding-left: 45px; }
  .demo-screen-phone--one { left: 4%; }
  .demo-screen-phone--two { left: 43%; }

  .download-copy { padding-right: 45px; }
}

@media (max-width: 900px) {
  :root { --header-height: 76px; }

  .desktop-nav,
  .nav-download {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    width: 44px;
    height: 44px;
    margin-left: auto;
    place-items: center;
    color: var(--ink);
    background: rgba(255, 255, 255, .75);
    border: 1px solid var(--line);
    border-radius: 13px;
    cursor: pointer;
  }

  .menu-toggle .icon {
    grid-area: 1 / 1;
  }

  .menu-toggle .menu-close,
  .menu-toggle[aria-expanded="true"] .menu-open {
    display: none;
  }

  .menu-toggle[aria-expanded="true"] .menu-close {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    left: 0;
    display: block;
    padding: calc(var(--header-height) + 15px) 0 23px;
    background: rgba(255, 250, 240, .97);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 50px rgba(60, 43, 16, .12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity .25s ease, transform .35s var(--ease-out);
    backdrop-filter: blur(18px);
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu nav {
    display: grid;
    gap: 4px;
  }

  .mobile-menu nav > a:not(.button) {
    padding: 12px 3px;
    color: #4e565d;
    border-bottom: 1px solid rgba(23, 27, 31, .07);
    font-size: 14px;
    font-weight: 700;
  }

  .mobile-menu .button {
    margin-top: 10px;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 82px;
  }

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

  .hero h1 {
    max-width: 700px;
    font-size: clamp(55px, 9vw, 74px);
  }

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

  .hero-sun {
    top: auto;
    right: -120px;
    bottom: 40px;
    width: 540px;
    height: 540px;
  }

  .hero-route {
    right: -100px;
    bottom: -30px;
    width: 100vw;
  }

  .hero-visual {
    width: min(100%, 670px);
    min-height: 650px;
    margin-inline: auto;
  }

  .phone--main {
    left: 28%;
    width: 45%;
  }

  .phone--back {
    left: 58%;
    width: 37%;
  }

  .floating-card--route { left: 5%; }
  .floating-card--parcel { right: 4%; }

  .promise-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 19px;
    padding-block: 25px;
    text-align: center;
  }

  .promise-flow {
    width: 100%;
  }

  .audience-card {
    min-height: 590px;
  }

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

  .steps-copy {
    position: static;
  }

  .steps-list {
    max-width: 700px;
  }

  .demo-stage {
    min-height: 760px;
    grid-template-columns: 1fr;
  }

  .demo-copy {
    padding: 55px 55px 20px;
  }

  .demo-copy > p { max-width: 600px; }
  .demo-screen { min-height: 450px; }
  .demo-screen-glow { width: 420px; height: 420px; }
  .demo-screen-phone--one { top: 20px; left: 23%; width: 220px; }
  .demo-screen-phone--two { top: 45px; left: 51%; width: 205px; }

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

  .download-shell {
    grid-template-columns: .8fr 1.2fr;
  }

  .download-phone {
    left: 17%;
    width: 235px;
  }

  .download-copy {
    padding: 60px 35px 60px 10px;
  }

  .footer-main {
    grid-template-columns: auto 1fr;
  }

  .footer-main nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding-block: 84px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand { font-size: 19px; }

  .hero-layout {
    padding-top: 64px;
    padding-bottom: 48px;
  }

  .eyebrow {
    max-width: 100%;
    font-size: 9px;
    letter-spacing: .07em;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(44px, 13vw, 58px);
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-assurances {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: start;
  }

  .hero-visual {
    min-height: 525px;
  }

  .hero-sun {
    right: -170px;
    bottom: 50px;
    width: 430px;
    height: 430px;
  }

  .visual-orbit--one { width: 460px; height: 330px; }
  .visual-orbit--two { width: 360px; height: 260px; }

  .phone {
    border-width: 7px;
    border-radius: 36px;
  }

  .phone--main {
    top: 1%;
    left: 22%;
    width: 56%;
  }

  .phone--back {
    top: 8%;
    left: 61%;
    width: 42%;
  }

  .phone-speaker {
    top: 7px;
    height: 16px;
  }

  .floating-card--route {
    top: 28%;
    left: -3%;
  }

  .floating-card--parcel {
    right: -3%;
    bottom: 10%;
  }

  .floating-card {
    gap: 8px;
    padding: 9px 10px;
    border-radius: 13px;
  }

  .floating-icon { width: 32px; height: 32px; border-radius: 10px; }
  .floating-card small { font-size: 8px; }
  .floating-card strong { font-size: 10px; }
  .status-dot { display: none; }

  .plane-chip {
    top: 3%;
    right: 1%;
    width: 47px;
    height: 47px;
  }

  .promise-flow {
    gap: 6px;
  }

  .promise-flow span {
    min-height: 40px;
    gap: 5px;
    padding: 8px;
    font-size: 9px;
  }

  .promise-flow i { width: 8px; }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .steps-copy h2,
  .demo-copy h2 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .section-heading > p,
  .steps-copy > p {
    font-size: 14px;
  }

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

  .audience-card {
    min-height: auto;
    padding: 26px;
    border-radius: 24px;
  }

  .audience-top { margin-bottom: 42px; }
  .audience-icon { width: 56px; height: 56px; }
  .audience-card h3 { font-size: 27px; }

  .steps-layout { gap: 35px; }
  .step-card {
    min-height: 135px;
    grid-template-columns: 49px 1fr;
    gap: 14px;
    padding: 20px;
  }

  .step-number { display: none; }
  .step-icon { width: 49px; height: 49px; border-radius: 15px; }
  .step-icon .icon { width: 22px; height: 22px; }
  .step-card h3 { font-size: 16px; }

  .demo {
    padding-inline: 0;
  }

  .demo-stage {
    min-height: 700px;
    border-radius: 27px;
  }

  .demo-copy {
    padding: 39px 28px 15px;
  }

  .demo-copy > p { font-size: 13px; }
  .demo-screen { min-height: 420px; }
  .demo-screen-glow { width: 330px; height: 330px; }
  .demo-screen-phone--one { top: 30px; left: 10%; width: 185px; }
  .demo-screen-phone--two { top: 55px; left: 48%; width: 170px; }
  .demo-play { width: 68px; height: 68px; }

  .confidence { padding-top: 0; }

  .download {
    padding-top: 0;
  }

  .download-shell {
    min-height: 800px;
    grid-template-columns: 1fr;
    border-radius: 27px;
  }

  .download-visual {
    min-height: 320px;
    order: 2;
  }

  .download-copy {
    padding: 45px 27px 0;
    order: 1;
  }

  .download-copy h2 {
    font-size: clamp(40px, 12vw, 53px);
  }

  .download-copy > p { font-size: 14px; }

  .download-sun {
    top: 35px;
    left: -50px;
    width: 280px;
    height: 280px;
  }

  .download-phone {
    bottom: -275px;
    left: 29%;
    width: 220px;
  }

  .download-package {
    right: 9%;
    bottom: 40px;
    width: 64px;
    height: 64px;
  }

  .store-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .store-button {
    min-width: 0;
    padding: 9px 11px;
  }

  .store-icon { width: 25px; height: 25px; }
  .store-button strong { font-size: 14px; }

  .site-footer {
    padding-top: 50px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-main nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px 20px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .video-placeholder {
    min-height: 450px;
    padding: 45px 25px;
  }

  .video-modal-shell { min-height: 450px; }
}

@media (max-width: 390px) {
  .hero-assurances {
    grid-template-columns: 1fr;
  }

  .phone--main {
    left: 18%;
    width: 62%;
  }

  .floating-card--route { left: -5%; }
  .floating-card--parcel { right: -5%; }

  .promise-flow span {
    padding: 7px 5px;
    font-size: 8px;
  }

  .promise-flow .icon { width: 14px; height: 14px; }

  .store-buttons {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
