:root {
  color-scheme: light;
  --teal-950: #032f37;
  --teal-900: #043d48;
  --teal-800: #075663;
  --teal-700: #006d73;
  --teal-600: #007a7a;
  --teal-500: #0d9593;
  --cyan-300: #7bd8d7;
  --cyan-200: #b6ece9;
  --green-300: #8bd99b;
  --green-100: #e8f7ec;
  --amber-400: #ffb83e;
  --amber-100: #fff1cf;
  --blue-500: #1565c0;
  --blue-100: #e7f0ff;
  --ink: #152020;
  --muted: #586665;
  --line: #d3dddb;
  --surface: #f6f8f7;
  --surface-high: #ffffff;
  --surface-low: #edf3f1;
  --dark-surface: #101414;
  --white: #ffffff;
  --shadow-soft: 0 18px 52px rgba(4, 61, 72, 0.1);
  --shadow-deep: 0 30px 80px rgba(1, 27, 33, 0.26);
  --container: min(1180px, calc(100% - 48px));
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body,
button,
a {
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

h1,
h2,
h3,
p,
dl,
dd,
figure,
ol {
  margin: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.06;
  font-weight: 760;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.28;
  font-weight: 760;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--amber-400);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  color: var(--teal-950);
  background: var(--white);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: max(640px, calc(100svh - 72px));
  overflow: hidden;
  color: var(--white);
  background: var(--teal-950);
}

.hero-map,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-map {
  z-index: -3;
  background:
    url("/assets/landing/meeting-point.png") center / cover no-repeat,
    var(--teal-900);
}

.hero-map .maplibregl-canvas {
  filter: saturate(0.88) contrast(1.02);
}

.hero-scrim {
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(3, 34, 40, 0.94) 0%,
      rgba(3, 45, 53, 0.84) 42%,
      rgba(3, 45, 53, 0.38) 68%,
      rgba(3, 45, 53, 0.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(3, 34, 40, 0.28),
      transparent 58%,
      rgba(3, 34, 40, 0.52)
    );
  pointer-events: none;
}

.top-nav {
  position: relative;
  z-index: 30;
  width: var(--container);
  min-height: 68px;
  margin: 0 auto;
  padding: 14px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

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

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(1, 27, 33, 0.24);
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-size: 1.02rem;
  line-height: 1.15;
}

.brand small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 650;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 680;
  transition: color 150ms ease;
}

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

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--white);
  background: rgba(3, 47, 55, 0.5);
  cursor: pointer;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1.1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

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

.button svg,
.feature-icon svg,
.capability-list svg,
.privacy-points svg,
.safety-note svg,
.product-shot figcaption svg,
.eyebrow svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  flex: 0 0 auto;
}

.button-primary {
  color: #062f32;
  background: var(--cyan-300);
  box-shadow: 0 18px 36px rgba(18, 151, 149, 0.26);
}

.button-primary:hover {
  background: #98e4e1;
  box-shadow: 0 22px 44px rgba(18, 151, 149, 0.34);
}

.button-light {
  color: var(--teal-950);
  background: var(--white);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(4, 61, 72, 0.38);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  background: rgba(4, 61, 72, 0.58);
}

.hero-content {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(72px, 11vh, 122px) 0 116px;
}

.hero-content > * {
  max-width: 690px;
}

.eyebrow,
.section-kicker {
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--teal-600);
  font-size: 0.76rem;
  line-height: 1.2;
  font-weight: 820;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--cyan-200);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(3.4rem, 8vw, 7rem);
  line-height: 0.9;
  font-weight: 780;
}

.hero-title {
  margin-top: 20px;
  color: var(--white);
  font-size: clamp(1.65rem, 3.4vw, 3rem);
  line-height: 1.1;
  font-weight: 700;
}

.hero-copy {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.79);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.7;
}

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

.hero-stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stats div {
  min-height: 82px;
  padding: 16px 18px 0 0;
}

.hero-stats div + div {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stats dt {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 760;
}

.hero-stats dd {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  line-height: 1.4;
}

.hero-live-status {
  position: absolute;
  right: max(5vw, 32px);
  bottom: 78px;
  z-index: 2;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(3, 47, 55, 0.7);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-deep);
  font-size: 0.82rem;
}

