/* ──────────────────────────────────────────────
   VEM CAR · Landing Page
   Dark, warm amber/orange palette, calm motion
   ────────────────────────────────────────────── */

:root {
  --bg: #0D0D0F;
  --bg-2: #111114;
  --surface: #18181C;
  --surface-h: #1E1E23;
  --surface-hh: #242428;
  --surface-hhh: #2E2E33;
  --divider: #2A2A2E;
  --divider-soft: #1F1F25;

  --text: #FAFAFA;
  --text-2: #A0A0A8;
  --text-3: #6E6E78;

  --sun: #FFD400;
  --gold: #FFC300;
  --amber: #FF8C00;
  --orange: #FF5F00;
  --green: #34D399;
  --red: #FF6B6B;
  --pix: #00BDAE;

  --grad-warm: linear-gradient(135deg, #FFD400 0%, #FF9A1A 50%, #FF5F00 100%);
  --grad-warm-soft: linear-gradient(135deg, rgba(255,212,0,0.18) 0%, rgba(255,95,0,0.12) 100%);

  --r-card: 18px;
  --r-button: 14px;
  --r-pill: 999px;

  --shadow-card: 0 18px 50px -20px rgba(0,0,0,0.6), 0 4px 14px -4px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 60px rgba(255,154,26,0.18), 0 0 120px rgba(255,95,0,0.08);

  --ease: cubic-bezier(.2,.8,.2,1);
  --ease-quint: cubic-bezier(.22,1,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--bg);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img, svg { display: block; max-width: 100%; }

::selection { background: rgba(255,212,0,0.35); color: #fff; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
}

/* ──────── Reveal animations ──────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }
.reveal.delay-4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { transition-duration: 0ms; transform: none; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}

/* ──────── Typography ──────── */
h1, h2, h3, h4, h5 { font-family: inherit; letter-spacing: -0.02em; line-height: 1.08; font-weight: 800; }

.h2 {
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
}
.h2 strong { font-weight: 800; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--sun);
  background: rgba(255,212,0,0.06);
  border: 1px solid rgba(255,212,0,0.2);
  padding: 7px 12px;
  border-radius: var(--r-pill);
}
.eyebrow.amber { color: var(--amber); border-color: rgba(255,140,0,0.3); background: rgba(255,140,0,0.05); }
.eyebrow .ey-mark { color: var(--orange); font-size: 8px; }

.lede {
  color: var(--text-2);
  font-size: clamp(15px, 1.3vw, 17.5px);
  line-height: 1.65;
  max-width: 56ch;
}

.grad-text {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

/* ──────── Buttons ──────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: inherit; font-weight: 600; font-size: 14.5px;
  letter-spacing: -0.005em;
  padding: 12px 18px;
  border: none; border-radius: var(--r-button);
  cursor: pointer; user-select: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn-lg { padding: 15px 24px; font-size: 15.5px; }
.btn-primary {
  background: var(--grad-warm);
  color: #141418;
  box-shadow: 0 14px 32px -14px rgba(255,140,0,0.7), inset 0 1px 0 rgba(255,255,255,0.3);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 50%);
  opacity: 0; transition: opacity .3s var(--ease);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 22px 44px -16px rgba(255,140,0,0.9), inset 0 1px 0 rgba(255,255,255,0.35); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: var(--surface-h);
  color: var(--text);
  border: 1px solid var(--divider);
}
.btn-secondary:hover { background: var(--surface-hh); border-color: #3a3a40; }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid transparent;
  padding: 11px 14px;
}
.btn-ghost:hover { background: rgba(255,255,255,0.05); border-color: var(--divider); }

.btn-arrow { transition: transform .3s var(--ease); display: inline-block; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ──────── NAV ──────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(13,13,15,0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--divider-soft);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 19px; letter-spacing: -0.02em;
}
.brand-mark { width: 36px; height: 36px; display: inline-block; flex-shrink: 0; }
.brand-mark svg { width: 100%; height: 100%; filter: drop-shadow(0 4px 12px rgba(255,140,0,0.35)); }
.brand-name { display: inline-flex; }
.brand-accent {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex; align-items: center; gap: 28px;
  font-size: 14px; color: var(--text-2);
  font-weight: 500;
}
.nav-links a { transition: color .25s var(--ease); position: relative; }
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; border-radius: 2px;
  background: var(--grad-warm);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 8px; }

@media (max-width: 920px) {
  .nav-links { display: none; }
}
@media (max-width: 540px) {
  .nav-cta .btn-ghost { display: none; }
}

/* ──────────────────────────────────────────────
   HERO
   ────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 130px 0 90px;
  overflow: hidden;
  isolation: isolate;
  min-height: 760px;
}
.hero-aurora { position: absolute; inset: 0; z-index: -2; pointer-events: none; }
.aurora {
  position: absolute; border-radius: 50%;
  filter: blur(100px);
  opacity: 0.55;
  mix-blend-mode: screen;
}
.aurora.a1 {
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(255,212,0,0.45) 0%, transparent 60%);
  top: -180px; left: -120px;
  animation: aurora-drift-1 22s ease-in-out infinite;
}
.aurora.a2 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(255,95,0,0.4) 0%, transparent 60%);
  top: 120px; right: -160px;
  animation: aurora-drift-2 26s ease-in-out infinite;
}
.aurora.a3 {
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(255,140,0,0.32) 0%, transparent 65%);
  bottom: -100px; left: 30%;
  animation: aurora-drift-3 30s ease-in-out infinite;
}
@keyframes aurora-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, 40px) scale(1.08); }
}
@keyframes aurora-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-60px, 60px) scale(1.1); }
}
@keyframes aurora-drift-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -50px) scale(1.06); }
}

.hero-grid {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 0%, transparent 80%);
  opacity: 0.7;
}
.hero-noise {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.4;
  mix-blend-mode: overlay;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero { padding: 110px 0 70px; min-height: 0; }
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: -0.005em;
  background: rgba(255,212,0,0.06);
  border: 1px solid rgba(255,212,0,0.22);
  color: var(--sun);
  padding: 8px 14px;
  border-radius: var(--r-pill);
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sun);
  position: relative;
  box-shadow: 0 0 0 0 rgba(255,212,0,0.6);
  animation: ping-dot 2.4s var(--ease) infinite;
}
@keyframes ping-dot {
  0% { box-shadow: 0 0 0 0 rgba(255,212,0,0.6); }
  70% { box-shadow: 0 0 0 10px rgba(255,212,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,212,0,0); }
}

.hero-title {
  margin-top: 24px;
  font-size: clamp(44px, 6.4vw, 88px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.hero-lede {
  margin-top: 24px;
  color: var(--text-2);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  max-width: 56ch;
}
.hero-lede strong { color: var(--text); font-weight: 600; }

.hero-cta {
  margin-top: 36px;
  display: flex; gap: 12px; flex-wrap: wrap;
}

.hero-stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  list-style: none;
  border-top: 1px solid var(--divider-soft);
  padding-top: 28px;
}
.hero-stats li { padding-right: 16px; }
.hero-stats .k {
  font-size: 26px; font-weight: 800; letter-spacing: -0.02em;
  color: var(--text);
}
.hero-stats .k-sep { color: var(--orange); margin: 0 4px; font-weight: 600; opacity: 0.8; }
.hero-stats .l {
  font-size: 12.5px; color: var(--text-2);
  margin-top: 4px;
}

@media (max-width: 540px) {
  .hero-stats { grid-template-columns: 1fr 1fr; row-gap: 18px; }
  .hero-stats li:last-child { grid-column: 1 / -1; }
}

/* ─── Hero phone column ─── */
.hero-phone-col {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 600px;
}
.phone-halo {
  position: absolute; width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(255,154,26,0.28) 0%, transparent 60%);
  filter: blur(40px);
  z-index: 0;
  animation: halo-pulse 6s ease-in-out infinite;
}
@keyframes halo-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}
.phone-shadow {
  position: absolute; bottom: -20px; left: 50%;
  width: 360px; height: 60px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(0,0,0,0.5) 0%, transparent 70%);
  filter: blur(20px);
  z-index: 0;
}

