:root {
  color-scheme: light;
  --ink: #17191c;
  --muted: #5d626b;
  --line: #e4e7eb;
  --paper: #fff;
  --soft: #f5f6f8;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Helvetica Neue",
    Helvetica,
    -apple-system,
    BlinkMacSystemFont,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
button:disabled {
  opacity: 0.45;
  cursor: wait;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid #17191c;
  outline-offset: 5px;
}
button:active {
  transform: scale(0.97);
}
button,
a {
  touch-action: manipulation;
}
::selection {
  background: #e0e6ed;
}
.wrap {
  width: min(1320px, calc(100% - 112px));
  margin-inline: auto;
}
.skip {
  position: fixed;
  top: 12px;
  left: 12px;
  padding: 14px 20px;
  background: var(--ink);
  color: #fff;
  z-index: 9;
  transform: translateY(-180%);
}
.skip:focus {
  transform: none;
}
.site-header {
  height: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.7px;
}
.brand img {
  border-radius: 9px;
}
nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}
nav a {
  text-decoration: none;
}
.nav-cta {
  display: flex;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  padding: 13px 18px;
  border-radius: 8px;
}
.nav-cta:hover {
  background: var(--soft);
}
.hero {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: center;
  gap: 42px;
  padding-block: 34px 58px;
}
.eyebrow {
  font-size: 11px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 1.65px;
  margin: 0 0 24px;
  color: var(--muted);
}
h1 {
  font-size: clamp(58px, 6.2vw, 90px);
  line-height: 1.01;
  letter-spacing: -5px;
  font-weight: 600;
  margin: 0 0 36px;
}
h1 span {
  color: #757d88;
}
.intro {
  font-size: 24px;
  letter-spacing: -0.6px;
  line-height: 1.35;
  margin: 0 0 18px;
}
.hero-description {
  font-size: 18px;
  line-height: 1.6;
  max-width: 330px;
  color: var(--muted);
  margin: 0 0 28px;
}
.text-link {
  display: inline-flex;
  gap: 28px;
  text-decoration: none;
  padding-block: 10px;
  font-size: 15px;
  font-weight: 600;
}
.text-link span {
  transition: transform 0.25s var(--ease);
}
.text-link:hover span {
  transform: translateY(4px);
}
.hero-note {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 64px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}
.hero-note p {
  margin: 0;
}
.note-line {
  width: 28px;
  height: 1px;
  background: #adb4be;
}
.map-shell {
  border: 1px solid #e1e4e8;
  border-radius: 24px;
  background: #fff;
  overflow: hidden;
  box-shadow:
    0 24px 64px -34px #68718055,
    0 2px 6px #17191c05;
}
.map-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 21px 24px 19px;
}
.map-top .eyebrow {
  font-size: 9px;
  letter-spacing: 1.2px;
}
.map-top p {
  font-size: 14px;
  font-weight: 500;
  margin: 4px 0 0;
}
.sample-tag {
  font-size: 11px;
  padding: 7px 10px;
  background: #f3f5f7;
  border-radius: 6px;
  color: #626974;
  white-space: nowrap;
}
.map-stage {
  height: 420px;
  position: relative;
  background: #f2f4f6;
}
.map-stage canvas {
  display: block;
  width: 100%;
  height: 100%;
  cursor: crosshair;
}
.map-compass {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 22px;
  background: #ffffffed;
  box-shadow: 0 2px 8px #17191c12;
  font-size: 10px;
  font-weight: 600;
  pointer-events: none;
}
.map-compass span {
  font-size: 25px;
  line-height: 1.1;
}
.map-loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  background: #f5f6f8;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.map-loading[hidden] {
  display: none;
}
.explore-curb {
  position: absolute;
  bottom: 18px;
  left: 20px;
  display: flex;
  gap: 24px;
  align-items: center;
  background: #fff;
  border: 1px solid #dfe3e7;
  border-radius: 9px;
  box-shadow: 0 4px 16px #17191c0d;
  padding: 13px 16px;
  font-size: 13px;
  font-weight: 600;
  min-height: 44px;
}
.curb-detail {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 78px;
  padding: 17px 20px;
  background: #fffffffa;
  border-radius: 14px;
  box-shadow: 0 5px 24px #17191c14;
  pointer-events: none;
}
.curb-detail .eyebrow {
  margin: 0 0 7px;
  font-size: 10px;
}
.curb-answer {
  margin: 0;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.5px;
}
.curb-context {
  margin: 5px 0 0;
  font-size: 12px;
  color: var(--muted);
}
.map-controls {
  padding: 15px 22px 16px;
}
.time-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 500;
}
.step-buttons {
  display: flex;
  gap: 4px;
}
.step-buttons button {
  width: 44px;
  height: 36px;
  border: 0;
  background: transparent;
  font-size: 18px;
  border-radius: 7px;
}
.step-buttons button:hover {
  background: var(--soft);
}
#track {
  height: 84px;
  position: relative;
  touch-action: none;
  cursor: ew-resize;
  border-radius: 8px;
}
#trackCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
#thumb {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  pointer-events: none;
}
#pill {
  position: absolute;
  left: 0;
  top: 8px;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  padding: 7px 12px;
  border-radius: 7px;
}
.time-needle {
  position: absolute;
  left: -1px;
  top: 37px;
  width: 2px;
  height: 25px;
  background: var(--ink);
}
.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  font-size: 11px;
  color: #555e68;
  padding-top: 12px;
}
.legend span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.legend i {
  display: inline-block;
  width: 17px;
  height: 0;
  border-top: 2px solid;
}
.legend .legal {
  border-color: #219e6c;
}
.legend .soon {
  border-color: #b97415;
  border-top-style: dashed;
}
.legend .restricted {
  border-color: #cd5a50;
  border-top-style: dashed;
}
.legend .unknown {
  border-color: #7a7f87;
  border-top-style: dotted;
}
.map-footnote {
  padding: 12px 22px;
  margin: 0;
  border-top: 1px solid #edf0f2;
  font-size: 10px;
  color: #68707b;
  line-height: 1.5;
}
.boroughs {
  border-block: 1px solid var(--line);
  padding-block: 26px;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
}
.boroughs > p {
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
}
.boroughs > div {
  display: flex;
  gap: 25px;
  flex: 1;
  justify-content: center;
  color: var(--muted);
}
.boroughs .coverage-note {
  font-weight: 400;
  color: var(--muted);
  font-size: 11px;
}
.product-section {
  padding-top: 122px;
}
.section-heading {
  max-width: 670px;
}
h2 {
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1.07;
  letter-spacing: -2.7px;
  font-weight: 500;
  margin: 0 0 25px;
}
.section-heading > p:last-child {
  font-size: 19px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 525px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.screen-stage {
  padding: 32px 34px;
  background: #f3f5f7;
  border-radius: 18px;
  overflow: hidden;
}
.screen-stage img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 6px 30px #424a581a;
  border: 1px solid #dfe3e7;
}
.product h3 {
  font-size: 22px;
  letter-spacing: -0.65px;
  font-weight: 500;
  margin: 25px 0 12px;
}
.product p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 32ch;
  margin: 0;
}
.image-note {
  font-size: 11px;
  color: var(--muted);
  margin: 24px 0 0;
}
.return-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-top: 1px solid var(--line);
  margin-top: 100px;
  padding-block: 90px;
}
.return-features {
  display: grid;
  gap: 38px;
}
.return-features article {
  display: flex;
  gap: 24px;
}
.feature-icon {
  width: 45px;
  height: 45px;
  flex: none;
  border: 1px solid #e2e6eb;
  border-radius: 13px;
  display: grid;
  place-content: center;
  font-size: 22px;
}
.return-features h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.6px;
  margin: 0 0 10px;
}
.return-features p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  max-width: 380px;
}
.film-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f4f6f8;
  padding: 48px 56px;
  border-radius: 18px;
}
.film-section .eyebrow {
  margin-bottom: 12px;
}
.film-section h2 {
  font-size: 36px;
  letter-spacing: -1.3px;
  margin-bottom: 12px;
}
.film-section p:last-child {
  color: var(--muted);
  font-size: 16px;
  margin: 0;
}
.film-button {
  display: flex;
  gap: 22px;
  align-items: center;
  background: transparent;
  border: none;
  font-weight: 500;
  font-size: 16px;
  padding: 12px;
}
.play-symbol {
  width: 52px;
  height: 52px;
  display: grid;
  place-content: center;
  border: 1px solid #b6bdc6;
  border-radius: 50%;
  font-size: 14px;
  padding-left: 3px;
  transition: background 0.2s;
}
.film-button:hover .play-symbol {
  background: #e6eaf0;
}
.trust-section {
  padding-block: 115px 95px;
}
.trust-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 38px;
  max-width: 1080px;
}
.trust-columns p {
  font-size: 19px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  border-top: 1px solid var(--line);
  padding-block: 70px;
}
.faq-section h2 {
  font-size: 36px;
  letter-spacing: -1.5px;
  max-width: 250px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
summary {
  cursor: pointer;
  padding: 23px 36px 23px 0;
  font-size: 17px;
  list-style: none;
  position: relative;
  font-weight: 500;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 19px;
  font-size: 25px;
  font-weight: 300;
}
details[open] summary::after {
  content: "−";
}
details p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 26px;
  max-width: 61ch;
}
.closing {
  text-align: center;
  padding-block: 100px 115px;
}
.closing img {
  border-radius: 16px;
  margin-bottom: 28px;
}
.closing h2 {
  font-size: clamp(45px, 5vw, 72px);
  letter-spacing: -3px;
  margin-bottom: 22px;
}
.closing p {
  font-size: 18px;
  color: var(--muted);
}
.availability {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  padding: 15px 23px;
  border: 1px solid var(--line);
  border-radius: 9px;
  margin-top: 9px;
}
footer {
  border-top: 1px solid var(--line);
  padding-block: 28px 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}
