:root {
  color-scheme: dark;
  --bg: #05070c;
  --bg-soft: #09111d;
  --panel: rgba(15, 25, 42, 0.82);
  --panel-strong: #101827;
  --text: #f8fbff;
  --muted: #aeb9c9;
  --line: rgba(255, 255, 255, 0.12);
  --cyan: #35e7ff;
  --green: #32e778;
  --amber: #ffc857;
  --coral: #ff5d73;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 8%, rgba(53, 231, 255, 0.16), transparent 30%),
    radial-gradient(circle at 80% 4%, rgba(255, 200, 87, 0.13), transparent 26%),
    linear-gradient(180deg, #05070c 0%, #08101c 45%, #05070c 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

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

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

.icon-sprite {
  display: inline-block;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1px solid rgba(53, 231, 255, 0.18);
  border-radius: 10px;
  background-image: url("assets/premium-icon-sheet.webp");
  background-repeat: no-repeat;
  background-size: 500% 200%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 8px 24px rgba(0, 0, 0, 0.24);
  vertical-align: middle;
}

.icon-helmet { background-position: 0% 0%; }
.icon-car { background-position: 25% 0%; }
.icon-bag { background-position: 50% 0%; }
.icon-pin { background-position: 75% 0%; }
.icon-bolt { background-position: 100% 0%; }
.icon-shield { background-position: 0% 100%; }
.icon-coin { background-position: 25% 100%; }
.icon-phone { background-position: 50% 100%; }
.icon-speed { background-position: 75% 100%; }
.icon-route { background-position: 100% 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 12, 0.78);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  font-weight: 900;
}

.brand-mark {
  display: inline-grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 221, 0, 0.52);
  border-radius: 12px;
  background: #0a0d12 url("assets/icons/icon-96.png") center / cover no-repeat;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 12px 32px rgba(255, 221, 0, 0.14);
  color: transparent;
  font-size: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

nav a:hover {
  color: var(--cyan);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta,
.button.primary {
  border: 1px solid rgba(53, 231, 255, 0.65);
  background: linear-gradient(135deg, var(--cyan), var(--green));
  color: #031018;
  box-shadow: 0 16px 42px rgba(53, 231, 255, 0.22);
}

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

.button.large {
  min-height: 56px;
  padding-inline: 28px;
}

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

.hero {
  display: grid;
  min-height: calc(100svh - 74px);
  grid-template-columns: minmax(0, 1fr) minmax(330px, 540px);
  align-items: center;
  gap: clamp(32px, 6vw, 82px);
  padding: clamp(40px, 7vw, 88px) clamp(18px, 6vw, 92px) clamp(28px, 5vw, 60px);
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(46px, 7vw, 94px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.18;
}

.hero-lede,
.section-heading p,
.showcase-copy p,
.download p,
article p,
details p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions,
.trust-row,
.download-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 28px;
}

.trust-row {
  margin-top: 28px;
}

.trust-row span,
.download-meta span {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 10px 14px;
  color: var(--muted);
}

.trust-row strong {
  display: block;
  color: var(--text);
  font-size: 21px;
}

.hero-stage {
  position: relative;
  display: grid;
  min-height: 640px;
  place-items: center;
  perspective: 1200px;
  isolation: isolate;
}

.hero-stage::before {
  position: absolute;
  inset: 74px 18px 38px 52px;
  z-index: -2;
  border: 1px solid rgba(53, 231, 255, 0.24);
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(53, 231, 255, 0.12), rgba(255, 200, 87, 0.08)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 44px);
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.46);
  content: "";
  transform: rotate(-7deg) skewY(-2deg);
  animation: panelDrift 8s ease-in-out infinite;
}

.hero-stage::after {
  position: absolute;
  bottom: 46px;
  z-index: -1;
  width: 420px;
  height: 58px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.46);
  filter: blur(16px);
  content: "";
  animation: shadowBreath 6s ease-in-out infinite;
}

.device-ring {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(53, 231, 255, 0.22);
  border-radius: 36px;
  pointer-events: none;
}

.ring-one {
  width: 78%;
  height: 76%;
  transform: rotate(7deg);
  animation: ringFloatOne 10s ease-in-out infinite;
}

.ring-two {
  width: 58%;
  height: 88%;
  border-color: rgba(255, 200, 87, 0.18);
  transform: rotate(-13deg);
  animation: ringFloatTwo 12s ease-in-out infinite;
}