/* Floating chips */
.chip {
  position: absolute;
  z-index: 5;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 13px 9px 10px;
  background: rgba(24,24,28,0.9);
  border: 1px solid var(--divider);
  border-radius: 14px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 32px -12px rgba(0,0,0,0.7);
  animation: chip-float 5.5s ease-in-out infinite;
}
.chip-tl { top: 8%; left: -6%; }
.chip-br { bottom: 12%; right: -6%; animation-delay: -2.5s; }
@keyframes chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.chip-ic {
  width: 26px; height: 26px;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,212,0,0.12);
  color: var(--sun);
  flex-shrink: 0;
}
.chip-ic.green { background: rgba(52,211,153,0.12); color: var(--green); }
.chip-t { font-size: 12px; font-weight: 600; color: var(--text); }
.chip-s { font-size: 10.5px; color: var(--text-2); margin-top: 1px; }

/* ─── Phone frame ─── */
.phone {
  position: relative; z-index: 2;
  width: 320px;
  filter: drop-shadow(0 50px 80px rgba(0,0,0,0.45));
  animation: phone-bob 7s ease-in-out infinite;
}
@keyframes phone-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.phone-frame {
  position: relative;
  background: linear-gradient(180deg, #2a2a30 0%, #14141a 100%);
  padding: 12px;
  border-radius: 50px;
  border: 1px solid #3a3a44;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.04),
    inset 0 0 24px rgba(0,0,0,0.4),
    0 0 0 4px #1a1a20;
}
.phone-frame::before {
  content: ""; position: absolute; inset: 4px;
  border-radius: 46px;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
}
.phone-notch {
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 95px; height: 26px;
  background: #08080a;
  border-radius: 14px;
  z-index: 10;
}
.phone-notch::after {
  content: ""; position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px;
  background: radial-gradient(circle, #1a1a20 0%, #08080a 60%);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}
.phone-side {
  position: absolute; left: -2px; top: 110px; width: 3px; height: 36px;
  background: #1a1a20; border-radius: 0 1px 1px 0;
  box-shadow: 0 60px 0 #1a1a20;
}
.phone-screen {
  position: relative;
  background: var(--bg);
  border-radius: 38px;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
}

/* ─── App: rider call ─── */
.app {
  position: relative; height: 100%; width: 100%;
  background: var(--bg);
  color: var(--text);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.app-statusbar {
  position: absolute; top: 18px; left: 24px; right: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; font-weight: 700;
  z-index: 6; color: var(--text);
  letter-spacing: 0.01em;
}
.sb-r { display: flex; align-items: center; gap: 5px; color: var(--text); }
.sb-sig {
  width: 14px; height: 9px;
  background:
    linear-gradient(to top, currentColor 0 100%) 0 100% / 2px 3px no-repeat,
    linear-gradient(to top, currentColor 0 100%) 4px 100% / 2px 5px no-repeat,
    linear-gradient(to top, currentColor 0 100%) 8px 100% / 2px 7px no-repeat,
    linear-gradient(to top, currentColor 0 100%) 12px 100% / 2px 9px no-repeat;
}
.sb-bat {
  width: 22px; height: 10px;
  border: 1.2px solid currentColor; border-radius: 2.5px;
  position: relative;
  background: linear-gradient(to right, currentColor 0%, currentColor 90%, transparent 90%);
  background-clip: padding-box;
  padding: 1px;
}
.sb-bat::after {
  content: ""; position: absolute; right: -3px; top: 50%; transform: translateY(-50%);
  width: 1.5px; height: 4px; background: currentColor; border-radius: 0 1px 1px 0;
}

/* Map */
.map {
  position: absolute; inset: 0;
  background: #141418;
  overflow: hidden;
}
.map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  background-position: -1px -1px;
  opacity: 0.6;
}
.map-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 35%, rgba(255,212,0,0.06) 0%, transparent 70%);
}
.map-roads {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.route-fg {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: draw-route 3.2s var(--ease-quint) .4s forwards;
}
@keyframes draw-route {
  to { stroke-dashoffset: 0; }
}
.pin-pickup, .pin-dest {
  opacity: 0;
  animation: pin-in 0.5s var(--ease-quint) forwards;
}
.pin-pickup { animation-delay: 0.5s; }
.pin-dest { animation-delay: 3.2s; }
@keyframes pin-in {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Pulse around car */
.pulse {
  position: absolute;
  top: 38%; left: 50%;
  width: 140px; height: 140px;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
}
.pulse .ring {
  position: absolute; border-radius: 50%;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
}
.pulse .ring.r1 {
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(255,212,0,0.22) 0%, rgba(255,183,0,0.08) 40%, transparent 70%);
  animation: pulse-fade 2.6s ease-out infinite;
}
.pulse .ring.r2 {
  width: 96px; height: 96px;
  border: 1.4px solid rgba(255,212,0,0.5);
  animation: pulse-grow 2.6s ease-out .35s infinite;
}
.pulse .ring.r3 {
  width: 60px; height: 60px;
  border: 1.4px solid rgba(255,212,0,0.7);
  animation: pulse-grow 2.6s ease-out .7s infinite;
}
@keyframes pulse-fade {
  0% { opacity: 0.95; transform: translate(-50%, -50%) scale(0.85); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.18); }
}
@keyframes pulse-grow {
  0% { opacity: 1; transform: translate(-50%, -50%) scale(0.8); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.25); }
}
.pulse .car-pod {
  position: relative; z-index: 2;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD400 0%, #F59A3E 100%);
  color: #141418;
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 0 30px rgba(255,212,0,0.55),
    inset 0 -4px 8px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.4);
}

