: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;
}

.permission-guide {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.language-switcher {
  display: flex;
  width: min(100%, 520px);
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 22px auto 0;
  border: 1px solid rgba(125, 211, 252, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(12, 31, 61, 0.92), rgba(5, 16, 34, 0.96)),
    #061226;
  padding: 12px 14px;
  box-shadow: 0 18px 44px rgba(0, 12, 28, 0.2);
}

.language-switcher label {
  color: #dff4ff;
  font-size: 13px;
  font-weight: 900;
}

.language-switcher select {
  width: min(230px, 52vw);
  min-height: 42px;
  border: 1px solid rgba(125, 211, 252, 0.28);
  border-radius: 14px;
  background: rgba(3, 12, 28, 0.86);
  color: #f6fbff;
  padding: 0 12px;
  font: inherit;
  font-weight: 800;
}

.site-language-control {
  position: fixed;
  right: clamp(14px, 2vw, 24px);
  bottom: clamp(14px, 2vw, 24px);
  z-index: 110;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(125, 211, 252, 0.28);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(3, 12, 28, 0.96), rgba(8, 47, 73, 0.9)),
    #061226;
  padding: 8px 10px 8px 14px;
  box-shadow: 0 18px 48px rgba(0, 12, 28, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.site-language-control label {
  color: #a5f3fc;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.site-language-control select {
  width: 132px;
  min-height: 38px;
  border: 1px solid rgba(125, 211, 252, 0.22);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.72);
  color: #f6fbff;
  padding: 0 10px;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
}

#google_translate_element,
.goog-te-banner-frame,
.goog-te-balloon-frame,
.skiptranslate iframe {
  display: none !important;
}

body {
  top: 0 !important;
}

.permission-guide article {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 12%, rgba(56, 189, 248, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(12, 31, 61, 0.92), rgba(5, 16, 34, 0.96));
  padding: 20px;
  box-shadow: 0 18px 44px rgba(0, 12, 28, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.permission-guide article::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -42px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.08);
}

.permission-guide span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  margin: 0 0 16px;
  place-items: center;
  border: 1px solid rgba(34, 211, 238, 0.34);
  border-radius: 14px;
  background: rgba(14, 116, 144, 0.2);
  color: #a5f3fc;
  font-size: 13px;
  font-weight: 950;
}

.permission-guide h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  color: #f7fbff;
  font-size: 18px;
}

.permission-guide p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #abc4dc;
  line-height: 1.55;
}

.tutorial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.tutorial-card {
  display: grid;
  gap: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 22px;
}

.tutorial-card.important {
  border-color: rgba(255, 200, 87, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 200, 87, 0.12), rgba(255, 93, 115, 0.06)),
    var(--panel);
}

.tutorial-card h3 {
  margin-bottom: 8px;
}

.tutorial-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.6;
}

.tutorial-card video,
.tutorial-card iframe,
.gif-guide {
  width: min(100%, 360px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #05070c;
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  box-shadow:
    inset 0 0 0 8px rgba(255, 255, 255, 0.06),
    0 24px 58px rgba(15, 23, 42, 0.18);
}

.tutorial-card video,
.tutorial-card iframe,
.gif-guide img {
  display: block;
  object-fit: contain;
}

.tutorial-card iframe,
.gif-guide iframe {
  border: 0;
}

.gif-guide {
  display: grid;
  place-items: center;
  color: var(--muted);
  padding: 16px;
  text-align: center;
}

.gif-guide span {
  width: min(100% - 32px, 320px);
  margin: 0;
}

.gif-guide img {
  width: calc(100% + 32px);
  height: calc(100% + 32px);
  border-radius: 16px;
  margin: -16px;
}

.gif-guide iframe {
  width: calc(100% + 32px);
  height: calc(100% + 32px);
  border-radius: 16px;
  margin: -16px;
}

.protect-slider {
  width: min(100%, 380px);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.protect-phone {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(125, 211, 252, 0.28);
  border-radius: 28px;
  background: #020617;
  box-shadow:
    inset 0 0 0 8px rgba(255, 255, 255, 0.055),
    0 24px 58px rgba(15, 23, 42, 0.2);
}

.protect-phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 54px;
  padding: 0 24px;
  border-bottom: 1px solid rgba(125, 211, 252, 0.18);
  color: #eff8ff;
  font-size: 12px;
  font-weight: 900;
}

.protect-phone-top span {
  width: 82px;
  height: 22px;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.protect-track {
  display: flex;
  align-items: stretch;
  transition: transform 0.42s cubic-bezier(.2,.8,.2,1);
}

.protect-slide {
  position: relative;
  min-width: 100%;
  display: grid;
  grid-template-rows: auto auto;
  gap: 0;
  padding: 10px;
  border: 0;
  border-radius: 0;
  background: #020617;
  box-shadow: none;
}

.protect-slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  border-radius: 20px;
  background: #030712;
}

.protect-slide::after {
  content: none;
}

.protect-caption {
  position: static;
  z-index: auto;
  margin-top: 10px;
  border: 1px solid rgba(125, 211, 252, 0.24);
  border-radius: 18px;
  background: rgba(3, 12, 28, 0.86);
  padding: 13px;
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.protect-caption small {
  width: max-content;
  display: inline-flex;
  border: 1px solid rgba(34, 211, 238, 0.32);
  border-radius: 999px;
  background: rgba(14, 116, 144, 0.22);
  padding: 7px 10px;
  color: #a5f3fc;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.protect-caption h4 {
  margin: 10px 0 5px;
  color: #ffffff;
  font-size: clamp(16px, 2.2vw, 21px);
  line-height: 1.12;
}

.protect-caption p {
  margin: 0;
  color: #b9cde2;
  font-size: 12px;
  line-height: 1.38;
}

.protect-screen-list {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}

.protect-screen-list span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 14px;
  background: rgba(5, 20, 36, 0.82);
  padding: 0 13px;
  color: #e8f6ff;
  font-size: 13px;
  font-weight: 900;
}

.protect-screen-list span::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: #22d3ee;
  box-shadow: 0 0 0 5px rgba(34, 211, 238, 0.13);
}

.protect-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
}

.protect-controls button {
  min-height: 38px;
  border: 1px solid rgba(125, 211, 252, 0.26);
  border-radius: 999px;
  background: rgba(6, 18, 38, 0.88);
  color: #dff4ff;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.protect-prev,
.protect-next {
  width: 62px;
}

.protect-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
}

.protect-dots button {
  width: 10px;
  min-height: 10px;
  padding: 0;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.34);
}

.protect-dots button.active {
  width: 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #38bdf8, #2563eb);
}

.protect-note {
  margin: 0;
  color: #93aeca;
  text-align: center;
  font-size: 12px;
  line-height: 1.45;
}

body.modal-open {
  overflow: hidden;
}

.download-guard {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  overflow: auto;
  background: rgba(15, 23, 42, 0.62);
  padding: 22px;
  backdrop-filter: blur(10px);
}

.download-guard.hidden {
  display: none;
}

.download-guard-card {
  position: relative;
  display: grid;
  width: min(100%, 920px);
  max-height: min(92svh, 760px);
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 22px;
  overflow: auto;
  border: 1px solid rgba(255, 200, 87, 0.34);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 248, 217, 0.98), rgba(255, 255, 255, 0.96)),
    #ffffff;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.28);
}

.download-guard-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 40px;
  min-height: 40px;
  place-items: center;
  border: 1px solid rgba(16, 21, 34, 0.12);
  border-radius: 50%;
  background: #ffffff;
  color: #101522;
  font-size: 24px;
  line-height: 1;
}

.download-guard-copy {
  align-self: center;
  padding-right: 12px;
}

.download-guard-copy h2 {
  max-width: 620px;
  margin-bottom: 12px;
  color: #101522;
  font-size: clamp(28px, 4vw, 46px);
}

.download-guard-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.download-guard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.download-guard-media {
  width: min(100%, 380px);
  aspect-ratio: auto;
  padding: 0;
  border: 0;
  background: transparent !important;
  box-shadow: none;
}

.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,
  .tutorial-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .download-guard-card {
    grid-template-columns: 1fr;
  }

  .download-guard-copy {
    padding-right: 0;
  }

  .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%;
  }

  .download-guard {
    padding: 12px;
  }

  .download-guard-card {
    max-height: 94svh;
    padding: 22px;
  }

  .download-guard-actions {
    flex-direction: column;
  }

  .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,
  .tutorial-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;
}

.whatsapp-float {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  padding: 8px 18px 8px 8px;
  color: #fff;
  box-shadow: 0 18px 46px rgba(18, 140, 126, 0.35);
  font-size: 14px;
  font-weight: 950;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 56px rgba(18, 140, 126, 0.45);
}

.whatsapp-float span {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border-radius: 50%;
  background: #ffffff url("assets/icons/support-agent-160.png") center / cover no-repeat;
  font-size: 0;
  letter-spacing: 0;
}

.whatsapp-float span::before {
  content: none;
}

.whatsapp-float span::after {
  content: none;
}

.whatsapp-float small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 800;
}

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

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

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

@media (max-width: 560px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 52px;
    padding: 7px 14px 7px 7px;
    font-size: 13px;
  }

  .whatsapp-float span {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }
}

/* AcceptRide India 2026 theme refresh
   Full visual layer: light operations-console style, different from the old dark neon theme. */
:root {
  color-scheme: light;
  --bg: #f3f6fb;
  --bg-soft: #e8eef7;
  --panel: #ffffff;
  --panel-strong: #111827;
  --text: #111827;
  --muted: #5f6b7a;
  --line: rgba(17, 24, 39, 0.13);
  --cyan: #2563eb;
  --green: #159947;
  --amber: #f4b400;
  --coral: #e5484d;
  --shadow: 0 18px 48px rgba(17, 24, 39, 0.12);
  --ar-blue: #2563eb;
  --ar-green: #159947;
  --ar-yellow: #f4b400;
}

body {
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(17, 24, 39, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #f7f9fc 0%, #edf3fb 48%, #f8fafc 100%);
  background-size: 36px 36px, 36px 36px, auto;
  color: var(--text);
}

body::before {
  display: none;
}

.site-header {
  min-height: 74px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.1);
  background: rgba(247, 249, 252, 0.9);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
}

.brand {
  color: var(--text);
  letter-spacing: 0;
}

.brand-mark {
  border: 1px solid rgba(17, 24, 39, 0.16);
  border-radius: 10px;
  background-color: #05070c;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.14);
}

nav {
  color: #526071;
}

nav a {
  position: relative;
}

nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--ar-yellow);
  content: "";
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 160ms ease, transform 160ms ease;
}

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

nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta,
.button {
  border-radius: 7px;
  box-shadow: none;
}

.header-cta,
.button.primary {
  border: 1px solid #111827;
  background: #111827;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.18);
}

.button.secondary {
  border: 1px solid rgba(17, 24, 39, 0.16);
  background: #ffffff;
  color: #111827;
}

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

