:root {
  --bg: #f4f7fb;
  --white: #ffffff;
  --ink: #101623;
  --muted: #687083;
  --line: rgba(16, 22, 35, 0.1);
  --green: #8cff4f;
  --green-strong: #65df2a;
  --green-soft: #dcffc9;
  --purple: #7869ff;
  --dark: #0d1321;
  --dark-soft: #171e2e;
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 38px;
  --shadow: 0 30px 80px rgba(23, 31, 48, 0.14);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.page-shell {
  overflow: hidden;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 50;
}

.nav-wrap {
  min-height: 68px;
  padding: 10px 12px 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 50px rgba(14,20,33,.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--dark);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}

.brand-seat {
  position: relative;
  width: 17px;
  height: 20px;
  border: 3px solid var(--green);
  border-top: 0;
  border-radius: 4px 4px 7px 7px;
  transform: skew(-7deg);
}

.brand-seat::before {
  content: "";
  position: absolute;
  left: -3px;
  top: -8px;
  width: 17px;
  height: 10px;
  border: 3px solid var(--green);
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
}

.brand-text {
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.04em;
}

.brand-text span {
  color: var(--purple);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #343b49;
  font-size: .9rem;
  font-weight: 600;
}

.nav-links > a:not(.nav-cta):hover {
  color: var(--purple);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 14px;
  background: var(--dark);
  color: white;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 13px;
  background: var(--dark);
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: white;
}

.hero {
  position: relative;
  min-height: 920px;
  padding: 165px 0 100px;
  background:
    linear-gradient(180deg, #eef3f8 0%, #f7f9fc 65%, #f4f7fb 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(35,47,70,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35,47,70,.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}

.hero-glow-one {
  width: 440px;
  height: 440px;
  right: 2%;
  top: 90px;
  background: rgba(120,105,255,.15);
}

.hero-glow-two {
  width: 300px;
  height: 300px;
  left: 5%;
  bottom: 80px;
  background: rgba(140,255,79,.14);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 60px;
  align-items: center;
}

.pill,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pill {
  margin-bottom: 24px;
  padding: 9px 13px;
  border: 1px solid rgba(120,105,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  color: #5347c4;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-strong);
  box-shadow: 0 0 0 5px rgba(101,223,42,.14);
}

.hero h1 {
  max-width: 680px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3.7rem, 7vw, 6.7rem);
  line-height: .94;
  letter-spacing: -.075em;
}

.hero h1 span {
  color: var(--purple);
}

.hero-lead {
  max-width: 610px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 36px;
}

.button {
  min-height: 56px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 17px;
  font-weight: 700;
  transition: .2s ease;
}

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

.button-primary {
  background: var(--dark);
  color: white;
  box-shadow: 0 18px 36px rgba(13,19,33,.18);
}

.button-primary span {
  color: var(--green);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.75);
}

.hero-proof {
  margin-top: 42px;
  display: flex;
  gap: 15px;
  align-items: center;
}

.proof-avatars {
  display: flex;
}

.proof-avatars span {
  width: 38px;
  height: 38px;
  margin-left: -8px;
  display: grid;
  place-items: center;
  border: 3px solid #f4f7fb;
  border-radius: 50%;
  background: var(--dark);
  color: white;
  font-size: .63rem;
  font-weight: 800;
}

.proof-avatars span:first-child {
  margin-left: 0;
  background: var(--purple);
}

.proof-avatars span:nth-child(2) {
  background: var(--green-strong);
  color: var(--dark);
}

.proof-avatars span:nth-child(3) {
  background: #ffb84f;
  color: var(--dark);
}

.stars {
  color: #ffad31;
  letter-spacing: .08em;
  font-size: .82rem;
}

.hero-proof small {
  color: var(--muted);
}

.hero-app {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(120,105,255,.12);
  border-radius: 50%;
}

.orbit-one {
  width: 560px;
  height: 560px;
}

.orbit-two {
  width: 440px;
  height: 440px;
  border-color: rgba(140,255,79,.2);
}

.phone-frame {
  position: relative;
  z-index: 3;
  width: 326px;
  min-height: 655px;
  padding: 10px;
  border-radius: 46px;
  background: #0a0f1a;
  box-shadow: 0 45px 100px rgba(17,24,38,.28);
}

.phone-notch {
  position: absolute;
  z-index: 5;
  top: 16px;
  left: 50%;
  width: 95px;
  height: 25px;
  transform: translateX(-50%);
  border-radius: 0 0 16px 16px;
  background: #0a0f1a;
}

.phone-screen {
  position: relative;
  min-height: 635px;
  overflow: hidden;
  padding: 15px 17px 18px;
  border-radius: 37px;
  background: #f8fafc;
}

.phone-status {
  padding: 4px 8px 18px;
  display: flex;
  justify-content: space-between;
  font-size: .65rem;
  font-weight: 800;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-header div:first-child {
  display: flex;
  flex-direction: column;
}

.app-header small {
  color: var(--muted);
  font-size: .66rem;
}

.app-header strong {
  font-size: 1rem;
}

.avatar {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--purple);
  color: white;
  font-size: .7rem;
  font-weight: 800;
}

.mode-switch {
  margin: 17px 0 14px;
  padding: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 12px;
  background: #e9edf3;
}

.mode-switch button {
  padding: 9px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
}

.mode-switch button.active {
  background: white;
  color: var(--dark);
  box-shadow: 0 6px 18px rgba(14,21,35,.08);
}

.search-panel {
  padding: 15px;
  border-radius: 19px;
  background: white;
  box-shadow: 0 15px 35px rgba(28,37,54,.08);
}

.location-row {
  display: flex;
  align-items: center;
  gap: 11px;
}

.location-row div {
  display: flex;
  flex-direction: column;
}

.location-row small {
  color: var(--muted);
  font-size: .6rem;
}

.location-row strong {
  font-size: .76rem;
}

.location-icon {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.location-icon.start {
  background: var(--green-strong);
  box-shadow: 0 0 0 4px rgba(101,223,42,.14);
}

.location-icon.end {
  background: var(--purple);
  box-shadow: 0 0 0 4px rgba(120,105,255,.13);
}

.route-divider {
  width: 1px;
  height: 18px;
  margin: 4px 0 4px 5px;
  background: #d7dce5;
}

.search-meta {
  margin-top: 14px;
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ebedf2;
  color: var(--muted);
  font-size: .62rem;
}

.search-button {
  width: 100%;
  margin-top: 12px;
  padding: 11px;
  border: 0;
  border-radius: 11px;
  background: var(--dark);
  color: white;
  font-size: .68rem;
  font-weight: 800;
}

.app-section-title {
  margin: 19px 2px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .68rem;
}

.app-section-title span {
  color: var(--purple);
}

.mini-trip {
  margin-top: 8px;
  padding: 11px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 10px;
  align-items: center;
  border: 1px solid #ebedf2;
  border-radius: 15px;
  background: white;
}

.mini-avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--green-soft);
  color: #2a6b09;
  font-size: .68rem;
  font-weight: 800;
}

.mini-avatar.lavender {
  background: #ece9ff;
  color: #584ac2;
}

.mini-trip-main > div:first-child {
  display: flex;
  align-items: center;
  gap: 5px;
}

.mini-trip-main strong {
  font-size: .68rem;
}

.mini-trip-main small,
.mini-route {
  color: var(--muted);
  font-size: .56rem;
}

.verified-dot {
  width: 14px;
  height: 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--purple);
  color: white;
  font-size: .48rem;
}