/* Top status banner */
.flow-status {
  position: absolute; top: 56px; left: 14px; right: 14px;
  display: flex; align-items: center; gap: 10px;
  padding: 11px 12px;
  border-radius: 13px;
  background: rgba(24,24,28,0.92);
  border: 1px solid rgba(255,212,0,0.22);
  color: var(--sun);
  z-index: 4;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.flow-status .ic { display: inline-flex; }
.flow-status .copy { color: var(--text); min-width: 0; flex: 1; }
.flow-status .copy .t {
  font-size: 11.5px; font-weight: 600; line-height: 1.3; color: var(--text);
}
.flow-status .copy .s {
  font-size: 10px; color: var(--text-2); font-weight: 400; margin-top: 2px; line-height: 1.3;
}

/* Bottom sheet */
.sheet {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, var(--surface) 0%, #131318 100%);
  border-radius: 22px 22px 0 0;
  padding: 12px 16px 18px;
  border-top: 1px solid var(--divider);
  box-shadow: 0 -10px 40px -8px rgba(0,0,0,0.6);
  z-index: 4;
}
.sheet-handle {
  width: 36px; height: 4px;
  background: #3a3a44;
  border-radius: 2px;
  margin: 0 auto 14px;
}
.route { display: flex; align-items: flex-start; gap: 10px; }
.rail {
  display: flex; flex-direction: column; align-items: center; padding-top: 4px;
}
.rail .dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.rail .dot.green { background: var(--green); box-shadow: 0 0 0 3px rgba(52,211,153,0.15); }
.rail .dot.orange { background: var(--orange); box-shadow: 0 0 0 3px rgba(255,95,0,0.15); }
.rail-dots {
  display: flex; flex-direction: column; gap: 3px; padding: 5px 0;
}
.rail-dots i {
  width: 2px; height: 2px; border-radius: 50%; background: #4A4A52;
}
.addrs { flex: 1; }
.addr { font-size: 12px; color: var(--text); line-height: 1.3; font-weight: 500; }
.addr .lbl {
  font-size: 9px; color: var(--text-3); text-transform: uppercase; letter-spacing: .1em;
  font-weight: 600; margin-bottom: 1px;
}
.addr .sep, .addrs .sep { height: 8px; }

.searching {
  margin-top: 14px;
  display: flex; align-items: center; gap: 10px;
  padding: 11px 12px;
  border-radius: 12px;
  background: rgba(255,212,0,0.06);
  border: 1px solid rgba(255,212,0,0.22);
  position: relative;
}
.searching .spinner {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255,212,0,0.25);
  border-top-color: var(--sun);
  animation: spin 1s linear infinite;
  flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }
