:root {
  --canvas: #f4efe6;
  --canvas-muted: #ede5d8;
  --card: #fffdf8;
  --card-soft: #f8f3ea;
  --text: #1d2b24;
  --text-muted: #5c6d61;
  --accent: #2f6b53;
  --accent-deep: #1f4f3e;
  --accent-soft: #d7e7dd;
  --gold: #c89b3c;
  --border: #ded4c5;
  --white: #ffffff;
  --shadow: 0 22px 54px rgba(24, 32, 28, 0.14);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--canvas);
  color: var(--text);
  font-family: var(--font);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(244, 239, 230, 0.9);
  border-bottom: 1px solid rgba(222, 212, 197, 0.78);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand-wordmark {
  width: 126px;
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
}

.header-actions a {
  border-radius: 999px;
  padding: 10px 12px;
}

.header-actions a:hover {
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.header-download {
  background: var(--accent);
  color: var(--white) !important;
}

.hero {
  position: relative;
  min-height: 76svh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(300px, 360px);
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(42px, 7vw, 82px) clamp(20px, 7vw, 96px);
  background: var(--accent-deep);
  color: var(--white);
  isolation: isolate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(31, 79, 62, 0.98) 0%, rgba(31, 79, 62, 0.9) 40%, rgba(31, 79, 62, 0.42) 100%),
    linear-gradient(180deg, rgba(31, 79, 62, 0.2), rgba(29, 43, 36, 0.48));
}

.hero-city {
  position: absolute;
  z-index: -3;
  left: 0;
  right: 0;
  bottom: -16px;
  width: 100%;
  min-width: 900px;
  margin: 0 auto;
  opacity: 0.52;
}

.hero-car {
  position: absolute;
  z-index: -2;
  right: clamp(-220px, -8vw, -40px);
  bottom: clamp(10px, 6vw, 74px);
  width: min(62vw, 760px);
  opacity: 0.95;
  filter: drop-shadow(0 30px 40px rgba(10, 18, 14, 0.28));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 690px);
  padding-bottom: 8px;
}

.phone-preview {
  position: relative;
  z-index: 2;
  width: min(100%, 356px);
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 42px;
  padding: 14px;
  background: #07100d;
  box-shadow: 0 30px 80px rgba(10, 18, 14, 0.36);
}

.phone-speaker {
  width: 78px;
  height: 6px;
  margin: 4px auto 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.phone-screen {
  min-height: 538px;
  overflow: hidden;
  border-radius: 30px;
  padding: 18px;
  background: var(--card);
  color: var(--text);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.phone-top strong {
  display: block;
  margin-top: 2px;
  font-size: 18px;
  line-height: 1.2;
}

.screen-muted {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}

.screen-bell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 14px;
  font-weight: 900;
}

.mini-map {
  position: relative;
  height: 152px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  margin-bottom: 14px;
  background:
    linear-gradient(145deg, rgba(215, 231, 221, 0.92), rgba(255, 253, 248, 0.9)),
    var(--card-soft);
}

.mini-road {
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: 14px;
  height: 48px;
  background: #34463e;
  transform: rotate(-8deg);
}

.mini-route-line {
  position: absolute;
  left: 42%;
  bottom: 16px;
  width: 6px;
  height: 92px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.95) 0 14px,
    transparent 14px 28px
  );
  transform: rotate(82deg);
}

.mini-pin {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 3px solid var(--white);
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 8px 20px rgba(24, 32, 28, 0.22);
}

.mini-pin-start {
  left: 28px;
  bottom: 42px;
}

.mini-pin-end {
  right: 42px;
  top: 32px;
  background: var(--gold);
}

.mini-car {
  position: absolute;
  right: -22px;
  bottom: 34px;
  width: 168px;
  filter: drop-shadow(0 16px 18px rgba(24, 32, 28, 0.18));
}

.mini-chip {
  position: absolute;
  left: 16px;
  top: 16px;
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(255, 253, 248, 0.92);
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(24, 32, 28, 0.1);
}

.route-preview-card {
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  color: var(--white);
  box-shadow: 0 16px 28px rgba(31, 79, 62, 0.2);
}