.mini-route {
  margin-top: 3px;
  display: flex;
  gap: 5px;
}

.mini-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.mini-price strong {
  font-size: .78rem;
}

.mini-price small {
  color: var(--muted);
  font-size: .5rem;
}

.bottom-nav {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  min-height: 58px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  border-radius: 18px;
  background: white;
  box-shadow: 0 10px 30px rgba(27,34,48,.08);
}

.bottom-nav > span {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #9aa0ad;
  font-size: .9rem;
}

.bottom-nav small {
  margin-top: 2px;
  font-size: .46rem;
}

.bottom-nav .active {
  color: var(--purple);
}

.bottom-nav .center-action {
  width: 42px;
  height: 42px;
  margin: auto;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--green);
  color: var(--dark);
  font-size: 1.35rem;
}

.floating-chip {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 45px rgba(27,34,50,.12);
}

.chip-verified {
  left: -8px;
  top: 115px;
  padding: 13px 15px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.chip-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--green);
  font-weight: 800;
}

.chip-verified > span:last-child {
  display: flex;
  flex-direction: column;
}

.floating-chip small {
  color: var(--muted);
  font-size: .58rem;
}

.floating-chip strong {
  font-size: .72rem;
}

.chip-price {
  right: -18px;
  bottom: 120px;
  padding: 13px 16px;
  display: flex;
  flex-direction: column;
}