.searching .t { font-size: 11.5px; font-weight: 600; color: var(--text); line-height: 1.3; }
.searching .s { font-size: 10px; color: var(--text-2); margin-top: 2px; line-height: 1.3; }
.searching > div { flex: 1; }
.eta-pill {
  font-size: 10px; font-weight: 700;
  background: rgba(255,212,0,0.12);
  color: var(--sun);
  padding: 4px 8px;
  border-radius: var(--r-pill);
  flex-shrink: 0;
}

.payment-row {
  margin-top: 10px;
  display: flex; align-items: center; gap: 9px;
  padding: 9px 12px;
  background: var(--surface-h);
  border: 1px solid var(--divider);
  border-radius: 11px;
}
.pay-ic {
  width: 22px; height: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--sun);
}
.pay-t { font-size: 11px; color: var(--text); flex: 1; font-weight: 500; }
.pay-fare { font-size: 12px; font-weight: 700; color: var(--text); }

.cancel {
  margin-top: 11px;
  width: 100%;
  padding: 11px 14px;
  border-radius: 11px;
  border: 1px solid rgba(255,107,107,0.4);
  background: transparent;
  color: var(--red);
  font-size: 11.5px;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: .005em;
  transition: background .25s, border-color .25s;
}
.cancel:hover { background: rgba(255,107,107,0.05); border-color: rgba(255,107,107,0.55); }

