:root {
  --yellow: #ffd400;
  --yellow-deep: #e3bc00;
  --black: #111111;
  --ink: #17191c;
  --gray-900: #24272b;
  --gray-700: #575b63;
  --gray-500: #7a8088;
  --gray-300: #cdd1d5;
  --gray-200: #e5e7e9;
  --gray-100: #f4f5f5;
  --white: #ffffff;
  --green: #147a45;
  --blue: #2457a6;
  --danger: #a62d2d;
  --container: 1180px;
  --header-height: 74px;
  --radius: 6px;
  --shadow-soft: 0 16px 42px rgba(17, 17, 17, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.dialog-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  color: var(--black);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 10px;
  font-size: 72px;
  font-weight: 800;
}

h2 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 44px;
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 800;
}

p {
  margin-bottom: 18px;
}

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

.section {
  padding: 104px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 4px;
  background: var(--yellow);
  content: "";
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.78);
}

.section-lead {
  color: var(--gray-700);
  font-size: 20px;
  line-height: 1.55;
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.7fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 46px;
}

.section-heading-row h2,
.section-heading-row p {
  margin-bottom: 0;
}

.section-heading-row > p {
  color: var(--gray-700);
}

.section-heading {
  margin-bottom: 38px;
}

.compact-heading h2 {
  max-width: 870px;
}