.chip-price span {
  margin-top: 3px;
  color: var(--purple);
  font-size: .65rem;
  font-weight: 800;
}

.city-strip {
  padding: 22px 0;
  border-block: 1px solid var(--line);
  background: white;
}

.city-strip-inner {
  display: flex;
  justify-content: space-between;
  gap: 35px;
  align-items: center;
}

.city-strip-inner > span {
  color: var(--muted);
  font-size: .8rem;
}

.city-scroll {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 25px;
  font-size: .76rem;
}

.section {
  padding: 110px 0;
}

.section-kicker {
  margin-bottom: 16px;
  color: var(--purple);
}

.split-heading {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 70px;
  align-items: end;
}

.section-heading h2,
.feature-copy h2,
.freight-copy h2,
.download-copy h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -.06em;
}

.section-heading p,
.feature-copy > p,
.freight-copy > p,
.download-copy > p {
  color: var(--muted);
}

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

.how-card {
  position: relative;
  min-height: 430px;
  padding: 30px;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.dark-card {
  background: var(--dark);
  color: white;
}

.accent-card {
  background: var(--purple);
  color: white;
}

.light-card {
  border: 1px solid var(--line);
  background: white;
}

.how-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: rgba(255,255,255,.45);
  font-size: .75rem;
  font-weight: 800;
}

.light-card .how-number {
  color: #a2a8b5;
}

.how-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 70px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255,255,255,.12);
  color: var(--green);
  font-size: 1.4rem;
}

.light-card .how-icon {
  background: var(--green-soft);
  color: #317c0d;
}

.how-card h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1.4rem;
}

.how-card > p {
  margin-top: 10px;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
}

.light-card > p {
  color: var(--muted);
}

.card-preview,
.offer-preview,
.week-preview {
  margin-top: 34px;
}

.card-preview {
  padding: 17px;
  border-radius: 17px;
  background: rgba(255,255,255,.08);
}

.preview-route {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
}

.preview-route .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.preview-route .green {
  background: var(--green);
}

.preview-route .white {
  background: white;
}

.preview-route .line {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,.35),
    rgba(255,255,255,.35) 7px,
    transparent 7px,
    transparent 13px
  );
}

.preview-meta {
  margin-top: 13px;
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.6);
  font-size: .62rem;
}

.offer-preview {
  padding: 16px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  border-radius: 17px;
  background: rgba(255,255,255,.14);
}

.offer-user {
  display: flex;
  gap: 9px;
  align-items: center;
}

.offer-user > div:last-child,
.offer-amount {
  display: flex;
  flex-direction: column;
}

.offer-preview small {
  color: rgba(255,255,255,.65);
  font-size: .58rem;
}

.offer-preview b {
  font-size: .72rem;
}

.week-preview {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.week-preview span {
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #f0f3f7;
  color: var(--muted);
  font-size: .62rem;
  font-weight: 800;
}

.week-preview span.active {
  background: var(--dark);
  color: var(--green);
}

.feature-section {
  background: #e9edf4;
}

.feature-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 75px;
  align-items: center;
}

.feature-copy > p,
.freight-copy > p {
  margin-top: 22px;
  max-width: 620px;
}

.feature-list {
  margin-top: 36px;
}

.feature-item {
  min-height: 92px;
  padding: 20px 0;
  display: grid;
  grid-template-columns: 42px 1fr 28px;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid rgba(16,22,35,.12);
}

.feature-index {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: white;
  font-size: .65rem;
  font-weight: 800;
}

.feature-item h3 {
  font-size: 1rem;
}

.feature-item p {
  margin-top: 4px;
  color: var(--muted);
  font-size: .8rem;
}

.feature-arrow {
  color: var(--purple);
  font-weight: 800;
}

.feature-visual {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
}

.dashboard-card {
  width: min(100%, 560px);
  padding: 26px;
  border-radius: 30px;
  background: var(--dark);
  color: white;
  box-shadow: 0 40px 85px rgba(13,19,33,.24);
}

.dash-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.dash-top small,
.dash-label span,
.request-card small {
  color: #9ba4b4;
  font-size: .68rem;
}

.dash-top h3 {
  margin-top: 4px;
  font-family: "Manrope", sans-serif;
  font-size: 1.4rem;
}

.status-badge {
  align-self: flex-start;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(140,255,79,.12);
  color: var(--green);
  font-size: .62rem;
  font-weight: 800;
}