.hero {
  position: relative;
  min-height: calc(100svh - 74px);
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.78fr);
  gap: clamp(30px, 5vw, 72px);
  padding-top: clamp(52px, 7vw, 98px);
}

.hero::before {
  position: absolute;
  inset: clamp(18px, 3vw, 40px) clamp(12px, 4vw, 72px) auto auto;
  width: min(45vw, 560px);
  height: min(42vw, 500px);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(244, 180, 0, 0.34), rgba(21, 153, 71, 0.16)),
    #ffffff;
  content: "";
  transform: rotate(2deg);
  box-shadow: 0 24px 80px rgba(17, 24, 39, 0.1);
}

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

.eyebrow {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  padding: 0 11px;
  color: var(--ar-blue);
}

h1 {
  color: var(--text);
  font-size: clamp(44px, 6.8vw, 86px);
  line-height: 0.96;
}

h2,
h3 {
  color: var(--text);
}

.hero-lede,
.section-heading p,
.showcase-copy p,
.download p,
article p,
details p {
  color: var(--muted);
}

.trust-row span,
.download-meta span {
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: #ffffff;
  color: var(--muted);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
}

.trust-row strong,
.download-meta strong {
  color: var(--text);
}

.device-ring {
  opacity: 0.25;
  border-color: rgba(17, 24, 39, 0.2);
  box-shadow: none;
}

.phone {
  border: 1px solid rgba(17, 24, 39, 0.18);
  border-radius: 30px;
  background: #111827;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.24);
}

.mock-screen {
  background: linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
  color: #111827;
}

.mock-status,
.mock-header,
.mock-tabs,
.mock-section,
.mock-plan,
.mock-permission-row,
.history-card,
.history-summary,
.rapido-order {
  border-color: rgba(17, 24, 39, 0.11);
  background: #ffffff;
  color: #111827;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.07);
}

.mock-status,
.mock-tabs,
.mock-section small,
.mock-plan span,
.mock-permission-row,
.history-card p,
.history-card small {
  color: #667085;
}

.mock-tabs span.active,
.tab-dashboard.active {
  color: var(--ar-blue);
  border-bottom-color: var(--ar-blue);
}

.status-pill,
.floating-card {
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: #ffffff;
  color: var(--ar-green);
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.12);
}

.platform-strip {
  border-block: 1px solid rgba(17, 24, 39, 0.1);
  background: #111827;
}

.platform-track span {
  min-width: 150px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.brand-uber {
  color: #f8fafc;
}

.section {
  padding-block: clamp(58px, 7vw, 94px);
}

.stats article,
.feature-grid article,
.platform-board,
.platform-group,
.tutorial-card,
.review-grid article,
.article-grid article,
.article-list article,
details,
.takeaway-box,
.download,
.legal-page .takeaway-box,
.contact-grid article {
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
}

.stats article {
  min-height: 132px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.stats strong {
  color: #111827;
}

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

.feature-grid article {
  position: relative;
  overflow: hidden;
}

.feature-grid article::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--ar-yellow);
  content: "";
}

.feature-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(17, 24, 39, 0.13);
  border-radius: 8px;
  background: #111827;
  color: #ffffff;
  box-shadow: none;
}

.showcase {
  border-block: 1px solid rgba(17, 24, 39, 0.1);
  background:
    linear-gradient(90deg, rgba(244, 180, 0, 0.16), transparent 38%),
    #ffffff;
}

.check-list li {
  border-color: rgba(17, 24, 39, 0.12);
  background: #f8fafc;
  color: var(--muted);
}

.screen {
  border: 1px solid rgba(17, 24, 39, 0.14);
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.18);
}

.platform-board {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(21, 153, 71, 0.08)),
    #ffffff;
}

.platform-group {
  box-shadow: none;
}

.brand-chip {
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 999px;
  background: #f8fafc;
  box-shadow: none;
}

.steps ol li {
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
}

.steps ol li::before {
  background: #111827;
  color: #ffffff;
}

.tutorial-card.important {
  background:
    linear-gradient(135deg, rgba(244, 180, 0, 0.18), rgba(229, 72, 77, 0.08)),
    #ffffff;
}

.review-grid article span {
  color: var(--ar-yellow);
}

.article-grid article:hover,
.article-list article:hover {
  border-color: rgba(37, 99, 235, 0.22);
  background: #ffffff;
  transform: translateY(-3px);
}

.article-grid span,
.article-list span,
.article-meta {
  color: var(--ar-blue);
}

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

.blog-hero {
  position: relative;
  width: min(100% - 36px, 1120px);
  border-bottom: 1px solid rgba(17, 24, 39, 0.1);
  text-align: left;
}

.blog-hero h1,
.blog-hero p:not(.eyebrow) {
  margin-left: 0;
  margin-right: auto;
}

.article-list {
  width: min(100% - 36px, 1120px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.article-list article:first-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1fr);
  align-items: center;
}

.article-grid img,
.article-list img {
  width: calc(100% + 48px);
  border-bottom-color: rgba(17, 24, 39, 0.11);
}

.article-page {
  width: min(100% - 36px, 1080px);
}

.article-page h1 {
  font-size: clamp(38px, 5.2vw, 70px);
}

.article-page p {
  color: #475467;
}

.article-page img {
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.12);
}

.article-meta {
  border: 1px solid rgba(37, 99, 235, 0.18);
  background: rgba(37, 99, 235, 0.08);
}

.takeaway-box {
  border: 1px solid rgba(21, 153, 71, 0.22);
  background:
    linear-gradient(135deg, rgba(21, 153, 71, 0.1), rgba(244, 180, 0, 0.12)),
    #ffffff;
}

.takeaway-box strong {
  color: var(--text);
}

.download {
  background: linear-gradient(135deg, #111827 0%, #1f2937 58%, #263238 100%);
  color: #ffffff;
}

.download h2,
.download p,
.download .eyebrow {
  color: #ffffff;
}

.download-meta span {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.15);
}

details {
  color: var(--text);
}

details p {
  color: var(--muted);
}

footer {
  border-top: 1px solid rgba(17, 24, 39, 0.1);
  background: #ffffff;
  color: var(--muted);
}

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

.whatsapp-float {
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 999px;
  background: #159947;
  color: #ffffff;
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.18);
}

.whatsapp-float span {
  background-color: #ffffff;
}

