:root {
  color-scheme: light;
  --ink: #08151b;
  --muted: #5b6870;
  --line: #dce5e8;
  --soft: #f4f8f7;
  --paper: #ffffff;
  --navy: #07171f;
  --teal: #1fb7a6;
  --aqua: #5ad7d2;
  --coral: #f05d3a;
  --gold: #d99b2b;
  --radius: 8px;
  --shadow: 0 18px 50px rgba(8, 21, 27, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(220, 229, 232, 0.8);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

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

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

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  background: #fff;
  border: 1px solid rgba(8, 21, 27, 0.08);
}

.brand span {
  font-size: 1.18rem;
}

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

.nav a {
  text-decoration: none;
}

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

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
}

.menu-button svg {
  width: 20px;
  height: 20px;
}

.hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(31, 183, 166, 0.24), transparent 26%),
    linear-gradient(135deg, #f7fbfa 0%, #edf5f3 48%, #fff7ef 100%);
  border-bottom: 1px solid var(--line);
}

.hero .section-inner {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  align-items: center;
  gap: 56px;
  padding: 72px 0 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.4rem, 8vw, 6.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.15rem;
}

.lead {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

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

.store-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}

.store-button {
  min-width: 168px;
  padding: 8px 16px;
  background: var(--navy);
  color: #fff;
  gap: 10px;
}

.store-button small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  line-height: 1.1;
  font-weight: 700;
}

.store-button strong {
  display: block;
  font-size: 1rem;
  line-height: 1.1;
}

.button {
  padding: 0 18px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.note {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-note {
  margin: 18px 0 0;
}

.phone-wrap {
  display: flex;
  justify-content: center;
}

.phone {
  width: min(100%, 360px);
  aspect-ratio: 9 / 18.5;
  padding: 13px;
  border-radius: 34px;
  background: #07171f;
  box-shadow: var(--shadow);
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(140deg, rgba(31, 183, 166, 0.28), transparent 34%),
    linear-gradient(315deg, rgba(240, 93, 58, 0.2), transparent 32%),
    #10252b;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: rotate(-8deg) scale(1.2);
}

.route-line {
  position: absolute;
  inset: 18% -12% auto 6%;
  height: 180px;
  border-top: 4px solid rgba(90, 215, 210, 0.88);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.map-pin {
  position: absolute;
  left: 49%;
  top: 42%;
  width: 18px;
  height: 18px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 8px rgba(240, 93, 58, 0.26);
}

.screen-panel {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.screen-panel strong {
  display: block;
  margin-bottom: 8px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.metric {
  padding: 8px;
  border-radius: 8px;
  background: #eef6f4;
}

.metric b,
.metric span {
  display: block;
}

.metric b {
  font-size: 0.95rem;
}

.metric span {
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.2;
}

.section {
  padding: 78px 0;
}

.section.alt {
  background: var(--soft);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

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

.feature svg,
.info-card svg {
  width: 26px;
  height: 26px;
  color: var(--teal);
}

.feature p,
.info-card p,
.legal-copy p,
.legal-copy li {
  color: var(--muted);
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: start;
}

.info-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.info-card + .info-card {
  margin-top: 14px;
}

.info-list {
  padding-left: 20px;
  margin: 14px 0 0;
}

.page-hero {
  padding: 72px 0 46px;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.page-hero .section-inner {
  max-width: 900px;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
}

.legal-copy {
  max-width: 860px;
}

.legal-copy h2 {
  margin-top: 42px;
  font-size: 1.7rem;
}

.legal-copy h3 {
  margin-top: 26px;
}

.legal-copy ul,
.legal-copy ol {
  padding-left: 22px;
}

.contact-box {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.form-grid {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 750;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #cbd8dc;
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

textarea {
  min-height: 128px;
  resize: vertical;
}

.site-footer {
  padding: 44px 0;
  background: var(--navy);
  color: #dbe8ea;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
}

.footer-brand {
  max-width: 460px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 10px 22px;
}

.footer-links a {
  color: #dbe8ea;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.small {
  color: rgba(219, 232, 234, 0.72);
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .header-inner,
  .section-inner,
  .footer-inner {
    width: min(100% - 28px, 1120px);
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 14px 18px;
    border-bottom: 1px solid var(--line);
    background: #fff;
  }

  .nav[data-open] {
    display: flex;
  }

  .nav a {
    padding: 12px 0;
  }

  .hero .section-inner,
  .split,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero .section-inner {
    min-height: auto;
    padding: 56px 0 42px;
    gap: 36px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

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

  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .actions {
    display: grid;
  }

  .store-button,
  .button {
    width: 100%;
  }

  .section {
    padding: 56px 0;
  }
}
