:root {
  --navy: #13213c;
  --navy-deep: #0d1729;
  --gold: #f6a91b;
  --gold-light: #ffe066;
  --pink: #ed174c;
  --pink-dark: #cb103e;
  --ink: #16233f;
  --line: #e6e8ee;
  --muted: #667085;
  --paper: #fffaf0;
  --shadow: 0 20px 50px rgba(17, 24, 39, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ---------- Nav ---------- */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-nav .wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 0; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 38px; height: 38px; border-radius: 10px; box-shadow: 0 6px 16px rgba(246,169,27,.35); }
.brand strong { font-size: 19px; letter-spacing: -.4px; }
.nav-links { display: flex; gap: 26px; font-weight: 600; font-size: 14px; }
.nav-links a { text-decoration: none; color: var(--muted); }
.nav-links a:hover { color: var(--ink); }
.nav-cta { border: 1px solid #f5a2b6; color: var(--pink); background: #fff; border-radius: 10px; padding: 9px 16px; font-weight: 700; font-size: 14px; text-decoration: none; white-space: nowrap; }

/* ---------- Hero ---------- */
.hero { padding: 76px 0 60px; background: linear-gradient(180deg, #fff 0%, var(--paper) 100%); }
.hero .wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700;
  color: var(--pink-dark); background: #fff0f4; border: 1px solid #f9c9d6; border-radius: 999px;
  padding: 6px 14px; margin-bottom: 18px;
}
.hero h1 { font-size: 46px; line-height: 1.1; letter-spacing: -1.2px; margin: 0 0 18px; }
.hero h1 span { color: var(--gold); }
.hero p.lede { font-size: 18px; color: #3f4653; max-width: 480px; margin: 0 0 30px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px; border-radius: 12px; padding: 14px 22px;
  font-weight: 700; font-size: 15px; text-decoration: none; border: 0; cursor: pointer;
}
.btn-primary { background: var(--navy); color: #fff; box-shadow: 0 10px 26px rgba(19,33,60,.25); }
.btn-primary:hover { background: var(--navy-deep); }
.btn-secondary { background: #fff; color: var(--ink); border: 1px solid #d7dbe3; }
.btn-secondary:hover { background: #f7f8fa; }
.hero-note { font-size: 13px; color: var(--muted); }

/* ---------- Phone mockup (CSS-drawn, matches the real in-app map/list layout) ---------- */
.phone {
  width: 300px; margin: 0 auto; background: var(--navy); border-radius: 46px; padding: 14px;
  box-shadow: var(--shadow);
}
.phone-screen { background: #fff; border-radius: 34px; overflow: hidden; }
.phone-topbar { display: flex; align-items: center; gap: 8px; padding: 16px 16px 10px; }
.phone-topbar img { width: 26px; height: 26px; border-radius: 7px; }
.phone-topbar strong { font-size: 13px; }
.phone-search { margin: 0 16px 10px; height: 34px; border-radius: 10px; background: #f2f3f6; }
.phone-map { position: relative; height: 190px; background: linear-gradient(135deg,#dfe9f3,#c9d9e8); overflow: hidden; }
.phone-pin { position: absolute; width: 26px; height: 26px; border-radius: 50% 50% 50% 0; background: var(--pink); transform: rotate(-45deg); box-shadow: 0 3px 8px rgba(0,0,0,.25); }
.phone-card {
  margin: -22px 12px 0; position: relative; background: #fff; border-radius: 16px; padding: 12px 14px;
  box-shadow: 0 12px 26px rgba(17,24,39,.18);
}
.phone-card strong { font-size: 13px; display: block; }
.phone-card span { font-size: 11px; color: var(--muted); }
.phone-skeleton { display: block; height: 10px; border-radius: 5px; background: #e9ebf0; margin-bottom: 6px; }
.phone-skeleton-title { width: 60%; height: 12px; }
.phone-skeleton-sub { width: 40%; }
.phone-pills { display: flex; gap: 6px; margin-top: 8px; }
.phone-pill { font-size: 10px; font-weight: 700; border-radius: 999px; padding: 3px 8px; }
.phone-pill.g { background: #eefcf2; color: #15803d; }
.phone-pill.p { background: #f6f1ff; color: #6d28d9; }
.phone-nav { display: flex; justify-content: space-around; padding: 14px 10px; font-size: 9px; font-weight: 700; color: #98a2b3; }
.phone-nav span.active { color: var(--ink); }

/* ---------- Section shells ---------- */
section { padding: 72px 0; }
.section-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.section-head h2 { font-size: 32px; letter-spacing: -.6px; margin: 0 0 12px; }
.section-head p { color: var(--muted); font-size: 16px; margin: 0; }
.tag { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; color: var(--pink-dark); margin-bottom: 10px; }

/* ---------- Story ---------- */
.story { background: var(--navy); color: #fff; }
.story .wrap { display: grid; grid-template-columns: 220px 1fr; gap: 44px; align-items: start; }
.story-portrait {
  width: 220px; height: 220px; border-radius: 28px; background: linear-gradient(145deg, var(--gold-light), var(--gold));
  display: grid; place-items: center; font-size: 84px;
}
.story h2 { font-size: 30px; margin: 0 0 16px; letter-spacing: -.5px; }
.story p { color: #d7ddea; font-size: 17px; line-height: 1.7; margin: 0 0 16px; }
.story p:last-child { margin-bottom: 0; }
.story strong { color: #fff; }

/* ---------- Feature grid ---------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card { border: 1px solid var(--line); border-radius: 20px; padding: 26px; }
.feature-icon {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: var(--navy); color: var(--gold); margin-bottom: 16px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 17px; margin: 0 0 8px; }
.feature-card p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.55; }

/* ---------- Roadmap ---------- */
.roadmap { background: var(--paper); }
.roadmap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.roadmap-item { background: #fff; border: 1px solid #f0e2c0; border-radius: 18px; padding: 22px; text-align: center; }
.roadmap-item .num { font-size: 12px; font-weight: 800; color: var(--gold); letter-spacing: .5px; margin-bottom: 8px; }
.roadmap-item h3 { font-size: 15px; margin: 0 0 6px; }
.roadmap-item p { font-size: 13px; color: var(--muted); margin: 0; }

/* ---------- Download CTA ---------- */
.download { text-align: center; }
.download .wrap { max-width: 620px; }
.store-badges { display: flex; justify-content: center; gap: 14px; margin: 28px 0 14px; flex-wrap: wrap; }
.store-badge {
  display: flex; align-items: center; gap: 10px; border: 1px solid #d7dbe3; border-radius: 12px;
  padding: 11px 18px; background: #fff; color: var(--muted); font-weight: 700; font-size: 13px;
}
.store-badge .big { display: block; font-size: 15px; color: #b6bac2; }
.store-badge.disabled { cursor: default; }

/* ---------- Footer ---------- */
footer { background: var(--navy-deep); color: #aab2c4; padding: 46px 0 30px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 30px; margin-bottom: 30px; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { width: 30px; height: 30px; border-radius: 8px; }
.footer-brand strong { color: #fff; font-size: 16px; }
.footer-links { display: flex; gap: 40px; flex-wrap: wrap; }
.footer-links div { display: flex; flex-direction: column; gap: 10px; font-size: 13px; }
.footer-links a { text-decoration: none; color: #aab2c4; }
.footer-links a:hover { color: #fff; }
.footer-links h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .5px; color: #6b7690; margin: 0 0 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px; font-size: 12px; color: #6b7690; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero { padding: 50px 0 40px; text-align: center; }
  .hero p.lede { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .phone { margin-top: 20px; }
  .story .wrap { grid-template-columns: 1fr; text-align: center; }
  .story-portrait { margin: 0 auto; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .roadmap-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 520px) {
  .hero h1 { font-size: 34px; }
  .features-grid { grid-template-columns: 1fr; }
  .roadmap-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
}
