:root {
  --canvas: #f7f4ed;
  --surface: #fffef9;
  --ink: #101310;
  --ink-soft: #333833;
  --muted: #697069;
  --green: #26d06f;
  --green-strong: #0a8c47;
  --green-deep: #075b31;
  --green-pale: #dff6e8;
  --warm: #f0d8c4;
  --orange: #d77a3b;
  --line: rgba(16, 19, 16, .14);
  --line-light: rgba(255, 255, 255, .18);
  --shadow: 0 24px 70px rgba(15, 23, 17, .14);
  --max: 1240px;
  --gutter: clamp(20px, 4vw, 52px);
  --radius: 28px;
  --radius-small: 15px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

.container {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.section { padding-block: clamp(92px, 11vw, 156px); }

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 16px;
  transform: translateY(-180%);
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  transition: transform .2s ease;
}

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

:focus-visible {
  outline: 3px solid var(--green-deep);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px #fffef9;
}

/* Navigation */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  padding-top: env(safe-area-inset-top);
  border-bottom: 1px solid transparent;
  background: rgba(247, 244, 237, .94);
  backdrop-filter: blur(18px) saturate(130%);
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(255, 254, 249, .96);
  box-shadow: 0 8px 32px rgba(14, 22, 16, .06);
}

.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  color: var(--ink);
  font-size: 1.48rem;
  font-weight: 950;
  letter-spacing: -.065em;
  line-height: 1;
  white-space: nowrap;
}

.brand .go { color: var(--green-strong); }
.brand-light { color: #fff; }
.brand-light .go { color: var(--green); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 34px);
  color: var(--ink-soft);
  font-size: .91rem;
  font-weight: 760;
}

.nav-links > a:not(.nav-cta) {
  position: relative;
  padding-block: 7px;
  transition: color .2s ease, transform .2s ease;
}
.nav-links > a:not(.nav-cta):hover,
.nav-links > a:not(.nav-cta):focus-visible {
  color: var(--green-deep);
  transform: translateY(-1px);
}

.nav-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible { border-color: var(--green); background: var(--green); color: #07110b; transform: translateY(-1px); }

.menu-button {
  min-width: 50px;
  min-height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .03em;
}

/* Shared elements */
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button.primary, .hero-primary { background: var(--green); border-color: var(--green); color: #07110b; }
.button.primary:hover, .hero-primary:hover { background: #fff; border-color: #fff; }
.button.secondary { border-color: var(--line); background: transparent; color: var(--ink); }
.button.secondary:hover { border-color: var(--ink); }

.section-kicker,
.section-label {
  margin: 0 0 20px;
  color: var(--green-deep);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.section-kicker.light { color: #75f3ab; }

.editorial-heading {
  max-width: 930px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(250px, .55fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: end;
  margin-bottom: clamp(54px, 8vw, 98px);
}

.editorial-heading .section-kicker { grid-column: 1 / -1; margin-bottom: -15px; }

.editorial-heading h2,
.service-story h2,
.app-copy h2,
.product-copy h2,
.zimbabwe-copy h2,
.trust h2,
.how h2,
.download h2,
.legal-hero h1 {
  margin: 0;
  font-size: clamp(3.15rem, 6vw, 6.25rem);
  line-height: .93;
  letter-spacing: -.072em;
  text-wrap: balance;
}

.editorial-heading > p:last-child,
.service-story-copy > p:not(.section-kicker),
.app-copy > p,
.product-copy > p,
.zimbabwe-copy > p,
.trust-copy > p,
.download-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.45vw, 1.2rem);
  line-height: 1.55;
}

.story-link {
  position: relative;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  padding: 9px 13px;
  border: 1px solid rgba(16, 19, 16, .12);
  border-radius: 999px;
  background: rgba(255,255,255,.38);
  color: var(--ink);
  font-weight: 850;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.story-link::before,
.story-link::after {
  content: none;
}

.story-link:hover,
.story-link:focus-visible {
  border-color: rgba(10, 140, 71, .28);
  background: rgba(223, 246, 232, .62);
  color: var(--green-deep);
  transform: translateY(-1px);
}
.story-link span { transition: transform .2s ease; }
.story-link:hover span { transform: translateX(4px); }
.story-link-light { color: #fff; }
.story-link-light:hover,
.story-link-light:focus-visible { color: #101310; }

/* Hero */
.hero-cinematic {
  position: relative;
  min-height: min(820px, calc(100svh - 72px));
  overflow: hidden;
  isolation: isolate;
  background: #172019;
  color: #fff;
}

.hero-cinematic-media,
.hero-cinematic-media img,
.hero-cinematic-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-cinematic-media img {
  object-fit: cover;
  object-position: center center;
  transform: scale(1.015);
  animation: hero-settle 1.4s cubic-bezier(.2,.72,.24,1) both;
}

.hero-cinematic-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 13, 10, .84) 0%, rgba(8, 13, 10, .58) 37%, rgba(8, 13, 10, .08) 72%),
    linear-gradient(0deg, rgba(8, 13, 10, .58) 0%, transparent 38%);
}

.hero-cinematic-content {
  position: relative;
  z-index: 2;
  min-height: min(820px, calc(100svh - 72px));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: clamp(88px, 12vw, 156px);
}

.hero-wordmark {
  margin: 0 0 26px;
  color: #fff;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 950;
  letter-spacing: -.06em;
}

.hero-wordmark span { color: var(--green); }

.hero-cinematic h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(4.2rem, 8.8vw, 8.4rem);
  line-height: .86;
  letter-spacing: -.078em;
  text-wrap: balance;
}

.hero-cinematic-content > p:not(.hero-wordmark) {
  max-width: 520px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.5;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.hero-service-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: clamp(22px, 4vw, 44px);
}
.hero-service-proof span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.78);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-truth { position: absolute; z-index: 2; right: max(var(--gutter), calc((100vw - var(--max)) / 2)); bottom: 27px; margin: 0; color: rgba(255,255,255,.72); font-size: .82rem; }

@keyframes hero-settle { from { opacity: .72; transform: scale(1.06); } to { opacity: 1; transform: scale(1.015); } }

/* Product focus */
.product-focus {
  overflow: hidden;
  background: linear-gradient(180deg, var(--surface) 0%, var(--canvas) 100%);
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: clamp(58px, 9vw, 138px);
  align-items: center;
}

.product-copy {
  align-self: start;
  padding-top: clamp(6px, 2vw, 26px);
}

.product-copy h2 { max-width: 610px; }
.product-copy > p { max-width: 500px; margin-top: 28px; }
.product-tabs { margin-top: 34px; }
.product-panels { min-height: 220px; margin-top: 34px; }

.product-panel h3 {
  max-width: 460px;
  margin: 0;
  font-size: clamp(1.55rem, 2.6vw, 2.55rem);
  letter-spacing: -.055em;
  line-height: 1.02;
}

.product-panel p {
  max-width: 455px;
  margin: 18px 0 0;
  color: var(--muted);
}

.product-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.product-signals li {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.56);
  color: var(--ink-soft);
  font-size: .74rem;
  font-weight: 850;
}

.product-visual {
  display: grid;
  grid-template-columns: minmax(260px, .82fr) minmax(210px, .58fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: center;
}

.product-focus .device-stage { min-height: 620px; }

.product-scenes {
  display: grid;
  gap: 14px;
  align-self: stretch;
}

.scene-strip {
  position: relative;
  min-height: 176px;
  overflow: hidden;
  margin: 0;
  background: #0d120f;
}

.scene-strip:first-child {
  min-height: 236px;
  margin-top: 34px;
}

.scene-strip:nth-child(2) { margin-left: clamp(0px, 3vw, 40px); }
.scene-strip:nth-child(3) { margin-right: clamp(0px, 3vw, 44px); }

.scene-strip img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: .88;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), opacity .3s ease;
}

