:root {
  --blue: #2673e2;
  --blue-dark: #1353b3;
  --green: #2a7f62;
  --green-soft: #e7f3ed;
  --leaf: #558b2f;
  --ink: #132038;
  --muted: #637083;
  --line: #dbe3ee;
  --paper: #f9f9f9;
  --white: #ffffff;
  --sand: #fff7e8;
  --shadow: 0 24px 70px rgba(19, 32, 56, 0.14);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(38, 115, 226, 0.12), transparent 34rem),
    radial-gradient(circle at top right, rgba(42, 127, 98, 0.12), transparent 28rem),
    var(--paper);
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(135deg, rgba(19, 32, 56, 0.035) 25%, transparent 25%),
    linear-gradient(315deg, rgba(19, 32, 56, 0.035) 25%, transparent 25%);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 70%);
  z-index: -1;
}

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

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

.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  max-width: 780px;
  text-align: center;
}

.section-pad {
  padding: 96px 0;
}

.section-pad-sm {
  padding: 72px 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 10;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(219, 227, 238, 0.8);
  background: rgba(249, 249, 249, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-inner {
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand img {
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(19, 32, 56, 0.14);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.header-nav a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white) !important;
}

.hero {
  overflow: hidden;
  padding-top: 74px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(340px, 0.97fr);
  align-items: center;
  gap: 58px;
}

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

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

h1 {
  font-family: "Helvetica Neue Condensed Black", "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 900;
  max-width: 840px;
  margin-bottom: 20px;
  font-size: 3rem;
  line-height: 0.91;
  letter-spacing: -0.03em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.hero-subtitle,
.section-lead,
.split-heading > p,
.final-panel > p,
.how-copy > p,
.trust-copy > p {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-subtitle {
  max-width: 650px;
  margin-bottom: 28px;
}

.hero-actions,
.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 900;
  letter-spacing: -0.01em;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(38, 115, 226, 0.28);
}

.button-primary:hover {
  background: var(--blue-dark);
}

.button-secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.action-note {
  max-width: 600px;
  margin: 22px 0 26px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(42, 127, 98, 0.18);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: min(560px, 90vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.9), transparent 22%),
    linear-gradient(140deg, rgba(38, 115, 226, 0.22), rgba(42, 127, 98, 0.18));
  filter: blur(1px);
}

.phone-shell {
  position: relative;
  width: min(320px, 76vw);
  aspect-ratio: 9 / 18.4;
  border: 12px solid #111721;
  border-radius: 44px;
  background: #111721;
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}

.phone-camera {
  position: absolute;
  left: 50%;
  top: 13px;
  z-index: 4;
  width: 86px;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #0b1018;
}

.phone-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.05) contrast(0.98);
}

.route-card,
.map-pin-card {
  position: absolute;
  z-index: 5;
  display: grid;
  gap: 2px;
  border: 1px solid rgba(219, 227, 238, 0.92);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 38px rgba(19, 32, 56, 0.18);
  backdrop-filter: blur(16px);
}

.route-card {
  left: 18px;
  right: 18px;
  padding: 13px 15px;
}

.route-card-top {
  top: 76px;
}

.route-card-bottom {
  bottom: 26px;
}

.route-card strong {
  font-size: 1rem;
}

.route-card span,
.map-pin-card {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.map-pin-card {
  right: -14px;
  bottom: 78px;
  grid-auto-flow: column;
  align-items: center;
  padding: 12px 16px;
}

.pin-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(42, 127, 98, 0.16);
}

.problem {
  background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(231,243,237,0.55));
}

.problem-grid,
.benefits-grid,
.feature-grid {
  display: grid;
  gap: 20px;
}

.problem-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.problem-card,
.feature-card,
.benefit-item {
  border: 1px solid rgba(219, 227, 238, 0.85);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 35px rgba(19, 32, 56, 0.07);
}