.status-pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-300);
  box-shadow: 0 0 0 5px rgba(139, 217, 155, 0.2);
}

.map-attribution {
  position: absolute;
  right: 12px;
  bottom: 8px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.64rem;
}

.map-attribution a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.routevous-map-marker {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--teal-600);
  box-shadow:
    0 0 0 9px rgba(0, 122, 122, 0.2),
    0 10px 24px rgba(1, 27, 33, 0.32);
}

.routevous-map-marker.destination {
  color: var(--teal-950);
  background: var(--amber-400);
  box-shadow:
    0 0 0 9px rgba(255, 184, 62, 0.2),
    0 10px 24px rgba(1, 27, 33, 0.32);
}

.section {
  width: var(--container);
  margin-inline: auto;
  padding: 104px 0;
}

.section-heading {
  max-width: 780px;
}

.section-heading.centered {
  margin: 0 auto;
  text-align: center;
}

.section-heading > p:last-child,
.workflow-copy > p,
.capability-heading > p,
.privacy-copy > p,
.launch-section p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

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

.feature-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal-600);
  border-radius: var(--radius-md);
  background: var(--surface-high);
  box-shadow: var(--shadow-soft);
}

.feature-card.accent-amber {
  border-top-color: var(--amber-400);
}

.feature-card.accent-blue {
  border-top-color: var(--blue-500);
}

.feature-card.accent-green {
  border-top-color: #32945b;
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 50%;
  color: var(--teal-700);
  background: #dff5f3;
}

.accent-amber .feature-icon {
  color: #805000;
  background: var(--amber-100);
}

.accent-blue .feature-icon {
  color: var(--blue-500);
  background: var(--blue-100);
}

.accent-green .feature-icon {
  color: #176a3b;
  background: var(--green-100);
}

.feature-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.workflow-band {
  background: var(--surface-low);
  border-block: 1px solid var(--line);
}

.workflow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 72px;
  align-items: center;
}

.workflow-list {
  margin-top: 34px;
  padding: 0;
  display: grid;
  gap: 0;
  list-style: none;
}

.workflow-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.workflow-list li > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal-700);
  font-size: 0.86rem;
  font-weight: 780;
}

.workflow-list p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.product-composition {
  position: relative;
  min-height: 590px;
}

.product-shot {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  background: var(--surface-high);
  box-shadow: var(--shadow-deep);
}

.product-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.product-shot figcaption {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  color: var(--teal-900);
  background: var(--surface-high);
  font-size: 0.78rem;
  font-weight: 740;
}

.shot-map {
  position: absolute;
  top: 50px;
  left: 0;
  width: min(86%, 520px);
}

.shot-map img {
  aspect-ratio: 1.82 / 1;
}

.shot-findable {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(62%, 330px);
}

.shot-findable img {
  aspect-ratio: 0.94 / 1;
}

.capability-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
  gap: 72px;
  align-items: center;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.capability-list div {
  min-height: 98px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px 16px;
  border-bottom: 1px solid var(--line);
}

.capability-list div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.capability-list svg {
  color: var(--teal-700);
}

.capability-list span {
  font-size: 0.93rem;
  line-height: 1.4;
  font-weight: 690;
}

.privacy-band {
  color: var(--white);
  background: var(--dark-surface);
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
  gap: 84px;
  align-items: center;
}

.privacy-visual {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: #0b1111;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.32);
}

.privacy-visual img {
  width: 100%;
}

.privacy-copy h2 {
  color: var(--white);
}

.privacy-copy > p {
  color: rgba(255, 255, 255, 0.66);
}

.privacy-copy .section-kicker {
  color: var(--cyan-300);
}

.privacy-points {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.14);
}

.privacy-points div {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  background: #141b1b;
}

.privacy-points svg {
  color: var(--cyan-300);
}

.privacy-points span {
  font-size: 0.86rem;
  line-height: 1.45;
  font-weight: 650;
}

.safety-note {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  padding: 16px;
  border-left: 3px solid var(--amber-400);
  color: #ffdf9f;
  background: rgba(255, 184, 62, 0.08);
}

.safety-note p {
  font-size: 0.82rem;
  line-height: 1.55;
}