.dash-stats {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dash-stats > div {
  padding: 18px;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  background: var(--dark-soft);
}

.dash-stats strong {
  margin-top: 8px;
  font-size: 1.8rem;
}

.dash-stats span {
  color: var(--green);
  font-size: .65rem;
}

.dash-actions {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dash-actions button {
  padding: 13px;
  border: 0;
  border-radius: 13px;
  background: var(--green);
  color: var(--dark);
  font-size: .7rem;
  font-weight: 800;
}

.dash-actions button:last-child {
  background: white;
}

.dash-label {
  margin: 25px 2px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.request-card {
  padding: 18px;
  border-radius: 20px;
  background: white;
  color: var(--dark);
}

.request-route {
  display: grid;
  grid-template-columns: 10px 1fr 24px 10px 1fr;
  gap: 8px;
  align-items: center;
}

.request-route div {
  display: flex;
  flex-direction: column;
}

.route-bullet {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-strong);
}

.route-bullet.destination {
  background: var(--purple);
}

.route-arrow {
  color: #9da4b1;
}

.request-tags {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.request-tags span {
  padding: 7px 9px;
  border-radius: 999px;
  background: #f1f3f7;
  color: #606777;
  font-size: .58rem;
  font-weight: 700;
}

.request-footer {
  margin-top: 18px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eceef3;
}

.request-footer div {
  display: flex;
  flex-direction: column;
}

.request-footer button {
  padding: 10px 13px;
  border: 0;
  border-radius: 11px;
  background: var(--purple);
  color: white;
  font-size: .65rem;
  font-weight: 800;
}

.floating-review {
  position: absolute;
  left: -5px;
  bottom: 15px;
  width: 260px;
  padding: 18px;
  border-radius: 20px;
  background: white;
  box-shadow: var(--shadow);
}

.review-stars {
  color: #ffb02e;
  letter-spacing: .05em;
  font-size: .75rem;
}

.floating-review p {
  margin-top: 8px;
  font-size: .77rem;
  font-weight: 600;
}

.floating-review span {
  color: var(--muted);
  font-size: .6rem;
}

.safety-section {
  background: var(--dark);
  color: white;
}

.centered-heading {
  max-width: 730px;
  margin: 0 auto 50px;
  text-align: center;
}

.centered-heading p {
  margin-top: 18px;
  color: #aeb6c5;
}

.light-kicker {
  color: var(--green);
}

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

.safety-grid article {
  min-height: 250px;
  padding: 25px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  background: rgba(255,255,255,.04);
}

.safety-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 58px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--green);
  color: var(--dark);
  font-weight: 800;
}

.safety-grid h3 {
  font-size: 1rem;
}

.safety-grid p {
  margin-top: 9px;
  color: #aeb6c5;
  font-size: .82rem;
}

.freight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
  align-items: center;
}

.freight-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 20% 20%, rgba(140,255,79,.35), transparent 30%),
    linear-gradient(135deg, #dffdcf, #f3f9ef);
}

.package-card {
  position: absolute;
  width: min(78%, 390px);
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow);
}

.package-main {
  top: 90px;
  left: 60px;
  padding: 17px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 13px;
  align-items: center;
}

.package-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--dark);
  color: var(--green);
  font-size: 1.25rem;
}

.package-main div:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.package-main small,
.package-main > span {
  color: var(--muted);
  font-size: .65rem;
}

.package-main strong {
  font-size: .82rem;
}

.package-details {
  right: 55px;
  bottom: 70px;
  padding: 20px;
}

.detail-row {
  padding: 11px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eceef2;
  font-size: .74rem;
}

.detail-row span {
  color: var(--muted);
}

.package-details button {
  width: 100%;
  margin-top: 17px;
  padding: 12px;
  border: 0;
  border-radius: 12px;
  background: var(--purple);
  color: white;
  font-weight: 800;
}

.cargo-chip {
  position: absolute;
  right: 28px;
  top: 34px;
  padding: 10px 13px;
  display: flex;
  gap: 8px;
  align-items: center;
  border-radius: 999px;
  background: var(--dark);
  color: white;
  font-size: .68rem;
  font-weight: 700;
}

.cargo-chip span {
  color: var(--green);
}

.freight-points {
  margin-top: 34px;
}

.freight-points > div {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.freight-points span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--dark);
  color: var(--green);
  font-size: .62rem;
  font-weight: 800;
}

.freight-points p {
  color: var(--muted);
  font-size: .86rem;
}

.download-section {
  padding: 15px 0 110px;
}