.route-preview-card span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.route-preview-card h3 {
  margin: 8px 0 18px;
  font-size: 22px;
  line-height: 1.16;
}

.route-preview-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.route-preview-meta div {
  min-width: 0;
}

.route-preview-meta small {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
}

.route-preview-meta b {
  display: block;
  margin-top: 3px;
  overflow-wrap: anywhere;
  font-size: 14px;
  line-height: 1.2;
}

.trust-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.trust-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card-soft);
}

.trust-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 34px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 900;
}

.trust-item p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 18px;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.18;
  font-weight: 900;
}

.hero-copy {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 16px;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--white);
  color: var(--accent-deep);
  box-shadow: 0 14px 28px rgba(10, 18, 14, 0.16);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.download-note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.section {
  padding: clamp(54px, 8vw, 92px) clamp(20px, 5vw, 64px);
}

.section-muted {
  background: var(--canvas-muted);
}

.container {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin-bottom: 0;
}

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

.feature-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--card);
  box-shadow: 0 10px 24px rgba(24, 32, 28, 0.07);
}

.feature-card p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 14px;
  font-weight: 900;
}

.how-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 64px);
  align-items: center;
}

.visual-panel {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--card-soft);
  box-shadow: var(--shadow);
}

.visual-city {
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 120%;
  max-width: none;
  transform: translateX(-50%);
  opacity: 0.78;
}

.road {
  position: absolute;
  inset: auto -8% -28% -8%;
  height: 52%;
  background: #34463e;
  transform: rotate(-8deg);
}

.road::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -18%;
  width: 8px;
  height: 136%;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.9) 0 22px,
    transparent 22px 44px
  );
  transform: rotate(90deg);
}

.visual-car {
  position: absolute;
  left: 50%;
  bottom: 66px;
  width: min(88%, 520px);
  max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 26px 30px rgba(24, 32, 28, 0.18));
}

.route-chip {
  position: absolute;
  border: 1px solid rgba(222, 212, 197, 0.92);
  background: rgba(255, 253, 248, 0.92);
  color: var(--accent-deep);
  border-radius: 999px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(24, 32, 28, 0.12);
}

.route-chip-top {
  top: 24px;
  right: 24px;
}

.route-chip-bottom {
  left: 24px;
  bottom: 24px;
}

.steps {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.step {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--card);
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 900;
}

.step p {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}

.download-panel {
  border-radius: 28px;
  padding: clamp(32px, 6vw, 58px);
  background: var(--accent-deep);
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow);
}

.download-panel h2 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.download-panel p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  line-height: 1.7;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .phone-preview {
    width: min(100%, 356px);
    margin: 18px 0 0;
  }

  .hero-car {
    opacity: 0.28;
  }
}

@media (max-width: 980px) {
  .hero {
    align-items: flex-start;
    min-height: 74svh;
  }

  .hero-car {
    right: -180px;
    width: 720px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .how-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .header-actions {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .header-actions a {
    white-space: nowrap;
  }

  .hero {
    min-height: 72svh;
    padding-top: 38px;
  }

  .hero-car {
    right: -210px;
    bottom: 20px;
    width: 620px;
  }

  .hero-city {
    min-width: 680px;
  }

  h1 {
    max-width: 8ch;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 320px);
  }

  .phone-preview {
    width: min(100%, 330px);
    padding: 12px;
    border-radius: 36px;
  }

  .phone-screen {
    min-height: 512px;
    border-radius: 26px;
    padding: 16px;
  }

  .route-preview-card h3 {
    font-size: 20px;
  }

  .button {
    width: 100%;
  }

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

  .feature-card {
    min-height: auto;
  }

  .visual-panel {
    min-height: 330px;
    border-radius: 24px;
  }

  .route-chip {
    font-size: 13px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .brand-wordmark {
    width: 112px;
  }

  .hero {
    min-height: 70svh;
  }

  .phone-screen {
    min-height: 500px;
  }

  .mini-map {
    height: 138px;
  }

  .route-preview-meta {
    gap: 6px;
  }

  .route-preview-meta b {
    font-size: 13px;
  }

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

  .download-note {
    max-width: 260px;
  }
}
