:root {
  color-scheme: light;
  --ink: #10231f;
  --muted: #5a6964;
  --line: #d9e2dc;
  --paper: #fbfcf7;
  --mint: #dff4e8;
  --green: #075943;
  --green-dark: #033629;
  --orange: #f77b2d;
  --orange-dark: #d85f17;
  --blue: #255f85;
  --white: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.topbar {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
  padding: 20px;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 900;
  gap: 10px;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  border-radius: 8px;
  height: 36px;
  object-fit: contain;
  width: 36px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 18px;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.hero {
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1fr) 420px;
  margin: 0 auto;
  max-width: 1180px;
  padding: 58px 20px 42px;
}

.eyebrow {
  align-items: center;
  color: var(--orange-dark);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  gap: 8px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  background: var(--orange);
  border-radius: 999px;
  content: "";
  display: inline-block;
  height: 8px;
  width: 8px;
}

h1 {
  font-size: clamp(44px, 8vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
  margin: 18px 0 18px;
  max-width: 820px;
}

.hero-copy {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.7;
  margin: 0;
  max-width: 720px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0 26px;
}

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 900;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  text-decoration: none;
}

.button.primary {
  background: var(--orange);
  color: #1c1208;
  box-shadow: 0 12px 30px rgba(247, 123, 45, 0.28);
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--green-dark);
}

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

.stat {
  border-left: 3px solid var(--orange);
  padding: 6px 0 6px 14px;
}

.stat strong {
  display: block;
  font-size: 26px;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.phone-frame {
  background: #101916;
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(11, 36, 28, 0.25);
  min-height: 650px;
  padding: 14px;
}

.phone-screen {
  background: linear-gradient(180deg, #f9fbf1, #eff7ef);
  border-radius: 24px;
  height: 100%;
  overflow: hidden;
  padding: 22px;
}

.phone-top {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.phone-logo {
  border-radius: 10px;
  height: 42px;
  object-fit: contain;
  width: 42px;
}

.location-pill {
  background: var(--mint);
  border-radius: 999px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  padding: 8px 12px;
}

.avatar {
  background: var(--orange);
  border-radius: 999px;
  height: 34px;
  width: 34px;
}

.search-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 22px 0;
  padding: 16px;
}

.search-card strong {
  display: block;
  font-size: 22px;
  margin-bottom: 8px;
}

.search-input {
  background: #f2f5ef;
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  padding: 12px;
}

.vendor-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 14px;
  padding: 14px;
}

.vendor-media {
  align-items: end;
  background:
    radial-gradient(circle at 20% 35%, #ffd7a8 0 14%, transparent 15%),
    radial-gradient(circle at 68% 32%, #92dcb9 0 18%, transparent 19%),
    linear-gradient(135deg, #0c5d46, #2b8067);
  border-radius: 8px;
  display: flex;
  height: 118px;
  padding: 12px;
}

.vendor-badge {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  padding: 8px 10px;
}

.vendor-card h3 {
  font-size: 18px;
  margin: 12px 0 6px;
}

.vendor-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.order-strip {
  align-items: center;
  background: var(--green);
  border-radius: 8px;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding: 14px;
}

.order-strip span {
  color: #b7e7d0;
  display: block;
  font-size: 12px;
  font-weight: 800;
}

.section {
  margin: 0 auto;
  max-width: 1180px;
  padding: 76px 20px;
}

.section-header {
  max-width: 760px;
}

.section h2 {
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0 0 16px;
}

.section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.feature h3 {
  margin: 0 0 10px;
}

.feature p {
  font-size: 15px;
  margin: 0;
}

.download-band {
  background: var(--green-dark);
  color: var(--white);
}

.download-band .section {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) 280px;
  padding-bottom: 64px;
  padding-top: 64px;
}

.download-band p {
  color: #b8d9ce;
}

.download-counter {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 22px;
}

.download-counter strong {
  display: block;
  font-size: 48px;
  line-height: 1;
}

.legal {
  max-width: 880px;
}

.legal h1 {
  font-size: clamp(38px, 6vw, 62px);
}

.legal h2 {
  font-size: 28px;
  margin-top: 40px;
}

.footer {
  background: #0d1916;
  color: #d9e9e3;
  padding: 44px 20px;
}

.footer-inner {
  display: grid;
  gap: 30px;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1180px;
}

.footer h3,
.footer h4 {
  color: var(--white);
  margin: 0 0 12px;
}

.footer p,
.footer a {
  color: #a9bbb4;
  font-size: 14px;
  line-height: 1.7;
}

.footer a {
  display: block;
  margin: 8px 0;
  text-decoration: none;
}

.fine-print {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 30px auto 0;
  max-width: 1180px;
  padding-top: 20px;
}

@media (max-width: 900px) {
  .hero,
  .download-band .section,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .phone-frame {
    min-height: 560px;
    max-width: 420px;
  }

  .feature-grid,
  .stats-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-copy,
  .section p {
    font-size: 16px;
  }

  .button {
    justify-content: center;
    width: 100%;
  }
}
