:root {
  --ink: #1a1614;
  --paper: #f3efe8;
  --card: #fffdf8;
  --mute: #6b6158;
  --line: #ddd4c8;
  --brand: #ff8600;
  --brand-dark: #d96f00;
  --cheap: #1f7a4d;
}

* { box-sizing: border-box; }
html, body { margin: 0; }
html { scroll-behavior: auto; scroll-padding-top: 88px; }
body {
  font-family: Outfit, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 8;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
.kicker {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
}
.kicker.light { color: #ffb199; }

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(12px);
}
.brand {
  display: flex;
  align-items: center;
}
.brand img {
  height: 44px;
  width: auto;
  display: block;
}
.hero-logo {
  width: min(260px, 72vw);
  height: auto;
  display: block;
  margin: 0 0 18px;
}
.nav nav { display: flex; gap: 22px; align-items: center; font-weight: 600; font-size: 14px; }
.nav-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 8px 14px;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 8vw 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  overflow: hidden;
}
.hero-sky {
  position: absolute;
  inset: -20% -10% auto;
  height: 80%;
  background:
    radial-gradient(ellipse at 20% 0%, #ffd7c8 0%, transparent 55%),
    radial-gradient(ellipse at 80% 10%, #ffe8c2 0%, transparent 50%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#1a161412 1px, transparent 1px),
    linear-gradient(90deg, #1a161412 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 70% 60%, #000 30%, transparent 75%);
}

.hero-copy { position: relative; z-index: 2; max-width: 640px; }
.hero h1 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.92;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.hero h1 em {
  font-style: italic;
  color: var(--brand);
}
.lead {
  margin: 22px 0 0;
  font-size: 18px;
  line-height: 1.5;
  color: var(--mute);
  max-width: 440px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
}
.btn-dark { background: var(--ink); color: #fff; }
.btn-brand { background: var(--brand); color: #fff; }
.btn-light { background: #fff; color: var(--ink); }
.btn:hover { transform: translateY(-1px); }

.pin {
  position: absolute;
  z-index: 3;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 16px 16px 16px 4px;
  padding: 6px 10px;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 8px 12px 0 var(--ink);
}
.pin.sponsored { background: #111; color: #fff; border-color: var(--brand); }
.pin-a { left: 54%; top: 18%; }
.pin-b { left: 78%; top: 28%; }
.pin-c { left: 62%; top: 78%; }
.pin-d { left: 72%; top: 72%; }

.phone-wrap {
  position: relative;
  z-index: 4;
  justify-self: end;
  perspective: 1200px;
}
.phone {
  width: min(320px, 78vw);
  height: 640px;
  background: #111;
  border-radius: 42px;
  padding: 12px;
  border: 3px solid #2a2623;
  transform: rotateY(-12deg) rotateX(8deg);
  box-shadow: 30px 50px 0 #1a1614;
}
.phone-notch {
  position: absolute;
  left: 50%;
  top: 18px;
  width: 90px;
  height: 18px;
  margin-left: -45px;
  background: #000;
  border-radius: 12px;
  z-index: 2;
}
.phone-screen {
  height: 100%;
  background: #e8edf2;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}
.app-filters {
  position: absolute;
  top: 28px;
  left: 12px;
  right: 12px;
  display: flex;
  gap: 6px;
  z-index: 2;
}
.app-filters span {
  background: #fff;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}
.app-filters .mode { background: var(--ink); color: #fff; margin-left: auto; }
.app-map { height: 100%; position: relative; }
.road { position: absolute; background: #cfd8e3; }
.r1 { width: 18px; height: 140%; left: 38%; top: -20%; transform: rotate(18deg); }
.r2 { width: 14px; height: 140%; left: 62%; top: -10%; transform: rotate(-28deg); }
.blob {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #d7efe3;
  left: 8%;
  top: 28%;
}
.me {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #3b82f6;
  border: 3px solid #fff;
  left: 48%;
  top: 52%;
}
.m-pin {
  position: absolute;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 10px 10px 10px 2px;
  padding: 3px 7px;
  font-size: 11px;
  font-weight: 800;
}
.m-pin.cheap { background: var(--cheap); color: #fff; border-color: var(--cheap); }
.m-pin.star { background: var(--brand); color: #fff; border-color: var(--ink); }
.app-card {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 54px;
  background: #fff;
  border-radius: 16px;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.app-card .name { margin: 0; font-weight: 800; }
.app-card .meta { margin: 2px 0 0; color: var(--mute); font-size: 12px; }
.app-card strong { color: var(--brand); font-size: 18px; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats article {
  padding: 48px 32px;
  border-right: 1px solid var(--line);
}
.stats article:last-child { border-right: 0; }
.stats strong {
  display: block;
  font-family: Fraunces, serif;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
}
.stats span { display: block; margin-top: 10px; color: var(--mute); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 100px 8vw;
}
.split-sticky { position: sticky; top: 120px; align-self: start; }
.split h2, .download h2, .feat h3 {
  font-family: Fraunces, serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
}
.split h2 { font-size: clamp(32px, 4vw, 56px); }
.steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 28px; }
.steps li {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 28px;
  border-radius: 22px;
}
.steps span { font-weight: 800; color: var(--brand); letter-spacing: 0.08em; }
.steps h3 { margin: 8px 0; font-size: 22px; }
.steps p { margin: 0; color: var(--mute); line-height: 1.45; }

.strip {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  background: var(--ink);
  color: var(--paper);
}
.strip-track {
  display: flex;
  gap: 48px;
  width: max-content;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  animation: marquee 22s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.features {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 18px;
  padding: 80px 8vw 40px;
}
.feat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  min-height: 240px;
}
.feat-wide { background: var(--ink); color: var(--paper); }
.feat-wide .kicker { color: var(--brand); }
.feat h3 { font-size: 28px; margin-bottom: 12px; }
.feat p:last-child { color: var(--mute); line-height: 1.5; margin: 0; }
.feat-wide p:last-child { color: #cfc6bc; }

.download {
  position: relative;
  overflow: hidden;
  margin: 40px 8vw 80px;
  padding: 80px 48px;
  border-radius: 32px;
  background: var(--ink);
  color: #fff;
}
.download-bg {
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 80% 20%, #ff860040, transparent 40%),
    repeating-linear-gradient(-18deg, transparent 0 18px, #ffffff08 18px 19px);
}
.download .kicker, .download h2, .download .lead, .download .hero-actions, .download .soon {
  position: relative;
  z-index: 1;
}
.download h2 { font-size: clamp(36px, 6vw, 72px); max-width: 12ch; }
.download .lead { color: #cfc6bc; }
.soon { margin-top: 18px; color: #9a9188; font-size: 13px; }

.foot {
  padding: 24px 8vw 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--mute);
  font-size: 13px;
  font-weight: 600;
}
.foot img { height: 32px; width: auto; display: block; }
.foot a { text-decoration: underline; }

[data-reveal] { opacity: 0; transform: translateY(28px); }

@media (max-width: 900px) {
  .hero, .split, .features, .stats { grid-template-columns: 1fr; }
  .hero { padding-top: 100px; min-height: auto; }
  .phone { transform: none; box-shadow: 16px 24px 0 #1a1614; height: 560px; justify-self: center; }
  .phone-wrap { justify-self: center; }
  .pin-c, .pin-d { display: none; }
  .stats article { border-right: 0; border-bottom: 1px solid var(--line); }
  .split-sticky { position: static; }
  .download { padding: 48px 24px; margin: 24px 20px 60px; }
  .nav nav a:not(.nav-cta) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .strip-track { animation: none; }
  [data-reveal] { opacity: 1; transform: none; }
}