.split-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 88px;
  align-items: center;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: var(--black);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.nav-shell {
  width: min(calc(100% - 40px), 1280px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-link {
  flex: 0 0 auto;
}

.brand-link img {
  width: 186px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-nav {
  position: absolute;
  top: var(--header-height);
  right: 0;
  left: 0;
  padding: 14px 24px 22px;
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 30px rgba(0, 0, 0, 0.28);
}

.mobile-nav a {
  display: block;
  padding: 13px 4px;
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.button {
  min-height: 46px;
  padding: 11px 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button-yellow {
  background: var(--yellow);
  color: var(--black);
}

.button-yellow:hover {
  background: #ffe04a;
}

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

.button-black:hover {
  background: var(--gray-900);
}

.button-on-dark {
  background: rgba(17, 17, 17, 0.54);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.button-on-dark:hover {
  background: rgba(17, 17, 17, 0.78);
  border-color: var(--white);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.icon-button {
  width: 44px;
  height: 44px;
  padding: 0;
  display: inline-grid;
  place-items: center;
  flex: 0 0 44px;
  background: transparent;
  color: currentColor;
  border: 1px solid currentColor;
  border-radius: 4px;
  cursor: pointer;
}

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

.menu-button {
  display: none;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
}

.hero {
  position: relative;
  height: clamp(540px, 78svh, 720px);
  min-height: 540px;
  overflow: hidden;
  background: #3e4749;
  color: var(--white);
}

.hero-picture,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-picture {
  overflow: hidden;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-shade {
  background: rgba(17, 17, 17, 0.42);
}

.hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding-top: 54px;
  padding-bottom: 46px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero h1 {
  max-width: 660px;
  color: var(--white);
}

.hero-promise {
  margin-bottom: 20px;
  color: var(--yellow);
  font-size: 24px;
  font-weight: 800;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  margin-bottom: 30px;
}

.hero-standards {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  list-style: none;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
}

.hero-standards li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-standards svg {
  width: 17px;
  height: 17px;
  color: var(--yellow);
}

.signal-band {
  background: var(--yellow);
  color: var(--black);
}

.formation-notice {
  background: #fff7c7;
  border-top: 1px solid rgba(17, 17, 17, 0.14);
  border-bottom: 1px solid rgba(17, 17, 17, 0.14);
}

.formation-notice-inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.formation-notice-inner svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--black);
}

.formation-notice-inner p {
  margin: 0;
  color: #292929;
  font-size: 0.9rem;
  line-height: 1.5;
}

.signal-grid {
  min-height: 102px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.signal-item {
  padding: 23px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(17, 17, 17, 0.22);
}

.signal-item:first-child {
  border-left: 1px solid rgba(17, 17, 17, 0.22);
}

.signal-item strong {
  font-size: 24px;
  line-height: 1.1;
}

.signal-item span {
  margin-top: 3px;
  font-size: 13px;
}

.passenger-section {
  background: var(--white);
}

.passenger-layout {
  align-items: start;
}

.process-list {
  margin: 38px 0 0;
  padding: 0;
  display: grid;
  gap: 22px;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
}

.process-list h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

.process-list p {
  margin-bottom: 0;
  color: var(--gray-700);
}

.step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  font-weight: 800;
}

.phone-stage {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
  background: var(--gray-100);
  border-left: 6px solid var(--yellow);
}

.phone-frame {
  width: min(350px, calc(100% - 42px));
  height: 606px;
  padding: 10px;
  overflow: hidden;
  background: var(--white);
  border: 10px solid var(--black);
  border-radius: 38px;
  box-shadow: var(--shadow-soft);
}

.phone-status {
  position: relative;
  height: 27px;
  padding: 0 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--black);
  font-size: 11px;
  font-weight: 800;
}

.phone-camera {
  position: absolute;
  top: 2px;
  left: 50%;
  width: 76px;
  height: 19px;
  background: var(--black);
  border-radius: 12px;
  transform: translateX(-50%);
}

.phone-appbar {
  min-height: 51px;
  display: grid;
  grid-template-columns: 38px 1fr 34px;
  gap: 10px;
  align-items: center;
}

.phone-appbar img {
  width: 36px;
  height: 36px;
}

.phone-appbar strong,
.phone-appbar span {
  display: block;
}

.phone-appbar strong {
  font-size: 13px;
}

.phone-appbar span {
  color: var(--gray-700);
  font-size: 10px;
}

.mini-icon {
  width: 32px;
  height: 32px;
  padding: 0;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--gray-300);
  border-radius: 4px;
}

.mini-icon svg {
  width: 16px;
  height: 16px;
}

.where-to-preview {
  height: 48px;
  margin: 6px 0 10px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-100);
  color: var(--black);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  font-weight: 800;
}

.where-to-preview svg {
  width: 18px;
  height: 18px;
}

.map-preview {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: #e9eee7;
  border: 1px solid var(--gray-200);
}

.road {
  position: absolute;
  display: block;
  background: var(--white);
  border: 1px solid #d7dcd4;
}

.road-one {
  top: 112px;
  left: -48px;
  width: 430px;
  height: 34px;
  transform: rotate(-20deg);
}

.road-two {
  top: 20px;
  left: 146px;
  width: 35px;
  height: 380px;
  transform: rotate(15deg);
}

.road-three {
  top: 250px;
  left: -18px;
  width: 380px;
  height: 26px;
  transform: rotate(8deg);
}

.route-line {
  position: absolute;
  z-index: 2;
  display: block;
  height: 5px;
  background: var(--black);
  transform-origin: left center;
}

.route-one {
  top: 276px;
  left: 74px;
  width: 138px;
  transform: rotate(-65deg);
}

.route-two {
  top: 151px;
  left: 132px;
  width: 108px;
  transform: rotate(-20deg);
}

.pickup-dot {
  position: absolute;
  z-index: 3;
  top: 267px;
  left: 68px;
  width: 15px;
  height: 15px;
  background: var(--white);
  border: 4px solid var(--black);
  border-radius: 50%;
}

.destination-pin {
  position: absolute;
  z-index: 3;
  top: 102px;
  left: 222px;
  color: var(--danger);
}

.destination-pin svg {
  width: 29px;
  height: 29px;
  fill: var(--white);
}

.map-tricycle {
  position: absolute;
  z-index: 4;
  top: 174px;
  left: 133px;
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.map-label {
  position: absolute;
  z-index: 1;
  color: #53605b;
  font-size: 9px;
  font-weight: 700;
}

.label-one {
  top: 40px;
  left: 28px;
}

.label-two {
  right: 22px;
  bottom: 32px;
}

.approach-preview {
  min-height: 84px;
  padding: 13px 4px 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.approach-preview span,
.approach-preview strong {
  display: block;
}

.approach-preview span {
  color: var(--gray-700);
  font-size: 10px;
}

.approach-preview strong {
  margin-top: 2px;
  font-size: 13px;
}

.vehicle-plate {
  padding: 6px 7px;
  background: var(--yellow);
  color: var(--black) !important;
  border-radius: 3px;
  font-weight: 800;
  white-space: nowrap;
}

.service-section {
  background: var(--gray-100);
}

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

.service-card,
.plan-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}

.service-card {
  min-height: 398px;
  display: flex;
  flex-direction: column;
}

.service-card.active-service {
  border-top: 6px solid var(--yellow);
}

.service-card-top {
  min-height: 92px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.service-card-top img {
  width: 112px;
  height: 78px;
  object-fit: contain;
  object-position: left center;
}

.status-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gray-700);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.status-label > span {
  width: 8px;
  height: 8px;
  background: var(--gray-500);
  border-radius: 50%;
}

.status-label.active {
  color: var(--green);
}

.status-label.active > span {
  background: var(--green);
}

.service-card > p {
  color: var(--gray-700);
}

.service-card dl {
  margin: auto 0 0;
  border-top: 1px solid var(--gray-200);
}

.service-card dl div {
  padding: 10px 0;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  border-bottom: 1px solid var(--gray-200);
}

.service-card dt {
  color: var(--gray-700);
  font-size: 12px;
  font-weight: 700;
}

.service-card dd {
  margin: 0;
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
}

.partner-section {
  background: var(--white);
}

.role-tabs {
  border-top: 1px solid var(--gray-200);
}

.segmented-control {
  min-height: 74px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--gray-200);
}

.segmented-control button {
  min-height: 74px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--white);
  color: var(--gray-700);
  border: 0;
  border-right: 1px solid var(--gray-200);
  border-bottom: 5px solid transparent;
  font-weight: 800;
  cursor: pointer;
}

.segmented-control button:last-child {
  border-right: 0;
}

.segmented-control button[aria-selected="true"] {
  color: var(--black);
  border-bottom-color: var(--yellow);
}

.segmented-control svg {
  width: 19px;
  height: 19px;
}

.role-panel {
  min-height: 330px;
  padding: 56px 0 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 90px;
  align-items: start;
}

.role-panel[hidden] {
  display: none;
}

.role-panel h3 {
  max-width: 650px;
  font-size: 34px;
}

.role-panel p:not(.panel-kicker) {
  max-width: 690px;
  color: var(--gray-700);
  font-size: 18px;
}

.panel-kicker {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  font-weight: 700;
}

.check-list svg {
  width: 21px;
  height: 21px;
  padding: 3px;
  background: var(--yellow);
  border-radius: 50%;
}

.safety-band {
  background: var(--black);
  color: var(--white);
}

.light-heading h2 {
  color: var(--white);
}

.text-link,
.text-link-on-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  text-decoration: none;
}

.text-link {
  color: var(--black);
  border-bottom: 2px solid var(--yellow);
}

.text-link-on-dark {
  color: var(--yellow);
}

.text-link svg,
.text-link-on-dark svg {
  width: 18px;
  height: 18px;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.safety-grid article {
  min-height: 220px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.safety-grid article > svg {
  width: 28px;
  height: 28px;
  margin-bottom: 30px;
  color: var(--yellow);
}

.safety-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 18px;
}

.safety-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.markets-section {
  background: var(--white);
}

.markets-layout {
  align-items: start;
}

.market-list {
  border-top: 1px solid var(--gray-300);
}

.market-list > div {
  min-height: 76px;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--gray-300);
}

.market-list strong,
.market-list small {
  display: block;
}

.market-list strong {
  color: var(--black);
  font-size: 18px;
}

.market-list small {
  margin-top: 2px;
  color: var(--gray-700);
}

.market-status {
  padding-left: 14px;
  color: var(--green);
  border-left: 4px solid var(--yellow);
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.plans-section {
  background: var(--gray-100);
}

.pilot-notice {
  margin-bottom: 24px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  background: #fff9d8;
  border: 1px solid var(--yellow-deep);
  border-left: 6px solid var(--yellow);
}

.pilot-notice > svg {
  width: 26px;
  height: 26px;
}

.pilot-notice strong {
  display: block;
  margin-bottom: 3px;
}

.pilot-notice p {
  margin-bottom: 0;
  color: var(--gray-700);
  font-size: 14px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.plan-card {
  min-height: 270px;
}

.plan-card.featured-plan {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.plan-card.featured-plan h3,
.plan-card.featured-plan .plan-price {
  color: var(--white);
}

.plan-period {
  display: block;
  margin-bottom: 28px;
  color: var(--gray-700);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.featured-plan .plan-period {
  color: var(--yellow);
}

.plan-price {
  margin: 16px 0 14px;
  color: var(--black);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}

.plan-price span {
  margin-right: 5px;
  font-size: 13px;
  vertical-align: top;
}

.plan-card > p:last-child {
  color: var(--gray-700);
  font-size: 14px;
}

.featured-plan > p:last-child {
  color: rgba(255, 255, 255, 0.7);
}

.plan-footnote {
  margin: 22px 0 0;
  color: var(--gray-700);
  font-size: 13px;
}

.company-section {
  background: var(--yellow);
}

.company-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 100px;
}

.company-section .eyebrow {
  color: rgba(17, 17, 17, 0.7);
}

.company-section .eyebrow::before {
  background: var(--black);
}

.company-copy .section-lead,
.company-copy p {
  color: var(--black);
}

.faq-section {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: 90px;
  align-items: start;
}

.faq-layout h2 {
  font-size: 38px;
}

.faq-list {
  border-top: 1px solid var(--gray-300);
}

.faq-list details {
  border-bottom: 1px solid var(--gray-300);
}

.faq-list summary {
  position: relative;
  padding: 22px 52px 22px 0;
  color: var(--black);
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 18px;
  right: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--gray-100);
  content: "+";
  font-size: 22px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 720px;
  padding-right: 48px;
  color: var(--gray-700);
}

.pilot-cta {
  padding: 80px 0;
  background: var(--black);
  color: var(--white);
}

.pilot-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 80px;
  align-items: center;
}

.pilot-cta h2 {
  color: var(--white);
}

.pilot-cta p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.store-status {
  display: grid;
  gap: 10px;
}

.store-status > div {
  min-height: 70px;
  padding: 13px 16px;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 4px;
}

.store-status svg {
  width: 26px;
  height: 26px;
  color: var(--yellow);
}

.store-status strong,
.store-status small {
  display: block;
}

.store-status small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.58);
}