.phone {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: min(318px, 68vw);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 42px;
  background:
    linear-gradient(145deg, #1b2436, #060913 48%, #182238),
    #111827;
  box-shadow:
    inset 0 0 0 10px #070d19,
    inset 0 0 0 12px rgba(255, 255, 255, 0.06),
    0 36px 100px rgba(0, 0, 0, 0.56),
    0 0 60px rgba(53, 231, 255, 0.18);
  transform: rotateY(-8deg) rotateX(4deg) rotateZ(1deg);
  transform-style: preserve-3d;
}

.phone-main {
  animation: none;
}

.phone::before {
  position: absolute;
  top: 17px;
  left: 50%;
  z-index: 4;
  width: 88px;
  height: 18px;
  border-radius: 999px;
  background: #05070c;
  content: "";
  transform: translateX(-50%);
}

.phone::after {
  position: absolute;
  inset: 12px;
  z-index: 3;
  border-radius: 31px;
  background:
    linear-gradient(115deg, transparent 0 36%, rgba(255, 255, 255, 0.18) 46%, transparent 56% 100%),
    linear-gradient(180deg, rgba(53, 231, 255, 0.11), transparent 34%);
  content: "";
  opacity: 0.56;
  pointer-events: none;
  transform: translateX(-130%);
  animation: screenSweep 5.8s ease-in-out infinite;
}

.phone img {
  width: 100%;
  padding: 12px;
  border-radius: 39px;
  aspect-ratio: 9 / 18.9;
  object-fit: cover;
}

.mock-screen {
  position: relative;
  margin: 12px;
  min-height: 668px;
  overflow: hidden;
  border-radius: 31px;
  background: #020817;
  padding: 14px 16px 18px;
  color: #f8fafc;
}

.mock-status {
  display: flex;
  justify-content: space-between;
  padding: 2px 2px 18px;
  color: #f8fafc;
  font-size: 11px;
  font-weight: 800;
}

.mock-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.phone-app-icon {
  display: inline-block;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border: 2px solid rgba(255, 212, 0, 0.72);
  border-radius: 50%;
  background: #111827 url("assets/icons/icon-96.png") center / cover no-repeat;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
}

.mock-header strong {
  font-size: 18px;
}

.mock-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
  border-bottom: 2px solid rgba(34, 211, 238, 0.24);
}

.mock-tabs span {
  padding: 8px 0;
  color: #94a3b8;
  text-align: center;
  font-size: 11px;
  font-weight: 900;
}

.mock-tabs .active {
  color: #22d3ee;
  border-bottom: 3px solid #22d3ee;
}

.mock-tabs .tab-dashboard {
  animation: dashboardTab 7.2s ease-in-out infinite;
}

.mock-tabs .tab-history {
  animation: historyTab 7.2s ease-in-out infinite;
}

.mock-dashboard {
  animation: dashboardFlow 7.2s ease-in-out infinite;
}

.mock-plan,
.mock-control,
.mock-alert,
.mock-fares span,
.mock-save {
  border-radius: 12px;
  background: #0f2140;
}

.mock-plan {
  margin-bottom: 12px;
  background: #003829;
  padding: 13px;
}

.mock-plan b,
.mock-plan span {
  display: block;
}

.mock-plan b {
  color: #22c55e;
  font-size: 13px;
}

.mock-plan span {
  margin-top: 4px;
  color: #94a3b8;
  font-size: 10px;
}

.mock-section {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
}

.mock-section small {
  color: #22d3ee;
  font-size: 11px;
  font-weight: 900;
}

.mock-control,
.mock-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 12px;
}

.mock-control b,
.mock-alert b {
  color: #cbd5e1;
  font-size: 12px;
}

.mock-control span,
.mock-alert span {
  width: 42px;
  height: 24px;
  border: 2px solid #94a3b8;
  border-radius: 999px;
  background: #334155;
}

.mock-alert span {
  border-color: #22d3ee;
  background: #22d3ee;
}

.mock-fares {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mock-fares span {
  padding: 12px;
  color: #e2e8f0;
  font-size: 13px;
}

.mock-save {
  background: #0f9f3d;
  padding: 10px;
  color: #06210f;
  text-align: center;
  font-size: 12px;
  font-weight: 950;
}

.mock-permission-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  border-radius: 12px;
  background: #0f2140;
  padding: 12px;
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 800;
}

.mock-permission-row b {
  color: #22c55e;
}

.mock-history {
  position: absolute;
  inset: 125px 16px 18px;
  display: grid;
  align-content: start;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(18px);
  animation: historyFlow 7.2s ease-in-out infinite;
}

.history-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.history-head span {
  color: #22d3ee;
  font-size: 16px;
  font-weight: 950;
}

.history-head b {
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.14);
  padding: 7px 10px;
  color: #22c55e;
  font-size: 12px;
}

.history-card,
.history-summary {
  border: 1px solid rgba(34, 211, 238, 0.18);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.08), rgba(34, 197, 94, 0.06)),
    #0f2140;
  padding: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.history-status {
  margin-bottom: 10px;
  color: #22c55e;
  font-size: 12px;
  font-weight: 950;
}

.history-card strong {
  display: block;
  color: #f8fafc;
  font-size: 28px;
  line-height: 1;
}

.history-card p {
  margin: 8px 0 12px;
  color: #94a3b8;
  font-size: 12px;
}