.problem-card {
  padding: 26px;
}

.card-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--sand);
  color: var(--blue);
  font-size: 1.3rem;
  font-weight: 900;
}

.problem-card p,
.feature-card p,
.benefit-item p,
.steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.56fr);
  align-items: end;
  gap: 36px;
  margin-bottom: 30px;
}

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

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
}

.feature-card-large {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.7fr);
  align-items: center;
  min-height: 330px;
  background:
    radial-gradient(circle at top right, rgba(38, 115, 226, 0.12), transparent 28rem),
    var(--white);
}

.feature-number {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 1000;
  letter-spacing: 0.16em;
}

.feature-card h3 {
  max-width: 540px;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
}

.feature-card:not(.feature-card-large) h3 {
  font-size: clamp(1.45rem, 2.3vw, 2rem);
}

.mini-map {
  place-items: center;
  border-radius: 24px;
  background: #fbfdfb;
  box-shadow: inset 0 0 0 1px rgba(219, 227, 238, 0.9);
}

.mini-map img {
  border-radius: 24px;
}

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

.benefit-item {
  padding: 26px;
}

.benefit-item h3::before {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--green);
}

.how-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 0.9fr);
  gap: 36px;
  align-items: center;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 58px);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.how-copy > p,
.how-panel .eyebrow,
.final-panel .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.steps span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 32px;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-weight: 1000;
}

.steps p {
  color: rgba(255, 255, 255, 0.72);
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.trust-image-wrap {
  position: relative;
  max-width: 350px;
  justify-self: center;
}

.trust-image-wrap::after {
  content: "";
  position: absolute;
  inset: 20px -20px -20px 20px;
  z-index: -1;
  border-radius: 34px;
  background: var(--green-soft);
}

.trust-image {
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--ink);
  font-weight: 750;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 1000;
}

.final-cta {
  padding-top: 60px;
}

.final-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(34px, 7vw, 78px);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.32), transparent 24rem),
    linear-gradient(135deg, var(--blue), var(--green));
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow);
}

.final-panel::after {
  content: "";
  position: absolute;
  inset: auto -80px -140px auto;
  width: 320px;
  height: 320px;
  border: 36px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.final-panel h2,
.final-panel p,
.final-panel .store-actions,
.final-panel .text-link {
  position: relative;
  z-index: 1;
}

.final-panel h2 {
  max-width: 860px;
  margin-inline: auto;
}

.final-panel > p {
  max-width: 610px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.86);
}

.store-actions {
  justify-content: center;
  margin-top: 28px;
}

.final-panel .button-primary {
  background: var(--white);
  color: var(--blue-dark);
  box-shadow: 0 16px 30px rgba(19, 32, 56, 0.18);
}

.text-link {
  display: inline-block;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  padding: 30px 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.footer-inner div {
  display: flex;
  gap: 18px;
}

.footer-inner a:hover {
  color: var(--ink);
}

@media (max-width: 980px) {
  .hero-grid,
  .split-heading,
  .how-panel,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .problem-grid,
  .benefits-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    max-width: 680px;
  }

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

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, var(--max-width));
  }

  .section-pad {
    padding: 66px 0;
  }

  .section-pad-sm {
    padding: 52px 0;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand span {
    max-width: 170px;
    line-height: 1.05;
  }

  .header-nav a:not(.nav-cta) {
    display: none;
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 4.9rem);
  }

  .hero {
    padding-top: 46px;
  }

  .button {
    width: 100%;
  }

  .hero-actions,
  .store-actions {
    align-items: stretch;
  }

  .hero-visual {
    min-height: 500px;
  }

  .phone-shell {
    width: min(292px, 82vw);
    border-width: 10px;
  }

  .map-pin-card {
    right: 2px;
  }

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

  .feature-card {
    padding: 26px;
  }

  .mini-map {
    min-height: 200px;
  }

  .how-panel {
    padding: 26px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