/* Hero ticker */
.hero-ticker {
  position: absolute;
  bottom: 24px; left: 0; right: 0;
  z-index: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.ticker {
  display: inline-flex; align-items: center; gap: 28px;
  white-space: nowrap;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  animation: ticker-roll 38s linear infinite;
}
.ticker .dot { color: var(--orange); font-size: 6px; opacity: 0.7; }
@keyframes ticker-roll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ──────────────────────────────────────────────
   SECTION COMMON
   ────────────────────────────────────────────── */
.section-pad { padding: 110px 0; position: relative; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head .h2 { margin-top: 16px; }
.section-head .lede { margin: 22px auto 0; }
@media (max-width: 720px) {
  .section-pad { padding: 80px 0; }
  .section-head { margin-bottom: 48px; }
}

/* ──────────────────────────────────────────────
   COMO FUNCIONA
   ────────────────────────────────────────────── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 920px) { .how-grid { grid-template-columns: 1fr; } }

.how-card {
  position: relative;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--divider);
  border-radius: var(--r-card);
  padding: 28px 28px 32px;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.how-card::before {
  content: ""; position: absolute; inset: 0;
  background: var(--grad-warm-soft);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.how-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,154,26,0.4);
  box-shadow: 0 24px 48px -20px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,154,26,0.1);
}
.how-card:hover::before { opacity: 1; }

.how-num {
  position: absolute; top: 22px; right: 26px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.05em;
}
.how-art {
  margin-bottom: 22px;
  position: relative; z-index: 1;
}
.how-art svg { width: 100%; max-width: 240px; height: auto; }
.how-card h3 {
  font-size: 22px; font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.how-card p {
  color: var(--text-2);
  font-size: 14.5px; line-height: 1.6;
  position: relative; z-index: 1;
}
.how-card p strong { color: var(--text); font-weight: 600; }

/* ──────────────────────────────────────────────
   MOTORISTAS
   ────────────────────────────────────────────── */
.drivers {
  position: relative; overflow: hidden;
}
.drivers-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255,140,0,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 0% 80%, rgba(255,212,0,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.drivers-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 940px) { .drivers-inner { grid-template-columns: 1fr; gap: 50px; } }

.drivers-copy h2 { margin: 16px 0 22px; }

.bullets {
  list-style: none;
  margin: 32px 0 36px;
  display: flex; flex-direction: column; gap: 16px;
}
.bullets li {
  display: flex; align-items: flex-start; gap: 14px;
}
.bullets .b-ic {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--grad-warm-soft);
  border: 1px solid rgba(255,154,26,0.25);
  color: var(--sun);
}
.bullets li > div { flex: 1; }
.bullets strong {
  display: block;
  font-size: 15.5px; font-weight: 600;
  color: var(--text);
  margin-bottom: 3px;
}
.bullets span {
  font-size: 14px; color: var(--text-2); line-height: 1.55;
}

.drivers-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Driver card art */
.drivers-art {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 460px;
}
.driver-card {
  position: relative;
  width: 100%; max-width: 380px;
  background: linear-gradient(180deg, var(--surface-h) 0%, var(--surface) 100%);
  border: 1px solid var(--divider);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow-card);
  transform: rotate(-1.5deg);
  transition: transform .5s var(--ease);
}
.drivers-art:hover .driver-card { transform: rotate(0); }
.dc-glow {
  position: absolute; inset: -1px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,212,0,0.5) 0%, transparent 50%, rgba(255,95,0,0.3) 100%);
  z-index: -1;
  filter: blur(6px);
  opacity: 0.4;
}
.dc-top {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
}
.dc-avatar {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--sun);
  box-shadow: 0 0 22px rgba(255,212,0,0.35);
}
.dc-verified {
  position: absolute; bottom: -2px; right: -2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #0D0D0F;
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid #0D0D0F;
}
.dc-meta { flex: 1; min-width: 0; }
.dc-name {
  font-size: 15.5px; font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.dc-stars {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-2);
}
.stars { display: inline-flex; gap: 1px; }
.dc-rating { color: var(--sun); font-weight: 700; }
.dc-sep { color: var(--text-3); }
.dc-trips { color: var(--text-2); }
.dc-call {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(52,211,153,0.12);
  border: 1px solid rgba(52,211,153,0.3);
  color: var(--green);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .25s, background .25s;
}
.dc-call:hover { transform: scale(1.05); background: rgba(52,211,153,0.18); }

.dc-vehicle {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.vehicle-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface-hh);
  border: 1px solid var(--divider);
  border-radius: var(--r-pill);
  padding: 7px 13px;
  font-size: 12.5px; font-weight: 500; color: var(--text);
}
.color-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.05);
}
.plate {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; font-weight: 700;
  background: linear-gradient(180deg, #2c2c33 0%, #1a1a20 100%);
  border: 1px solid #444;
  color: var(--text);
  padding: 6px 12px;
  border-radius: 6px;
  letter-spacing: 0.12em;
  position: relative;
}
.plate::before {
  content: ""; position: absolute; left: -1px; top: -1px; bottom: -1px;
  width: 4px;
  background: linear-gradient(180deg, #1e3a8a 0%, #1d4ed8 100%);
  border-radius: 6px 0 0 6px;
}
.plate-letters { padding-left: 4px; }

.dc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-top: 1px solid var(--divider);
  padding-top: 16px;
}
.dc-stat .k {
  font-size: 17px; font-weight: 800; letter-spacing: -0.01em;
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.dc-stat .l {
  font-size: 11.5px; color: var(--text-2);
  margin-top: 3px;
}

/* Earnings card floating */
.earn-card {
  position: absolute;
  right: -8px; bottom: -8px;
  background: linear-gradient(180deg, var(--surface-h) 0%, var(--surface) 100%);
  border: 1px solid var(--divider);
  border-radius: 18px;
  padding: 16px 18px;
  width: 220px;
  box-shadow: var(--shadow-card), 0 0 40px rgba(255,154,26,0.2);
  transform: rotate(2.5deg);
  transition: transform .5s var(--ease);
  z-index: 2;
}
.drivers-art:hover .earn-card { transform: rotate(0) translateY(-4px); }
.earn-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.earn-eyebrow {
  font-size: 10.5px; font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.earn-live {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10.5px; font-weight: 600;
  color: var(--green);
}
.live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(52,211,153,0.7);
  animation: ping-dot-green 2s ease-in-out infinite;
}
@keyframes ping-dot-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52,211,153,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(52,211,153,0); }
}
.earn-amount {
  display: flex; align-items: baseline; gap: 4px;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.earn-amount .cur { font-size: 14px; color: var(--text-2); }
.earn-amount .num {
  font-size: 32px; line-height: 1;
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.earn-amount .num small { font-size: 18px; font-weight: 700; }
.earn-bar {
  height: 6px;
  background: var(--surface-hh);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}
.earn-fill {
  display: block;
  width: 72%;
  height: 100%;
  background: var(--grad-warm);
  border-radius: 3px;
  position: relative;
  animation: earn-shimmer 2.4s ease-in-out infinite;
}
@keyframes earn-shimmer {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,212,0,0); }
  50% { box-shadow: 0 0 12px rgba(255,212,0,0.4); }
}
.earn-meta {
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--text-2);
}