.site-footer {
  padding-top: 68px;
  background: #090909;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 90px;
}

.footer-brand img {
  width: 210px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  margin: 18px 0 2px;
  color: var(--yellow);
  font-weight: 800;
}

.footer-brand span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.footer-brand .footer-support {
  display: block;
  width: fit-content;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  text-decoration: none;
}

.footer-brand .footer-support:hover,
.footer-brand .footer-support:focus-visible {
  color: var(--yellow);
  text-decoration: underline;
}

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

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 5px;
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
}

.footer-links a,
.footer-button {
  padding: 0;
  background: none;
  color: rgba(255, 255, 255, 0.62);
  border: 0;
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.footer-links a:hover,
.footer-button:hover {
  color: var(--yellow);
}

.footer-bottom {
  min-height: 76px;
  margin-top: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.44);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 12px;
}

.assistant-launcher {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  min-height: 50px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--yellow);
  color: var(--black);
  border: 2px solid var(--black);
  border-radius: 5px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.assistant-launcher svg {
  width: 21px;
  height: 21px;
}

.assistant-dialog {
  width: min(440px, calc(100% - 28px));
  max-height: min(700px, calc(100svh - 28px));
  margin: auto 20px 20px auto;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.assistant-dialog::backdrop {
  background: rgba(0, 0, 0, 0.46);
}

.assistant-shell {
  max-height: inherit;
  display: flex;
  flex-direction: column;
}

.assistant-shell > header {
  min-height: 72px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--black);
  color: var(--white);
}