.legal-page {
  color: var(--text);
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.contact-grid article {
  background: #ffffff;
}

@media (max-width: 900px) {
  .hero::before {
    inset: auto 18px 80px 18px;
    width: auto;
    height: 420px;
  }

  .article-list,
  .article-list article:first-child {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 14px;
  }

  h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .hero {
    padding-inline: 14px;
  }
}

/* AcceptRide visual tune v2: warmer palette, paper-map background, calmer motion */
:root {
  --bg: #fff8ea;
  --bg-soft: #f4ead8;
  --panel: #fffdf7;
  --panel-strong: #18241f;
  --text: #18241f;
  --muted: #6f685c;
  --line: rgba(24, 36, 31, 0.14);
  --cyan: #0f766e;
  --green: #2f8f46;
  --amber: #f6b52e;
  --coral: #d94b3d;
  --shadow: 0 18px 44px rgba(72, 54, 30, 0.13);
  --ar-blue: #0f766e;
  --ar-green: #2f8f46;
  --ar-yellow: #f6b52e;
  --ar-cream: #fff8ea;
  --ar-ink: #18241f;
}

body {
  background:
    linear-gradient(120deg, rgba(246, 181, 46, 0.16), transparent 34%),
    linear-gradient(300deg, rgba(15, 118, 110, 0.12), transparent 42%),
    repeating-linear-gradient(0deg, rgba(24, 36, 31, 0.032) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(90deg, rgba(24, 36, 31, 0.032) 0 1px, transparent 1px 42px),
    #fff8ea;
  color: var(--text);
}

.site-header {
  min-height: 78px;
  padding-block: 12px;
  background: rgba(255, 248, 234, 0.9);
  border-bottom-color: rgba(24, 36, 31, 0.12);
}

.brand {
  gap: 14px;
}

.brand span:last-child {
  font-size: 16px;
}

nav {
  border: 1px solid rgba(24, 36, 31, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  padding: 9px 14px;
  gap: 18px;
}

nav a::after {
  bottom: -5px;
  background: var(--ar-green);
}

.header-cta,
.button.primary {
  background: linear-gradient(135deg, #18241f, #2f493c);
  border-color: #18241f;
  color: #fffdf7;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(24, 36, 31, 0.18);
}

.hero {
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 0.92fr);
  align-items: start;
  padding-top: clamp(56px, 8vw, 108px);
}

.hero::before {
  inset: 88px clamp(18px, 5vw, 92px) auto auto;
  width: min(47vw, 610px);
  height: min(50vw, 620px);
  border-radius: 42px;
  background:
    radial-gradient(circle at 70% 20%, rgba(246, 181, 46, 0.45), transparent 34%),
    radial-gradient(circle at 18% 80%, rgba(47, 143, 70, 0.26), transparent 38%),
    linear-gradient(145deg, #ffffff, #fff2ce);
  transform: rotate(-3deg);
}

.hero-copy {
  max-width: 690px;
  padding-top: clamp(8px, 4vw, 42px);
}

h1 {
  max-width: 720px;
  font-size: clamp(42px, 6.2vw, 78px);
  line-height: 1;
}

.hero-lede {
  max-width: 640px;
}

.eyebrow {
  border-color: rgba(15, 118, 110, 0.2);
  background: rgba(15, 118, 110, 0.09);
  color: #0f766e;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 680px;
}

.trust-row span,
.download-meta span {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.74);
}

.hero-stage {
  min-height: 710px;
  perspective: 1400px;
}

.device-ring {
  display: none;
}

.phone.phone-main {
  width: min(390px, 78vw);
  margin-inline: auto 30px;
  transform: rotate(-2deg);
  animation: phoneDrift 7s ease-in-out infinite;
}

.phone {
  border-radius: 34px;
  background: #18241f;
  box-shadow: 0 26px 62px rgba(72, 54, 30, 0.28);
}

.mock-screen {
  background: linear-gradient(180deg, #fffdf7, #f3ead7);
}

.mock-header,
.mock-tabs,
.mock-section,
.mock-plan,
.mock-permission-row,
.history-card,
.history-summary,
.rapido-order {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 8px 18px rgba(72, 54, 30, 0.08);
}

.status-pill {
  top: 40px;
  right: 8px;
  border-radius: 999px;
  color: #2f8f46;
  animation: softFloat 5.5s ease-in-out infinite;
}

.platform-strip {
  background: #18241f;
}

.platform-track {
  animation-duration: 42s;
}

.platform-track span {
  border-radius: 999px;
  background: rgba(255, 248, 234, 0.08);
}

.section-heading.centered {
  text-align: left;
  width: min(100% - 36px, 1120px);
  margin-inline: auto;
}

.section-heading.centered p:not(.eyebrow) {
  margin-left: 0;
}

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

.stats article,
.feature-grid article,
.tutorial-card,
.review-grid article,
.article-grid article,
.article-list article,
details {
  border-radius: 14px;
  background: rgba(255, 253, 247, 0.86);
  box-shadow: 0 14px 36px rgba(72, 54, 30, 0.1);
}

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

.feature-grid article::before {
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #f6b52e, #2f8f46);
}

.feature-icon {
  border-radius: 50%;
  background: #fff2ce;
  color: #18241f;
}

.showcase {
  background:
    linear-gradient(135deg, rgba(24, 36, 31, 0.94), rgba(47, 73, 60, 0.94)),
    #18241f;
  color: #fffdf7;
}

.showcase h2,
.showcase h3,
.showcase .eyebrow {
  color: #fffdf7;
}

.showcase p,
.showcase-copy p {
  color: rgba(255, 253, 247, 0.74);
}

.check-list li {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 253, 247, 0.78);
}

.platform-board {
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(246, 181, 46, 0.22), rgba(15, 118, 110, 0.12)),
    rgba(255, 253, 247, 0.9);
}

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

.steps ol li {
  border-radius: 18px;
}

.steps ol li::before {
  background: #2f8f46;
}

.article-list {
  gap: 22px;
}

.blog-hero {
  padding-top: clamp(64px, 9vw, 124px);
}

.article-page img,
.screen {
  border-radius: 20px;
}

.download {
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 20%, rgba(246, 181, 46, 0.32), transparent 34%),
    linear-gradient(135deg, #18241f, #2f493c);
}

.whatsapp-float {
  background: #2f8f46;
}

@keyframes phoneDrift {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

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

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

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

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero::before {
    inset: auto 16px 96px 16px;
    height: 520px;
  }

  .phone.phone-main {
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .trust-row,
  .feature-grid,
  .stats,
  .steps ol {
    grid-template-columns: 1fr;
  }

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

/* AcceptRide neon blue theme v3 */
:root {
  color-scheme: dark;
  --bg: #020617;
  --bg-soft: #071426;
  --panel: rgba(8, 19, 38, 0.82);
  --panel-strong: #07111f;
  --text: #eef7ff;
  --muted: #9fb3c8;
  --line: rgba(125, 211, 252, 0.18);
  --cyan: #38bdf8;
  --green: #22d3ee;
  --amber: #60a5fa;
  --coral: #818cf8;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
  --ar-blue: #38bdf8;
  --ar-green: #22d3ee;
  --ar-yellow: #60a5fa;
  --ar-cream: #020617;
  --ar-ink: #eef7ff;
}

body {
  background:
    radial-gradient(circle at 18% 12%, rgba(56, 189, 248, 0.26), transparent 30%),
    radial-gradient(circle at 82% 6%, rgba(129, 140, 248, 0.22), transparent 28%),
    radial-gradient(circle at 72% 78%, rgba(34, 211, 238, 0.16), transparent 32%),
    linear-gradient(180deg, #020617 0%, #071426 48%, #020617 100%);
  color: var(--text);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(125, 211, 252, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
  content: "";
}

.site-header {
  background: rgba(2, 6, 23, 0.82);
  border-bottom-color: rgba(125, 211, 252, 0.18);
  box-shadow: 0 10px 32px rgba(56, 189, 248, 0.08);
}

.brand,
h1,
h2,
h3,
summary {
  color: var(--text);
}

.brand-mark {
  border-color: rgba(56, 189, 248, 0.38);
  background-color: #020617;
  box-shadow: 0 0 28px rgba(56, 189, 248, 0.22);
}

nav {
  border-color: rgba(125, 211, 252, 0.16);
  background: rgba(8, 19, 38, 0.68);
  color: #b7c9dd;
}

nav a::after {
  background: #38bdf8;
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.9);
}

nav a:hover {
  color: #ffffff;
}

.header-cta,
.button.primary {
  border-color: rgba(56, 189, 248, 0.62);
  background: linear-gradient(135deg, #38bdf8, #2563eb 58%, #4f46e5);
  color: #f8fbff;
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.28), 0 16px 38px rgba(37, 99, 235, 0.24);
}

.button.secondary {
  border-color: rgba(125, 211, 252, 0.22);
  background: rgba(8, 19, 38, 0.72);
  color: #dff4ff;
}

.hero::before {
  background:
    radial-gradient(circle at 72% 20%, rgba(56, 189, 248, 0.42), transparent 34%),
    radial-gradient(circle at 20% 80%, rgba(79, 70, 229, 0.34), transparent 36%),
    linear-gradient(145deg, rgba(8, 19, 38, 0.92), rgba(2, 6, 23, 0.92));
  border-color: rgba(125, 211, 252, 0.18);
  box-shadow: 0 0 80px rgba(56, 189, 248, 0.18);
}

.eyebrow {
  border-color: rgba(56, 189, 248, 0.24);
  background: rgba(56, 189, 248, 0.1);
  color: #7dd3fc;
}

.hero-lede,
.section-heading p,
.showcase-copy p,
.download p,
article p,
details p,
.article-page p,
.legal-page p,
.legal-page li {
  color: var(--muted);
}

.trust-row span,
.download-meta span,
.stats article,
.feature-grid article,
.platform-board,
.platform-group,
.tutorial-card,
.review-grid article,
.article-grid article,
.article-list article,
details,
.takeaway-box,
.contact-grid article {
  border-color: rgba(125, 211, 252, 0.16);
  background: rgba(8, 19, 38, 0.74);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
}

.trust-row strong,
.stats strong {
  color: #ffffff;
}

.phone {
  background: #020617;
  border-color: rgba(125, 211, 252, 0.26);
  box-shadow: 0 0 42px rgba(56, 189, 248, 0.22), 0 28px 80px rgba(0, 0, 0, 0.58);
}

.mock-screen {
  background: linear-gradient(180deg, #061226, #0a1b35);
  color: #eef7ff;
}

.mock-header,
.mock-tabs,
.mock-section,
.mock-plan,
.mock-permission-row,
.history-card,
.history-summary,
.rapido-order {
  background: rgba(10, 28, 54, 0.9);
  border-color: rgba(125, 211, 252, 0.16);
  color: #eef7ff;
}

.mock-status,
.mock-tabs,
.mock-section small,
.mock-plan span,
.mock-permission-row,
.history-card p,
.history-card small {
  color: #9fb3c8;
}

.status-pill,
.floating-card {
  background: rgba(8, 19, 38, 0.86);
  border-color: rgba(56, 189, 248, 0.28);
  color: #67e8f9;
  box-shadow: 0 0 32px rgba(56, 189, 248, 0.18);
}

.platform-strip {
  background: rgba(2, 6, 23, 0.96);
  border-block-color: rgba(125, 211, 252, 0.16);
}

.platform-track span {
  border-color: rgba(125, 211, 252, 0.18);
  background: rgba(8, 19, 38, 0.82);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.08);
}

.feature-grid article::before {
  background: linear-gradient(90deg, #38bdf8, #2563eb, #4f46e5);
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.55);
}

.feature-icon {
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.26);
  color: #7dd3fc;
}

.showcase {
  background:
    radial-gradient(circle at 12% 20%, rgba(56, 189, 248, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(2, 6, 23, 0.96), rgba(8, 19, 38, 0.96));
}

.showcase h2,
.showcase h3,
.showcase .eyebrow {
  color: #eef7ff;
}

.check-list li,
.brand-chip,
.steps ol li {
  border-color: rgba(125, 211, 252, 0.16);
  background: rgba(8, 19, 38, 0.72);
  color: #b7c9dd;
}

.platform-board {
  background:
    linear-gradient(135deg, rgba(56, 189, 248, 0.13), rgba(79, 70, 229, 0.12)),
    rgba(8, 19, 38, 0.72);
}

.steps ol li::before {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  color: #ffffff;
}

.article-grid article:hover,
.article-list article:hover {
  border-color: rgba(56, 189, 248, 0.38);
  background: rgba(10, 28, 54, 0.82);
  box-shadow: 0 0 34px rgba(56, 189, 248, 0.12);
}

.article-grid span,
.article-list span,
.article-meta {
  color: #7dd3fc;
}

.article-meta {
  border-color: rgba(56, 189, 248, 0.22);
  background: rgba(56, 189, 248, 0.1);
}

.takeaway-box {
  border-color: rgba(56, 189, 248, 0.24);
  background:
    linear-gradient(135deg, rgba(56, 189, 248, 0.12), rgba(79, 70, 229, 0.1)),
    rgba(8, 19, 38, 0.78);
}

.takeaway-box strong {
  color: #eef7ff;
}

.download {
  border-color: rgba(56, 189, 248, 0.24);
  background:
    radial-gradient(circle at 85% 20%, rgba(56, 189, 248, 0.3), transparent 34%),
    linear-gradient(135deg, #020617, #0b1f3a 58%, #172554);
  box-shadow: 0 0 60px rgba(56, 189, 248, 0.16);
}

footer {
  background: rgba(2, 6, 23, 0.92);
  border-top-color: rgba(125, 211, 252, 0.16);
  color: #9fb3c8;
}

footer strong,
footer a {
  color: #eef7ff;
}

.whatsapp-float {
  background: linear-gradient(135deg, #0ea5e9, #2563eb);
  border-color: rgba(125, 211, 252, 0.28);
  box-shadow: 0 0 32px rgba(56, 189, 248, 0.22);
}

@keyframes phoneDrift {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
    filter: drop-shadow(0 0 0 rgba(56, 189, 248, 0));
  }
  50% {
    transform: translateY(-14px) rotate(1deg);
    filter: drop-shadow(0 0 18px rgba(56, 189, 248, 0.22));
  }
}

/* Blue neon correction: remove washed grey hero layer and align first viewport */
body {
  background:
    radial-gradient(circle at 12% 10%, rgba(14, 165, 233, 0.28), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(37, 99, 235, 0.24), transparent 30%),
    radial-gradient(circle at 52% 86%, rgba(6, 182, 212, 0.14), transparent 34%),
    linear-gradient(180deg, #020617 0%, #06162c 52%, #020617 100%);
}

.hero {
  min-height: auto;
  padding-bottom: clamp(42px, 6vw, 74px);
  background:
    linear-gradient(90deg, rgba(56, 189, 248, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(56, 189, 248, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  overflow: hidden;
}

.hero::before {
  z-index: 0;
  opacity: 0.72;
  filter: blur(0);
}

.hero-copy,
.hero-stage {
  z-index: 1;
}

.hero-copy {
  padding-top: 0;
}

.hero-copy .eyebrow {
  color: #bae6fd;
}

.hero-lede {
  color: #c7d7ea;
}

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

.hero-stage::before {
  inset: 62px 18px 70px 46px;
  z-index: -2;
  border-color: rgba(56, 189, 248, 0.28);
  background:
    linear-gradient(135deg, rgba(14, 165, 233, 0.22), rgba(37, 99, 235, 0.12)),
    linear-gradient(90deg, rgba(125, 211, 252, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(125, 211, 252, 0.07) 1px, transparent 1px),
    rgba(3, 12, 28, 0.68);
  background-size: auto, 34px 34px, 34px 34px, auto;
  box-shadow:
    0 0 70px rgba(56, 189, 248, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  opacity: 0.95;
  transform: rotate(-4deg) skewY(-1deg);
}

.hero-stage::after {
  background: rgba(14, 165, 233, 0.22);
  filter: blur(24px);
}

.phone.phone-main {
  margin-inline: auto;
}

.trust-row span {
  background: rgba(8, 19, 38, 0.88);
  color: #b7c9dd;
}

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

.platform-strip {
  box-shadow: inset 0 1px 0 rgba(125, 211, 252, 0.1), inset 0 -1px 0 rgba(125, 211, 252, 0.1);
}

.stats {
  margin-top: clamp(34px, 5vw, 68px);
}

/* Dark lock pass: remove remaining light surfaces from older theme layers */
html,
body,
main {
  background-color: #020617;
}

.section,
.blog-preview,
.reviews,
.steps,
.faq,
.legal-page,
.contact-page,
.blog-hero,
.article-page,
.article-list,
.site-footer,
footer {
  background-color: transparent;
}

.showcase {
  background:
    radial-gradient(circle at 12% 20%, rgba(56, 189, 248, 0.24), transparent 28%),
    radial-gradient(circle at 82% 80%, rgba(37, 99, 235, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(2, 6, 23, 0.98), rgba(8, 19, 38, 0.98));
}

.stats article,
.feature-grid article,
.platform-board,
.platform-group,
.tutorial-card,
.tutorial-card.important,
.review-grid article,
.article-grid article,
.article-list article,
details,
.takeaway-box,
.download,
.legal-page .takeaway-box,
.contact-grid article,
.check-list li,
.brand-chip,
.steps ol li,
.download-meta span,
.trust-row span {
  background:
    linear-gradient(180deg, rgba(15, 35, 68, 0.84), rgba(7, 18, 35, 0.86)),
    rgba(7, 18, 35, 0.88) !important;
  border-color: rgba(125, 211, 252, 0.18) !important;
  color: #d8ebff;
}

.platform-board {
  background:
    radial-gradient(circle at 20% 8%, rgba(56, 189, 248, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(15, 35, 68, 0.84), rgba(7, 18, 35, 0.9)) !important;
}

.download {
  background:
    radial-gradient(circle at 85% 20%, rgba(56, 189, 248, 0.3), transparent 34%),
    linear-gradient(135deg, #020617, #0b1f3a 58%, #172554) !important;
}

.site-header,
footer {
  background: rgba(2, 6, 23, 0.94) !important;
}

.mock-screen,
.mock-header,
.mock-tabs,
.mock-section,
.mock-plan,
.mock-permission-row,
.history-card,
.history-summary,
.rapido-order,
.mock-save,
.mock-alert,
.mock-control {
  background-color: rgba(7, 18, 35, 0.94) !important;
}

.article-grid img,
.article-list img,
.article-page img,
.screen {
  background-color: #071223;
}

.section-heading p,
.hero-lede,
.showcase-copy p,
.download p,
article p,
details p,
.article-page p,
.legal-page p,
.legal-page li,
.contact-grid p,
.footer-meta p {
  color: #a9bdd3 !important;
}

.stats span,
.mock-status,
.mock-tabs,
.mock-section small,
.mock-plan span,
.mock-permission-row,
.history-card p,
.history-card small {
  color: #9fb3c8 !important;
}

.stats strong,
.feature-grid h3,
.platform-group h3,
.tutorial-card h3,
.review-grid b,
.article-grid h3,
.article-list h2,
.article-page h1,
.article-page h2,
details summary,
.contact-grid h2,
.legal-page h1,
.legal-page h2 {
  color: #f4fbff !important;
}

.button.secondary {
  background: rgba(7, 18, 35, 0.92) !important;
  color: #dff4ff !important;
}

.brand-chip {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

@media (max-width: 900px) {
  .hero::before {
    background:
      radial-gradient(circle at 70% 20%, rgba(56, 189, 248, 0.26), transparent 34%),
      linear-gradient(145deg, rgba(8, 19, 38, 0.94), rgba(2, 6, 23, 0.94)) !important;
  }
}

/* Final hard dark-blue pass: neutralize every old light panel still in cascade */
body,
main,
.hero,
.section,
.blog-hero,
.article-page,
.legal-page,
.contact-page {
  background-color: #020617 !important;
}

.hero {
  background-image:
    radial-gradient(circle at 18% 14%, rgba(56, 189, 248, 0.14), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(37, 99, 235, 0.12), transparent 32%),
    linear-gradient(90deg, rgba(56, 189, 248, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(56, 189, 248, 0.045) 1px, transparent 1px) !important;
  background-size: auto, auto, 42px 42px, 42px 42px !important;
}

.hero::before {
  background:
    radial-gradient(circle at 72% 22%, rgba(56, 189, 248, 0.32), transparent 34%),
    radial-gradient(circle at 18% 78%, rgba(37, 99, 235, 0.22), transparent 38%),
    linear-gradient(145deg, rgba(8, 19, 38, 0.9), rgba(2, 6, 23, 0.94)) !important;
  border-color: rgba(125, 211, 252, 0.22) !important;
}

.hero-stage::before {
  background:
    radial-gradient(circle at 74% 22%, rgba(56, 189, 248, 0.2), transparent 32%),
    linear-gradient(90deg, rgba(125, 211, 252, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(125, 211, 252, 0.07) 1px, transparent 1px),
    rgba(3, 12, 28, 0.82) !important;
  background-size: auto, 34px 34px, 34px 34px, auto !important;
}

.site-header,
.site-footer,
footer,
.platform-strip {
  background-color: rgba(2, 6, 23, 0.96) !important;
}

.stats article,
.feature-grid article,
.platform-board,
.platform-group,
.tutorial-card,
.tutorial-card.important,
.review-grid article,
.article-grid article,
.article-list article,
details,
.takeaway-box,
.download,
.legal-page .takeaway-box,
.contact-grid article,
.check-list li,
.brand-chip,
.steps ol li,
.download-meta span,
.trust-row span,
.mock-screen,
.mock-status,
.mock-header,
.mock-tabs,
.mock-section,
.mock-plan,
.mock-permission-row,
.mock-fares span,
.mock-save,
.mock-alert,
.mock-control,
.history-head,
.history-card,
.history-summary,
.rapido-order,
.order-notification,
.order-mode,
.order-actions span,
.order-actions button,
.gif-guide,
.download-guard-card,
.download-guard-media {
  background:
    linear-gradient(180deg, rgba(12, 31, 61, 0.94), rgba(5, 16, 34, 0.96)),
    #061226 !important;
  border-color: rgba(125, 211, 252, 0.18) !important;
  color: #eaf7ff !important;
}

.download {
  background:
    radial-gradient(circle at 84% 18%, rgba(56, 189, 248, 0.28), transparent 36%),
    linear-gradient(135deg, #020617, #0b1f3a 58%, #172554) !important;
}

.showcase {
  background:
    radial-gradient(circle at 12% 20%, rgba(56, 189, 248, 0.22), transparent 28%),
    linear-gradient(135deg, #020617, #081326 56%, #0b1f3a) !important;
}

.button.secondary,
nav {
  background: rgba(6, 18, 38, 0.92) !important;
}

.article-meta,
.eyebrow {
  background: rgba(56, 189, 248, 0.12) !important;
}

.hero-lede,
.section-heading p,
.showcase-copy p,
.download p,
article p,
details p,
.article-page p,
.legal-page p,
.legal-page li,
.contact-grid p,
.footer-meta p,
.trust-row span,
.stats span {
  color: #aecadf !important;
}

h1,
h2,
h3,
.brand,
summary,
.stats strong,
.trust-row strong,
footer strong,
footer a {
  color: #f4fbff !important;
}

/* FAQ redesign: numbered driver-question cards */
.faq {
  display: grid;
  gap: 14px;
}

.faq details {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: 18px;
}

.faq details::before {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(125, 211, 252, 0.28);
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.12);
  color: #7dd3fc;
  font-size: 13px;
  font-weight: 950;
  content: "Q";
}

.faq details[open]::before {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  color: #ffffff;
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.28);
}

.faq summary {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 18px 62px 18px 72px;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  position: absolute;
  right: 22px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(125, 211, 252, 0.1);
  color: #7dd3fc;
  content: "+";
  font-size: 20px;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "-";
}

.faq details p {
  margin: 0;
  padding: 0 24px 22px 72px;
  font-size: 17px;
  line-height: 1.7;
}

/* Section background fix: override older shorthand backgrounds */
.section,
.blog-preview,
.reviews,
.faq,
.legal-page,
.contact-page,
.blog-hero,
.article-page,
.article-list {
  background: transparent !important;
}

.steps {
  background:
    radial-gradient(circle at 18% 12%, rgba(56, 189, 248, 0.13), transparent 32%),
    radial-gradient(circle at 86% 20%, rgba(37, 99, 235, 0.12), transparent 34%),
    linear-gradient(180deg, #020617 0%, #061226 100%) !important;
}

.steps .section-heading,
.steps .section-heading.centered {
  background: transparent !important;
}

.steps .section-heading h2,
.steps .section-heading p {
  color: #f4fbff !important;
}

/* Hero mockup backdrop: starry night sparkle instead of box grid */
.hero-stage {
  overflow: visible;
}

.hero-stage::before {
  inset: 18px 0 18px 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background:
    radial-gradient(circle at 18% 22%, rgba(125, 211, 252, 0.95) 0 1.5px, transparent 2px),
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.9) 0 1.2px, transparent 1.8px),
    radial-gradient(circle at 86% 64%, rgba(56, 189, 248, 0.9) 0 1.4px, transparent 2px),
    radial-gradient(circle at 34% 72%, rgba(186, 230, 253, 0.85) 0 1px, transparent 1.7px),
    radial-gradient(circle at 58% 48%, rgba(255, 255, 255, 0.72) 0 1px, transparent 1.8px),
    radial-gradient(circle at 44% 18%, rgba(14, 165, 233, 0.2), transparent 18%),
    radial-gradient(circle at 74% 56%, rgba(37, 99, 235, 0.24), transparent 28%),
    transparent !important;
  background-size:
    220px 180px,
    260px 220px,
    190px 210px,
    240px 190px,
    180px 160px,
    auto,
    auto,
    auto !important;
  box-shadow: none !important;
  opacity: 1 !important;
  transform: none !important;
  filter: drop-shadow(0 0 18px rgba(56, 189, 248, 0.16));
  animation: starTwinkle 5.8s ease-in-out infinite alternate !important;
}

.hero-stage::after {
  left: 8%;
  top: 18%;
  bottom: auto !important;
  z-index: -1;
  width: 78%;
  height: 72%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.16), transparent 48%),
    radial-gradient(circle at 70% 30%, rgba(79, 70, 229, 0.18), transparent 38%) !important;
  filter: blur(28px) !important;
  animation: nebulaBreath 7s ease-in-out infinite !important;
}

.phone.phone-main::before {
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.18);
}

.hero-stage .status-pill {
  z-index: 6;
}

.hero-stage .phone {
  z-index: 5;
}

.hero-stage .spark-one,
.hero-stage .spark-two {
  display: none;
}

.hero-stage {
  background:
    linear-gradient(115deg, transparent 0 58%, rgba(125, 211, 252, 0.28) 59%, transparent 61%),
    linear-gradient(130deg, transparent 0 70%, rgba(56, 189, 248, 0.18) 71%, transparent 73%);
  background-size: 360px 260px, 520px 360px;
  animation: shootingStars 8s linear infinite;
}

@keyframes starTwinkle {
  0% {
    opacity: 0.62;
    background-position: 0 0, 20px 10px, 40px 30px, 12px 60px, 70px 18px, center, center, center;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.78;
    background-position: 24px 18px, 4px 28px, 62px 10px, 34px 80px, 92px 42px, center, center, center;
  }
}

@keyframes nebulaBreath {
  0%, 100% {
    opacity: 0.7;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes shootingStars {
  0% {
    background-position: 620px -240px, 900px -360px;
  }
  42% {
    background-position: -260px 420px, 900px -360px;
  }
  62% {
    background-position: -260px 420px, 760px -260px;
  }
  100% {
    background-position: -260px 420px, -360px 520px;
  }
}

/* Natural star field refinement: less patterned, more night-sky */
.hero-stage {
  background: none !important;
  animation: none !important;
}

.hero-stage::before {
  inset: 0 -6% 0 -2% !important;
  background-image:
    radial-gradient(circle at 8% 22%, rgba(255,255,255,.95) 0 1px, transparent 1.7px),
    radial-gradient(circle at 15% 68%, rgba(125,211,252,.78) 0 .8px, transparent 1.5px),
    radial-gradient(circle at 24% 38%, rgba(255,255,255,.7) 0 .7px, transparent 1.4px),
    radial-gradient(circle at 31% 82%, rgba(186,230,253,.82) 0 1px, transparent 1.8px),
    radial-gradient(circle at 43% 18%, rgba(255,255,255,.78) 0 .8px, transparent 1.5px),
    radial-gradient(circle at 52% 58%, rgba(125,211,252,.9) 0 1.1px, transparent 1.9px),
    radial-gradient(circle at 61% 30%, rgba(255,255,255,.62) 0 .7px, transparent 1.3px),
    radial-gradient(circle at 70% 76%, rgba(186,230,253,.88) 0 1px, transparent 1.8px),
    radial-gradient(circle at 82% 42%, rgba(255,255,255,.75) 0 .8px, transparent 1.5px),
    radial-gradient(circle at 91% 20%, rgba(125,211,252,.7) 0 .9px, transparent 1.6px),
    radial-gradient(ellipse at 58% 52%, rgba(56,189,248,.16), transparent 42%),
    radial-gradient(ellipse at 72% 40%, rgba(37,99,235,.14), transparent 36%),
    linear-gradient(115deg, transparent 0 54%, rgba(186,230,253,.08) 55%, transparent 61%),
    transparent !important;
  background-size:
    100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%,
    100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%,
    auto, auto, 620px 420px, auto !important;
  opacity: .72 !important;
  filter: drop-shadow(0 0 6px rgba(125,211,252,.28));
  animation: naturalTwinkle 9s ease-in-out infinite alternate !important;
}

.hero-stage::after {
  left: 4%;
  top: 8%;
  width: 92%;
  height: 88%;
  background:
    radial-gradient(ellipse at 58% 48%, rgba(14,165,233,.16), transparent 38%),
    radial-gradient(ellipse at 72% 32%, rgba(79,70,229,.12), transparent 34%),
    radial-gradient(ellipse at 44% 68%, rgba(8,47,73,.18), transparent 42%) !important;
  filter: blur(34px) !important;
  opacity: .86;
  animation: naturalNebula 12s ease-in-out infinite !important;
}

@keyframes naturalTwinkle {
  0% {
    opacity: .48;
    transform: translate3d(0, 0, 0);
  }
  35% {
    opacity: .78;
  }
  70% {
    opacity: .58;
  }
  100% {
    opacity: .86;
    transform: translate3d(-6px, 4px, 0);
  }
}

@keyframes naturalNebula {
  0%, 100% {
    opacity: .58;
    transform: scale(1);
  }
  50% {
    opacity: .92;
    transform: scale(1.04);
  }
}

/* App-name orbit around the mobile mockup */
.orbit-apps {
  position: absolute;
  z-index: 4;
  width: min(520px, 86vw);
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(125, 211, 252, 0.14);
  border-radius: 34px;
  pointer-events: none;
  transform: rotate(-5deg);
  animation: orbitFrame 28s linear infinite;
}

.orbit-apps::before {
  position: absolute;
  inset: 32px;
  border: 1px dashed rgba(125, 211, 252, 0.12);
  border-radius: 28px;
  content: "";
}

.orbit-chip {
  position: absolute;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(125, 211, 252, 0.24);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(15, 35, 68, 0.9), rgba(5, 16, 34, 0.92)),
    #061226;
  padding: 0 13px;
  color: #dff4ff;
  font-size: 12px;
  font-weight: 950;
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.16);
  animation: orbitChip 28s linear infinite reverse, chipPulse 3.8s ease-in-out infinite;
}

.orbit-ola {
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-uber {
  top: 18%;
  right: -26px;
}

.orbit-rapido {
  right: 4%;
  bottom: 8%;
}

.orbit-swiggy {
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-zomato {
  left: -28px;
  bottom: 22%;
}

.orbit-blinkit {
  top: 18%;
  left: -24px;
}

@keyframes orbitFrame {
  from {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(355deg);
  }
}

@keyframes orbitChip {
  from {
    rotate: 5deg;
  }
  to {
    rotate: -355deg;
  }
}

@keyframes chipPulse {
  0%, 100% {
    opacity: .78;
    box-shadow: 0 0 14px rgba(56, 189, 248, 0.12);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 24px rgba(56, 189, 248, 0.26);
  }
}

@media (max-width: 760px) {
  .orbit-apps {
    width: min(430px, 92vw);
  }

  .orbit-chip {
    min-height: 30px;
    padding-inline: 10px;
    font-size: 11px;
  }
}

/* Left-side WhatsApp support widget */
.whatsapp-float {
  left: clamp(14px, 2.8vw, 30px) !important;
  right: auto !important;
  bottom: clamp(16px, 3vw, 30px) !important;
  min-height: 62px;
  gap: 12px;
  padding: 9px 18px 9px 10px;
  border: 1px solid rgba(34, 211, 238, 0.32);
  border-radius: 18px 999px 999px 18px;
  background:
    linear-gradient(135deg, rgba(2, 6, 23, 0.94), rgba(8, 47, 73, 0.9)),
    radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.22), transparent 46%);
  color: #f8fbff;
  box-shadow:
    0 0 0 1px rgba(125, 211, 252, 0.08) inset,
    0 18px 50px rgba(2, 132, 199, 0.2),
    0 0 34px rgba(34, 211, 238, 0.18);
  overflow: visible;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -5px auto -5px -5px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #22d3ee, #22c55e);
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.55);
}

.whatsapp-float:hover {
  transform: translateY(-3px) translateX(2px);
  box-shadow:
    0 0 0 1px rgba(125, 211, 252, 0.14) inset,
    0 22px 58px rgba(2, 132, 199, 0.28),
    0 0 44px rgba(34, 211, 238, 0.28);
}

.whatsapp-float span {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 1px solid rgba(187, 247, 208, 0.7);
  border-radius: 16px;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.95), transparent 16%),
    linear-gradient(135deg, #22c55e, #16a34a);
  color: #ffffff;
  box-shadow:
    0 0 0 5px rgba(34, 197, 94, 0.12),
    0 0 24px rgba(34, 197, 94, 0.34);
  font-size: 0;
}

.whatsapp-float span::before {
  content: "WA";
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  color: #ffffff;
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
}

.whatsapp-float span::after {
  content: "";
  position: absolute;
  right: 7px;
  bottom: 8px;
  width: 9px;
  height: 9px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(18deg);
  border-radius: 0 0 7px 0;
}

.whatsapp-float strong {
  display: grid;
  gap: 2px;
  color: #f8fbff;
  font-size: 14px;
  letter-spacing: 0;
}

.whatsapp-float small {
  margin: 0;
  color: #8df6c0;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 560px) {
  .whatsapp-float {
    left: 12px !important;
    right: auto !important;
    bottom: 12px !important;
    min-height: 54px;
    padding: 8px 13px 8px 8px;
    border-radius: 16px 999px 999px 16px;
  }

  .whatsapp-float span {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 14px;
  }

  .whatsapp-float strong {
    font-size: 13px;
  }

  .whatsapp-float small {
    font-size: 10px;
  }
}

/* Animated work-apps panel */
#platforms {
  position: relative;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: clamp(78px, 9vw, 124px) clamp(18px, 5vw, 72px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(34, 211, 238, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(34, 211, 238, 0.045) 1px, transparent 1px),
    radial-gradient(ellipse at 50% 18%, rgba(14, 165, 233, 0.2), transparent 46%),
    linear-gradient(180deg, #020617 0%, #061426 54%, #020617 100%) !important;
  background-size: 42px 42px, 42px 42px, auto, auto;
}

#platforms::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(125, 211, 252, 0.18) 48%, transparent 58%),
    linear-gradient(180deg, transparent, rgba(14, 165, 233, 0.08), transparent);
  opacity: 0.5;
  transform: translateX(-60%);
  animation: platformScan 7s ease-in-out infinite;
}

#platforms::after {
  content: "";
  position: absolute;
  inset: 18px clamp(16px, 4vw, 64px);
  border: 1px solid rgba(125, 211, 252, 0.08);
  border-radius: 30px;
  pointer-events: none;
}

#platforms .section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(28px, 4vw, 48px);
}

#platforms .section-heading h2 {
  max-width: 900px;
  margin-inline: auto;
}

#platforms .platform-board {
  position: relative;
  z-index: 1;
  width: min(1320px, 100%);
  max-width: none;
  margin-inline: auto;
  padding: clamp(22px, 3.4vw, 44px);
  border: 1px solid rgba(56, 189, 248, 0.34) !important;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(8, 47, 73, 0.82), rgba(7, 18, 35, 0.94) 48%, rgba(15, 23, 42, 0.9)),
    rgba(2, 6, 23, 0.88) !important;
  box-shadow:
    0 0 0 1px rgba(125, 211, 252, 0.08) inset,
    0 28px 86px rgba(2, 132, 199, 0.18),
    0 0 52px rgba(34, 211, 238, 0.12);
  animation: platformBoardGlow 5.6s ease-in-out infinite;
}

#platforms .platform-board::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.45), transparent) top left / 42% 1px no-repeat,
    linear-gradient(180deg, transparent, rgba(34, 211, 238, 0.28), transparent) top right / 1px 54% no-repeat,
    linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.42), transparent) bottom right / 46% 1px no-repeat,
    linear-gradient(180deg, transparent, rgba(34, 197, 94, 0.22), transparent) bottom left / 1px 50% no-repeat;
  animation: platformEdgeRun 6s linear infinite;
}

#platforms .platform-group {
  position: relative;
  align-content: center;
  min-height: 128px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(125, 211, 252, 0.2) !important;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.46), rgba(8, 47, 73, 0.32)),
    rgba(2, 6, 23, 0.26) !important;
  box-shadow: inset 0 0 38px rgba(14, 165, 233, 0.08);
}

#platforms .platform-group + .platform-group {
  margin-top: 22px;
}

