@font-face {
  font-family: "Cairo";
  src: url("assets/fonts/Cairo-Arabic.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

:root {
  --user: #ffc800;
  --user-soft: #fff4be;
  --captain: #19749b;
  --captain-dark: #0e4d6b;
  --ink: #111214;
  --muted: #62666d;
  --line: #dfe1e5;
  --paper: #ffffff;
  --wash: #f5f6f7;
  --radius: 24px;
  --shadow: 0 20px 60px rgba(17, 18, 20, 0.1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Cairo", Tahoma, Arial, "Noto Sans Arabic", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

:where(h1, h2, h3, p, a, span, li, summary, figcaption) {
  overflow-wrap: anywhere;
  word-break: normal;
}

:where(.hero > *, .section-heading > *, .service-card > *, .split-layout > *, .cargo-showcase > *, .captain-layout > *, .support-grid > *, .download-card > *, .visual-chapter > *, .visual-chapter header > *) {
  min-width: 0;
}

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

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

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

:focus-visible {
  outline: 3px solid var(--captain);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(17, 18, 20, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand img { width: 46px; height: 46px; border-radius: 13px; }
.brand span { display: grid; line-height: 1.05; }
.brand b { font-size: 1rem; }
.brand small { margin-top: 5px; color: var(--muted); font-size: .66rem; letter-spacing: .08em; }

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 1;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
  color: #34373c;
  font-size: .9rem;
  font-weight: 700;
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 2px;
  height: 2px;
  background: var(--user);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after { transform: scaleX(1); }

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

.lang-button,
.menu-button {
  border: 0;
  cursor: pointer;
  background: transparent;
}

.lang-button {
  min-width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--ink);
  font-weight: 800;
}

.lang-button:hover { background: var(--wash); }

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  place-content: center;
  gap: 5px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.menu-button span { width: 22px; height: 2px; background: var(--ink); transition: transform 180ms ease, opacity 180ms ease; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 11px 22px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 800;
  line-height: 1.25;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: #fff; }
.button-user { background: var(--user); color: var(--ink); box-shadow: 0 12px 28px rgba(255, 200, 0, .22); }
.button-user:hover { box-shadow: 0 16px 34px rgba(255, 200, 0, .32); }
.button-outline { border-color: var(--ink); background: #fff; color: var(--ink); }
.button-white { background: #fff; color: var(--captain-dark); }

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
  padding-block: clamp(62px, 8vw, 112px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 15px;
  color: #373a3e;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .02em;
}

.eyebrow > span:first-child {
  display: inline-block;
  width: 34px;
  height: 4px;
  border-radius: 9px;
  background: var(--user);
}

.eyebrow.light { color: rgba(255, 255, 255, .74); }
.eyebrow.light > span:first-child { background: #fff; }

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
  line-height: 1.08;
  letter-spacing: -.055em;
}

.hero h1 em { display: inline-block; margin-top: .12em; color: var(--captain); font-style: normal; }

.hero-lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
}

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

.proof-strip {
  display: flex;
  gap: 0;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  border-block: 1px solid var(--line);
}

.proof-strip li {
  min-width: 128px;
  display: grid;
  gap: 1px;
  padding: 14px 18px;
  border-inline-end: 1px solid var(--line);
}

.proof-strip li:first-child { padding-inline-start: 0; }
.proof-strip strong { font-size: 1.45rem; line-height: 1.2; }
.proof-strip span { color: var(--muted); font-size: .78rem; white-space: nowrap; }

.hero-visual {
  position: relative;
  min-height: 620px;
  border-radius: 40px;
  background: var(--wash);
  overflow: hidden;
  isolation: isolate;
}

.visual-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .42;
  background-image: linear-gradient(rgba(17,18,20,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(17,18,20,.07) 1px, transparent 1px);
  background-size: 44px 44px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  inset-block-start: -95px;
  inset-inline-end: -80px;
  border-radius: 50%;
  background: var(--user);
  z-index: -1;
}

.hero-visual::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  inset-block-end: -145px;
  inset-inline-start: -110px;
  border-radius: 50%;
  background: var(--captain);
  z-index: -1;
}

.hero-phone-scene { position: absolute; inset: 28px 24px 56px; }

.mock-phone { margin: 0; transform-style: preserve-3d; }

.phone-frame,
.shot-window {
  position: relative;
  aspect-ratio: 9 / 19.3;
  overflow: hidden;
  padding: 14px 8px 17px;
  border: 2px solid #565b63;
  border-radius: 40px;
  background: linear-gradient(145deg, #3d4148, #111317 24%, #25282d 76%, #08090b);
  box-shadow: 0 28px 70px rgba(17,18,20,.24), inset 0 0 0 1px rgba(255,255,255,.16);
}

.phone-frame::before,
.shot-window::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 6px;
  left: 50%;
  width: 27%;
  height: 7px;
  border-radius: 100px;
  background: #050608;
  box-shadow: 18px 0 0 -2px #050608;
  transform: translateX(-50%);
}

.phone-frame::after,
.shot-window::after {
  content: "";
  position: absolute;
  z-index: 3;
  bottom: 6px;
  left: 50%;
  width: 34%;
  height: 4px;
  border-radius: 100px;
  background: rgba(255,255,255,.88);
  transform: translateX(-50%);
}

.phone-frame img,
.shot-window img {
  width: 100%;
  height: 100%;
  border-radius: 29px;
  object-fit: cover;
  object-position: center top;
  background: #fff;
}

.hero-phone {
  position: absolute;
  width: min(47%, 245px);
}

.hero-phone-user { top: 0; inset-inline-start: 4%; transform: perspective(1100px) rotateY(-8deg) rotateZ(-2deg); }
.hero-phone-captain { inset-inline-end: 3%; bottom: 0; transform: perspective(1100px) rotateY(8deg) rotateZ(2deg); }
[dir="rtl"] .hero-phone-user { transform: perspective(1100px) rotateY(8deg) rotateZ(2deg); }
[dir="rtl"] .hero-phone-captain { transform: perspective(1100px) rotateY(-8deg) rotateZ(-2deg); }

.hero-phone figcaption {
  position: absolute;
  z-index: 4;
  bottom: 24px;
  inset-inline: 22px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(5,6,8,.82);
  color: #fff;
  font-size: .68rem;
  font-weight: 900;
  text-align: center;
  backdrop-filter: blur(8px);
}

.orbit-note {
  position: absolute;
  inset-inline: 35px;
  bottom: 18px;
  max-width: 320px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: .78rem;
  line-height: 1.55;
}

.orbit-note > span:first-child { color: var(--user); }

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--ink);
  background: var(--user);
}

.marquee div {
  min-width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 12px 24px;
  font-size: .92rem;
  font-weight: 900;
}

.marquee i { font-style: normal; }

.section { padding-block: clamp(76px, 10vw, 128px); }

.section-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 46px;
}

.section-heading h2,
.story-copy h2,
.cargo-copy h2,
.captain-copy h2,
.support-copy h2,
.download-heading h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4.3vw, 4.2rem);
  line-height: 1.12;
  letter-spacing: -.04em;
}

.section-heading > p,
.story-copy > p,
.support-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

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

.service-card {
  position: relative;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover { transform: translateY(-5px); border-color: #afb3b8; box-shadow: 0 18px 44px rgba(17,18,20,.08); }
.service-card.featured { grid-column: span 2; min-height: 360px; flex-direction: row; gap: 36px; background: var(--user-soft); border-color: var(--user); }
.service-card.dark-card { background: var(--ink); color: #fff; border-color: var(--ink); }
.service-card.cargo-card { background: #eef8fc; border-color: rgba(25,116,155,.35); }
.service-number { color: #8b8e93; font-size: .75rem; font-weight: 900; letter-spacing: .08em; }
.service-card.featured .service-number { flex: 0 0 54px; font-size: 1.1rem; }
.service-kicker { margin: 28px 0 4px; color: var(--captain); font-size: .75rem; font-weight: 900; }
.dark-card .service-kicker { color: var(--user); }
.service-card h3 { margin: 0; font-size: clamp(1.45rem, 2.4vw, 2.2rem); line-height: 1.25; }
.service-card > p:last-of-type,
.service-card > div > p { margin: 14px 0 0; color: var(--muted); }
.dark-card > p:last-of-type { color: rgba(255,255,255,.68); }
.mini-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 0; padding: 0; list-style: none; }
.mini-list li { padding: 7px 11px; border: 1px solid rgba(17,18,20,.16); border-radius: 100px; font-size: .75rem; font-weight: 800; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding-top: 22px;
  font-size: .9rem;
  font-weight: 900;
}

.text-link span { font-size: 1.2rem; transition: transform 160ms ease; }
.text-link:hover span { transform: translateX(-4px); }
[dir="ltr"] .text-link span { transform: rotate(180deg); }
[dir="ltr"] .text-link:hover span { transform: rotate(180deg) translateX(-4px); }

.product-tour {
  position: relative;
  padding-top: 34px;
  background:
    radial-gradient(circle at 92% 5%, rgba(255, 200, 0, .19), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f4f5f7 18%, #f4f5f7 100%);
  overflow: hidden;
}

.product-tour::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background-image: linear-gradient(rgba(17,18,20,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(17,18,20,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 42%);
}

.product-tour > .shell { position: relative; }
.product-tour-heading { margin-bottom: 62px; }

.visual-chapters { display: grid; gap: 72px; }

.visual-chapter {
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(17,18,20,.14);
}

.visual-chapter:last-child { padding-bottom: 0; border-bottom: 0; }

.visual-chapter > header {
  display: grid;
  grid-template-columns: 72px minmax(0, 640px);
  align-items: start;
  gap: 22px;
  margin-bottom: 28px;
}

.visual-chapter > header > span {
  min-height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17,18,20,.16);
  border-radius: 18px;
  background: rgba(255,255,255,.7);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.visual-chapter h3 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.2;
}

.visual-chapter header p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .94rem;
}

.screenshot-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 1fr);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(17,18,20,.25) transparent;
  padding: 4px 4px 20px;
}

.screenshot-track-four { grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-flow: initial; }
.screenshot-track-two { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-flow: initial; }
.screenshot-track-six { grid-auto-columns: minmax(190px, 1fr); }

.app-shot {
  min-width: 0;
  margin: 0;
  padding: 4px;
  scroll-snap-align: start;
  border: 0;
  border-radius: 40px;
  background: transparent;
}

.shot-window {
  width: 100%;
}

.app-shot-wide .shot-window,
.app-shot-landscape .shot-window { aspect-ratio: 9 / 19.3; }
.shot-yellow .shot-window { background: var(--user); }
.shot-blue .shot-window { background: var(--captain); }

.app-shot figcaption {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 10px 4px;
  color: #35383d;
  font-size: .77rem;
  font-weight: 800;
  line-height: 1.45;
}

.daily-services .screenshot-track { max-width: 820px; margin-inline: auto; }

.taxi-story { background: var(--wash); }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(48px, 8vw, 110px); }

.story-panel {
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 58px);
  border-radius: 34px;
  background: var(--user);
  box-shadow: var(--shadow);
}

.route-line { display: grid; grid-template-columns: 18px 1fr 18px; align-items: center; gap: 0; }
.route-line i { width: 18px; height: 18px; border: 5px solid var(--ink); border-radius: 50%; }
.route-line span { height: 3px; background: var(--ink); }
.small-label { margin: 14px 0 36px; font-size: .75rem; font-weight: 800; }
.quote-card { display: grid; gap: 5px; padding: 24px; border: 2px solid var(--ink); border-radius: 20px; background: #fff; }
.quote-card span { color: var(--muted); font-size: .84rem; }
.quote-card strong { font-size: clamp(1.6rem, 4vw, 2.7rem); line-height: 1.15; }
.category-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 10px; }
.category-row span { padding: 9px; border: 1px solid rgba(17,18,20,.36); border-radius: 12px; text-align: center; font-size: .77rem; font-weight: 800; }
.story-copy > p { margin-top: 22px; }
.step-list { display: grid; gap: 0; margin-top: 32px; border-top: 1px solid var(--line); }
.step-list div { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.step-list b { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: #fff; font-size: .72rem; }
.step-list span { font-weight: 800; }

.cargo-showcase {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  padding: clamp(36px, 6vw, 72px);
  border-radius: 38px;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}

.cargo-copy > p:not(.eyebrow) { margin: 24px 0 0; color: rgba(255,255,255,.7); }
.cargo-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 34px; }
.cargo-tags span { padding: 7px 11px; border: 1px solid rgba(255,255,255,.24); border-radius: 100px; font-size: .74rem; font-weight: 800; }
.parcel-flow { display: flex; flex-direction: column; justify-content: center; }
.parcel-flow div { display: flex; align-items: center; gap: 18px; padding: 16px 20px; border: 1px solid rgba(255,255,255,.18); border-radius: 16px; background: rgba(255,255,255,.07); }
.parcel-flow b { color: var(--user); font-size: .78rem; }
.parcel-flow span { font-weight: 800; }
.parcel-flow i { width: 2px; height: 22px; margin-inline-start: 31px; background: var(--user); }

.compact-heading { align-items: start; }
.business-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.business-grid article { min-height: 260px; padding: 30px; border-inline-end: 1px solid var(--line); }
.business-grid article:last-child { border-inline-end: 0; }
.business-grid article > span { color: var(--captain); font-size: .75rem; font-weight: 900; }
.business-grid h3 { margin: 48px 0 12px; font-size: 1.55rem; }
.business-grid p { margin: 0; color: var(--muted); }

.captain-section { background: var(--captain); color: #fff; overflow: hidden; }
.captain-layout { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: clamp(48px, 9vw, 120px); }
.captain-logo-wrap { position: relative; }
.captain-logo-wrap::before { content: ""; position: absolute; inset: 8%; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; transform: scale(1.15); }
.captain-logo-wrap img { position: relative; width: min(100%, 460px); margin-inline: auto; border-radius: 34px; box-shadow: 0 26px 70px rgba(0,0,0,.22); }
.captain-copy > p { max-width: 640px; margin: 24px 0 0; color: rgba(255,255,255,.76); }
.captain-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 24px; margin: 28px 0 36px; padding: 0; list-style: none; }
.captain-points li { position: relative; padding-inline-start: 22px; font-size: .88rem; font-weight: 800; }
.captain-points li::before { content: ""; position: absolute; inset-inline-start: 0; top: .65em; width: 9px; height: 9px; border-radius: 50%; background: var(--user); }

.support-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(48px, 9vw, 110px); align-items: center; }
.support-copy > p { margin-top: 24px; }
.trust-list { display: grid; border-top: 1px solid var(--line); }
.trust-list article { display: grid; grid-template-columns: .65fr 1.35fr; gap: 30px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.trust-list b { font-size: 1.03rem; }
.trust-list span { color: var(--muted); }

.faq-section { padding-top: 20px; }
.faq-list { border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 22px 54px 22px 0; cursor: pointer; list-style: none; font-weight: 900; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::before,
.faq-list summary::after { content: ""; position: absolute; inset-inline-start: 10px; top: 50%; width: 16px; height: 2px; background: var(--ink); transition: transform 160ms ease; }
.faq-list summary::after { transform: rotate(90deg); }
.faq-list details[open] summary::after { transform: rotate(0); }
.faq-list p { max-width: 820px; margin: -5px 0 22px; color: var(--muted); }

.download-section { padding-block: clamp(76px, 10vw, 120px); background: var(--wash); }
.download-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 42px; }
.download-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.download-card { display: grid; grid-template-columns: minmax(150px, .7fr) 1.3fr; grid-template-rows: 1fr auto; gap: 24px 30px; align-items: center; min-height: 520px; padding: 34px; border-radius: 32px; overflow: hidden; }
.download-device { grid-row: 1 / -1; width: min(100%, 205px); margin-inline: auto; }
.download-device .phone-frame { width: 100%; }
.download-copy { align-self: end; }
.download-card p { margin: 0 0 5px; font-size: .75rem; font-weight: 900; }
.download-card h3 { margin: 0; font-size: clamp(1.55rem, 2.5vw, 2.2rem); line-height: 1.25; }
.download-card div > span { display: block; margin-top: 7px; font-size: .82rem; }
.user-download { background: var(--user); color: var(--ink); }
.captain-download { background: var(--captain); color: #fff; }
.store-links { grid-column: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; align-self: start; }
.store-links a { min-width: 0; display: flex; align-items: center; gap: 9px; padding: 10px 12px; border-radius: 14px; background: var(--ink); color: #fff; line-height: 1.15; transition: transform 160ms ease, box-shadow 160ms ease; }
.store-links a:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(17,18,20,.18); }
.store-links svg { flex: 0 0 27px; width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform 180ms ease; }
.store-links a:hover svg { transform: scale(1.08) rotate(-3deg); }
.store-links a > span { min-width: 0; display: grid; margin: 0; }
.captain-download .store-links a { background: #fff; color: var(--captain-dark); }
.store-links small { font-size: .58rem; opacity: .72; }
.store-links b { margin-top: 2px; font-size: .82rem; direction: ltr; }

.site-footer { background: var(--ink); color: #fff; }
.footer-top { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 50px; padding-block: 48px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 52px; height: 52px; border-radius: 15px; }
.footer-brand div { display: grid; }
.footer-brand b { font-size: 1.15rem; }
.footer-brand span { color: rgba(255,255,255,.62); font-size: .78rem; }
.footer-links, .social-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a, .social-links a { color: rgba(255,255,255,.72); font-size: .8rem; font-weight: 800; }
.footer-links a:hover, .social-links a:hover { color: var(--user); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-block: 18px 28px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.45); font-size: .72rem; }
.design-credit { direction: ltr; text-align: left; }
.design-credit i { margin-inline: 6px; color: var(--user); font-style: normal; }

.has-motion .mock-phone,
.has-motion .app-shot,
.has-motion .service-card {
  opacity: 0;
  transform: perspective(1200px) translateY(28px) rotateY(-7deg);
  transition: opacity 480ms ease, transform 620ms cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
}

[dir="rtl"] .has-motion .mock-phone,
[dir="rtl"] .has-motion .app-shot,
[dir="rtl"] .has-motion .service-card { transform: perspective(1200px) translateY(28px) rotateY(7deg); }

.has-motion .is-visible {
  opacity: 1;
  transform: perspective(1200px) translateY(0) rotateY(0);
}

.has-motion .hero-phone-user { transform: perspective(1100px) translateY(28px) rotateY(-14deg) rotateZ(-2deg); }
.has-motion .hero-phone-captain { transform: perspective(1100px) translateY(28px) rotateY(14deg) rotateZ(2deg); }
.has-motion .hero-phone-user.is-visible { transform: perspective(1100px) translateY(0) rotateY(-8deg) rotateZ(-2deg); }
.has-motion .hero-phone-captain.is-visible { transform: perspective(1100px) translateY(0) rotateY(8deg) rotateZ(2deg); }
[dir="rtl"] .has-motion .hero-phone-user { transform: perspective(1100px) translateY(28px) rotateY(14deg) rotateZ(2deg); }
[dir="rtl"] .has-motion .hero-phone-captain { transform: perspective(1100px) translateY(28px) rotateY(-14deg) rotateZ(-2deg); }
[dir="rtl"] .has-motion .hero-phone-user.is-visible { transform: perspective(1100px) translateY(0) rotateY(8deg) rotateZ(2deg); }
[dir="rtl"] .has-motion .hero-phone-captain.is-visible { transform: perspective(1100px) translateY(0) rotateY(-8deg) rotateZ(-2deg); }
.has-motion .service-card.is-visible:hover { transform: translateY(-5px); }
.has-motion .app-shot.is-visible:hover { transform: perspective(1200px) translateY(-5px) rotateY(0); }

.legal-page { min-height: 100vh; background: var(--wash); }
.legal-header { background: #fff; border-bottom: 1px solid var(--line); }
.legal-header .shell { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.legal-header .brand img { width: 44px; height: 44px; }
.legal-back { font-size: .86rem; font-weight: 900; }
.legal-main { padding-block: 64px 96px; }
.legal-hero { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; margin-bottom: 44px; }
.legal-hero h1 { margin: 0; font-size: clamp(2.5rem, 6vw, 5.2rem); line-height: 1.05; letter-spacing: -.05em; }
.legal-hero p { margin: 0; color: var(--muted); }
.legal-card { padding: clamp(26px, 5vw, 56px); border: 1px solid var(--line); border-radius: 30px; background: #fff; }
.legal-card h2 { margin: 0 0 14px; font-size: 1.4rem; }
.legal-card h2:not(:first-child) { margin-top: 38px; }
.legal-card p, .legal-card li { color: #4f5359; }
.legal-card ul { margin: 12px 0 0; padding-inline-start: 22px; }
.legal-card a { text-decoration: underline; text-underline-offset: 3px; }
.legal-note { margin-top: 28px; padding: 18px 20px; border-inline-start: 5px solid var(--user); background: var(--user-soft); border-radius: 14px; }
.legal-en { margin-top: 56px; padding-top: 48px; border-top: 1px solid var(--line); direction: ltr; text-align: left; font-family: Arial, Helvetica, sans-serif; }
.support-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 26px; }
.support-option { min-height: 180px; padding: 24px; border: 1px solid var(--line); border-radius: 20px; }
.support-option span { display: block; color: var(--captain); font-size: .75rem; font-weight: 900; }
.support-option h2 { margin: 26px 0 8px; }
.support-option p { margin: 0; }

@media (max-width: 1040px) {
  .header-download { display: none; }
  .site-nav { gap: 15px; }
  .site-nav a { font-size: .79rem; }
  .hero { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-visual { min-height: 540px; }
  .hero-phone { width: min(48%, 215px); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .business-grid h3 { margin-top: 30px; }
  .screenshot-track-four { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: minmax(210px, 34%); }
  .screenshot-track-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .shell { width: min(100% - 28px, 680px); }
  .header-inner { min-height: 68px; gap: 12px; }
  .brand { margin-inline-end: auto; }
  .brand img { width: 42px; height: 42px; }
  .menu-button { display: grid; order: 3; }
  .header-actions { order: 2; }
  .site-nav {
    position: fixed;
    inset: 68px 0 auto;
    height: calc(100dvh - 68px);
    display: grid;
    align-content: start;
    justify-content: stretch;
    gap: 0;
    padding: 24px;
    background: #fff;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 220ms ease, opacity 220ms ease, visibility 220ms ease;
  }
  .site-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .site-nav a { padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 1.03rem; }
  .site-nav a::after { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-block: 52px 68px; }
  .hero h1 { font-size: clamp(3.2rem, 15vw, 5.1rem); }
  .hero-visual { min-height: 610px; }
  .hero-phone { width: min(45%, 235px); }
  .proof-strip { overflow-x: auto; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; }
  .split-layout, .cargo-showcase, .captain-layout, .support-grid { grid-template-columns: 1fr; }
  .cargo-showcase { gap: 42px; }
  .captain-logo-wrap { max-width: 380px; margin-inline: auto; }
  .captain-copy { text-align: center; }
  .captain-copy .eyebrow { justify-content: center; }
  .captain-points { text-align: start; }
  .download-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .legal-hero { grid-template-columns: 1fr; gap: 20px; }
  .support-options { grid-template-columns: 1fr; }
  .product-tour-heading { margin-bottom: 44px; }
  .visual-chapters { gap: 54px; }
  .visual-chapter { padding-bottom: 54px; }
  .screenshot-track-four,
  .screenshot-track-two,
  .screenshot-track-six {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(210px, 52%);
  }
}

@media (max-width: 580px) {
  body { line-height: 1.68; }
  .shell { width: min(100% - 24px, 520px); }
  .brand span { display: none; }
  .hero h1 { letter-spacing: -.045em; }
  .hero-lead { margin-top: 20px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .proof-strip li { min-width: 118px; padding: 12px 13px; }
  .hero-visual { min-height: 410px; border-radius: 28px; }
  .hero-phone-scene { inset: 20px 12px 42px; }
  .hero-phone { width: min(48%, 170px); }
  .phone-frame, .shot-window { padding: 11px 6px 14px; border-radius: 31px; }
  .phone-frame img, .shot-window img { border-radius: 22px; }
  .phone-frame::before, .shot-window::before { top: 4px; height: 6px; }
  .phone-frame::after, .shot-window::after { bottom: 4px; height: 3px; }
  .hero-phone figcaption { inset-inline: 13px; bottom: 17px; padding: 6px; font-size: .58rem; }
  .orbit-note { display: none; }
  .marquee div { justify-content: flex-start; animation: ticker 22s linear infinite; }
  .section { padding-block: 72px; }
  .section-heading { margin-bottom: 28px; }
  .section-heading h2, .story-copy h2, .cargo-copy h2, .captain-copy h2, .support-copy h2, .download-heading h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card.featured { min-height: 260px; grid-column: auto; flex-direction: column; padding: 24px; gap: 0; }
  .service-card.featured .service-number { flex-basis: auto; }
  .mini-list { display: grid; }
  .story-panel { min-height: 400px; padding: 26px; border-radius: 26px; }
  .category-row { grid-template-columns: 1fr; }
  .cargo-showcase { padding: 28px 22px; border-radius: 28px; }
  .cargo-showcase .button { width: 100%; }
  .business-grid { grid-template-columns: 1fr; }
  .business-grid article { min-height: auto; border-inline-end: 0; border-bottom: 1px solid var(--line); }
  .business-grid article:last-child { border-bottom: 0; }
  .business-grid h3 { margin-top: 24px; }
  .captain-points { grid-template-columns: 1fr; }
  .captain-copy .button { width: 100%; }
  .trust-list article { grid-template-columns: 1fr; gap: 5px; }
  .download-heading { display: block; }
  .download-card { grid-template-columns: 112px 1fr; grid-template-rows: auto auto; min-height: auto; gap: 18px; padding: 20px; }
  .download-device { grid-row: 1; width: 112px; }
  .download-copy { align-self: center; }
  .store-links { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
  .store-links a { min-width: 0; }
  .footer-bottom { flex-direction: column; gap: 5px; }
  .product-tour { padding-top: 12px; }
  .product-tour-heading { margin-bottom: 38px; }
  .visual-chapter > header { grid-template-columns: 52px minmax(0, 1fr); gap: 14px; }
  .visual-chapter > header > span { min-height: 48px; border-radius: 14px; }
  .screenshot-track-four,
  .screenshot-track-two,
  .screenshot-track-six { grid-auto-columns: 78%; }
  .app-shot { border-radius: 31px; }
}

@keyframes ticker {
  to { transform: translateX(50%); }
}

[dir="ltr"] body { font-family: "British Council Sans", Arial, Verdana, sans-serif; }
[dir="ltr"] .hero h1,
[dir="ltr"] .section-heading h2,
[dir="ltr"] .story-copy h2,
[dir="ltr"] .cargo-copy h2,
[dir="ltr"] .captain-copy h2,
[dir="ltr"] .support-copy h2,
[dir="ltr"] .download-heading h2 { letter-spacing: -.045em; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .has-motion .mock-phone,
  .has-motion .app-shot,
  .has-motion .service-card { opacity: 1 !important; transform: none !important; }
}