.assistant-shell > header > div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.assistant-shell header strong,
.assistant-shell header span {
  display: block;
}

.assistant-shell header span:not(.assistant-mark) {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.assistant-mark {
  width: 38px;
  height: 38px;
  display: grid !important;
  place-items: center;
  background: var(--yellow);
  color: var(--black);
  border-radius: 4px;
}

.assistant-mark svg {
  width: 21px;
  height: 21px;
}

.assistant-shell header .icon-button {
  width: 38px;
  height: 38px;
  flex-basis: 38px;
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.28);
}

.assistant-body {
  min-height: 270px;
  padding: 18px;
  overflow-y: auto;
  background: var(--gray-100);
}

.assistant-message,
.assistant-answer {
  max-width: 92%;
  padding: 12px 13px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  font-size: 14px;
}

.assistant-message-system {
  border-left: 4px solid var(--yellow);
}

.assistant-suggestions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.assistant-suggestions button {
  min-height: 35px;
  padding: 7px 9px;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.assistant-answer {
  margin: 16px 0 0 auto;
  background: #fff6b6;
  border-color: #e0bd00;
}

.assistant-answer.is-error {
  background: #fff0f0;
  border-color: #d89a9a;
}

.assistant-form {
  min-height: 64px;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 1fr 42px;
  gap: 8px;
  border-top: 1px solid var(--gray-200);
}

.assistant-form input {
  min-width: 0;
  height: 42px;
  padding: 0 12px;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--gray-300);
  border-radius: 4px;
}

