@font-face {
  font-family: Vazirmatn;
  src: url("../fonts/Vazirmatn-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Vazirmatn;
  src: url("../fonts/Vazirmatn-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Vazirmatn;
  src: url("../fonts/Vazirmatn-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Vazirmatn;
  src: url("../fonts/Vazirmatn-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Vazirmatn;
  src: url("../fonts/Vazirmatn-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/ibm-plex-sans-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/ibm-plex-sans-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/ibm-plex-sans-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --teal: #24b1b1;
  --teal-deep: #0e7c7c;
  --teal-soft: rgba(36, 177, 177, 0.16);
  --night: #07110e;
  --night-2: #10241d;
  --ink: #12201b;
  --body: #4d5a55;
  --muted: #7a8580;
  --sand: #f4f7f4;
  --cream: #f3ead8;
  --line: #dce8e3;
  --gold: #e8a838;
  --gold-soft: rgba(232, 168, 56, 0.18);
  --radius: 24px;
  --max: 1160px;
  --nav-h: 76px;
  --shadow: 0 28px 70px rgba(7, 17, 14, 0.16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  color: var(--ink);
  background:
    radial-gradient(900px 380px at 100% 12%, rgba(36, 177, 177, 0.09), transparent 55%),
    var(--sand);
  font-family: Vazirmatn, "IBM Plex Sans", Tahoma, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

html[lang="en"] body {
  font-family: "IBM Plex Sans", Vazirmatn, system-ui, sans-serif;
}

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

a {
  color: inherit;
}

.skip {
  position: absolute;
  inset-inline-start: 1rem;
  top: -4rem;
  background: var(--night);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  z-index: 80;
}
.skip:focus {
  top: 1rem;
}

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

.reveal {
  animation: rise 0.7s ease both;
}
.reveal-2 { animation-delay: 0.08s; }
.reveal-3 { animation-delay: 0.16s; }
.reveal-4 { animation-delay: 0.24s; }
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  color: #eef6f3;
  background: linear-gradient(180deg, rgba(7, 17, 14, 0.72), rgba(7, 17, 14, 0));
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.nav.is-stuck {
  color: var(--ink);
  background: rgba(244, 247, 244, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(7, 17, 14, 0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.15rem;
}
.brand-mark {
  width: 38px;
  height: 38px;
  color: #0c1411;
  filter: drop-shadow(0 8px 16px rgba(36, 177, 177, 0.28));
}
.nav-links {
  display: flex;
  gap: 1.35rem;
  margin-inline-start: auto;
  list-style: none;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.93rem;
  color: inherit;
  opacity: 0.78;
  font-weight: 500;
}
.nav-links a:hover {
  opacity: 1;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.lang {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  border-radius: 999px;
  padding: 0.38rem 0.78rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}
.nav.is-stuck .lang {
  border-color: var(--line);
  background: #fff;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 999px;
  padding: 0.78rem 1.28rem;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: linear-gradient(180deg, #4ae0d8, var(--teal));
  color: #062626;
  box-shadow: 0 10px 28px rgba(36, 177, 177, 0.35);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.btn-outline {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}
.nav.is-stuck .nav-toggle {
  border-color: var(--line);
  background: #fff;
}
.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
}

@media (max-width: 860px) {
  .nav-links,
  .nav .btn-primary {
    display: none;
  }
  .nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    inset-inline: 1rem;
    top: calc(var(--nav-h) + 0.5rem);
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1rem 1.2rem;
    box-shadow: var(--shadow);
  }
  .nav-toggle {
    display: inline-block;
    margin-inline-start: auto;
  }
}

.hero {
  position: relative;
  margin-top: calc(var(--nav-h) * -1);
  padding-top: var(--nav-h);
  color: #f4faf8;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(720px 420px at 85% 8%, rgba(36, 177, 177, 0.38), transparent 58%),
    radial-gradient(520px 280px at 8% 90%, rgba(232, 168, 56, 0.18), transparent 55%),
    linear-gradient(165deg, #06110e 0%, #0e221c 52%, #123028 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.07) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at 70% 40%, #000 18%, transparent 72%);
  pointer-events: none;
}
.route-line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.route-line path {
  fill: none !important;
  stroke: url(#routeGlow);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 8 14;
  opacity: 0.5;
  animation: dash 18s linear infinite;
}
.route-line circle {
  filter: drop-shadow(0 0 8px rgba(232, 168, 56, 0.9));
}
@keyframes dash {
  to { stroke-dashoffset: -400; }
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2.2rem;
  align-items: center;
  padding: 3.4rem 0 5rem;
}
.skyline {
  position: absolute;
  z-index: 1;
  bottom: 42px;
  left: 0;
  width: 100%;
  height: 92px;
  pointer-events: none;
  opacity: 0.72;
}
.skyline path {
  fill: #06140f;
}
.ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: rgba(6, 18, 15, 0.88);
  color: #cfe8e1;
  border-top: 1px solid rgba(36, 177, 177, 0.22);
  padding: 0.78rem 0;
  backdrop-filter: blur(8px);
  direction: ltr;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.ticker-track span {
  padding: 0 1.6rem;
  white-space: nowrap;
}
.ticker-track span::after {
  content: "·";
  margin-inline-start: 1.6rem;
  color: var(--teal);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.32rem 0.78rem;
  border-radius: 999px;
  background: rgba(36, 177, 177, 0.14);
  border: 1px solid rgba(36, 177, 177, 0.28);
  color: #8ef0ea;
  font-size: 0.82rem;
  font-weight: 700;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(36, 177, 177, 0.2);
  animation: pulse 1.8s ease infinite;
}
@keyframes pulse {
  50% { box-shadow: 0 0 0 8px rgba(36, 177, 177, 0); }
}
.hero h1 {
  margin: 1rem 0 0.9rem;
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  line-height: 1.16;
  letter-spacing: -0.04em;
  font-weight: 800;
}
.hero h1 em {
  font-style: normal;
  color: #7af0e6;
  background: linear-gradient(90deg, #7af0e6, #e8a838);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  margin: 0 0 1.8rem;
  max-width: 36rem;
  color: rgba(244, 250, 248, 0.72);
  font-size: 1.08rem;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 2.1rem;
}
.hero-meta div {
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(244, 250, 248, 0.62);
  font-size: 0.84rem;
}
.hero-meta b {
  color: #fff;
  display: block;
  font-size: 0.98rem;
  margin-bottom: 0.15rem;
}

.stage {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}
.orb {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 177, 177, 0.4), transparent 68%);
  filter: blur(8px);
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  50% { transform: translateY(-14px) scale(1.06); }
}
.phone {
  width: 278px;
  height: 568px;
  padding: 11px;
  border-radius: 44px;
  background: linear-gradient(160deg, #2a3732, #121a17 40%, #0b100e);
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.48),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  position: relative;
  transform: rotate(-7deg);
  z-index: 2;
  animation: phone-float 6.5s ease-in-out infinite;
}
@keyframes phone-float {
  50% { transform: rotate(-7deg) translateY(-10px); }
}
.phone-island {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 108px;
  height: 28px;
  border-radius: 999px;
  background: #050807;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.07),
    0 1px 2px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}
.phone-speaker {
  width: 44px;
  height: 5px;
  border-radius: 999px;
  background: #141c19;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.55);
}
.phone-cam {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 30%, #6a7d8a 0%, #243038 42%, #0a1012 72%);
  box-shadow:
    inset 0 0 0 1.5px #1c262c,
    0 0 0 1px rgba(255, 255, 255, 0.05);
}
.phone-screen {
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: #dceee8;
  position: relative;
}
.phone-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.2) 0%, transparent 28%, transparent 62%, rgba(255, 255, 255, 0.06) 100%);
  border-radius: 34px;
}
.phone-appbar {
  position: absolute;
  z-index: 4;
  top: 46px;
  inset-inline: 14px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: rgba(18, 28, 24, 0.78);
  color: #eef8f5;
  font-size: 0.72rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}
.phone-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ae0d8;
  box-shadow: 0 0 0 4px rgba(74, 224, 216, 0.22);
  animation: pulse 1.8s ease infinite;
}
.city {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.route-active {
  animation: draw-route 7.5s linear infinite;
}
@keyframes draw-route {
  0%,
  32% { stroke-dashoffset: 100; }
  46% { stroke-dashoffset: 72; }
  100% { stroke-dashoffset: 0; }
}
.pin-ring {
  transform-origin: 98px 425px;
  animation: pinpulse 2.2s ease-out infinite;
}
@keyframes pinpulse {
  0% { transform: scale(0.55); opacity: 0.85; }
  100% { transform: scale(1.85); opacity: 0; }
}
.sheet {
  position: absolute;
  inset-inline: 10px;
  bottom: 10px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  padding: 14px 14px 16px;
  box-shadow: 0 16px 32px rgba(12, 20, 17, 0.16);
  color: var(--ink);
}
.sheet-kicker {
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 4px;
}
.sheet-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-weight: 800;
}
.sheet-fare { color: var(--teal-deep); }
.sheet-bar {
  margin-top: 12px;
  height: 38px;
  border-radius: 999px;
  background: var(--night);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 700;
}
.float-card {
  position: absolute;
  z-index: 4;
  min-width: 168px;
  padding: 0.8rem 0.95rem 0.8rem 1.15rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  animation: bob 4.4s ease-in-out infinite;
}
.live-pip {
  position: absolute;
  top: 14px;
  inset-inline-start: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #24b1b1;
  box-shadow: 0 0 0 4px rgba(36, 177, 177, 0.18);
  animation: pulse 1.8s ease infinite;
}
.live-pip.gold {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(232, 168, 56, 0.2);
}
.float-card small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  padding-inline-start: 0.7rem;
}
.float-card b { font-size: 0.95rem; }
.float-eta {
  top: 18%;
  inset-inline-start: 0;
}
.float-pay {
  bottom: 16%;
  inset-inline-end: 0;
  animation-delay: -1.6s;
}
@keyframes bob {
  50% { transform: translateY(-10px); }
}

section { padding: 5.2rem 0; }
.section-head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}
.section-head h2,
.block h2,
.download h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.25;
}
.muted { color: var(--body); margin: 0; }

.pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: -1.35rem;
  position: relative;
  z-index: 2;
}
.pill {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.2rem 1.2rem 1.25rem;
  box-shadow: 0 16px 40px rgba(7, 17, 14, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.section-kicker {
  margin: 0 0 0.45rem;
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.pill:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(7, 17, 14, 0.1); }
.step {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(7, 17, 14, 0.08);
}
.dl-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.dl-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(7, 17, 14, 0.1);
}
.store:hover { filter: brightness(1.12); }
.hero-meta div {
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-meta div:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px);
}
.pill-ico {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
  background: var(--teal-soft);
  color: var(--teal-deep);
  font-weight: 800;
}
.pill:nth-child(2) .pill-ico { background: var(--gold-soft); color: #8a5b0d; }
.pill:nth-child(3) .pill-ico { background: #e8f1ee; }
.pill:nth-child(4) .pill-ico { background: #efe7d4; color: #8a5b0d; }
.pill strong { display: block; font-size: 1.02rem; }
.pill span { color: var(--body); font-size: 0.88rem; }

.how { position: relative; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  position: relative;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.5rem;
  min-height: 230px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step::after {
  content: "";
  position: absolute;
  inset-inline-end: -30px;
  top: -30px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--teal-soft);
}
.step-num {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--night);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.block {
  border-radius: 32px;
  padding: 2.1rem;
  min-height: 440px;
  position: relative;
  overflow: hidden;
}
.block-rider {
  background:
    radial-gradient(420px 180px at 100% 0%, rgba(36, 177, 177, 0.18), transparent 60%),
    #e7f4f1;
}
.block-driver {
  background:
    radial-gradient(420px 180px at 0% 0%, rgba(232, 168, 56, 0.22), transparent 55%),
    var(--night);
  color: #f7f4ee;
}
.block-driver .muted { color: rgba(247, 244, 238, 0.7); }
.block-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 0.7rem;
  color: var(--teal-deep);
}
.block-driver .block-kicker { color: var(--gold); }
.features {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: 0.75rem;
}
.features li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.55rem 0.65rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.35);
}
.block-driver .features li { background: rgba(255, 255, 255, 0.05); }
.tick {
  flex: 0 0 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal);
  color: #062626;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  margin-top: 0.15rem;
}
.block-driver .tick {
  background: var(--gold);
  color: #2a1d05;
}

.download {
  background:
    radial-gradient(700px 280px at 0% 0%, var(--gold-soft), transparent 55%),
    radial-gradient(700px 280px at 100% 100%, var(--teal-soft), transparent 55%),
    #eef4f1;
}
.dl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.dl-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 1.7rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.2rem;
  align-items: start;
  box-shadow: 0 20px 50px rgba(7, 17, 14, 0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.dl-card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), #7af0e6);
}
#download-driver.dl-card::before {
  background: linear-gradient(90deg, var(--gold), #f3c56a);
}
.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.55rem;
}
.badge-rider { background: var(--teal-soft); color: var(--teal-deep); }
.badge-driver { background: var(--gold-soft); color: #8a5b0d; }
.dl-card h3 { margin: 0 0 0.35rem; font-size: 1.35rem; }
.stores {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}
.store {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 168px;
  padding: 0.58rem 0.85rem;
  border-radius: 14px;
  background: var(--night);
  color: #fff;
  text-decoration: none;
  font-size: 0.78rem;
  line-height: 1.15;
}
.store small { display: block; opacity: 0.7; font-weight: 400; }
.store.disabled,
.apk[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.42;
}
.apk { margin-top: 0.7rem; display: inline-flex; }
.soon { margin-top: 0.55rem; font-size: 0.85rem; color: var(--muted); }
.qr {
  width: 138px;
  height: 138px;
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 10px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--teal), var(--gold)) border-box;
  border: 2px solid transparent;
}
.qr svg { width: 100%; height: 100%; }
.qr-caption {
  text-align: center;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.45rem;
}

.faq { display: grid; gap: 0.7rem; max-width: 760px; }
details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0.95rem 1.15rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
details:hover {
  border-color: rgba(36, 177, 177, 0.35);
  box-shadow: 0 12px 28px rgba(7, 17, 14, 0.06);
}
summary { cursor: pointer; font-weight: 800; }
details p { margin: 0.6rem 0 0.2rem; color: var(--body); }

.footer {
  background: var(--night);
  color: rgba(247, 244, 238, 0.72);
  padding: 2.5rem 0 2.1rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(36, 177, 177, 0.16);
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid,
  .pills,
  .steps,
  .split,
  .dl-grid,
  .hero-meta {
    grid-template-columns: 1fr;
  }
  .phone { transform: none; animation: none; }
  .stage { min-height: 560px; }
  .float-eta { inset-inline-start: 4%; }
  .float-pay { inset-inline-end: 4%; }
  .dl-card { grid-template-columns: 1fr; }
  .qr-wrap { justify-self: start; }
  section { padding: 3.4rem 0; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}