/* ──────────────────────────────────────────────
   TRANSPARÊNCIA · Receipt
   ────────────────────────────────────────────── */
.receipt-wrap {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}
.receipt {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--divider);
  border-radius: var(--r-card);
  padding: 32px 32px 28px;
  position: relative;
  box-shadow: var(--shadow-card);
}
.receipt::before {
  content: ""; position: absolute; inset: -2px;
  background: linear-gradient(135deg, rgba(255,212,0,0.2) 0%, transparent 50%, rgba(255,95,0,0.15) 100%);
  border-radius: 20px;
  z-index: -1;
  filter: blur(8px);
  opacity: 0.5;
}
.receipt-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px dashed var(--divider);
}
.r-eyebrow {
  font-size: 11px; font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 7px;
}
.r-route {
  font-size: 19px; font-weight: 700; letter-spacing: -0.01em;
  color: var(--text);
}
.r-total { text-align: right; }
.r-total-l {
  font-size: 11px; color: var(--text-3);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 3px;
}
.r-total-v {
  font-size: 26px; font-weight: 800; letter-spacing: -0.02em;
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.split-bar {
  margin: 24px 0 14px;
  display: flex;
  height: 14px;
  border-radius: var(--r-pill);
  overflow: hidden;
  background: var(--surface-hh);
  position: relative;
}
.split-bar .seg {
  display: block;
  height: 100%;
  position: relative;
  transform: scaleX(0);
  transform-origin: left;
  animation: split-grow 1.2s var(--ease-quint) forwards;
}
.split-bar .seg-driver {
  width: 78%;
  background: linear-gradient(90deg, var(--sun) 0%, var(--amber) 100%);
  animation-delay: .1s;
}
.split-bar .seg-tax {
  width: 11%;
  background: var(--surface-hhh);
  animation-delay: .35s;
}
.split-bar .seg-platform {
  width: 11%;
  background: var(--orange);
  animation-delay: .55s;
}
@keyframes split-grow {
  to { transform: scaleX(1); }
}

.split-legend {
  display: flex; flex-wrap: wrap; gap: 18px;
  margin-bottom: 22px;
}
.split-legend .lg {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-2);
}
.split-legend .lg i {
  width: 10px; height: 10px;
  border-radius: 3px;
  display: inline-block;
}
.split-legend .lg-driver i { background: linear-gradient(135deg, var(--sun), var(--amber)); }
.split-legend .lg-tax i { background: var(--surface-hhh); }
.split-legend .lg-platform i { background: var(--orange); }
.split-legend .lg strong { color: var(--text); font-weight: 700; margin-left: 4px; }

.r-rows {
  border-top: 1px dashed var(--divider);
  padding-top: 18px;
  display: flex; flex-direction: column; gap: 10px;
}
.r-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px;
}
.r-l { color: var(--text-2); }
.r-v { color: var(--text); font-weight: 600; }
.r-discount .r-v { color: var(--green); }
.r-strong {
  border-top: 1px solid var(--divider);
  padding-top: 12px;
  margin-top: 4px;
}
.r-strong .r-l { color: var(--text); font-weight: 600; }
.r-pay { display: inline-flex; align-items: center; gap: 8px; }
.pay-tag {
  display: inline-flex; align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 700;
  padding: 3px 7px;
  border-radius: 5px;
  letter-spacing: 0.04em;
}
.pay-tag.pix {
  background: rgba(0,189,174,0.15);
  color: var(--pix);
  border: 1px solid rgba(0,189,174,0.35);
}
.r-pay-id {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--text-3);
}

