/* rideut — landing page */
@keyframes ru-dash { to { stroke-dashoffset: -28; } }
@keyframes ru-pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(1.4); } }

/* NAV */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid rgba(20,40,70,0.07); }
.nav-inner { max-width: var(--wrap); margin: 0 auto; padding: 16px 32px; display: flex; align-items: center; justify-content: space-between; }
.nav .word { font-size: 24px; }
.nav-right { display: flex; align-items: center; gap: 24px; font-size: 14px; font-weight: 600; color: var(--nav-link); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--nav-link); }
.nav-toggle { display: none; background: none; border: none; padding: 8px; color: var(--ink); }
.mobile-menu { display: none; }

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-menu { display: block; position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px); background: #fff; z-index: 60; box-shadow: -20px 0 60px -30px rgba(20,40,70,0.6); transform: translateX(100%); transition: transform .25s ease; padding: 24px; }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu a { display: block; color: var(--ink); font-size: 18px; font-weight: 700; padding: 14px 0; border-bottom: 1px solid var(--hair-soft); }
  .mobile-scrim { display: none; position: fixed; inset: 0; background: rgba(16,35,58,0.4); z-index: 55; }
  .mobile-scrim.open { display: block; }
}

/* HERO */
.hero { max-width: 780px; margin: 0 auto; padding: 72px clamp(20px,5vw,32px) 64px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero h1 { font-size: clamp(38px, 7vw, 64px); line-height: 1.03; margin: 22px 0 18px; color: var(--ink); font-weight: 700; letter-spacing: -0.035em; max-width: 680px; }
.hero-sub { font-size: 19px; line-height: 1.6; color: var(--body); margin: 0 0 34px; max-width: 500px; }
.searchbar { width: 100%; max-width: 580px; background: #fff; border: 1.5px solid rgba(11,107,203,0.25); border-radius: 18px; padding: 8px 8px 8px 20px; display: flex; align-items: center; gap: 14px; box-shadow: 0 20px 50px -24px rgba(11,107,203,0.5); text-align: left; transition: border-color .15s ease; }
.searchbar:focus-within { border-color: var(--blue); }
.searchbar input { flex: 1; border: none; outline: none; font-family: inherit; font-size: 16.5px; color: var(--ink); font-weight: 500; background: transparent; min-width: 0; }
.searchbar input::placeholder { color: var(--placeholder); }
.searchbar .go { background: var(--blue); color: #fff; font-weight: 700; font-size: 14.5px; padding: 12px 22px; border-radius: 12px; border: none; white-space: nowrap; }
.chips { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; justify-content: center; }
.chip { font-size: 13px; font-weight: 600; color: var(--nav-link); background: var(--chip); padding: 8px 14px; border-radius: 999px; border: none; }
.chip:hover { background: #e6edf4; }
.trust { display: flex; gap: 28px; margin-top: 40px; font-size: 13px; color: var(--muted); font-weight: 700; flex-wrap: wrap; justify-content: center; }
.trust .hl { color: var(--blue); }

/* Sections */
.section { padding: 80px 32px; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--hair-soft); border-bottom: 1px solid var(--hair-soft); }
.section h2 { font-size: 40px; line-height: 1.08; margin: 0 0 14px; color: var(--ink); font-weight: 700; letter-spacing: -0.025em; }
.section-head { text-align: center; max-width: 560px; margin: 0 auto 52px; }
.section-head p { font-size: 17px; line-height: 1.6; color: var(--body); margin: 0; }

/* Features */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.card { background: #fff; border: 1px solid var(--hair); border-radius: 18px; padding: 28px; }
.icon-tile { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.icon-tile.blue { background: rgba(11,107,203,0.1); }
.icon-tile.teal { background: rgba(18,165,148,0.12); }
.card h3 { font-size: 20px; margin: 0 0 8px; color: var(--ink); font-weight: 700; }
.card p { font-size: 15px; line-height: 1.6; color: var(--body); margin: 0; }

/* Two-col */
.two-col { max-width: var(--wrap); margin: 0 auto; }
.grid2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 48px; align-items: center; }
.grid2 h2 { margin: 18px 0 16px; line-height: 1.06; }
.lead { font-size: 17px; line-height: 1.6; color: var(--body); margin: 0 0 26px; max-width: 420px; }
.bullets { display: flex; flex-direction: column; gap: 14px; }
.bullet { display: flex; align-items: center; gap: 12px; }
.bullet .dot { width: 24px; height: 24px; border-radius: 50%; background: rgba(11,107,203,0.12); display: flex; align-items: center; justify-content: center; flex: none; }
.bullet .dot span { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }
.bullet p { font-size: 15px; color: var(--ink-2); font-weight: 600; margin: 0; }

/* Map panel */
.map-panel { position: relative; height: 440px; border-radius: 24px; overflow: hidden; background: linear-gradient(135deg,var(--map-a),var(--map-b)); border: 1px solid rgba(20,40,70,0.1); box-shadow: 0 30px 70px -34px rgba(20,40,70,0.5); }
.map-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(20,40,70,0.05) 1px,transparent 1px),linear-gradient(90deg,rgba(20,40,70,0.05) 1px,transparent 1px); background-size: 40px 40px; }
.map-card { position: absolute; left: 24px; top: 24px; background: rgba(255,255,255,0.94); backdrop-filter: blur(6px); border: 1px solid rgba(20,40,70,0.1); border-radius: 14px; padding: 14px 16px; box-shadow: 0 12px 28px -18px rgba(20,40,70,0.5); }
.map-card .k { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); }
.map-card .v { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 26px; color: var(--ink); margin: 4px 0 2px; }
.map-card .s { font-size: 12.5px; color: var(--body); font-weight: 600; }

/* How it works (dark) */
.dark { background: var(--ink); }
.dark h2 { color: #F4F8FC; }
.dark .section-head p { color: var(--muted-2); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; }
.step { text-align: center; }
.step .num { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 15px; width: 40px; height: 40px; border-radius: 50%; background: rgba(11,107,203,0.25); color: var(--step-num); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.step h3 { font-size: 19px; margin: 0 0 8px; color: #F4F8FC; font-weight: 700; }
.step p { font-size: 15px; line-height: 1.6; color: var(--muted-2); margin: 0; }

/* Phone */
.phone { width: 272px; height: 540px; background: var(--ink); border-radius: 42px; padding: 10px; box-shadow: 0 34px 70px -28px rgba(20,40,70,0.6); }
.phone-screen { width: 100%; height: 100%; background: var(--phone-screen); border-radius: 33px; overflow: hidden; display: flex; flex-direction: column; }
.phone-status { display: flex; justify-content: space-between; padding: 15px 22px 6px; font-size: 12px; font-weight: 700; color: var(--ink); }
.phone-search { margin: 8px 16px 12px; background: #fff; border: 1.5px solid rgba(11,107,203,0.22); border-radius: 14px; padding: 12px 14px; display: flex; align-items: center; gap: 10px; box-shadow: 0 8px 18px -12px rgba(11,107,203,0.4); }
.phone-search .d { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); flex: none; }
.phone-search .t { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.phone-map { flex: 1; margin: 0 16px; border-radius: 16px; background: linear-gradient(135deg,var(--map-a),var(--map-b)); position: relative; overflow: hidden; border: 1px solid rgba(20,40,70,0.08); }
.phone-map .g { position: absolute; inset: 0; background-image: linear-gradient(rgba(20,40,70,0.05) 1px,transparent 1px),linear-gradient(90deg,rgba(20,40,70,0.05) 1px,transparent 1px); background-size: 26px 26px; }
.phone-result { margin: 12px 16px 0; background: #fff; border-radius: 14px; padding: 12px 14px; border: 1px solid rgba(20,40,70,0.1); }
.phone-result .row { display: flex; justify-content: space-between; align-items: center; }
.phone-result .dur { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 18px; color: var(--ink); }
.phone-result .tag { font-size: 11px; font-weight: 700; color: var(--teal-dark); background: rgba(18,165,148,0.14); padding: 4px 8px; border-radius: 6px; }
.phone-result .meta { font-size: 12px; color: var(--phone-sub); font-weight: 600; margin-top: 4px; }
.phone-tabs { display: flex; justify-content: space-around; padding: 14px 0 16px; margin-top: 10px; border-top: 1px solid rgba(20,40,70,0.07); }
.phone-tabs span { width: 20px; height: 20px; border-radius: 6px; background: rgba(20,40,70,0.14); }
.phone-tabs span.on { background: var(--blue); }
.center-col { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 48px; align-items: center; justify-items: center; }

/* Advertise */
.stats { display: flex; gap: 40px; margin-top: 34px; flex-wrap: wrap; }
.stat .n { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 28px; color: var(--ink); }
.stat .l { font-size: 13px; color: var(--muted); font-weight: 600; }
.ad-col { display: flex; flex-direction: column; gap: 12px; }
.ad-col-head { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.ad-card { background: #fff; border: 1px solid rgba(20,40,70,0.1); border-radius: 14px; padding: 16px; box-shadow: 0 12px 28px -18px rgba(20,40,70,0.4); }
.ad-card .top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.ad-card .sp { font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal-dark); background: rgba(18,165,148,0.14); padding: 3px 8px; border-radius: 5px; }
.ad-card .near { font-size: 11px; color: var(--muted); font-weight: 600; }
.ad-card .biz { display: flex; align-items: center; gap: 12px; }
.ad-card .avatar { width: 44px; height: 44px; border-radius: 10px; flex: none; display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 14px; color: var(--blue); }
.ad-card .avatar.grad { background: linear-gradient(140deg,#0B6BCB,#12A594); }
.ad-card .avatar.plain { background: var(--map-a); }
.ad-card .name { font-size: 15px; font-weight: 700; color: var(--ink); }
.ad-card .offer { font-size: 12.5px; color: var(--body); }
.actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

/* CTA band */
.cta-band { max-width: var(--wrap); margin: 0 auto; padding: 96px 32px; }
.cta-inner { background: var(--grad); border-radius: 28px; padding: 64px 40px; text-align: center; color: #fff; }
.cta-inner h2 { font-size: 44px; line-height: 1.05; margin: 0 0 14px; font-weight: 700; letter-spacing: -0.03em; color: #fff; }
.cta-inner p { font-size: 18px; line-height: 1.5; margin: 0 auto 30px; max-width: 440px; color: rgba(255,255,255,0.9); }
.cta-inner .actions { justify-content: center; }

/* Footer */
.footer { border-top: 1px solid var(--hair); }
.footer-inner { max-width: var(--wrap); margin: 0 auto; padding: 48px 32px; display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px; }
.footer .word { font-size: 21px; }
.footer .blurb { font-size: 13.5px; line-height: 1.6; color: var(--muted); margin: 12px 0 0; max-width: 280px; }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col .h { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--col-head); }
.footer-col a { font-size: 14px; color: var(--nav-link); font-weight: 600; }
.footer-bar { border-top: 1px solid var(--hair-soft); }
.footer-bar .inner { max-width: var(--wrap); margin: 0 auto; padding: 20px 32px; font-size: 13px; color: var(--muted-2); font-weight: 600; }

@media (max-width: 600px) {
  .section h2, .grid2 h2 { font-size: 30px !important; }
  .cta-inner h2 { font-size: 32px; }
}