.launch-section {
  min-height: 300px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.launch-section > div {
  max-width: 700px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--teal-950);
}

.footer-grid,
.footer-bottom {
  width: var(--container);
  margin-inline: auto;
}

.footer-grid {
  padding: 68px 0 48px;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(520px, 1.1fr);
  gap: 72px;
}

.footer-brand p {
  max-width: 420px;
  margin-top: 20px;
  font-size: 0.88rem;
  line-height: 1.65;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links h3 {
  margin-bottom: 5px;
  color: var(--white);
  font-size: 0.82rem;
}

.footer-links a {
  font-size: 0.82rem;
  transition: color 150ms ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.75rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

.support-page {
  min-height: 100vh;
  color: var(--ink);
  background: var(--surface);
}

.support-header {
  color: var(--white);
  background: var(--teal-950);
}

.support-header .top-nav {
  grid-template-columns: auto 1fr auto;
  border-bottom: 0;
}

.support-main {
  width: min(780px, calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0 100px;
}

.support-main h1 {
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  line-height: 1;
}

.support-intro {
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.support-options {
  margin-top: 42px;
  display: grid;
  gap: 14px;
}

.support-option {
  min-height: 100px;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-high);
}

.support-option > svg {
  color: var(--teal-700);
}

.support-option p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.86rem;
}

.support-option h2 {
  font-size: 1.08rem;
  line-height: 1.3;
}

.support-option .chevron {
  color: var(--muted);
}

@media (max-width: 980px) {
  .top-nav {
    grid-template-columns: 1fr auto;
  }

  .nav-action {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 78px 24px auto;
    z-index: 50;
    display: none;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    background: rgba(3, 47, 55, 0.96);
    box-shadow: var(--shadow-deep);
    backdrop-filter: blur(18px);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 14px;
  }

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

  .workflow-layout,
  .capability-section,
  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .workflow-copy,
  .capability-heading,
  .privacy-copy {
    max-width: 760px;
  }

  .product-composition {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .privacy-visual {
    width: min(100%, 580px);
    order: 2;
  }

  .privacy-copy {
    order: 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 680px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .hero {
    min-height: max(650px, calc(100svh - 54px));
  }

  .hero-scrim {
    background:
      linear-gradient(
        180deg,
        rgba(3, 34, 40, 0.83) 0%,
        rgba(3, 45, 53, 0.68) 46%,
        rgba(3, 34, 40, 0.92) 100%
      );
  }

  .top-nav {
    gap: 14px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .hero-content {
    padding-top: 42px;
    padding-bottom: 86px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .hero-title {
    margin-top: 14px;
    font-size: clamp(1.38rem, 6.5vw, 1.9rem);
  }

  .hero-copy {
    margin-top: 14px;
    font-size: 0.93rem;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions .button {
    width: 100%;
    min-height: 44px;
    padding-inline: 10px;
    font-size: 0.78rem;
  }

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

  .hero-stats div {
    min-height: 54px;
    padding: 13px 8px 0 0;
  }

  .hero-stats div + div {
    padding-left: 8px;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-stats dt {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .hero-stats dd {
    display: none;
  }

  .hero-live-status {
    right: 14px;
    bottom: 28px;
  }

  .map-attribution {
    right: 8px;
    bottom: 5px;
    max-width: calc(100% - 16px);
    font-size: 0.56rem;
  }

  .section {
    padding: 78px 0;
  }

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

  .feature-card {
    min-height: 220px;
  }

  .product-composition {
    min-height: 410px;
  }

  .shot-map {
    width: 100%;
  }

  .shot-findable {
    width: 64%;
  }

  .capability-list,
  .privacy-points {
    grid-template-columns: 1fr;
  }

  .capability-list div:nth-child(odd) {
    border-right: 0;
  }

  .launch-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .launch-section .button {
    width: 100%;
  }

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

  .footer-bottom {
    min-height: 88px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }

  .support-option {
    grid-template-columns: 42px 1fr;
  }

  .support-header .top-nav {
    grid-template-columns: 1fr auto;
  }

  .support-header .top-nav > div {
    display: none;
  }

  .support-header .button {
    width: 48px;
    padding: 0;
    border-radius: 50%;
  }

  .support-header .button span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .support-option .chevron {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