.scene-strip:hover img {
  transform: scale(1.035);
  opacity: .96;
}

.scene-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(6,10,7,.72));
}

.scene-strip figcaption {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 16px;
  left: 18px;
  color: #fff;
  font-size: clamp(1.08rem, 1.7vw, 1.5rem);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.05;
}

/* Three worlds */
.worlds { background: var(--canvas); }
.worlds-list {
  display: grid;
  grid-template-columns: 1.12fr .92fr 1.04fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
}

.world {
  min-height: clamp(310px, 29vw, 420px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: clamp(10px, 2vw, 24px) 0;
  color: var(--ink);
}

.world-eat { transform: translateY(-34px); }
.world-send { transform: translateY(26px); }
.world-verb {
  font-size: clamp(3.6rem, 8.4vw, 8.6rem);
  font-weight: 950;
  letter-spacing: -.08em;
  line-height: .78;
  text-transform: uppercase;
  transition: transform .28s ease, color .28s ease;
}
.world-name {
  margin-top: 23px;
  color: var(--green-deep);
  font-size: clamp(1.18rem, 2vw, 1.62rem);
  font-weight: 850;
}
.world-note {
  max-width: 290px;
  margin-top: 17px;
  color: var(--muted);
}
.world-action {
  position: relative;
  margin-top: 30px;
  padding-bottom: 9px;
  color: var(--ink);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.world-action::before,
.world-action::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
}
.world-action::after {
  transform: scaleX(.24);
  transform-origin: left;
  background: var(--green-strong);
  transition: transform .28s ease;
}
.world:hover .world-verb,
.world:focus-visible .world-verb { transform: translateX(10px); color: #1d231e; }
.world:hover .world-action::after,
.world:focus-visible .world-action::after { transform: scaleX(1); }

/* Service stories */
.service-story {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, .88fr);
  align-items: stretch;
  overflow: hidden;
}

.service-story-media { position: relative; min-height: 620px; overflow: hidden; }
.service-story-media picture,
.service-story-media img { width: 100%; height: 100%; }
.service-story-media img { object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.service-story:hover .service-story-media img { transform: scale(1.018); }

.service-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(64px, 8vw, 132px);
}

.service-story-copy h2 { max-width: 620px; }
.service-story-copy > p { max-width: 540px; margin-top: 30px; }

.rides-story { background: #111712; color: #fff; }
.rides-story .service-story-media { margin: clamp(30px, 4vw, 64px) 0 clamp(30px, 4vw, 64px) clamp(30px, 4vw, 64px); border-radius: var(--radius); }
.rides-story .service-story-copy > p { color: rgba(255,255,255,.68); }

.ui-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 22px;
  background: rgba(255, 254, 249, .94);
  color: var(--ink);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.ride-search-card { right: 26px; bottom: 26px; width: min(320px, calc(100% - 40px)); padding: 22px; }
.ride-search-card > p { margin: 0 0 14px; font-size: 1.2rem; font-weight: 900; }
.ride-search-card > div { display: grid; gap: 2px; padding: 10px 0; border-top: 1px solid var(--line); }
.ride-search-card span, .ride-search-card small { color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.ride-search-card strong { font-size: .88rem; }
.ride-search-card .ui-action,
.phone-button { width: 100%; min-height: 42px; display: grid; place-items: center; margin-top: 14px; border-radius: 999px; background: var(--green); font-size: .78rem; font-weight: 900; }
.phone-button { box-shadow: 0 12px 26px rgba(10,140,71,.2); }
.ride-search-card .ui-action { color: var(--ink); letter-spacing: 0; text-transform: none; }

.feature-line { display: flex; flex-wrap: wrap; gap: 9px; margin: 34px 0 0; padding: 0; list-style: none; }
.feature-line li { padding: 7px 11px; border: 1px solid rgba(255,255,255,.22); border-radius: 999px; color: rgba(255,255,255,.78); font-size: .75rem; }

.food-story { grid-template-columns: minmax(400px, .82fr) minmax(0, 1.18fr); background: #f7eadf; }
.food-story .service-story-copy > p:not(.section-kicker),
.courier-story .service-story-copy > p:not(.section-kicker) { color: #555b55; }
.food-story .service-story-copy { order: 1; }
.food-story .service-story-media { order: 2; margin: clamp(30px, 4vw, 64px) clamp(30px, 4vw, 64px) clamp(30px, 4vw, 64px) 0; border-radius: 55% 22px 22px 22px; }

.food-journey { display: flex; align-items: center; gap: 10px; margin-top: 36px; color: #5f554e; font-size: .78rem; font-weight: 850; }
.food-journey span.active { color: var(--ink); }
.food-journey i { width: clamp(20px, 3vw, 50px); height: 1px; background: #c7aa93; }

.food-status-card { right: 26px; bottom: 26px; display: grid; gap: 11px; padding: 17px 19px; }
.food-status-card .status-eyebrow {
  width: fit-content;
  display: inline-grid;
  gap: 7px;
  color: var(--green-deep);
  font-size: .62rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.food-status-card .status-eyebrow::after {
  content: none;
}
.food-status-card div { display: grid; gap: 1px; }
.food-status-card small { color: var(--muted); font-size: .67rem; text-transform: uppercase; letter-spacing: .08em; }
.food-status-card strong { font-size: .83rem; }

.courier-story { position: relative; grid-template-columns: minmax(0, 1fr) minmax(390px, 1fr); background: var(--green-pale); }
.courier-story .service-story-media { margin: clamp(30px, 4vw, 64px) 0 clamp(30px, 4vw, 64px) clamp(30px, 4vw, 64px); border-radius: 22px 22px 55% 22px; }
.courier-story .service-story-copy { position: relative; z-index: 2; }

.courier-points { display: grid; gap: 18px; max-width: 410px; margin-top: 38px; }
.courier-point-row {
  display: grid;
  grid-template-columns: 4px 1fr;
  column-gap: 17px;
  align-items: center;
  padding-block: 3px;
}
.point-accent { grid-row: 1 / span 2; width: 4px; height: 46px; align-self: center; background: var(--green-deep); }
.dropoff-row .point-accent { background: var(--orange); }
.courier-point-row small,
.courier-point-row strong { grid-column: 2; }
.courier-point-row small { color: var(--ink-soft); font-size: .7rem; font-weight: 900; letter-spacing: .13em; }
.courier-point-row strong { font-size: 1.08rem; line-height: 1.18; }

/* App experience */
.app-experience { overflow: hidden; background: var(--surface); }
.app-experience-grid { min-height: 760px; display: grid; grid-template-columns: minmax(360px, .8fr) minmax(420px, 1.2fr); gap: clamp(70px, 10vw, 160px); align-items: center; }
.app-copy h2 { max-width: 660px; }
.app-copy > p { max-width: 500px; margin-top: 30px; }

.app-tabs { display: flex; gap: 8px; margin-top: 38px; }
.app-tabs button { min-width: 88px; min-height: 43px; border: 1px solid var(--line); border-radius: 999px; background: transparent; font-weight: 850; cursor: pointer; }
.app-tabs button[aria-selected="true"] { border-color: var(--ink); background: var(--ink); color: #fff; }

.device-stage { position: relative; min-height: 680px; display: grid; place-items: center; perspective: 1400px; }
.device-stage::before {
  content: "";
  position: absolute;
  width: min(370px, 68vw);
  height: 54px;
  transform: translate(30px, 286px) rotate(-5deg);
  border-radius: 50%;
  background: rgba(12, 15, 13, .18);
  filter: blur(22px);
}

.phone-shell {
  position: relative;
  width: min(326px, 70vw);
  aspect-ratio: .472;
  padding: 11px;
  border: 1px solid #1b211d;
  border-radius: 56px;
  background:
    linear-gradient(100deg, rgba(255,255,255,.2), rgba(255,255,255,0) 19% 78%, rgba(255,255,255,.14)),
    linear-gradient(145deg, #2b312c 0%, #080a08 45%, #1b201c 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.16),
    inset 0 0 0 4px rgba(0,0,0,.28),
    inset -12px -18px 30px rgba(0,0,0,.42),
    inset 10px 12px 28px rgba(255,255,255,.08),
    0 54px 105px rgba(16, 19, 16, .26),
    0 18px 34px rgba(16, 19, 16, .2);
}

.phone-shell::before {
  content: "";
  position: absolute;
  inset: 6px;
  z-index: 3;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.36);
  pointer-events: none;
}

.phone-shell::after {
  content: "";
  position: absolute;
  inset: 13px 15px auto 17px;
  z-index: 4;
  height: 46%;
  border-radius: 42px 42px 18px 18px;
  background: linear-gradient(115deg, rgba(255,255,255,.18), rgba(255,255,255,0) 34%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.phone-main { z-index: 2; transform: rotateY(-4.5deg) rotateX(1.5deg) rotateZ(1deg); transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.device-stage:hover .phone-main { transform: rotateY(-2.5deg) rotateX(1deg) rotateZ(.4deg) translateY(-5px); }
.phone-side-button {
  position: absolute;
  z-index: 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #202620, #070907 52%, #20251f);
  box-shadow: inset 1px 0 0 rgba(255,255,255,.16);
}
.phone-action-button { top: 118px; left: -4px; height: 38px; }
.phone-volume-button { top: 174px; left: -4px; height: 76px; }
.phone-power-button { top: 168px; right: -4px; height: 88px; box-shadow: inset -1px 0 0 rgba(255,255,255,.16); }
.phone-sensor {
  position: absolute;
  z-index: 5;
  top: 22px;
  left: 50%;
  width: 94px;
  height: 27px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle at 74% 49%, #172019 0 4px, #070807 5px), #030403;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.08),
    inset 0 -5px 8px rgba(255,255,255,.03),
    0 2px 3px rgba(0,0,0,.18);
}
.phone-sensor::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 12px;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
}
.phone-sensor::after { content: ""; position: absolute; top: 9px; right: 19px; width: 8px; height: 8px; border-radius: 50%; background: radial-gradient(circle at 35% 32%, #314237, #111912 65%); }

.phone-screen { position: relative; height: 100%; overflow: hidden; padding: 58px 20px 22px; border: 1px solid rgba(255,255,255,.08); border-radius: 45px; background: radial-gradient(circle at 85% 8%, rgba(223,246,232,.72), transparent 0 42px), #fbfaf5; color: var(--ink); box-shadow: inset 0 0 0 1px rgba(16,19,16,.06), inset 0 18px 34px rgba(255,255,255,.72), inset 0 -18px 28px rgba(11,15,12,.04); }
.phone-screen::before { content: ""; position: absolute; inset: 0 0 auto; height: 135px; background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,0)); pointer-events: none; }
.phone-screen > * { position: relative; z-index: 1; }
.phone-top { display: flex; align-items: center; justify-content: space-between; font-size: .88rem; font-weight: 950; letter-spacing: -.05em; }
.phone-brand { display: inline-flex; align-items: baseline; white-space: nowrap; }
.phone-brand .go { color: var(--green-deep); }
.phone-top i { width: 26px; height: 26px; border-radius: 50%; background: #dce3dd; }
.phone-greeting { margin: 32px 0 22px; font-size: 1.6rem; font-weight: 900; letter-spacing: -.05em; line-height: 1.05; }
.phone-route { display: grid; grid-template-columns: 12px 1fr; gap: 10px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); }
.phone-route > span { width: 10px; height: 10px; border: 3px solid var(--green-strong); border-radius: 50%; }
.phone-route.destination > span { border-color: var(--orange); }
.phone-route div { display: grid; gap: 1px; }
.phone-route small, .phone-mini-card small { color: var(--muted); font-size: .59rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.phone-route strong, .phone-mini-card strong { font-size: .73rem; line-height: 1.15; }
.phone-mini-card { display: flex; align-items: center; gap: 10px; margin-top: 16px; padding: 13px; border-radius: 16px; background: #fff; box-shadow: 0 9px 22px rgba(17,25,19,.07); }
.phone-mini-card i { width: 34px; height: 34px; flex: 0 0 auto; border-radius: 12px; background: var(--green-pale); }
.phone-mini-card span { display: grid; gap: 1px; }
.phone-chips { display: flex; gap: 7px; overflow: hidden; }
.phone-chips span { padding: 7px 10px; border-radius: 999px; background: #eee4d8; font-size: .65rem; font-weight: 800; }
.phone-food-hero { min-height: 190px; display: flex; flex-direction: column; justify-content: flex-end; margin-top: 16px; padding: 18px; border-radius: 24px; background: linear-gradient(145deg, #8c3f21, #e39a59); color: #fff; }
.phone-food-hero small { font-size: .65rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.phone-food-hero strong { max-width: 190px; margin-top: 4px; font-size: 1.25rem; line-height: 1.06; }
.phone-map { position: relative; height: 160px; overflow: hidden; margin: 0 -18px 10px; background: #e7eee7; }
.map-road { position: absolute; width: 120%; height: 24px; left: -10%; background: #fff; transform: rotate(-19deg); }
.map-road.one { top: 55px; }
.map-road.two { top: 92px; transform: rotate(23deg); }
.map-pin { position: absolute; top: 66px; left: 50%; width: 18px; height: 24px; transform: translateX(-50%) rotate(45deg); border-radius: 50% 50% 50% 0; background: var(--green-strong); box-shadow: 0 7px 13px rgba(0,0,0,.2); }

/* Zimbabwe */
.zimbabwe-story { position: relative; overflow: hidden; padding-block: clamp(100px, 12vw, 180px); background: #0d321f; color: #fff; }
.zimbabwe-grid { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 9vw, 130px); align-items: center; }
.zim-word {
  color: transparent;
  font-size: clamp(10rem, 23vw, 22rem);
  font-weight: 950;
  letter-spacing: -.13em;
  line-height: .7;
  background:
    linear-gradient(90deg,
      rgba(35, 145, 70, .8) 0 18%,
      rgba(244, 207, 63, .82) 18% 33%,
      rgba(211, 51, 49, .78) 33% 48%,
      rgba(20, 20, 20, .86) 48% 62%,
      rgba(255, 255, 255, .82) 62% 76%,
      rgba(244, 207, 63, .72) 76% 88%,
      rgba(35, 145, 70, .76) 88% 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-stroke: 1px rgba(255,255,255,.25);
  opacity: .52;
}
.zimbabwe-copy { position: relative; z-index: 2; }
.zimbabwe-copy > p { max-width: 520px; margin-top: 30px; color: rgba(255,255,255,.68); }
.zimbabwe-lines { position: absolute; inset: -160px -20vw -160px auto; width: 52%; opacity: .3; transform: rotate(-12deg); }
.zimbabwe-lines span { display: block; height: 1px; margin: 110px 0; background: linear-gradient(90deg, transparent, var(--green), transparent); }

/* Partners */
.partners { background: var(--canvas); }
.partner-heading { margin-bottom: 58px; }
.partner-paths { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4.2vw, 62px); align-items: start; }
.partner-path { position: relative; min-height: 305px; display: flex; flex-direction: column; padding-top: 0; }
.partner-courier { margin-top: 34px; }
.partner-merchant { margin-top: 10px; }
.partner-path::before {
  content: none;
}
.partner-path > span {
  display: grid;
  gap: 7px;
  color: #555b55;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.partner-path > span em {
  color: var(--ink);
  font-size: clamp(2rem, 3.9vw, 4.05rem);
  font-style: normal;
  font-weight: 950;
  letter-spacing: -.075em;
  line-height: .84;
}
.partner-path h3 { margin: auto 0 14px; font-size: clamp(1.55rem, 2.35vw, 2.55rem); line-height: 1; letter-spacing: -.055em; }
.partner-path p { min-height: 74px; margin: 0; color: #555b55; }
.partner-path a {
  position: relative;
  width: fit-content;
  margin-top: 26px;
  padding: 9px 13px;
  border: 1px solid rgba(16, 19, 16, .12);
  border-radius: 999px;
  background: rgba(255,255,255,.34);
  font-weight: 850;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.partner-path a::after {
  content: none;
}
.partner-path a:hover,
.partner-path a:focus-visible {
  border-color: rgba(10, 140, 71, .24);
  background: rgba(223, 246, 232, .58);
  color: var(--green-deep);
  transform: translateY(-1px);
}

.sponsor-ledger {
  display: grid;
  grid-template-columns: minmax(230px, .52fr) minmax(0, 1.48fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  margin-top: clamp(54px, 8vw, 104px);
  padding-top: 0;
}

.sponsor-intro {
  position: sticky;
  top: 126px;
}

.sponsor-intro h3 {
  max-width: 360px;
  margin: 15px 0 0;
  font-size: clamp(1.9rem, 3.2vw, 3.35rem);
  letter-spacing: -.065em;
  line-height: .96;
}

.sponsor-intro p:not(.section-kicker) {
  max-width: 390px;
  margin-top: 24px;
  color: var(--muted);
}

.sponsor-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  overflow: visible;
  border-block: 0;
  background: transparent;
}

.sponsor-logo {
  position: relative;
  min-height: clamp(102px, 9vw, 124px);
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 12px;
  place-items: center;
  margin: 0;
  padding: clamp(14px, 2vw, 20px);
  border: 1px solid rgba(16, 19, 16, .12);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(16, 19, 16, .045);
  isolation: isolate;
}

.sponsor-logo::before {
  content: none;
}

.sponsor-logo-dark {
  background: #101310;
  color: rgba(255,255,255,.66);
}

.sponsor-logo-light {
  background: #fffdf8;
  color: #626862;
}

.sponsor-logo img {
  display: block;
  width: auto;
  max-width: min(82%, 210px);
  max-height: 58px;
  object-fit: contain;
}

.sponsor-logo-square img {
  max-height: 72px;
}

.sponsor-logo figcaption {
  position: static;
  margin: 0;
  font-size: .58rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .76;
}

/* Trust */
.trust { background: var(--surface); }
.trust-layout { display: grid; grid-template-columns: minmax(340px, .8fr) minmax(500px, 1.2fr); gap: clamp(70px, 11vw, 170px); align-items: start; }
.trust-copy { position: sticky; top: 130px; }
.trust-copy > p { max-width: 470px; margin-top: 28px; }
.trust-link {
  position: relative;
  border-bottom: 0;
}
.trust-link::after {
  content: none;
}
.trust-principles { display: grid; gap: clamp(36px, 5vw, 76px); padding-top: 8px; }
.trust-principles article {
  max-width: 610px;
  display: grid;
  gap: 13px;
}
.trust-principles article:nth-child(2) { margin-left: clamp(34px, 7vw, 118px); }
.trust-principles article:nth-child(3) { margin-left: clamp(12px, 3vw, 54px); }
.trust-principles h3 {
  margin: 0;
  font-size: clamp(2.7rem, 6.5vw, 6.8rem);
  font-weight: 950;
  letter-spacing: -.085em;
  line-height: .8;
  text-transform: uppercase;
}
.trust-principles p { max-width: 430px; margin: 0; color: var(--muted); font-size: 1.02rem; }

.trust-compact {
  background: #101310;
  color: #fff;
}

.trust-compact-grid {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: clamp(42px, 8vw, 116px);
  align-items: end;
}

.trust-compact .trust-copy {
  position: static;
}

.trust-compact .trust-copy > p {
  color: rgba(255,255,255,.68);
}

.trust-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-signals li {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-bottom: 0;
  padding: 0;
  color: rgba(255,255,255,.9);
  font-size: clamp(1rem, 1.8vw, 1.42rem);
  font-weight: 880;
  letter-spacing: -.035em;
}

.trust-signals li + li::before {
  content: "/";
  margin-right: 16px;
  color: var(--green);
  font-weight: 760;
  opacity: .78;
}

/* How */
.how { background: var(--canvas); }
.how-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 75px; }
.how-heading h2 { font-size: clamp(3rem, 5vw, 5.3rem); }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.how-steps li { min-height: 280px; display: flex; flex-direction: column; padding: 30px clamp(24px, 3vw, 42px); border-right: 1px solid var(--line); }
.how-steps li:first-child { padding-left: 0; }
.how-steps li:last-child { border-right: 0; }
.how-steps span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: #fff; font-size: .8rem; font-weight: 900; }
.how-steps strong { margin-top: auto; font-size: 1.35rem; letter-spacing: -.03em; }
.how-steps p { margin: 10px 0 0; color: var(--muted); }

/* Download */
.download { position: relative; overflow: hidden; padding-block: clamp(100px, 14vw, 200px); background: #0f120f; color: #fff; }
.download-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.download-copy h2 { max-width: 670px; }
.download-copy > p { max-width: 460px; margin-top: 30px; color: rgba(255,255,255,.67); }
.store-links { display: flex; flex-wrap: wrap; align-items: center; gap: 13px; margin-top: 34px; }
.store-links a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: opacity .2s ease, transform .2s ease, box-shadow .2s ease;
}
.store-links a:hover { opacity: .9; transform: translateY(-2px); box-shadow: 0 15px 35px rgba(0,0,0,.22); }
.store-links img { width: auto; height: 46px; max-height: 50px; }
.store-availability { max-width: 460px; margin: 14px 0 0 !important; color: rgba(255,255,255,.56) !important; font-size: .78rem !important; }
.download-mark { justify-self: end; display: flex; flex-wrap: wrap; justify-content: flex-end; color: #fff; font-size: clamp(5rem, 11vw, 11rem); font-weight: 950; letter-spacing: -.09em; line-height: .72; }
.download-mark em { color: var(--green); font-style: normal; }
.download-orbit { position: absolute; border: 1px solid rgba(38,208,111,.2); border-radius: 50%; }
.orbit-one { right: -12vw; bottom: -38vw; width: 78vw; height: 78vw; }
.orbit-two { right: 12vw; bottom: -27vw; width: 52vw; height: 52vw; }

/* Footer */
.site-footer { padding: 82px 0 calc(28px + env(safe-area-inset-bottom)); background: #090b09; color: rgba(255,255,255,.7); }
.footer-lead { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--line-light); }
.footer-lead .brand { font-size: clamp(2rem, 4vw, 4rem); }
.footer-lead p { margin: 0; color: #fff; font-weight: 800; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: clamp(30px, 5vw, 80px); padding-block: 54px; }
.footer-lead + .footer-grid { grid-template-columns: repeat(4, 1fr); margin-left: 34%; }
.footer-col { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-col h3 { margin: 0 0 7px; color: #fff; font-size: .76rem; letter-spacing: .11em; text-transform: uppercase; }
.footer-col a { transition: color .2s ease; }
.footer-col a:hover { color: var(--green); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 24px; border-top: 1px solid var(--line-light); font-size: .8rem; }
.footer-bottom > div { display: flex; gap: 22px; }
.footer-bottom a:hover { color: #fff; }

/* Legal and support pages */
.legal-hero {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  padding: clamp(76px, 10vw, 140px) clamp(26px, 6vw, 78px) clamp(60px, 8vw, 105px);
  border-radius: 30px;
  background: #12261a;
  color: #fff;
}
.legal-hero::after { content: ""; position: absolute; right: -12%; bottom: -65%; width: 48vw; height: 48vw; border: 1px solid rgba(38,208,111,.28); border-radius: 50%; }
.legal-hero .container { position: relative; z-index: 1; }
.legal-hero .section-label { color: var(--green); }
.legal-hero h1 { max-width: 920px; }
.legal-hero > .container > p:not(.section-label):not(.legal-meta) { max-width: 780px; margin: 27px 0 0; color: rgba(255,255,255,.68); font-size: clamp(1.02rem, 1.5vw, 1.2rem); }
.legal-meta { margin: 26px 0 0; color: rgba(255,255,255,.54); font-size: .82rem; }
.kicker-link { display: inline-flex; margin-bottom: 24px; color: var(--green); font-size: .8rem; font-weight: 850; }

.legal-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: clamp(44px, 8vw, 105px); align-items: start; padding-block: clamp(70px, 9vw, 120px); }
.legal-toc { position: sticky; top: 108px; display: flex; flex-direction: column; gap: 9px; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.legal-toc strong { margin-bottom: 8px; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; }
.legal-toc a { color: var(--muted); font-size: .88rem; }
.legal-toc a:hover { color: var(--green-deep); }
.legal-content { min-width: 0; }
.legal-card { margin-bottom: 18px; padding: clamp(26px, 4vw, 48px); border: 1px solid var(--line); border-radius: 22px; background: var(--surface); }
.legal-card h2 { margin: 0 0 18px; font-size: clamp(1.55rem, 2.7vw, 2.35rem); line-height: 1.1; letter-spacing: -.045em; }
.legal-card h3 { margin: 28px 0 10px; font-size: 1.1rem; }
.legal-card p, .legal-card li { color: var(--ink-soft); }
.legal-card p:first-child { margin-top: 0; }
.legal-card p:last-child { margin-bottom: 0; }
.legal-card ul, .legal-card ol { padding-left: 20px; }
.legal-card a { color: var(--green-deep); text-decoration: underline; text-underline-offset: 3px; }
.notice { margin: 22px 0; padding: 18px 20px; border-left: 3px solid var(--green-strong); border-radius: 0 12px 12px 0; background: var(--green-pale); color: var(--ink-soft); }
.warning.notice { border-left-color: var(--orange); background: #f8e9dd; }
.policy-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.support-card { min-height: 220px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.support-card { transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.support-card:hover, .support-card:focus-visible { transform: translateY(-3px); border-color: rgba(10,140,71,.45); box-shadow: 0 18px 44px rgba(14,22,16,.08); }
.support-card h2, .support-card h3 { margin: 0 0 13px; font-size: 1.45rem; letter-spacing: -.035em; }
.support-card p { margin: 0 0 24px; color: var(--muted); }
.support-card a { width: fit-content; margin-top: auto; color: var(--green-deep); font-weight: 850; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; margin-bottom: 44px; }
.section-head h2 { margin: 0; font-size: clamp(2.2rem, 4vw, 4rem); line-height: 1; letter-spacing: -.06em; }
.section-intro { max-width: 520px; margin: 0; color: var(--muted); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.trust-item { padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.trust-item h3 { margin: 0 0 11px; font-size: 1.18rem; }
.trust-item p { margin: 0; color: var(--muted); }
.contact-strip { display: flex; align-items: center; justify-content: space-between; gap: 36px; padding: clamp(34px, 5vw, 58px); border-radius: 24px; background: var(--ink); color: #fff; }
.contact-strip h2, .contact-strip h3 { margin: 0 0 12px; font-size: clamp(2rem, 4vw, 3.8rem); line-height: 1; letter-spacing: -.055em; }
.contact-strip p { max-width: 600px; margin: 0; color: rgba(255,255,255,.64); }

.form-card { padding: clamp(26px, 4vw, 42px); border: 1px solid var(--line); border-radius: 22px; background: var(--surface); }
.inline-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; margin-bottom: 17px; }
.field label { font-size: .84rem; font-weight: 850; }
.field input, .field textarea, .field select { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid #707670; border-radius: 11px; background: #fff; color: var(--ink); }
.field textarea { min-height: 120px; resize: vertical; }

/* Progressive enhancement */
.js-ready .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.js-ready .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .service-story { min-height: 680px; grid-template-columns: 1fr 1fr; }
  .service-story-copy { padding: 60px; }
  .service-story h2 { font-size: clamp(3rem, 5.5vw, 5rem); }
  .product-grid { gap: 64px; }
  .product-visual { grid-template-columns: minmax(250px, .9fr) minmax(190px, .62fr); }
  .app-experience-grid { gap: 60px; }
  .trust-layout { gap: 70px; }
  .partner-path { min-height: 300px; }
}

@media (max-width: 980px) {
  .app-experience-grid,
  .trust-layout,
  .product-grid,
  .trust-compact-grid { grid-template-columns: 1fr; }
  .app-copy { max-width: 680px; }
  .trust-copy { position: static; }
  .product-copy { max-width: 720px; }
  .product-panels { min-height: 185px; }
  .product-visual { grid-template-columns: minmax(260px, .72fr) minmax(220px, .58fr); }
  .trust-signals { max-width: 760px; }
}

@media (max-width: 860px) {
  .editorial-heading { grid-template-columns: 1fr; gap: 22px; }
  .editorial-heading .section-kicker { margin-bottom: 0; }
  .worlds-list { grid-template-columns: 1fr; gap: 26px; }
  .world,
  .world-eat,
  .world-send { min-height: 0; transform: none; }
  .service-story { min-height: 0; grid-template-columns: 1fr; }
  .service-story-media { min-height: 560px; }
  .service-story-copy { min-height: 570px; padding: clamp(50px, 9vw, 80px) var(--gutter); }
  .rides-story .service-story-media,
  .courier-story .service-story-media { margin: 28px 28px 0; }
  .food-story .service-story-copy { order: 2; }
  .food-story .service-story-media { order: 1; margin: 28px 28px 0; }
  .app-experience-grid { grid-template-columns: 1fr; }
  .app-copy { max-width: 680px; }
  .product-visual { grid-template-columns: 1fr; }
  .product-focus .device-stage { min-height: 610px; }
  .product-scenes { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .scene-strip,
  .scene-strip:first-child { min-height: 210px; margin: 0; }
  .scene-strip:nth-child(2),
  .scene-strip:nth-child(3) { margin-inline: 0; }
  .device-stage { min-height: 650px; }
  .zimbabwe-grid { grid-template-columns: 1fr; }
  .zim-word { position: absolute; top: -30px; right: 0; opacity: .4; }
  .zimbabwe-copy { max-width: 620px; }
  .partner-paths { grid-template-columns: 1fr; gap: 34px; }
  .partner-path { min-height: 0; border-right: 0; border-bottom: 0; }
  .trust-layout { grid-template-columns: 1fr; }
  .trust-copy { position: static; }
  .how-steps { grid-template-columns: 1fr; }
  .how-steps li, .how-steps li:first-child { min-height: 210px; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .download-grid { grid-template-columns: 1fr; }
  .download-mark { justify-self: start; justify-content: flex-start; }
  .footer-lead + .footer-grid { margin-left: 0; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; display: grid; grid-template-columns: repeat(2, 1fr); }
  .legal-toc strong { grid-column: 1 / -1; }
  .support-grid, .trust-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --gutter: 20px; --radius: 20px; }
  html { scroll-padding-top: 72px; }
  .section { padding-block: 82px; }
  .nav-shell { min-height: 64px; }
  .brand { font-size: 1.3rem; }
  .menu-button {
    position: relative;
    z-index: 101;
    flex: 0 0 auto;
    display: inline-flex;
  }
  .nav-links {
    position: fixed;
    z-index: 99;
    top: calc(64px + env(safe-area-inset-top));
    right: 0;
    left: 0;
    min-height: calc(100svh - 64px - env(safe-area-inset-top));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 30px var(--gutter) calc(34px + env(safe-area-inset-bottom));
    transform: translateY(-115%);
    visibility: hidden;
    background: var(--surface);
    transition: transform .32s cubic-bezier(.2,.7,.2,1), visibility .32s;
  }
  .nav-links.open { transform: translateY(0); visibility: visible; }
  .nav-links > a:not(.nav-cta) { padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 1.5rem; letter-spacing: -.04em; }
  .nav-links .nav-cta { min-height: 54px; margin-top: auto; background: var(--green); border-color: var(--green); }

  .hero-cinematic { min-height: calc(100svh - 64px); }
  .hero-cinematic-media img { object-position: 64% center; animation-duration: .9s; }
  .hero-cinematic-shade { background: linear-gradient(0deg, rgba(7,12,9,.92) 0%, rgba(7,12,9,.56) 54%, rgba(7,12,9,.12) 86%), linear-gradient(90deg, rgba(7,12,9,.28), transparent 70%); }
  .hero-cinematic-content { min-height: calc(100svh - 64px); justify-content: flex-end; padding-top: 100px; padding-bottom: 116px; }
  .hero-wordmark { margin-bottom: 16px; font-size: 1.12rem; }
  .hero-cinematic h1 { max-width: 360px; font-size: clamp(3.4rem, 15vw, 5rem); }
  .hero-cinematic-content > p:not(.hero-wordmark) { max-width: 330px; margin-top: 22px; font-size: 1rem; }
  .hero-actions { margin-top: 26px; }
  .hero-cinematic .button { min-height: 48px; padding-inline: 18px; }
  .hero-service-proof { max-width: 330px; margin-top: 24px; gap: 8px; }
  .hero-service-proof span { min-height: 30px; padding: 8px 10px; font-size: .64rem; backdrop-filter: none; }
  .hero-truth { display: none; }

  .editorial-heading { margin-bottom: 48px; }
  .editorial-heading h2,
  .service-story h2,
  .app-copy h2,
  .product-copy h2,
  .zimbabwe-copy h2,
  .trust h2,
  .download h2,
  .legal-hero h1 { font-size: clamp(2.9rem, 13vw, 4.25rem); }

  .world { padding: 6px 0 28px; }
  .world-verb { font-size: clamp(3.15rem, 18vw, 5.4rem); }
  .world-name { margin-top: 17px; }
  .world-note { max-width: 310px; margin-top: 12px; }
  .world-action { margin-top: 21px; }

  .product-focus { padding-block: 84px 92px; }
  .product-copy > p { margin-top: 22px; }
  .product-tabs { overflow-x: auto; margin-top: 28px; padding-bottom: 4px; }
  .product-tabs button { min-width: 96px; }
  .product-panels { min-height: 230px; margin-top: 28px; }
  .product-panel h3 { font-size: clamp(1.7rem, 8vw, 2.3rem); }
  .product-signals { gap: 8px; }
  .product-signals li { font-size: .69rem; }
  .product-focus .device-stage { min-height: 540px; margin-inline: -10px; }
  .product-scenes { grid-template-columns: 1fr; gap: 10px; }
  .scene-strip,
  .scene-strip:first-child { min-height: 178px; }

  .service-story-media { min-height: 430px; }
  .service-story-copy { min-height: 490px; padding: 58px var(--gutter) 66px; }
  .rides-story .service-story-media,
  .food-story .service-story-media,
  .courier-story .service-story-media { margin: 18px 18px 0; border-radius: 20px; }
  .ride-search-card { right: 12px; bottom: 12px; padding: 16px; }
  .food-status-card { right: 12px; bottom: 12px; left: 12px; }
  .feature-line { gap: 7px; }

  .app-experience-grid { min-height: 0; }
  .app-tabs { margin-top: 28px; }
  .app-tabs button { min-width: 78px; }
  .device-stage { min-height: 610px; margin-inline: -10px; }
  .device-stage::before { transform: translate(28px, 270px) rotate(-6deg); }
  .phone-main { transform: rotateZ(-.7deg); }
  .device-stage:hover .phone-main { transform: rotateZ(-.7deg); }
  .phone-screen { padding: 56px 18px 20px; }
  .phone-sensor { top: 20px; width: 86px; height: 25px; }

  .zimbabwe-story { padding-block: 105px; }
  .zim-word { top: 0; right: -8%; font-size: 13rem; opacity: .36; }

  .partner-heading { margin-bottom: 42px; }
  .partner-path,
  .partner-courier,
  .partner-merchant { min-height: 0; margin-top: 0; padding-top: 0; }
  .partner-path > span em { font-size: clamp(2rem, 13vw, 3.6rem); }
  .partner-path h3 { margin-top: 32px; }
  .partner-path p { min-height: 0; }
  .sponsor-ledger { grid-template-columns: 1fr; margin-top: 64px; }
  .sponsor-intro { position: static; }
  .sponsor-logos { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .sponsor-logo { min-height: 104px; padding: 14px 10px 12px; border-radius: 14px; }
  .sponsor-logo img { max-width: 84%; max-height: 50px; }
  .sponsor-logo-square img { max-height: 62px; }
  .sponsor-logo figcaption { font-size: .52rem; letter-spacing: .1em; }
  .trust-compact { padding-block: 82px; }
  .trust-signals { gap: 8px 13px; }
  .trust-signals li { min-height: 34px; font-size: .98rem; }
  .trust-signals li + li::before { margin-right: 12px; }
  .trust-principles article,
  .trust-principles article:nth-child(2),
  .trust-principles article:nth-child(3) { margin-left: 0; }
  .how-heading { margin-bottom: 40px; }
  .how-steps li, .how-steps li:first-child { min-height: 190px; }
  .download { padding-block: 100px; }
  .download-mark { font-size: clamp(4rem, 21vw, 6.4rem); }
  .download-orbit { display: none; }
  .store-links { gap: 10px; }
  .store-links img { height: 42px; }

  .site-footer { padding-top: 60px; }
  .footer-lead { align-items: flex-start; flex-direction: column; }
  .footer-grid, .footer-lead + .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 28px; margin-left: 0; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }

  .legal-hero { margin-top: 18px; padding: 72px 22px 62px; border-radius: 24px; }
  .legal-layout { padding-block: 54px; gap: 30px; }
  .legal-toc { grid-template-columns: 1fr; }
  .legal-toc strong { grid-column: auto; }
  .legal-card { padding: 24px 20px; border-radius: 16px; }
  .support-grid, .trust-grid { grid-template-columns: 1fr; }
  .section-head { align-items: flex-start; flex-direction: column; gap: 18px; }
  .contact-strip { align-items: flex-start; flex-direction: column; }
  .inline-grid { grid-template-columns: 1fr; }
}

@media (max-width: 390px) {
  .hero-actions { width: 100%; }
  .hero-cinematic .button { flex: 1 1 auto; }
  .hero-service-proof { gap: 7px; }
  .hero-service-proof span { font-size: .6rem; }
  .product-panels { min-height: 250px; }
  .phone-shell { width: min(292px, 80vw); border-radius: 52px; }
  .phone-screen { border-radius: 41px; }
  .phone-shell::before { border-radius: 46px; }
  .phone-shell::after { border-radius: 38px 38px 18px 18px; }
  .device-stage::before { width: 280px; transform: translate(14px, 256px) rotate(-5deg); }
  .store-links img { height: 40px; }
  .footer-grid, .footer-lead + .footer-grid { grid-template-columns: 1fr; }
}

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