.history-route {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
}

.history-route span {
  border-radius: 10px;
  background: rgba(2, 8, 23, 0.55);
  padding: 9px 10px;
  color: #e2e8f0;
  font-size: 12px;
  font-weight: 800;
}

.history-card small {
  color: #22d3ee;
  font-weight: 900;
}

.history-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #94a3b8;
  font-weight: 900;
}

.history-summary b {
  color: #22c55e;
  font-size: 26px;
}

.rapido-order {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 28px;
  z-index: 4;
  border: 3px solid #02d58f;
  border-radius: 20px;
  background: #ffffff;
  padding: 12px;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
  color: #111827;
  transform: translateY(16px);
  opacity: 0;
  animation: orderArrive 7.2s ease-in-out infinite;
}

.order-notification {
  position: absolute;
  left: 8px;
  right: 8px;
  top: -72px;
  display: grid;
  gap: 2px;
  border: 1px solid rgba(245, 196, 0, 0.32);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  padding: 11px 14px;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.22);
  opacity: 0;
  transform: translateY(-14px);
  animation: notificationDrop 7.2s ease-in-out infinite;
}

.order-notification span {
  color: #ffc400;
  font-size: 13px;
  font-weight: 950;
}

.order-notification b {
  color: #111827;
  font-size: 14px;
}

.order-mode {
  display: flex;
  align-items: center;
  margin-bottom: 7px;
}

.order-mode span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  background: #f1f5f9;
  padding: 6px 10px;
  color: #1f2937;
  font-size: 14px;
  font-weight: 800;
}

.order-mode span::before {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #475569;
  content: "";
}

.order-fare {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}

.order-fare strong {
  color: #111827;
  font-size: 32px;
  line-height: 1;
}

.order-fare b {
  color: #059669;
  font-size: 28px;
}

.order-fare span {
  color: #1f2937;
  font-size: 12px;
}

.order-route {
  position: relative;
  display: grid;
  gap: 10px;
  padding-left: 30px;
}

.order-route h4 {
  margin: 0 0 3px;
  color: #0f172a;
  font-size: 18px;
  line-height: 1;
}

.order-route p {
  margin: 0;
  color: #1f2937;
  font-size: 12px;
  line-height: 1.35;
}

.order-route b {
  color: #0f172a;
  background: rgba(2, 213, 143, 0.25);
}

.route-line {
  position: absolute;
  top: 8px;
  bottom: 4px;
  left: 7px;
  width: 12px;
}

.route-line::before,
.route-line::after {
  position: absolute;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0f172a;
  content: "";
}

.route-line::before {
  top: 0;
}

.route-line::after {
  bottom: 0;
}

.route-line span {
  position: absolute;
  top: 9px;
  bottom: 9px;
  left: 4px;
  width: 2px;
  background: #0f172a;
}

.order-actions {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  margin-top: 13px;
}

.order-actions span,
.order-actions button {
  display: grid;
  min-height: 42px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  font-weight: 950;
}

.order-actions span {
  border: 4px solid #d8dee8;
  background: #ffffff;
  color: #4b5563;
  font-size: 22px;
}

.order-actions button {
  position: relative;
  overflow: hidden;
  background: #ffc400;
  color: #111111;
  font-size: 17px;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.08);
  animation: acceptTap 7.2s ease-in-out infinite;
}

.order-actions button::after {
  position: absolute;
  inset: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  content: "";
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
  animation: acceptRipple 7.2s ease-out infinite;
}

.accept-bar {
  display: none;
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: #eef2f7;
}

.accept-bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffd400, #22c55e);
  animation: acceptProgress 7.2s ease-in-out infinite;
}

.rapido-order em {
  display: block;
  margin-top: 8px;
  color: #12843d;
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
  opacity: 0;
  animation: acceptText 7.2s ease-in-out infinite;
}

.status-pill,
.floating-card {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(13, 22, 37, 0.9);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.status-pill {
  top: 72px;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  animation: cardFloatTop 5s ease-in-out infinite;
}

.status-pill span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(50, 231, 120, 0.55);
  animation: livePulse 1.8s ease-out infinite;
}

.floating-card {
  width: min(260px, 64vw);
  padding: 18px;
  transform: translateZ(70px);
}

.floating-card span,
.floating-card p {
  color: var(--muted);
}

.floating-card strong {
  display: block;
  margin: 6px 0;
  font-size: 32px;
}

.floating-card b {
  color: var(--green);
}

.ride-card {
  right: -48px;
  bottom: 128px;
  animation: cardFloatRight 5.4s ease-in-out infinite;
}

.earnings-card {
  left: 18px;
  bottom: 58px;
  animation: cardFloatLeft 5.8s ease-in-out infinite;
}

.platform-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(9, 17, 29, 0.86);
}

.platform-track {
  display: flex;
  width: max-content;
  gap: 12px;
  padding: 18px 0;
  animation: rail 28s linear infinite;
}