.send-button {
  width: 42px;
  height: 42px;
  flex-basis: 42px;
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow-deep);
}

.send-button:disabled {
  opacity: 0.55;
  cursor: wait;
}

.assistant-note {
  margin: 0;
  padding: 0 13px 12px;
  color: var(--gray-700);
  font-size: 10px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.legal-hero {
  padding: 76px 0 64px;
  background: var(--yellow);
  color: var(--black);
}

.legal-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  color: var(--black);
  font-size: 54px;
}

.legal-hero p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 19px;
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 700;
}

.content-page {
  padding: 74px 0 110px;
}

.content-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 760px);
  gap: 80px;
  align-items: start;
}

.page-index {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding-left: 16px;
  border-left: 4px solid var(--yellow);
}

.page-index strong {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  text-transform: uppercase;
}

.page-index a {
  display: block;
  padding: 5px 0;
  color: var(--gray-700);
  font-size: 13px;
  text-decoration: none;
}

.page-index a:hover {
  color: var(--black);
}

.prose section {
  padding: 0 0 52px;
  margin-bottom: 52px;
  border-bottom: 1px solid var(--gray-200);
}

.prose section:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.prose h2 {
  margin-bottom: 18px;
  font-size: 32px;
}

.prose h3 {
  margin-top: 30px;
  font-size: 19px;
}

.prose p,
.prose li {
  color: var(--gray-700);
}

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

.prose li {
  margin-bottom: 9px;
}

.prose strong {
  color: var(--black);
}

.policy-callout {
  padding: 20px;
  background: var(--gray-100);
  border-left: 5px solid var(--yellow);
}

.policy-callout.warning {
  background: #fff1f1;
  border-left-color: var(--danger);
}