#platforms .platform-group h3 {
  width: fit-content;
  margin-inline: auto;
  padding: 8px 14px;
  border: 1px solid rgba(125, 211, 252, 0.24);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.78);
  color: #ecfeff;
  font-size: clamp(15px, 1.6vw, 18px);
  box-shadow: 0 0 22px rgba(56, 189, 248, 0.12);
}

#platforms .platform-group h3::before {
  background: #22d3ee;
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.8);
  animation: platformDot 1.8s ease-in-out infinite;
}

#platforms .brand-chip-row {
  width: 100%;
  gap: 14px;
}

#platforms .brand-chip {
  min-width: clamp(106px, 10vw, 148px);
  border: 1px solid rgba(125, 211, 252, 0.24) !important;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(15, 35, 68, 0.94), rgba(3, 14, 29, 0.96)) !important;
  color: #eef7ff !important;
  padding: 14px 18px;
  box-shadow:
    0 12px 28px rgba(2, 6, 23, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  transform: translateY(0);
  animation: platformChipFloat 4.8s ease-in-out infinite;
}

#platforms .brand-chip:nth-child(2n) {
  animation-delay: -1.2s;
}

#platforms .brand-chip:nth-child(3n) {
  animation-delay: -2.4s;
}

#platforms .brand-chip:hover {
  border-color: rgba(34, 211, 238, 0.62) !important;
  transform: translateY(-4px);
  box-shadow:
    0 16px 34px rgba(14, 165, 233, 0.22),
    0 0 26px rgba(34, 211, 238, 0.22);
}