/* Annotations */
.annot {
  position: absolute;
  display: flex; align-items: center;
  pointer-events: none;
  opacity: 0;
  animation: annot-in 0.6s var(--ease-quint) 1.2s forwards;
}
.annot-1 {
  top: 24%; left: -24%;
}
.annot-2 {
  bottom: 14%; right: -22%;
  flex-direction: row-reverse;
}
@keyframes annot-in {
  to { opacity: 1; }
}
.annot-line {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--sun) 100%);
  position: relative;
}
.annot-line::after {
  content: ""; position: absolute; right: 0; top: 50%; transform: translate(50%, -50%);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 0 4px rgba(255,212,0,0.18);
}
.annot-2 .annot-line {
  background: linear-gradient(90deg, var(--sun) 0%, transparent 100%);
}
.annot-2 .annot-line::after { right: auto; left: 0; transform: translate(-50%, -50%); }
.annot-bubble {
  background: var(--surface-h);
  border: 1px solid var(--divider);
  padding: 9px 13px;
  border-radius: 10px;
  font-size: 12px;
  color: var(--text-2);
  white-space: nowrap;
  box-shadow: var(--shadow-card);
  margin: 0 8px;
}
.annot-bubble strong { color: var(--text); font-weight: 600; }

@media (max-width: 880px) {
  .annot { display: none; }
}

/* ──────────────────────────────────────────────
   FEATURES
   ────────────────────────────────────────────── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 920px) { .feat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .feat-grid { grid-template-columns: 1fr; } }

.feat {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--r-card);
  padding: 28px 26px;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.feat::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,154,26,0.3) 50%, transparent 100%);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.feat:hover { transform: translateY(-3px); border-color: rgba(255,154,26,0.3); }
.feat:hover::before { opacity: 1; }

.feat-ic {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--grad-warm-soft);
  border: 1px solid rgba(255,154,26,0.2);
  color: var(--sun);
  margin-bottom: 22px;
}
.feat-ic svg { width: 26px; height: 26px; }
.feat h3 {
  font-size: 18px; font-weight: 700; letter-spacing: -0.01em;
  margin-bottom: 9px;
}
.feat p {
  font-size: 14px; color: var(--text-2); line-height: 1.6;
}
.feat-accent {
  background:
    linear-gradient(180deg, rgba(255,212,0,0.06) 0%, var(--surface) 100%);
  border-color: rgba(255,154,26,0.25);
}
.feat-accent .feat-ic {
  background: var(--grad-warm);
  color: #141418;
  border-color: transparent;
  box-shadow: 0 8px 22px -6px rgba(255,140,0,0.4);
}

/* ──────────────────────────────────────────────
   DOWNLOAD
   ────────────────────────────────────────────── */
.download {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, #0a0a0c 100%);
}
.dl-aurora {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 20% 50%, rgba(255,212,0,0.16) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(255,95,0,0.14) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(40px);
}
.dl-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 940px) {
  .dl-inner { grid-template-columns: 1fr; gap: 50px; }
}
.dl-copy h2 { margin: 16px 0 22px; }
.dl-form {
  display: flex; gap: 10px;
  margin-top: 32px;
  max-width: 480px;
  flex-wrap: wrap;
  position: relative;
}
.dl-form.done .dl-input,
.dl-form.done .btn { opacity: 0.4; pointer-events: none; }
.dl-form.done .dl-success { opacity: 1; transform: translateY(0); }
.dl-input {
  display: flex; align-items: center; gap: 10px;
  flex: 1; min-width: 220px;
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--r-button);
  padding: 12px 16px;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.dl-input:focus-within {
  border-color: rgba(255,154,26,0.5);
  background: var(--surface-h);
  box-shadow: 0 0 0 4px rgba(255,154,26,0.08);
}
.dl-ic { color: var(--text-3); }
.dl-input:focus-within .dl-ic { color: var(--sun); }
.dl-input input {
  flex: 1;
  background: transparent;
  border: none; outline: none;
  color: var(--text);
  font-family: inherit; font-size: 14.5px;
}
.dl-input input::placeholder { color: var(--text-3); }
.dl-success {
  position: absolute;
  bottom: -32px; left: 0;
  font-size: 13px; font-weight: 600;
  color: var(--green);
  display: inline-flex; align-items: center; gap: 6px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.dl-success::before {
  content: "✓"; display: inline-block;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(52,211,153,0.18);
  color: var(--green);
  text-align: center; line-height: 18px; font-size: 11px;
}

.dl-stores {
  display: flex; gap: 12px; margin-top: 36px;
  flex-wrap: wrap;
}
.store {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 11px 18px;
  background: #08080a;
  border: 1px solid #2a2a30;
  border-radius: 12px;
  transition: border-color .25s, transform .25s;
  min-width: 180px;
}
.store:hover { border-color: rgba(255,212,0,0.35); transform: translateY(-2px); }
.store-ic {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text);
}
.store-copy { display: flex; flex-direction: column; line-height: 1.1; }
.store-l { font-size: 10px; color: var(--text-2); }
.store-n { font-size: 16px; font-weight: 700; color: var(--text); margin-top: 2px; }

