:root {
  color-scheme: light;
  --ink: #14242b;
  --muted: #5e7078;
  --line: #d7e4e4;
  --paper: #fbfdfb;
  --mist: #eaf4f0;
  --water: #c9ecf0;
  --blue: #1677c8;
  --green: #23a268;
  --coral: #ef6b4a;
  --gold: #f5b84b;
  --shadow: 0 24px 80px rgba(20, 36, 43, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, rgba(234, 244, 240, 0.78), rgba(251, 253, 251, 0) 520px),
    var(--paper);
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid rgba(20, 36, 43, 0.08);
  background: rgba(251, 253, 251, 0.86);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 10;
}

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

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(20, 36, 43, 0.16);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 26px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

nav a,
.site-footer a {
  text-decoration: none;
}

nav a:hover,
.site-footer a:hover,
.policy a:hover {
  color: var(--blue);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
  min-height: calc(100svh - 72px);
  padding: clamp(52px, 9vw, 112px) clamp(20px, 5vw, 64px) clamp(36px, 6vw, 72px);
  overflow: hidden;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(54px, 10vw, 128px);
  line-height: 0.9;
  letter-spacing: 0;
}

.lede {
  max-width: 640px;
  margin: 24px 0 0;
  color: #31464e;
  font-size: clamp(19px, 2.4vw, 26px);
  line-height: 1.35;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 760;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: #ffffff;
  border-color: #105d9e;
  background: #105d9e;
  box-shadow: 0 14px 28px rgba(16, 93, 158, 0.22);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
}

.phone-preview {
  justify-self: center;
  width: min(100%, 430px);
}

.phone-shell {
  position: relative;
  aspect-ratio: 9 / 18.5;
  padding: 18px;
  border: 1px solid rgba(20, 36, 43, 0.14);
  border-radius: 36px;
  background: #17262d;
  box-shadow: var(--shadow);
}

.status-pill {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 92px;
  height: 24px;
  border-radius: 999px;
  background: #0b1519;
  transform: translateX(-50%);
  z-index: 3;
}

.app-screen {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0 clamp(20px, 5vw, 64px) 72px;
}

.feature-band.compact {
  padding-top: 12px;
}

.feature-card {
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(20, 36, 43, 0.06);
}

.feature-card h2 {
  margin: 0;
  font-size: 20px;
}

.feature-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.policy-layout,
.support-layout {
  padding: clamp(44px, 8vw, 86px) clamp(20px, 5vw, 64px) 72px;
}

.policy,
.support-hero {
  max-width: 860px;
}

.policy h1,
.support-hero h1 {
  font-size: clamp(42px, 7vw, 72px);
  line-height: 0.98;
}

.policy h2 {
  margin: 36px 0 8px;
  font-size: 22px;
}

.policy p,
.support-hero p {
  color: #31464e;
  font-size: 18px;
  line-height: 1.65;
}

.policy a {
  color: #105d9e;
  font-weight: 700;
}

.support-hero .button {
  margin-top: 16px;
}

.support-email {
  margin: 18px 0 0;
  color: var(--blue);
  font-weight: 780;
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  padding: 28px clamp(20px, 5vw, 64px);
  color: var(--muted);
  border-top: 1px solid rgba(20, 36, 43, 0.08);
  font-size: 14px;
}

.site-footer span {
  margin-right: auto;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .phone-preview {
    width: min(100%, 360px);
  }

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

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

  .hero {
    padding-top: 40px;
  }

  .actions,
  .button {
    width: 100%;
  }

  .phone-shell {
    border-radius: 28px;
    padding: 12px;
  }

  .map-scene {
    border-radius: 20px;
  }

  .sheet {
    left: 24px;
    right: 24px;
    bottom: 26px;
  }

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

  .site-footer span {
    margin-right: 0;
  }
}