#platforms .platform-board > p {
  max-width: 980px;
  margin: 28px auto 0;
  color: #b9cde2;
}

@keyframes platformScan {
  0%, 100% {
    transform: translateX(-68%);
    opacity: 0;
  }
  18%, 72% {
    opacity: 0.42;
  }
  100% {
    transform: translateX(68%);
  }
}

@keyframes platformBoardGlow {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(125, 211, 252, 0.08) inset,
      0 28px 86px rgba(2, 132, 199, 0.18),
      0 0 52px rgba(34, 211, 238, 0.12);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(125, 211, 252, 0.12) inset,
      0 30px 92px rgba(2, 132, 199, 0.24),
      0 0 72px rgba(34, 211, 238, 0.2);
  }
}

@keyframes platformEdgeRun {
  0%, 100% {
    background-position: 0 0, 100% 0, 100% 100%, 0 100%;
  }
  50% {
    background-position: 58% 0, 100% 44%, 42% 100%, 0 48%;
  }
}

@keyframes platformDot {
  0%, 100% {
    opacity: 0.65;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

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

@media (max-width: 760px) {
  #platforms {
    padding: 64px 14px 74px;
  }

  #platforms::after {
    inset: 12px;
    border-radius: 22px;
  }

  #platforms .platform-board {
    border-radius: 22px;
  }

  #platforms .platform-group {
    padding: 20px 14px;
  }

  #platforms .brand-chip {
    min-width: 96px;
    padding: 12px 14px;
    font-size: 14px;
  }
}