.policy-callout p:last-child {
  margin-bottom: 0;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.principle-grid article {
  padding: 20px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
}

.principle-grid h3 {
  margin: 0 0 8px;
}

.principle-grid p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 18px;
  }

  .nav-cta {
    display: none;
  }

  .service-card {
    padding: 22px;
  }

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

  .footer-main {
    grid-template-columns: 220px 1fr;
    gap: 50px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 38px;
  }

  .section {
    padding: 82px 0;
  }

  .desktop-nav {
    display: none;
  }

  .nav-cta,
  .menu-button {
    display: inline-grid;
  }

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

  .split-layout,
  .company-layout,
  .faq-layout,
  .pilot-cta-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .section-heading-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .phone-stage {
    min-height: 620px;
  }

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

  .service-card {
    min-height: 0;
  }

  .service-card-top {
    min-height: 80px;
  }

  .role-panel {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .company-layout {
    gap: 30px;
  }

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

  .content-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .page-index {
    position: static;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  h1 {
    font-size: 47px;
  }

  h2 {
    font-size: 32px;
  }

  .section {
    padding: 68px 0;
  }

  .section-lead {
    font-size: 18px;
  }

  .nav-shell {
    width: calc(100% - 24px);
  }

  .brand-link img {
    width: 154px;
    height: 43px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    height: clamp(530px, 78svh, 650px);
    min-height: 530px;
  }

  .hero-media {
    object-position: 100% 38%;
  }

  .hero-shade {
    background: rgba(17, 17, 17, 0.46);
  }

  .hero-content {
    padding-top: 38px;
    padding-bottom: 36px;
    justify-content: flex-end;
  }

  .hero-promise {
    font-size: 20px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-standards {
    gap: 10px 18px;
    font-size: 12px;
  }

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

  .signal-item,
  .signal-item:first-child {
    min-height: 88px;
    padding: 16px;
    border-left: 0;
    border-right: 1px solid rgba(17, 17, 17, 0.2);
    border-bottom: 1px solid rgba(17, 17, 17, 0.2);
  }

  .signal-item strong {
    font-size: 20px;
  }

  .phone-stage {
    min-height: 592px;
  }

  .phone-frame {
    height: 570px;
  }

  .map-preview {
    height: 304px;
  }

  .segmented-control {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .segmented-control button {
    min-height: 58px;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--gray-200);
    border-left: 5px solid transparent;
  }

  .segmented-control button[aria-selected="true"] {
    border-bottom-color: var(--gray-200);
    border-left-color: var(--yellow);
  }

  .role-panel {
    padding-top: 38px;
  }

  .role-panel h3 {
    font-size: 27px;
  }

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

  .safety-grid article {
    min-height: 0;
  }

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

  .plan-card {
    min-height: 0;
  }

  .faq-layout h2 {
    font-size: 32px;
  }

  .store-status > div {
    min-height: 64px;
  }

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

  .footer-bottom {
    padding: 20px 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .assistant-launcher {
    right: 14px;
    bottom: 14px;
    width: 50px;
    padding: 0;
    justify-content: center;
  }

  .assistant-launcher span {
    display: none;
  }

  .assistant-dialog {
    width: calc(100% - 20px);
    max-height: calc(100svh - 20px);
    margin: auto;
  }

  .legal-hero {
    padding: 58px 0 50px;
  }

  .legal-hero h1 {
    font-size: 40px;
  }

  .content-page {
    padding: 56px 0 82px;
  }

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

@media (max-height: 650px) {
  .hero {
    height: calc(100svh - 106px);
    min-height: 460px;
  }

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

  .hero-copy {
    margin-bottom: 18px;
  }

  .hero-actions {
    margin-bottom: 18px;
  }
}

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

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

/* External driver and owner access checkout */
.access-hero {
  padding: 74px 0 62px;
  background: var(--yellow);
  border-bottom: 1px solid rgba(17, 17, 17, 0.22);
}

.plan-actions {
  align-items: center;
  margin-top: 26px;
}

.access-hero h1 {
  max-width: 850px;
  margin-bottom: 14px;
  font-size: 58px;
}

.access-hero > .container > p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 19px;
}

.access-page {
  padding: 76px 0 104px;
  background: var(--gray-100);
}

.access-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(480px, 1.08fr);
  gap: 72px;
  align-items: start;
}

.access-context {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.access-context h2 {
  margin-bottom: 30px;
  font-size: 36px;
}

.access-program-status {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 34px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-left: 5px solid var(--gray-500);
  border-radius: var(--radius);
}

.access-program-status.is-active {
  border-left-color: var(--green);
}

.access-program-status.is-closed {
  border-left-color: var(--danger);
}

.status-dot {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  margin-top: 5px;
  background: var(--gray-500);
  border-radius: 50%;
}

.is-active .status-dot {
  background: var(--green);
}

.is-closed .status-dot {
  background: var(--danger);
}

.access-program-status strong,
.access-program-status p {
  display: block;
}

.access-program-status p {
  margin: 5px 0 0;
  color: var(--gray-700);
  font-size: 14px;
}

.access-process {
  display: grid;
  gap: 22px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.access-process li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
}

.access-process li > span,
.checkout-step-heading > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  background: var(--black);
  color: var(--yellow);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 800;
}

.access-process strong,
.access-process p {
  display: block;
}

.access-process p {
  margin: 4px 0 0;
  color: var(--gray-700);
  font-size: 14px;
}

.access-safety-note {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-300);
}

.access-safety-note svg {
  color: var(--green);
}

.access-safety-note p {
  margin: 4px 0 0;
  color: var(--gray-700);
  font-size: 14px;
}

.checkout-tool {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.checkout-step {
  padding: 34px;
}

.checkout-step + .checkout-step:not([hidden]) {
  border-top: 1px solid var(--gray-200);
}

.checkout-step-heading {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 28px;
}

.checkout-step-heading h2 {
  margin: 0 0 4px;
  font-size: 26px;
}

.checkout-step-heading p {
  margin: 0;
  color: var(--gray-700);
}

.checkout-tool label,
.checkout-tool legend {
  display: block;
  margin-bottom: 8px;
  color: var(--gray-900);
  font-size: 14px;
  font-weight: 800;
}

.checkout-tool input[type="tel"],
.checkout-tool input[type="text"],
.checkout-tool input[type="number"],
.checkout-tool select {
  width: 100%;
  min-height: 52px;
  padding: 11px 13px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--gray-300);
  border-radius: 4px;
}

.checkout-tool input:focus,
.checkout-tool select:focus {
  border-color: var(--black);
}

.field-action-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.field-action-row .button {
  min-width: 132px;
}

.form-feedback {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--gray-700);
  font-size: 14px;
}