/* DL phone art */
.dl-art {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 520px;
}
.dl-phone-stack {
  position: relative;
  width: 280px; height: 480px;
}
.dl-phone {
  position: absolute;
  background: linear-gradient(180deg, #2a2a30 0%, #14141a 100%);
  padding: 8px;
  border-radius: 38px;
  border: 1px solid #3a3a44;
  box-shadow: 0 30px 60px -10px rgba(0,0,0,0.6);
}
.dl-phone-screen {
  background: var(--bg);
  border-radius: 30px;
  width: 100%; height: 100%;
  overflow: hidden;
  padding: 30px 18px 18px;
  position: relative;
}
.p-back {
  width: 220px; height: 380px;
  top: 50px; left: -30px;
  transform: rotate(-8deg);
  opacity: 0.85;
}
.p-back .dl-phone-screen {
  padding: 26px 18px;
}
.dl-mock-1 { display: flex; flex-direction: column; gap: 12px; }
.dl-mock-bar {
  height: 12px; width: 90%;
  background: var(--surface-hh);
  border-radius: 4px;
}
.dl-mock-bar.w-70 { width: 60%; }
.dl-mock-card {
  height: 70px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-h) 100%);
  border: 1px solid var(--divider);
  border-radius: 12px;
  margin-top: 6px;
  position: relative;
  overflow: hidden;
}
.dl-mock-card::before {
  content: ""; position: absolute; top: 12px; left: 12px;
  width: 30px; height: 30px;
  background: var(--grad-warm-soft);
  border-radius: 9px;
}
.dl-mock-card.sm { height: 50px; }
.dl-mock-card.sm::before { width: 24px; height: 24px; }

.p-front {
  width: 260px; height: 440px;
  top: 30px; right: -10px;
  transform: rotate(4deg);
  z-index: 2;
  filter: drop-shadow(0 0 30px rgba(255,154,26,0.25));
}
.dl-phone-notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 70px; height: 18px;
  background: #08080a;
  border-radius: 10px;
  z-index: 5;
}
.dl-stars {
  position: absolute; inset: 0;
  pointer-events: none;
}
.dl-star {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 6px rgba(255,212,0,0.8);
  animation: twinkle 3s ease-in-out infinite;
}
.dl-star.s1 { top: 20%; left: 20%; animation-delay: 0s; }
.dl-star.s2 { top: 36%; right: 18%; animation-delay: 1.2s; width: 3px; height: 3px; }
.dl-star.s3 { bottom: 30%; left: 28%; animation-delay: 2.1s; }
@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}
.dl-greet {
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 30px 0 22px;
  line-height: 1.15;
}
.dl-greet br + strong { color: var(--text); font-weight: 800; }
.dl-search {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 14px;
  background: var(--surface-h);
  border: 1px solid var(--divider);
  border-radius: 12px;
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 16px;
}
.dl-search-ic { color: var(--sun); display: inline-flex; }
.dl-recent {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 12px;
  background: transparent;
  border-bottom: 1px solid var(--divider-soft);
}
.dl-recent-ic {
  width: 26px; height: 26px;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,212,0,0.08);
  color: var(--sun);
  flex-shrink: 0;
}
.dl-recent-t { font-size: 12.5px; font-weight: 600; color: var(--text); }
.dl-recent-s { font-size: 10.5px; color: var(--text-2); margin-top: 1px; }
.dl-cta {
  width: 100%;
  margin-top: 16px;
  padding: 12px;
  background: var(--grad-warm);
  color: #141418;
  font-size: 14px; font-weight: 700;
  border: none;
  border-radius: 11px;
  box-shadow: 0 8px 22px -6px rgba(255,140,0,0.5);
}

/* ──────────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────────── */
.foot {
  background: #08080a;
  border-top: 1px solid var(--divider-soft);
  padding: 70px 0 32px;
}
.foot-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 60px;
  margin-bottom: 50px;
}
@media (max-width: 880px) { .foot-inner { grid-template-columns: 1fr; gap: 40px; } }
.foot-brand .brand-foot { font-size: 22px; }
.foot-tag {
  margin-top: 18px;
  font-size: 14px; color: var(--text-2);
  max-width: 36ch;
  line-height: 1.55;
}
.foot-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 600px) { .foot-cols { grid-template-columns: 1fr 1fr; row-gap: 36px; } }
.foot-cols h5 {
  font-size: 12px; font-weight: 700;
  color: var(--text);
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.foot-cols ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-cols a {
  font-size: 13.5px; color: var(--text-2);
  transition: color .25s;
}
.foot-cols a:hover { color: var(--sun); }

.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 26px;
  border-top: 1px solid var(--divider-soft);
  font-size: 12.5px; color: var(--text-3);
  flex-wrap: wrap; gap: 12px;
}
.foot-made a { color: var(--text-2); border-bottom: 1px dashed var(--divider); }
.foot-made a:hover { color: var(--sun); border-bottom-color: var(--sun); }