/* iPhone-style hero mockup and readable in-screen text */
.hero-stage .phone.phone-main {
  overflow: visible;
  width: min(346px, 72vw);
  border: 1px solid rgba(191, 219, 254, 0.28);
  border-radius: 58px;
  background:
    linear-gradient(145deg, #d7e1ee 0%, #5f7189 6%, #0b1220 16%, #020617 52%, #5e718a 94%, #f8fbff 100%);
  padding: 10px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    inset 0 0 0 5px rgba(15, 23, 42, 0.9),
    0 38px 100px rgba(2, 6, 23, 0.68),
    0 0 58px rgba(34, 211, 238, 0.2);
  transform: rotateY(-6deg) rotateX(3deg) rotateZ(-1deg);
  animation: phoneDrift 7s ease-in-out infinite;
}

.hero-stage .phone.phone-main::before {
  top: 22px;
  left: 50%;
  z-index: 9;
  width: 92px;
  height: 27px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background:
    radial-gradient(circle at 72% 50%, #111827 0 5px, transparent 6px),
    linear-gradient(180deg, #020617, #00030a);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.5),
    0 0 24px rgba(56, 189, 248, 0.12);
  transform: translateX(-50%);
}

.hero-stage .phone.phone-main::after {
  inset: 18px;
  z-index: 7;
  border-radius: 44px;
  background:
    linear-gradient(112deg, transparent 0 38%, rgba(255, 255, 255, 0.12) 48%, transparent 56% 100%),
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.09), transparent 20%);
  opacity: 0.4;
  transform: translateX(-135%);
  animation: screenSweep 6.5s ease-in-out infinite;
}

.hero-stage .phone-main .mock-screen {
  min-height: 650px;
  margin: 0;
  border: 1px solid rgba(96, 165, 250, 0.16);
  border-radius: 47px;
  background:
    radial-gradient(circle at 50% 0%, rgba(14, 165, 233, 0.18), transparent 30%),
    linear-gradient(180deg, #061326 0%, #071426 48%, #030916 100%) !important;
  padding: 17px 18px 20px;
  box-shadow:
    inset 0 0 0 2px rgba(0, 0, 0, 0.5),
    inset 0 0 42px rgba(14, 165, 233, 0.08);
}

.hero-stage .phone-main .mock-status {
  position: relative;
  z-index: 8;
  padding: 4px 8px 22px;
  font-size: 11px;
}

.hero-stage .phone-main .mock-status span {
  padding-left: 2px;
}

.hero-stage .phone-main .mock-status b::before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 8px;
  margin-right: 4px;
  border: 1px solid currentColor;
  border-radius: 3px;
  vertical-align: -1px;
}

.hero-stage .phone-main .mock-header {
  margin-bottom: 12px;
  border-radius: 16px;
  background: rgba(2, 6, 23, 0.5);
  padding: 8px;
}

.hero-stage .phone-main .mock-header strong {
  font-size: 17px;
  letter-spacing: 0;
}

.hero-stage .phone-main .mock-tabs {
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.16);
  border-radius: 16px;
  background: rgba(2, 6, 23, 0.36);
  padding: 4px;
}

.hero-stage .phone-main .mock-tabs span {
  border-radius: 12px;
  padding: 9px 0;
  font-size: 10px;
}

.hero-stage .phone-main .mock-tabs .active {
  border-bottom: 0;
  background: rgba(34, 211, 238, 0.13);
}

.hero-stage .phone-main .mock-dashboard,
.hero-stage .phone-main .mock-history {
  inset-inline: 18px;
}

.hero-stage .phone-main .mock-history {
  inset-top: 138px;
}

.hero-stage .phone-main .history-card strong,
.hero-stage .phone-main .order-fare strong {
  color: #f8fbff;
  font-size: 25px;
  letter-spacing: 0;
}

.hero-stage .phone-main .order-fare b {
  color: #22c55e;
  font-size: 21px;
}

.hero-stage .phone-main .history-card p,
.hero-stage .phone-main .history-card small,
.hero-stage .phone-main .order-fare span {
  color: #b9cde2;
}

.hero-stage .phone-main .history-route span {
  overflow-wrap: anywhere;
}

.hero-stage .phone.phone-main .iphone-side {
  position: absolute;
}