.download-panel {
  min-height: 520px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 50px;
  align-items: center;
  overflow: hidden;
  border-radius: 40px;
  background:
    radial-gradient(circle at 80% 20%, rgba(140,255,79,.18), transparent 27%),
    var(--purple);
  color: white;
}

.download-copy > p {
  max-width: 650px;
  margin-top: 20px;
  color: rgba(255,255,255,.72);
}

.store-row {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-button {
  min-width: 185px;
  padding: 12px 16px;
  display: flex;
  gap: 11px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 15px;
  background: var(--dark);
}

.store-icon {
  font-size: 1.5rem;
}

.store-button > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.store-button small {
  color: rgba(255,255,255,.65);
  font-size: .56rem;
}

.store-button strong {
  font-size: .92rem;
}

.download-shape {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.download-shape::before,
.download-shape::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
}

.download-shape::before {
  width: 420px;
  height: 420px;
}

.download-shape::after {
  width: 300px;
  height: 300px;
}

.shape-phone {
  position: relative;
  z-index: 2;
  width: 230px;
  height: 430px;
  padding: 9px;
  transform: rotate(8deg);
  border-radius: 38px;
  background: var(--dark);
  box-shadow: 0 35px 70px rgba(21,15,70,.28);
}

.shape-screen {
  height: 100%;
  padding: 42px 24px 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 20%, rgba(140,255,79,.28), transparent 28%),
    linear-gradient(180deg, #f3f6fb, #ffffff);
  color: var(--dark);
}

.shape-logo {
  width: 54px;
  height: 54px;
  margin-bottom: auto;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: var(--dark);
  color: var(--green);
  font-family: "Manrope", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
}

.shape-screen h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1.65rem;
  line-height: 1.05;
}

.shape-screen p {
  margin-top: 8px;
  color: var(--muted);
  font-size: .76rem;
}

.shape-screen button {
  width: 100%;
  margin-top: 22px;
  padding: 12px;
  border: 0;
  border-radius: 12px;
  background: var(--green);
  color: var(--dark);
  font-weight: 800;
}

footer {
  padding: 70px 0 25px;
  background: white;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.footer-brand-block p {
  max-width: 380px;
  margin-top: 16px;
  color: var(--muted);
  font-size: .85rem;
}

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

.footer-columns > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-columns h4 {
  margin-bottom: 4px;
  font-size: .82rem;
}

.footer-columns a {
  color: var(--muted);
  font-size: .78rem;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .72rem;
}

@media (max-width: 980px) {
  .menu-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 77px;
    padding: 15px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 10px;
  }

  .hero-grid,
  .feature-grid,
  .freight-grid,
  .download-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-buttons,
  .hero-proof {
    justify-content: center;
  }

  .hero-app {
    min-height: 720px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .how-card {
    min-height: 350px;
  }

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

  .feature-visual {
    min-height: 700px;
  }

  .download-copy {
    text-align: center;
  }

  .store-row {
    justify-content: center;
  }

  .download-shape {
    min-height: 470px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 26px, 1180px);
  }

  .topbar {
    top: 10px;
  }

  .hero {
    min-height: auto;
    padding: 130px 0 70px;
  }

  .hero h1 {
    font-size: 3.55rem;
  }

  .hero-app {
    min-height: 650px;
  }

  .phone-frame {
    width: 292px;
    transform: scale(.92);
  }

  .floating-chip {
    display: none;
  }

  .orbit-one {
    width: 420px;
    height: 420px;
  }

  .orbit-two {
    width: 330px;
    height: 330px;
  }

  .city-strip-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .city-scroll {
    justify-content: flex-start;
    gap: 14px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading h2,
  .feature-copy h2,
  .freight-copy h2,
  .download-copy h2 {
    font-size: 2.65rem;
  }

  .feature-visual {
    min-height: 610px;
  }

  .dashboard-card {
    padding: 18px;
  }

  .dash-stats,
  .dash-actions {
    grid-template-columns: 1fr;
  }

  .floating-review {
    display: none;
  }

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

  .safety-grid article {
    min-height: 220px;
  }

  .freight-visual {
    min-height: 470px;
  }

  .package-main {
    left: 20px;
    width: calc(100% - 40px);
  }

  .package-details {
    right: 20px;
    width: calc(100% - 40px);
  }

  .cargo-chip {
    right: 18px;
    top: 22px;
  }

  .download-panel {
    padding: 40px 22px;
  }

  .store-row {
    flex-direction: column;
  }

  .store-button {
    width: 100%;
  }

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

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

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