.form-feedback.is-error {
  color: var(--danger);
  font-weight: 700;
}

.form-feedback.is-success {
  color: var(--green);
  font-weight: 700;
}

.checkout-tool fieldset {
  margin: 0 0 24px;
  padding: 0;
  border: 0;
}

.choice-grid {
  display: grid;
  gap: 10px;
}

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

.choice-grid.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.choice-option {
  margin: 0 !important;
  cursor: pointer;
}

.choice-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice-option > span {
  display: flex;
  min-height: 76px;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
  justify-content: center;
  padding: 14px;
  background: var(--gray-100);
  border: 2px solid transparent;
  border-radius: 4px;
}

.choice-option input:checked + span {
  background: #fff9d8;
  border-color: var(--black);
}

.choice-option input:focus-visible + span {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

.choice-option svg {
  width: 20px;
  height: 20px;
}

.choice-option small {
  color: var(--gray-700);
  font-weight: 400;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

[data-owner-vehicle-count] {
  margin-bottom: 22px;
}

[data-owner-vehicle-count] small {
  display: block;
  margin-top: 6px;
  color: var(--gray-700);
}

.pilot-consent,
.renewal-consent {
  display: grid !important;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  margin: 2px 0 22px !important;
  padding: 18px;
  background: #fff9d8;
  border: 1px solid var(--yellow-deep);
  border-radius: 4px;
  cursor: pointer;
}

.pilot-consent input,
.renewal-consent input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--black);
}

.pilot-consent strong,
.pilot-consent span span,
.renewal-consent strong,
.renewal-consent span span {
  display: block;
}

.pilot-consent span span,
.renewal-consent span span {
  margin-top: 5px;
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 400;
}

.renewal-consent {
  background: #fff4e3;
  border-color: #d88a20;
}

.payment-summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding: 14px 16px;
  background: var(--black);
  color: var(--white);
  border-radius: 4px;
}

.payment-summary strong {
  color: var(--yellow);
  font-size: 22px;
}

.checkout-submit {
  width: 100%;
}

.checkout-submit:disabled,
.checkout-tool button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.payment-result {
  min-height: 390px;
  text-align: center;
}

.result-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin: 2px auto 20px;
  background: var(--yellow);
  border-radius: 50%;
}

.payment-result.is-success .result-icon {
  background: #d9f2e4;
  color: var(--green);
}

.payment-result.is-review .result-icon {
  background: #fff1d7;
  color: #8a4b00;
}

.payment-result h2 {
  margin-inline: auto;
  font-size: 30px;
}

.payment-result > p {
  max-width: 560px;
  margin: 0 auto 24px;
  color: var(--gray-700);
}

.payment-result dl {
  margin: 0 0 26px;
  text-align: left;
  border-top: 1px solid var(--gray-200);
}

.payment-result dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
}

.payment-result dt {
  color: var(--gray-700);
}

.payment-result dd {
  margin: 0;
  font-weight: 800;
  text-align: right;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.button-outline {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}

@media (max-width: 900px) {
  .access-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .access-context {
    position: static;
  }
}

@media (max-width: 640px) {
  .access-hero {
    padding: 54px 0 46px;
  }

  .access-hero h1 {
    font-size: 40px;
  }

  .access-page {
    padding: 48px 0 76px;
  }

  .checkout-step {
    padding: 24px 20px;
  }

  .field-action-row,
  .form-grid,
  .choice-grid.three-up {
    grid-template-columns: 1fr;
  }

  .field-action-row .button {
    width: 100%;
  }

  .choice-grid.three-up .choice-option > span {
    min-height: 58px;
  }
}