.hero-stage .phone.phone-main {
  --button-color: linear-gradient(180deg, #8ca0b8, #243245);
}

.hero-stage .phone.phone-main .mock-screen::before,
.hero-stage .phone.phone-main .mock-screen::after {
  content: "";
  position: absolute;
  z-index: 9;
  width: 4px;
  border-radius: 999px;
  background: var(--button-color);
  pointer-events: none;
}

.hero-stage .phone.phone-main .mock-screen::before {
  left: -16px;
  top: 116px;
  height: 78px;
  box-shadow: 0 96px 0 #4b5f78;
}

.hero-stage .phone.phone-main .mock-screen::after {
  right: -16px;
  top: 154px;
  height: 102px;
}

@media (max-width: 760px) {
  .hero-stage .phone.phone-main {
    width: min(318px, 78vw);
    border-radius: 52px;
    padding: 8px;
  }

  .hero-stage .phone-main .mock-screen {
    min-height: 610px;
    border-radius: 42px;
    padding-inline: 14px;
  }

  .hero-stage .phone.phone-main::before {
    top: 19px;
    width: 82px;
    height: 24px;
  }
}

/* Blog article header layout fix */
.article-page {
  display: block;
  width: min(100% - 32px, 1120px);
  margin-inline: auto;
  padding-top: clamp(72px, 8vw, 112px);
}

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

.article-page .eyebrow,
.article-page .article-meta {
  display: inline-flex;
  width: auto;
  max-width: 100%;
  margin-bottom: 18px;
  vertical-align: top;
}

.article-page h1 {
  width: min(100%, 860px);
  max-width: 860px;
  margin: 0 0 22px;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.article-page .article-meta {
  margin-top: 0;
  margin-bottom: 28px;
  padding: 8px 14px;
}

.article-page img {
  display: block;
  width: 100%;
  max-width: 1080px;
  margin: 0 0 34px;
  border-radius: 18px;
}

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

.article-page h2 {
  margin-top: 38px;
}

@media (max-width: 760px) {
  .article-page {
    width: min(100% - 24px, 1120px);
    padding-top: 54px;
  }

  .article-page h1 {
    font-size: clamp(34px, 11vw, 46px);
    line-height: 1.12;
  }

  .article-page .eyebrow,
  .article-page .article-meta {
    margin-bottom: 14px;
  }
}

/* Make app logo visible in header and phone mockup */
.site-header .brand-mark,
footer .brand-mark {
  width: 56px;
  height: 56px;
  flex-basis: 56px;
  border-radius: 14px;
  border-color: rgba(34, 211, 238, 0.46);
  background-color: #020617;
  background-image: url("assets/icons/icon-192.png?v=logo2");
  background-position: center;
  background-size: 82%;
  background-repeat: no-repeat;
  box-shadow:
    0 0 0 1px rgba(125, 211, 252, 0.1) inset,
    0 0 22px rgba(34, 211, 238, 0.16);
}

.site-header .brand {
  gap: 14px;
}

.hero-stage .phone-app-icon {
  width: 38px;
  height: 38px;
  flex-basis: 38px;
  border: 1px solid rgba(34, 211, 238, 0.5);
  border-radius: 12px;
  background-color: #020617;
  background-image: url("assets/icons/icon-192.png?v=logo2");
  background-position: center;
  background-size: 84%;
  background-repeat: no-repeat;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 0 18px rgba(34, 211, 238, 0.22);
}

.hero-stage .phone-main .mock-header {
  gap: 10px;
}

@media (max-width: 760px) {
  .site-header .brand-mark,
  footer .brand-mark {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .hero-stage .phone-app-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }
}

/* Redesigned AcceptRide in-phone app UI */
.hero-stage .phone-main .mock-screen {
  overflow: hidden;
}

.app-ui {
  position: relative;
  z-index: 6;
  display: grid;
  gap: 12px;
  padding-top: 2px;
  color: #eef7ff;
}

.app-topbar {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(125, 211, 252, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at 14% 20%, rgba(34, 211, 238, 0.18), transparent 34%),
    rgba(2, 6, 23, 0.58);
  padding: 9px;
}

.app-topbar .phone-app-icon {
  width: 42px;
  height: 42px;
  flex-basis: 42px;
}

.app-topbar strong {
  display: block;
  color: #f8fbff;
  font-size: 19px;
  line-height: 1.05;
}

.app-topbar small {
  display: block;
  margin-top: 3px;
  color: #8fb6d1;
  font-size: 10px;
  font-weight: 850;
}

.app-topbar > b {
  border: 1px solid rgba(34, 197, 94, 0.34);
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.13);
  padding: 7px 9px;
  color: #86efac;
  font-size: 10px;
}

.app-service-card {
  position: relative;
  overflow: hidden;
  min-height: 142px;
  border: 1px solid rgba(34, 211, 238, 0.22);
  border-radius: 22px;
  background:
    radial-gradient(circle at 78% 24%, rgba(34, 211, 238, 0.28), transparent 34%),
    linear-gradient(145deg, rgba(8, 47, 73, 0.78), rgba(2, 6, 23, 0.78));
  padding: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.app-service-card span,
.app-panel-head span {
  color: #67e8f9;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.app-service-card strong {
  display: block;
  max-width: 210px;
  margin-top: 9px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.08;
}

.app-service-card p {
  max-width: 220px;
  margin: 10px 0 0;
  color: #b8d0e6;
  font-size: 12px;
  line-height: 1.45;
}

.service-wave {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: end;
  gap: 5px;
  height: 48px;
}

.service-wave i {
  display: block;
  width: 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, #22d3ee, #22c55e);
  animation: serviceBars 1.6s ease-in-out infinite;
}

.service-wave i:nth-child(1) {
  height: 22px;
}

.service-wave i:nth-child(2) {
  height: 40px;
  animation-delay: -0.4s;
}

.service-wave i:nth-child(3) {
  height: 30px;
  animation-delay: -0.8s;
}

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

.app-metrics div,
.app-panel,
.app-route-card,
.app-checks span,
.app-bottom-nav {
  border: 1px solid rgba(125, 211, 252, 0.16);
  background: rgba(3, 14, 29, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.app-metrics div {
  min-height: 64px;
  border-radius: 16px;
  padding: 11px;
}

.app-metrics b {
  display: block;
  color: #ffffff;
  font-size: 16px;
}

.app-metrics span {
  display: block;
  margin-top: 4px;
  color: #8fb6d1;
  font-size: 10px;
  font-weight: 850;
}

.app-panel,
.app-route-card {
  border-radius: 20px;
  padding: 14px;
}

.app-panel-head,
.route-app,
.route-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.app-panel-head b,
.route-app span {
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.12);
  padding: 6px 8px;
  color: #a7f3d0;
  font-size: 10px;
}

.app-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.app-pill-row span {
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 999px;
  background: rgba(8, 47, 73, 0.52);
  padding: 7px 9px;
  color: #dff4ff;
  font-size: 10px;
  font-weight: 950;
}

.app-route-card {
  position: relative;
  background:
    linear-gradient(135deg, rgba(14, 165, 233, 0.16), rgba(34, 197, 94, 0.08)),
    rgba(3, 14, 29, 0.76);
  animation: appCardPulse 3.8s ease-in-out infinite;
}

.route-app b {
  color: #8fb6d1;
  font-size: 10px;
}

.app-route-card > strong {
  display: block;
  margin-top: 12px;
  color: #ffffff;
  font-size: 17px;
}

.app-route-card p {
  margin: 7px 0 12px;
  color: #b8d0e6;
  font-size: 11px;
  line-height: 1.45;
}

.route-price b {
  color: #ffffff;
  font-size: 20px;
}

.route-price em {
  color: #22c55e;
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
}

.app-checks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
}

.app-checks span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  border-radius: 13px;
  padding: 8px 10px;
  color: #dff4ff;
  font-size: 11px;
  font-weight: 900;
}

.app-checks i {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.55);
}

.app-bottom-nav {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 18px;
  padding: 5px;
}

.app-bottom-nav span {
  border-radius: 14px;
  padding: 9px 0;
  color: #8fb6d1;
  text-align: center;
  font-size: 10px;
  font-weight: 950;
}

.app-bottom-nav .active {
  background: rgba(34, 211, 238, 0.16);
  color: #67e8f9;
}

@keyframes serviceBars {
  0%, 100% {
    transform: scaleY(0.76);
    opacity: 0.72;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes appCardPulse {
  0%, 100% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 0 0 rgba(34, 211, 238, 0);
  }
  50% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 0 24px rgba(34, 211, 238, 0.14);
  }
}

@media (max-width: 760px) {
  .app-service-card strong {
    font-size: 21px;
  }

  .app-metrics b {
    font-size: 14px;
  }

  .app-pill-row span {
    font-size: 9px;
  }
}

/* Compact phone mockup with opening notification animation */
.hero-stage .phone.phone-main {
  width: min(326px, 70vw);
  border-radius: 54px;
  padding: 8px;
}

.hero-stage .phone-main .mock-screen {
  min-height: 570px;
  border-radius: 43px;
  padding: 14px 14px 16px;
}

.hero-stage .phone.phone-main::before {
  top: 18px;
  width: 86px;
  height: 24px;
}

.app-ui {
  gap: 9px;
}

.app-topbar {
  grid-template-columns: 38px minmax(0, 1fr) auto;
  padding: 8px;
}

.app-topbar .phone-app-icon {
  width: 38px;
  height: 38px;
  flex-basis: 38px;
}

.app-topbar strong {
  font-size: 17px;
}

.app-service-card {
  min-height: 112px;
  border-radius: 18px;
  padding: 14px;
}

.app-service-card strong {
  max-width: 188px;
  font-size: 20px;
}

.app-service-card p {
  max-width: 190px;
  margin-top: 7px;
  font-size: 10.5px;
}

.service-wave {
  right: 12px;
  bottom: 12px;
  height: 36px;
}

.app-metrics div {
  min-height: 52px;
  border-radius: 14px;
  padding: 9px;
}

.app-metrics b {
  font-size: 14px;
}

.app-panel,
.app-route-card {
  border-radius: 16px;
  padding: 11px;
}

.app-pill-row {
  gap: 6px;
  margin-top: 9px;
}

.app-pill-row span {
  padding: 6px 8px;
  font-size: 9px;
}

.app-route-card > strong {
  margin-top: 8px;
  font-size: 15px;
}

.app-route-card p {
  margin: 5px 0 8px;
  font-size: 10px;
}

.route-price b {
  font-size: 17px;
}

.app-checks {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.app-checks span {
  min-height: 30px;
  justify-content: center;
  gap: 5px;
  border-radius: 12px;
  padding: 7px 5px;
  font-size: 9px;
}

.app-checks i {
  width: 8px;
  height: 8px;
}

.app-bottom-nav {
  right: 14px;
  bottom: 14px;
  left: 14px;
  border-radius: 16px;
}

.app-bottom-nav span {
  padding: 8px 0;
}

.app-notification-pop {
  position: absolute;
  z-index: 8;
  top: 214px;
  right: 9px;
  left: 9px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 3px 9px;
  align-items: center;
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 20%, rgba(34, 211, 238, 0.18), transparent 34%),
    rgba(2, 8, 23, 0.92);
  padding: 11px 12px;
  box-shadow:
    0 18px 42px rgba(2, 6, 23, 0.48),
    0 0 30px rgba(34, 211, 238, 0.2);
  transform-origin: top center;
  animation: appNotificationOpen 5.8s ease-in-out infinite;
}

.app-notification-pop span {
  grid-row: span 2;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.14);
  padding: 7px 9px;
  color: #67e8f9;
  font-size: 10px;
  font-weight: 950;
}

.app-notification-pop strong {
  color: #ffffff;
  font-size: 13px;
  line-height: 1;
}

.app-notification-pop small {
  color: #a8c7dd;
  font-size: 10px;
  font-weight: 850;
}

@keyframes appNotificationOpen {
  0%, 13% {
    opacity: 0;
    transform: translateY(-16px) scale(0.92);
    filter: blur(2px);
  }
  24%, 62% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  75%, 100% {
    opacity: 0;
    transform: translateY(8px) scale(0.96);
    filter: blur(1px);
  }
}

@media (max-width: 760px) {
  .hero-stage .phone.phone-main {
    width: min(306px, 76vw);
  }

  .hero-stage .phone-main .mock-screen {
    min-height: 545px;
  }

  .app-notification-pop {
    top: 205px;
  }
}

/* Real ride-request style notification inside mockup */
.hero-stage .phone-main .mock-screen {
  background:
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 18% 76%, rgba(34, 197, 94, 0.22), transparent 18%),
    radial-gradient(circle at 82% 62%, rgba(250, 204, 21, 0.18), transparent 18%),
    linear-gradient(180deg, #f8fafc 0 38%, #eef4fb 38% 100%) !important;
  background-size: 34px 34px, 34px 34px, auto, auto, auto;
}

.hero-stage .phone-main .mock-status {
  color: #0f172a;
}

.real-order-pop {
  top: 112px;
  right: 12px;
  left: 12px;
  display: block;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: #ffffff;
  padding: 12px;
  color: #111827;
  box-shadow:
    0 22px 46px rgba(15, 23, 42, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset;
  animation: realOrderPop 5.8s cubic-bezier(.2,.8,.2,1) infinite;
}

.real-order-mode {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  background: #eef2ff;
  padding: 5px 9px;
  color: #111827;
  font-size: 11px;
  font-weight: 950;
}

.real-order-mode span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #475569;
}

.real-order-pop > strong {
  display: block;
  margin: 7px 0 10px;
  color: #111827;
  font-size: 31px;
  line-height: 1;
}

.real-order-route {
  position: relative;
  display: grid;
  gap: 9px;
  padding-left: 24px;
}

.real-order-route i {
  position: absolute;
  top: 10px;
  bottom: 15px;
  left: 8px;
  width: 2px;
  background: #111827;
}

.real-order-route i::before,
.real-order-route i::after {
  content: "";
  position: absolute;
  left: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #111827;
}

.real-order-route i::before {
  top: -1px;
}

.real-order-route i::after {
  bottom: -1px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  border-radius: 2px;
}

.real-order-route b {
  display: block;
  color: #111827;
  font-size: 15px;
  line-height: 1.15;
}