.platform-track span {
  display: inline-flex;
  min-width: 142px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.06);
  padding: 14px 18px;
  text-align: center;
  font-size: 17px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 12px 30px rgba(0, 0, 0, 0.16);
}

.brand-ola { color: #61b70f; }
.brand-uber { color: #ffffff; }
.brand-rapido { color: #ffc400; }
.brand-indrive { color: #a8d600; }
.brand-namma { color: #00c76f; }
.brand-blusmart { color: #0f83ff; }
.brand-swiggy { color: #ff7a00; }
.brand-zomato { color: #f43f5e; }
.brand-blinkit { color: #ffbf2f; }
.brand-zepto { color: #8f63ff; }
.brand-bigbasket { color: #73c928; }
.brand-dunzo { color: #00c886; }
.brand-porter { color: #2563eb; }
.brand-amazon { color: #ff9900; }

@keyframes rail {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0) rotateY(-8deg) rotateX(4deg) rotateZ(1deg);
  }
  50% {
    transform: translateY(-16px) rotateY(-4deg) rotateX(5deg) rotateZ(-1deg);
  }
}

@keyframes orderArrive {
  0%,
  18% {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  28%,
  68% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  78%,
  100% {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }
}

@keyframes notificationDrop {
  0%,
  12% {
    opacity: 0;
    transform: translateY(-14px);
  }
  20%,
  42% {
    opacity: 1;
    transform: translateY(0);
  }
  52%,
  100% {
    opacity: 0;
    transform: translateY(-8px);
  }
}

@keyframes dashboardFlow {
  0%,
  70% {
    opacity: 1;
    transform: translateX(0);
  }
  78%,
  100% {
    opacity: 0;
    transform: translateX(-18px);
  }
}

@keyframes historyFlow {
  0%,
  72% {
    opacity: 0;
    transform: translateX(18px);
  }
  82%,
  96% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(8px);
  }
}

@keyframes dashboardTab {
  0%,
  72% {
    color: #22d3ee;
    border-bottom-color: #22d3ee;
  }
  80%,
  100% {
    color: #94a3b8;
    border-bottom-color: transparent;
  }
}

@keyframes historyTab {
  0%,
  72% {
    color: #94a3b8;
    border-bottom-color: transparent;
  }
  80%,
  100% {
    color: #22d3ee;
    border-bottom-color: #22d3ee;
  }
}

@keyframes acceptProgress {
  0%,
  32% {
    width: 0;
  }
  58%,
  100% {
    width: 100%;
  }
}

@keyframes acceptText {
  0%,
  52% {
    opacity: 0;
  }
  64%,
  92% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes acceptTap {
  0%,
  56%,
  72%,
  100% {
    transform: scale(1);
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.08);
  }
  62% {
    transform: scale(0.94);
    box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.12);
  }
  66% {
    transform: scale(1.03);
  }
}

@keyframes acceptRipple {
  0%,
  58% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
  62% {
    opacity: 0.75;
    transform: translate(-50%, -50%) scale(1);
  }
  74%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(14);
  }
}

@keyframes screenSweep {
  0%,
  34% {
    transform: translateX(-130%);
  }
  62%,
  100% {
    transform: translateX(130%);
  }
}

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(50, 231, 120, 0.55);
  }
  80%,
  100% {
    box-shadow: 0 0 0 10px rgba(50, 231, 120, 0);
  }
}

@keyframes cardFloatTop {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes cardFloatRight {
  0%,
  100% {
    transform: translateY(0) translateZ(70px);
  }
  50% {
    transform: translateY(-14px) translateZ(70px);
  }
}

@keyframes cardFloatLeft {
  0%,
  100% {
    transform: translateY(0) translateZ(70px);
  }
  50% {
    transform: translateY(12px) translateZ(70px);
  }
}

@keyframes panelDrift {
  0%,
  100% {
    transform: rotate(-7deg) skewY(-2deg) translateY(0);
  }
  50% {
    transform: rotate(-5deg) skewY(-1deg) translateY(-10px);
  }
}

@keyframes ringFloatOne {
  0%,
  100% {
    transform: rotate(7deg) translateY(0);
  }
  50% {
    transform: rotate(10deg) translateY(-12px);
  }
}

@keyframes ringFloatTwo {
  0%,
  100% {
    transform: rotate(-13deg) translateY(0);
  }
  50% {
    transform: rotate(-10deg) translateY(14px);
  }
}

@keyframes shadowBreath {
  0%,
  100% {
    opacity: 0.48;
    transform: scaleX(1);
  }
  50% {
    opacity: 0.36;
    transform: scaleX(0.86);
  }
}

.section {
  padding: clamp(52px, 8vw, 104px) clamp(18px, 6vw, 92px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

article,
details,
.download {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.stats article {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 30px 22px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(53, 231, 255, 0.08), rgba(255, 255, 255, 0.035)),
    var(--panel);
}

.stats strong {
  display: block;
  color: var(--cyan);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1;
}

.stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

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

.feature-grid article,
.review-grid article {
  padding: 24px;
}

.feature-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid rgba(53, 231, 255, 0.34);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(53, 231, 255, 0.16), rgba(50, 231, 120, 0.08)),
    rgba(53, 231, 255, 0.1);
  color: var(--cyan);
  font-weight: 950;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  align-items: center;
  gap: clamp(32px, 6vw, 76px);
  background: linear-gradient(180deg, rgba(9, 17, 29, 0.92), rgba(5, 7, 12, 0.82));
}

.showcase-copy {
  max-width: 620px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.check-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.5;
}

.check-list li::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  content: "";
  box-shadow: 0 0 0 5px rgba(50, 231, 120, 0.12);
}

.screen-stack {
  position: relative;
  min-height: 560px;
}

.screen {
  position: absolute;
  width: min(245px, 40vw);
  border: 8px solid #111827;
  border-radius: 28px;
  box-shadow: var(--shadow);
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.screen.one {
  top: 58px;
  left: 0;
  transform: rotate(-8deg);
}

.screen.two {
  top: 0;
  left: 32%;
  z-index: 2;
}

.screen.three {
  right: 0;
  bottom: 20px;
  transform: rotate(8deg);
}

.platform-board,
.platform-grid,
.review-grid {
  display: grid;
  gap: 14px;
}

.platform-board {
  max-width: 1160px;
  margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 8%, rgba(53, 231, 255, 0.12), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(255, 200, 87, 0.1), transparent 24%),
    rgba(15, 25, 42, 0.68);
  padding: clamp(22px, 4vw, 42px);
  box-shadow: var(--shadow);
}

.platform-group {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.platform-group + .platform-group {
  margin-top: 34px;
}

.platform-group h3 {
  margin: 0;
  color: #d8e4f5;
  font-size: 18px;
  font-weight: 800;
}

.platform-group h3::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 0 18px rgba(53, 231, 255, 0.55);
  vertical-align: 1px;
}

.brand-chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 18px;
}

.brand-chip {
  min-width: 112px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  padding: 14px 20px;
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
}

.brand-chip.brand-uber {
  color: #020617;
}

.platform-board > p {
  margin: 34px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 16px;
}

.platform-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.platform-grid article {
  min-height: 132px;
  position: relative;
  padding: 20px;
}

.platform-grid .icon-sprite {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  flex-basis: 42px;
}

.platform-grid b,
.platform-grid span,
.platform-grid em {
  display: block;
}

.platform-grid b {
  padding-right: 56px;
  font-size: 20px;
}

.platform-grid span {
  margin-top: 8px;
  color: var(--muted);
}

.platform-grid em {
  margin-top: 18px;
  color: var(--green);
  font-style: normal;
  font-weight: 900;
}

.steps {
  background: rgba(9, 17, 29, 0.76);
}

.steps ol {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  min-height: 214px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 22px;
  counter-increment: steps;
}

.steps li::before {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--amber), var(--coral));
  color: #190b0d;
  content: counter(steps);
  font-weight: 950;
}

.steps strong,
.steps span {
  display: block;
}

.steps span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-grid span {
  color: var(--amber);
  letter-spacing: 0;
}

.review-grid b,
.review-grid small {
  display: block;
}

.review-grid small {
  margin-top: 4px;
  color: var(--muted);
}

.blog-preview {
  background: rgba(9, 17, 29, 0.7);
}

.article-grid,
.article-list {
  display: grid;
  gap: 16px;
}

.article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-grid article,
.article-list article {
  overflow: hidden;
  padding: 24px;
}

.article-grid article {
  display: grid;
  gap: 12px;
}

.article-grid img,
.article-list img {
  width: calc(100% + 48px);
  max-width: none;
  margin: -24px -24px 6px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.article-grid article,
.article-list article {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.article-grid article:hover,
.article-list article:hover {
  border-color: rgba(53, 231, 255, 0.34);
  background: rgba(17, 29, 49, 0.92);
  transform: translateY(-4px);
}

.article-grid span,
.article-list span,
.article-meta {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.article-grid a:hover,
.article-list a:hover,
.article-page a:not(.button):hover {
  color: var(--cyan);
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.blog-hero,
.article-page {
  width: min(100% - 36px, 980px);
  margin-inline: auto;
}

.blog-hero {
  padding: clamp(56px, 8vw, 110px) 0 24px;
  text-align: center;
}

.blog-hero h1 {
  margin-inline: auto;
}

.blog-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.article-list {
  width: min(100% - 36px, 980px);
  margin-inline: auto;
  padding-top: 28px;
}

.article-list h2 {
  margin-bottom: 10px;
  font-size: clamp(26px, 3vw, 38px);
}

.article-page {
  padding: clamp(48px, 7vw, 86px) 0;
}

.article-page > * {
  margin-left: auto;
  margin-right: auto;
}

.article-page h1 {
  max-width: 920px;
  font-size: clamp(38px, 5.8vw, 68px);
}

.article-page h2 {
  margin-top: 34px;
  font-size: clamp(26px, 3vw, 38px);
}

.article-page p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.78;
}

.article-page .article-meta {
  color: var(--cyan);
}

.article-page img {
  width: 100%;
  margin: 26px 0 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-page h1,
.article-page h2,
.article-page p,
.article-page .eyebrow,
.article-page .article-meta,
.article-page .takeaway-box {
  width: min(100% - 40px, 820px);
}

.article-page h2 {
  padding-top: 4px;
}

.article-meta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  border: 1px solid rgba(53, 231, 255, 0.24);
  border-radius: 999px;
  background: rgba(53, 231, 255, 0.08);
  padding: 8px 12px;
}

.takeaway-box {
  margin: 8px 0 30px;
  border: 1px solid rgba(53, 231, 255, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(53, 231, 255, 0.12), rgba(50, 231, 120, 0.06)),
    rgba(15, 25, 42, 0.9);
  padding: 20px;
}

.takeaway-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 18px;
}

.takeaway-box p {
  margin: 0;
}

.article-page .button {
  margin-top: 10px;
}

.download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: clamp(52px, 8vw, 104px) clamp(18px, 6vw, 92px);
  padding: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(53, 231, 255, 0.13), rgba(50, 231, 120, 0.08)),
    var(--panel-strong);
}

.download > div {
  max-width: 760px;
}

.download-meta {
  margin-top: 20px;
}

.faq {
  padding-top: 0;
}

details {
  max-width: 900px;
  margin: 0 auto 12px;
  padding: 18px 22px;
}

summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(18px, 6vw, 92px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer p {
  margin: 0;
}

footer strong,
footer a {
  color: var(--text);
}

footer a {
  font-weight: 900;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 1100px) {
  nav {
    display: none;
  }

  .hero,
  .showcase {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 600px;
  }

  .stats,
  .platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .article-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-cta {
    min-height: 42px;
    padding-inline: 12px;
    font-size: 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-actions,
  .download {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-stage {
    min-height: auto;
    padding-top: 22px;
  }

  .hero-stage::before,
  .hero-stage::after,
  .device-ring,
  .status-pill,
  .floating-card {
    display: none;
  }

  .phone {
    width: min(330px, 86vw);
    transform: none;
  }

  .stats,
  .feature-grid,
  .article-grid,
  .platform-grid,
  .steps ol,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .screen-stack {
    display: grid;
    min-height: auto;
    gap: 16px;
    justify-items: center;
  }

  .screen,
  .screen.one,
  .screen.two,
  .screen.three {
    position: static;
    width: min(330px, 86vw);
    transform: none;
  }

footer {
  flex-direction: column;
  align-items: flex-start;
  }
}

/* Light premium yellow theme overrides */
:root {
  color-scheme: light;
  --bg: #f7f8fb;
  --bg-soft: #eef2f7;
  --panel: #ffffff;
  --panel-strong: #ffffff;
  --text: #101522;
  --muted: #5d6678;
  --line: rgba(16, 21, 34, 0.1);
  --cyan: #f5c400;
  --green: #ffdf38;
  --amber: #ffbf00;
  --coral: #f59e0b;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

body {
  background:
    radial-gradient(circle at 12% 5%, rgba(255, 212, 0, 0.22), transparent 30%),
    radial-gradient(circle at 84% 8%, rgba(245, 158, 11, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fb 48%, #eef2f7 100%);
  color: var(--text);
}

body::before {
  background-image:
    linear-gradient(rgba(16, 21, 34, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 21, 34, 0.04) 1px, transparent 1px);
  mask-image: linear-gradient(to bottom, black, transparent 76%);
}

.site-header {
  border-bottom-color: rgba(16, 21, 34, 0.08);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.brand-mark {
  border-color: rgba(245, 196, 0, 0.64);
  background-color: #111827;
  box-shadow: 0 12px 28px rgba(245, 196, 0, 0.22);
}

nav {
  color: #5c667a;
}

nav a:hover,
footer a,
.article-grid a:hover,
.article-list a:hover,
.article-page a:not(.button):hover {
  color: #b88a00;
}

.header-cta,
.button.primary {
  border-color: rgba(245, 196, 0, 0.72);
  background: linear-gradient(135deg, #ffe45c, #f5c400 52%, #f59e0b);
  color: #111111;
  box-shadow: 0 16px 36px rgba(245, 196, 0, 0.24);
}

.button.secondary {
  border-color: rgba(16, 21, 34, 0.14);
  background: #ffffff;
  color: var(--text);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.eyebrow {
  color: #b88a00;
}

.hero-stage::before {
  border-color: rgba(245, 196, 0, 0.26);
  background:
    linear-gradient(135deg, rgba(255, 228, 92, 0.26), rgba(255, 255, 255, 0.52)),
    repeating-linear-gradient(90deg, rgba(16, 21, 34, 0.04) 0 1px, transparent 1px 44px);
}

.device-ring {
  border-color: rgba(245, 196, 0, 0.28);
}

.ring-two {
  border-color: rgba(245, 158, 11, 0.22);
}

.status-pill,
.floating-card {
  border-color: rgba(16, 21, 34, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: #13803d;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.14);
}

.floating-card span,
.floating-card p {
  color: var(--muted);
}

.floating-card strong {
  color: var(--text);
}

.platform-strip {
  border-block-color: rgba(16, 21, 34, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.platform-track span {
  border-color: rgba(16, 21, 34, 0.1);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

article,
details,
.download {
  border-color: rgba(16, 21, 34, 0.1);
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.stats article {
  background:
    linear-gradient(135deg, rgba(255, 228, 92, 0.18), rgba(255, 255, 255, 0.9)),
    #ffffff;
}

.stats strong {
  color: #d69a00;
}

.feature-icon {
  border-color: rgba(245, 196, 0, 0.38);
  background: linear-gradient(135deg, rgba(255, 228, 92, 0.42), rgba(255, 255, 255, 0.92));
  color: #a67800;
}

.showcase,
.steps,
.blog-preview {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(247, 248, 251, 0.92));
}

.check-list li::before {
  background: #f5c400;
  box-shadow: 0 0 0 5px rgba(245, 196, 0, 0.16);
}

.platform-board {
  border-color: rgba(16, 21, 34, 0.1);
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 228, 92, 0.18), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(245, 158, 11, 0.12), transparent 24%),
    #ffffff;
  box-shadow: 0 22px 64px rgba(15, 23, 42, 0.1);
}

.platform-group h3 {
  color: #334155;
}

.platform-group h3::before {
  background: linear-gradient(135deg, #f5c400, #f59e0b);
  box-shadow: 0 0 18px rgba(245, 196, 0, 0.42);
}

.brand-chip {
  border-color: rgba(16, 21, 34, 0.08);
  background: #f8fafc;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.steps li {
  border-color: rgba(16, 21, 34, 0.1);
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.07);
}

.steps li::before {
  background: linear-gradient(135deg, #ffe45c, #f59e0b);
  color: #1f1300;
}

.download {
  background:
    linear-gradient(135deg, rgba(255, 228, 92, 0.32), rgba(255, 255, 255, 0.92)),
    #ffffff;
}

.article-meta,
.takeaway-box {
  border-color: rgba(245, 196, 0, 0.28);
  background: rgba(255, 248, 210, 0.72);
}

footer {
  border-top-color: rgba(16, 21, 34, 0.08);
  background: rgba(255, 255, 255, 0.7);
}

/* Premium first-screen polish */
.site-header {
  min-height: 76px;
}

.brand {
  letter-spacing: -0.01em;
}

.header-cta,
.button {
  position: relative;
  overflow: hidden;
  min-height: 50px;
  border-radius: 14px;
  isolation: isolate;
}

.header-cta::before,
.button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.58) 45%, transparent 68%);
  content: "";
  transform: translateX(-125%);
  transition: transform 580ms ease;
}

.header-cta:hover::before,
.button:hover::before {
  transform: translateX(125%);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 46px rgba(245, 196, 0, 0.28);
}

.button.secondary:hover {
  border-color: rgba(245, 196, 0, 0.38);
  background: #fffaf0;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.1);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 76px);
  border-bottom: 1px solid rgba(16, 21, 34, 0.08);
  background:
    radial-gradient(circle at 8% 16%, rgba(255, 221, 0, 0.18), transparent 26%),
    radial-gradient(circle at 84% 20%, rgba(245, 158, 11, 0.14), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 248, 217, 0.46));
}

.hero::before {
  position: absolute;
  inset: 26px clamp(18px, 5vw, 72px);
  z-index: -1;
  border: 1px solid rgba(245, 196, 0, 0.18);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.64), rgba(255, 248, 210, 0.42)),
    repeating-linear-gradient(90deg, rgba(16, 21, 34, 0.035) 0 1px, transparent 1px 58px);
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.08);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(245, 196, 0, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  padding: 8px 12px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.hero .eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f5c400;
  box-shadow: 0 0 0 6px rgba(245, 196, 0, 0.14);
  content: "";
}

.hero h1 {
  max-width: 820px;
  color: #0b1020;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero-lede {
  max-width: 720px;
  color: #536071;
}

.trust-row span {
  min-width: 142px;
  border-color: rgba(16, 21, 34, 0.1);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 217, 0.72)),
    #ffffff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.trust-row span:hover {
  border-color: rgba(245, 196, 0, 0.38);
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.12);
}

.trust-row strong {
  color: #111827;
}

.hero-stage {
  filter: drop-shadow(0 22px 40px rgba(15, 23, 42, 0.12));
}

.hero-stage::before {
  border-radius: 46px;
  background:
    linear-gradient(135deg, rgba(255, 230, 92, 0.34), rgba(255, 255, 255, 0.68)),
    linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
  box-shadow: 0 34px 90px rgba(245, 196, 0, 0.12), 0 34px 90px rgba(15, 23, 42, 0.08);
}

.phone {
  border-color: rgba(255, 255, 255, 0.52);
  box-shadow:
    inset 0 0 0 10px #080d18,
    inset 0 0 0 12px rgba(255, 255, 255, 0.08),
    0 36px 100px rgba(15, 23, 42, 0.22),
    0 0 0 10px rgba(255, 255, 255, 0.32);
}

.stats {
  position: relative;
  margin-top: -26px;
  padding-top: 0;
}

.stats article {
  border-radius: 18px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.stats article:hover {
  border-color: rgba(245, 196, 0, 0.34);
  transform: translateY(-5px);
  box-shadow: 0 26px 62px rgba(15, 23, 42, 0.12);
}

.stats strong {
  letter-spacing: -0.02em;
}

@media (max-width: 680px) {
  .hero::before {
    inset: 16px 12px;
    border-radius: 24px;
  }

  .trust-row span {
    width: 100%;
  }

  .stats {
    margin-top: 0;
  }
}

/* Main-screen spacing repair */
.hero {
  min-height: auto;
  padding-top: clamp(58px, 7vw, 86px);
  padding-bottom: clamp(54px, 6vw, 76px);
}

.hero::before {
  inset: 24px clamp(18px, 5vw, 72px);
}

.platform-strip {
  position: relative;
  z-index: 3;
  margin: 0;
}

.platform-track {
  padding: 16px 0;
}

.platform-track span {
  min-height: 54px;
}

.stats {
  margin-top: 0;
  padding-top: clamp(44px, 5vw, 64px);
  padding-bottom: clamp(44px, 5vw, 64px);
  background:
    linear-gradient(180deg, rgba(255, 248, 217, 0.42), rgba(255, 255, 255, 0.8));
}

.stats article {
  min-height: 150px;
}

#features {
  padding-top: clamp(56px, 6vw, 78px);
  background: #ffffff;
}

@media (max-width: 1100px) {
  .hero {
    padding-bottom: 44px;
  }
}

@media (max-width: 680px) {
  .hero {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .stats {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}

.hero-stage .phone {
  transform: none;
}

.hero-stage {
  min-height: 560px;
}

.hero-stage::after {
  width: 330px;
}

.rapido-order {
  left: 18px;
  right: 18px;
  bottom: 24px;
  padding: 10px;
}

.order-notification {
  top: -62px;
  padding: 9px 12px;
}

.order-fare strong {
  font-size: 27px;
}

.order-fare b {
  font-size: 24px;
}

.order-route {
  gap: 8px;
}

.order-route h4 {
  font-size: 15px;
}

.order-route p {
  font-size: 10.5px;
}

.order-actions {
  grid-template-columns: 38px 1fr;
  margin-top: 10px;
}

.order-actions span,
.order-actions button {
  min-height: 36px;
}

/* Footer and legal pages */
.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) minmax(260px, 1fr) minmax(220px, 1fr);
  align-items: start;
  gap: 24px;
  padding: 34px clamp(18px, 6vw, 92px);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-links a,
.footer-meta a {
  color: #475569;
  font-weight: 800;
}

.footer-links a:hover,
.footer-meta a:hover {
  color: #b88a00;
}

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 10px;
  color: var(--muted);
}

.footer-meta p {
  margin: 0;
  text-align: right;
}

.legal-page {
  width: min(100% - 40px, 920px);
  margin-inline: auto;
  margin-top: clamp(28px, 5vw, 48px);
  margin-bottom: clamp(40px, 7vw, 72px);
  border: 1px solid rgba(16, 21, 34, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  padding: clamp(32px, 5vw, 58px);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.09);
  overflow: hidden;
}

.legal-page h1 {
  max-width: 860px;
  color: #0b1020;
  font-size: clamp(42px, 6vw, 72px);
}

.legal-page h2 {
  margin-top: 34px;
  font-size: clamp(24px, 3vw, 36px);
}

.legal-page p {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.76;
  overflow-wrap: anywhere;
}

.legal-page .article-meta {
  width: fit-content;
  max-width: 100%;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0;
}

.contact-grid article {
  padding: 24px;
}

.contact-grid h2 {
  margin-top: 0;
  font-size: 24px;
}

.contact-grid a {
  color: #b88a00;
  font-weight: 900;
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  .site-footer,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-meta {
    justify-items: start;
  }

  .footer-meta p {
    text-align: left;
  }
}