footer a {
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
footer > div {
  display: flex;
  gap: 28px;
}
footer > span {
  font-size: 11px;
}
dialog {
  border: none;
  border-radius: 20px;
  padding: 18px;
  background: #fff;
  max-width: min(480px, calc(100% - 24px));
  max-height: 95dvh;
  box-shadow: 0 30px 100px #0004;
}
dialog::backdrop {
  background: #28303d99;
  backdrop-filter: blur(6px);
}
dialog video {
  display: block;
  height: min(72dvh, 740px);
  max-width: 100%;
  margin: auto;
  border-radius: 10px;
  background: #f4f5f7;
}
.close-preview {
  display: block;
  margin: 0 0 12px auto;
  background: #f3f5f7;
  border: 0;
  border-radius: 50%;
  width: 44px;
  height: 44px;
}
.video-description {
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 340px;
  margin: 14px auto 0;
}
.document {
  max-width: 760px;
  padding-block: 70px 100px;
}
.document h1 {
  font-size: 60px;
  letter-spacing: -2.5px;
  margin-bottom: 16px;
}
.document .lede {
  font-size: 22px;
  line-height: 1.55;
  letter-spacing: -0.4px;
  margin: 35px 0 48px;
}
.document h2 {
  font-size: 25px;
  letter-spacing: -0.7px;
  line-height: 1.25;
  margin: 40px 0 13px;
}
.document p,
.document li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}
.document ul,
.document ol {
  padding-left: 22px;
}
.document .updated {
  font-size: 13px;
}
.support-contact {
  margin-top: 55px;
  padding: 30px;
  background: var(--soft);
  border-radius: 14px;
}
.support-contact h2 {
  margin-top: 0;
}
.support-contact a {
  overflow-wrap: anywhere;
}
.support-contact p:last-child {
  margin-bottom: 0;
}
.settle-ready .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
}
.settle-ready .reveal.in {
  opacity: 1;
  transform: none;
}
@media (min-width: 1600px) {
  .map-stage {
    height: 470px;
  }
  .hero {
    padding-block: 55px 75px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .hero {
    gap: 25px;
    grid-template-columns: 0.9fr 1.1fr;
  }
  h1 {
    font-size: 64px;
    letter-spacing: -3.8px;
  }
  .hero-description {
    font-size: 16px;
  }
  .intro {
    font-size: 21px;
  }
  .hero-note {
    margin-top: 35px;
  }
  .map-top {
    padding: 17px;
  }
  .sample-tag {
    font-size: 10px;
  }
  .map-stage {
    height: 380px;
  }
  .boroughs {
    flex-wrap: wrap;
    gap: 14px;
  }
  .boroughs > div {
    gap: 18px;
  }
  .boroughs .coverage-note {
    width: 100%;
    text-align: center;
  }
  .screen-stage {
    padding: 22px 20px;
  }
  .product-grid {
    gap: 22px;
  }
  .return-section,
  .trust-columns {
    gap: 40px;
  }
}
@media (max-width: 760px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 82px;
  }
  .brand {
    font-size: 20px;
  }
  .brand img {
    width: 32px;
    height: 32px;
  }
  .nav-detail {
    display: none;
  }
  nav {
    gap: 0;
  }
  .nav-cta {
    font-size: 12px;
    padding: 11px 13px;
    gap: 14px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-block: 30px 40px;
  }
  .hero-copy {
    padding-inline: 4px;
  }
  .hero .eyebrow {
    font-size: 10px;
    margin-bottom: 20px;
  }
  h1 {
    font-size: 68px;
    line-height: 1.02;
    letter-spacing: -4px;
    margin-bottom: 24px;
  }
  .intro {
    font-size: 21px;
  }
  .hero-description {
    max-width: 340px;
    font-size: 17px;
    margin-bottom: 12px;
  }
  .hero-note {
    display: none;
  }
  .map-shell {
    border-radius: 18px;
  }
  .map-top {
    padding: 16px;
  }
  .map-top .eyebrow {
    font-size: 9px;
    margin: 0;
  }
  .map-top p {
    font-size: 12px;
  }
  .sample-tag {
    font-size: 9px;
    padding: 6px 8px;
  }
  .map-stage {
    height: 350px;
  }
  .map-controls {
    padding: 12px 16px 16px;
  }
  .legend {
    gap: 9px 13px;
    font-size: 10px;
  }
  .map-footnote {
    padding: 12px 16px;
    font-size: 10px;
  }
  .time-heading {
    font-size: 11px;
  }
  .boroughs {
    display: block;
    padding-block: 24px;
    text-align: center;
  }
  .boroughs > div {
    flex-wrap: wrap;
    justify-content: center;
    margin: 18px 0;
    gap: 12px 20px;
    font-size: 12px;
  }
  .product-section {
    padding-top: 74px;
  }
  h2 {
    font-size: 42px;
    letter-spacing: -2px;
  }
  .section-heading > p:last-child {
    font-size: 17px;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 45px;
    margin-top: 35px;
  }
  .screen-stage {
    padding: 30px 50px;
    max-height: none;
  }
  .screen-stage img {
    width: min(100%, 275px);
    margin: auto;
    border-radius: 22px;
  }
  .product h3 {
    margin-top: 21px;
    font-size: 24px;
  }
  .product p {
    max-width: 100%;
    font-size: 16px;
  }
  .return-section {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 65px;
    padding-block: 60px;
  }
  .return-title h2 {
    margin-bottom: 0;
  }
  .return-features {
    gap: 30px;
  }
  .return-features article {
    gap: 17px;
  }
  .return-features h3 {
    font-size: 21px;
  }
  .return-features p {
    font-size: 16px;
  }
  .film-section {
    padding: 30px;
    display: block;
  }
  .film-section h2 {
    font-size: 32px;
  }
  .film-button {
    margin-top: 22px;
    padding-left: 0;
  }
  .trust-section {
    padding-block: 75px 60px;
  }
  .trust-columns {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 25px;
  }
  .trust-columns p {
    font-size: 17px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-block: 50px;
  }
  .faq-section h2 {
    max-width: none;
    font-size: 32px;
  }
  .closing {
    padding-block: 65px 80px;
  }
  .closing h2 {
    font-size: 48px;
    letter-spacing: -2px;
  }
  footer {
    gap: 22px;
    line-height: 1.5;
  }
  footer > span {
    width: 100%;
  }
  .document {
    padding-block: 45px 65px;
  }
  .document h1 {
    font-size: 46px;
  }
  .document .lede {
    font-size: 20px;
  }
}
@media (max-width: 370px) {
  h1 {
    font-size: 57px;
  }
  .wrap {
    width: calc(100% - 32px);
  }
  .brand {
    font-size: 18px;
  }
  .map-stage {
    height: 320px;
  }
  .screen-stage {
    padding: 25px 35px;
  }
  .legend {
    gap: 9px;
  }
  .legend i {
    width: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .settle-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 760px) {
  .site-header {
    height: 74px;
  }
  .hero {
    padding-top: 20px;
    gap: 24px;
  }
  .hero .eyebrow {
    margin-bottom: 14px;
  }
  .hero h1 {
    font-size: 49px;
    letter-spacing: -2.6px;
    margin-bottom: 18px;
  }
  .hero .intro {
    display: none;
  }
  .hero-description {
    font-size: 16px;
    line-height: 1.55;
  }
  .hero .text-link {
    font-size: 14px;
  }
  .hero-copy {
    padding-inline: 0;
  }
}
@media (max-width: 370px) {
  .hero h1 {
    font-size: 43px;
    letter-spacing: -2.4px;
  }
}

/* Focused launch refinements: preserve the hero; give proof priority. */
.platform-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  margin: 0 0 12px;
}
.time-hint {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 4px;
}
.return-section {
  margin-top: 0;
  padding-block: 50px;
  gap: 48px;
}
.return-title h2 {
  font-size: 36px;
  letter-spacing: -1.3px;
  max-width: 280px;
}
.return-title .eyebrow {
  margin-bottom: 15px;
}
.return-features {
  gap: 24px;
}
.return-features h3 {
  font-size: 20px;
}
.return-features p {
  font-size: 16px;
}
.trust-section {
  padding-block: 95px 70px;
}
@media (max-width: 760px) {
  .platform-label {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .return-section {
    padding-block: 40px;
    gap: 22px;
  }
  .return-title h2 {
    font-size: 30px;
    max-width: none;
  }
  .trust-section {
    padding-block: 65px 45px;
  }
}