.real-order-route p {
  margin: 3px 0 0;
  color: #1f2937;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.32;
}

.real-order-actions {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin-top: 12px;
}

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

.real-order-actions button {
  background: #ffffff;
  color: #64748b;
  box-shadow: 0 0 0 2px #e2e8f0 inset, 0 8px 18px rgba(15, 23, 42, 0.12);
}

.real-order-actions span {
  background: #facc15;
  color: #111827;
  font-size: 15px;
}

@keyframes realOrderPop {
  0%, 12% {
    opacity: 0;
    transform: translateY(-36px) scale(0.9);
  }
  22%, 62% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  70% {
    transform: translateY(0) scale(1.015);
  }
  82%, 100% {
    opacity: 0;
    transform: translateY(-18px) scale(0.94);
  }
}

@media (max-width: 760px) {
  .real-order-pop {
    top: 106px;
    padding: 11px;
  }

  .real-order-pop > strong {
    font-size: 28px;
  }

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

/* Clean realistic notification layer and compact mockup UI */
.hero-stage .phone-main .mock-screen {
  color: #0f172a;
}

.app-ui {
  padding-bottom: 58px;
}

.app-route-card {
  display: none;
}

.app-panel {
  margin-top: 2px;
}

.app-checks {
  position: absolute;
  right: 14px;
  bottom: 58px;
  left: 14px;
  z-index: 7;
}

.real-order-pop {
  top: 88px;
  z-index: 30;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  color: #111827;
  opacity: 1;
  box-shadow:
    0 24px 54px rgba(15, 23, 42, 0.3),
    0 0 0 1px rgba(15, 23, 42, 0.08) inset;
  animation: realOrderPopClick 6.4s cubic-bezier(.2,.8,.2,1) infinite;
}

.real-order-pop::after {
  content: "";
  position: absolute;
  right: 34px;
  bottom: 24px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(250, 204, 21, 0.5);
  opacity: 0;
  transform: scale(0.2);
  animation: acceptTapRipple 6.4s ease-in-out infinite;
}

.real-order-actions span {
  position: relative;
  overflow: hidden;
  animation: acceptButtonPress 6.4s ease-in-out infinite;
}

.real-order-actions span::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
  transform: translateX(-110%);
  animation: acceptButtonShine 6.4s ease-in-out infinite;
}

@keyframes realOrderPopClick {
  0%, 10% {
    opacity: 0;
    transform: translateY(-32px) scale(0.92);
  }
  20%, 76% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  81% {
    opacity: 1;
    transform: translateY(0) scale(0.985);
  }
  90%, 100% {
    opacity: 0;
    transform: translateY(-16px) scale(0.96);
  }
}

@keyframes acceptButtonPress {
  0%, 62%, 100% {
    transform: scale(1);
    filter: brightness(1);
  }
  69%, 74% {
    transform: scale(0.96);
    filter: brightness(0.96);
  }
  78% {
    transform: scale(1.02);
    filter: brightness(1.05);
  }
}

@keyframes acceptButtonShine {
  0%, 64% {
    transform: translateX(-110%);
  }
  76% {
    transform: translateX(110%);
  }
  100% {
    transform: translateX(110%);
  }
}

@keyframes acceptTapRipple {
  0%, 66% {
    opacity: 0;
    transform: scale(0.2);
  }
  71% {
    opacity: 0.55;
    transform: scale(1);
  }
  82%, 100% {
    opacity: 0;
    transform: scale(2.8);
  }
}

@media (max-width: 760px) {
  .real-order-pop {
    top: 82px;
  }

  .app-checks {
    bottom: 56px;
  }
}

/* Professionalize the background UI behind the notification */
.hero-stage .phone-main .mock-screen {
  background:
    linear-gradient(28deg, transparent 0 43%, rgba(148, 163, 184, 0.34) 44% 45%, transparent 46%),
    linear-gradient(142deg, transparent 0 48%, rgba(148, 163, 184, 0.28) 49% 50%, transparent 51%),
    linear-gradient(90deg, rgba(148, 163, 184, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(148, 163, 184, 0.09) 1px, transparent 1px),
    radial-gradient(circle at 20% 68%, rgba(34, 197, 94, 0.25), transparent 14%),
    radial-gradient(circle at 76% 48%, rgba(250, 204, 21, 0.22), transparent 13%),
    #eef4fb !important;
  background-size: auto, auto, 34px 34px, 34px 34px, auto, auto, auto;
}

.app-topbar {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(15, 23, 42, 0.12);
}

.app-service-card {
  min-height: 170px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.22)),
    transparent;
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: none;
}

.app-service-card > span,
.app-service-card > strong,
.app-service-card > p,
.service-wave,
.app-metrics {
  opacity: 0.08;
}

.app-notification-pop.real-order-pop {
  top: 132px;
}

.app-panel {
  position: absolute;
  right: 14px;
  bottom: 110px;
  left: 14px;
  z-index: 9;
  border-color: rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  padding: 12px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
}

.app-panel::before {
  content: "Safety comes first";
  display: block;
  margin-bottom: 6px;
  color: #111827;
  font-size: 14px;
  font-weight: 950;
}

.app-panel-head {
  display: none;
}

.app-pill-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
}

.app-pill-row span {
  border-color: rgba(15, 23, 42, 0.08);
  background: #f1f5f9;
  color: #334155;
  text-align: center;
}

.app-checks {
  bottom: 62px;
  z-index: 10;
}

.app-checks span {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(15, 23, 42, 0.08);
  color: #334155;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.app-bottom-nav {
  z-index: 11;
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

.app-bottom-nav span {
  color: #64748b;
}

.app-bottom-nav .active {
  background: #22c55e;
  color: #ffffff;
}

@media (max-width: 760px) {
  .app-notification-pop.real-order-pop {
    top: 126px;
  }

  .app-panel {
    bottom: 108px;
  }
}

/* blue20: match hero mockup with the current Android app dashboard */
.hero-stage .phone-main .mock-screen {
  color: #f6fbff;
  background:
    radial-gradient(circle at 20% 8%, rgba(34, 211, 238, 0.22), transparent 30%),
    radial-gradient(circle at 82% 42%, rgba(34, 197, 94, 0.12), transparent 24%),
    linear-gradient(180deg, #061426 0%, #071a2f 46%, #06111f 100%) !important;
  background-size: auto !important;
}

.hero-stage .phone-main .mock-screen::before {
  background:
    linear-gradient(rgba(125, 211, 252, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.055) 1px, transparent 1px) !important;
  background-size: 24px 24px !important;
  opacity: 0.75 !important;
}

.hero-stage .phone-main .mock-status {
  color: #f8fbff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.28);
}

.hero-stage .phone-main .mock-status b::before {
  border-color: rgba(226, 240, 255, 0.8);
}

.app-ui {
  gap: 9px;
  padding-bottom: 54px;
}

.app-topbar {
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(12, 31, 55, 0.96), rgba(10, 24, 43, 0.9)),
    radial-gradient(circle at 12% 18%, rgba(34, 211, 238, 0.18), transparent 36%);
  box-shadow: 0 12px 24px rgba(0, 8, 22, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.app-topbar > b {
  border-color: rgba(34, 197, 94, 0.36);
  background: rgba(34, 197, 94, 0.16);
  color: #86efac;
}

.app-service-card {
  min-height: 142px;
  border: 1px solid rgba(68, 215, 255, 0.28);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(6, 26, 50, 0.96), rgba(8, 57, 90, 0.78)),
    radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.3), transparent 38%);
  box-shadow: 0 16px 34px rgba(0, 12, 30, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.app-service-card > span,
.app-service-card > strong,
.app-service-card > p,
.service-wave,
.app-metrics {
  opacity: 1;
}

.app-service-card > span {
  color: #7dd3fc;
  letter-spacing: 0.02em;
}

.app-service-card > strong {
  max-width: 220px;
  color: #ffffff;
  font-size: 23px;
}

.app-service-card > p {
  max-width: 238px;
  color: #c7ddf3;
  font-size: 11px;
}

.service-wave {
  right: 15px;
  bottom: 15px;
}

.app-metrics {
  position: relative;
  z-index: 8;
  margin-top: -4px;
}

.app-metrics div {
  min-height: 58px;
  border: 1px solid rgba(87, 191, 239, 0.22);
  border-radius: 16px;
  background: rgba(7, 26, 45, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.app-metrics b {
  color: #f8fbff;
  font-size: 13px;
}

.app-metrics span {
  color: #91abc4;
}

.app-panel {
  position: relative;
  inset: auto;
  z-index: 8;
  margin-top: 0;
  border: 1px solid rgba(87, 191, 239, 0.22);
  border-radius: 20px;
  background: rgba(7, 26, 45, 0.9);
  padding: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.app-panel::before {
  content: none;
}

.app-panel-head {
  display: flex;
}

.app-panel-head span {
  color: #67e8f9;
}

.app-panel-head b,
.route-app span {
  background: rgba(34, 211, 238, 0.12);
  color: #a7f3d0;
}

.app-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.app-pill-row span {
  border-color: rgba(125, 211, 252, 0.18);
  background: rgba(8, 47, 73, 0.62);
  color: #dff4ff;
}

.app-checks {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 62px;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.app-checks span {
  min-height: 32px;
  border: 1px solid rgba(87, 191, 239, 0.22);
  background: rgba(5, 20, 36, 0.94);
  color: #e4f4ff;
  box-shadow: 0 8px 18px rgba(0, 10, 25, 0.18);
  font-size: 8.5px;
  line-height: 1.1;
  justify-content: center;
  padding: 7px 6px;
}

.app-checks i {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
}

.app-bottom-nav {
  z-index: 11;
  border: 1px solid rgba(87, 191, 239, 0.18);
  background: rgba(5, 17, 31, 0.94);
  box-shadow: 0 12px 24px rgba(0, 8, 20, 0.22);
}

.app-bottom-nav span {
  color: #8fb6d1;
}

.app-bottom-nav .active {
  background: rgba(34, 211, 238, 0.2);
  color: #67e8f9;
}

.app-notification-pop.real-order-pop {
  top: 210px;
  left: 18px;
  right: 18px;
  z-index: 32;
  border-radius: 22px;
  border-color: rgba(15, 23, 42, 0.12);
  background: #ffffff;
  box-shadow:
    0 26px 58px rgba(0, 8, 22, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.82) inset;
}

.app-notification-pop.real-order-pop::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  border-radius: 28px;
  background: radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.36), transparent 62%);
  filter: blur(4px);
}

.real-order-pop > strong {
  font-size: 29px;
}

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

.real-order-actions span {
  background: #facc15;
}

@media (max-width: 760px) {
  .app-service-card > strong {
    font-size: 20px;
  }

  .app-checks span {
    font-size: 8px;
  }

  .app-notification-pop.real-order-pop {
    top: 196px;
  }
}

@media (max-width: 980px) {
  .permission-guide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .permission-guide {
    grid-template-columns: 1fr;
  }

  .permission-guide article {
    min-height: auto;
  }
}
