:root {
  --shell: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  background: var(--ink-900);
  color: var(--paper);
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

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

.section {
  padding: clamp(72px, 10vw, 120px) 0;
}

.section-dark {
  background: var(--ink-900);
  color: var(--paper);
}

.section-tint {
  background: var(--paper-2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 248, 242, 0.86);
  backdrop-filter: blur(18px) saturate(1.25);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base) var(--ease-snap), box-shadow var(--dur-base) var(--ease-snap);
}

.site-header.is-scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

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

.brand-wordmark {
  width: auto;
  height: 28px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: var(--fs-14);
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
  color: var(--fg);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  background: var(--ink-900);
  color: var(--paper) !important;
}

.menu-toggle {
  display: none;
  border: 0;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: var(--ink-900);
  color: var(--paper);
  font: inherit;
  font-size: var(--fs-14);
  font-weight: 700;
}

.hero {
  padding: clamp(48px, 8vw, 80px) 0 clamp(72px, 10vw, 112px);
  overflow: clip;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

.hero-copy {
  position: relative;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  background: var(--ink-900);
  color: var(--spark-400);
  font-size: var(--fs-12);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  animation: signalPulse 1.8s ease-in-out infinite;
}

.hero-title {
  margin: 20px 0 0;
  max-width: 9ch;
}

.hero-title span,
.hero-title em {
  display: block;
}

.hero-title em {
  color: var(--boda-500);
  font-style: italic;
  font-weight: 800;
}

.hero-lead {
  margin: 24px 0 0;
  max-width: 34rem;
  color: var(--fg-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: var(--fs-15);
  font-weight: 700;
  transition:
    transform 80ms ease,
    background var(--dur-fast) var(--ease-snap),
    color var(--dur-fast) var(--ease-snap),
    border-color var(--dur-fast) var(--ease-snap),
    filter var(--dur-fast) var(--ease-snap);
}

.button:hover,
.button:focus-visible {
  filter: brightness(1.04);
}

.button:active {
  transform: scale(0.985);
}

.button:focus-visible,
.menu-toggle:focus-visible,
.site-nav a:focus-visible,
.contact-card:focus-visible,
.faq-item summary:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.button-primary {
  background: var(--boda-500);
  color: #fff;
  box-shadow: var(--shadow-speed);
}

.button-secondary {
  border-color: var(--border-strong);
  color: var(--fg);
  background: transparent;
}

.button-dark {
  background: var(--ink-900);
  color: var(--paper);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.hero-meta li {
  padding: 18px 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.7);
}

.hero-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero-meta span {
  display: block;
  margin-top: 8px;
  font-size: var(--fs-13);
  color: var(--fg-muted);
}

.hero-art {
  position: relative;
  min-height: 640px;
}

.hero-device {
  position: relative;
  width: min(100%, 420px);
  margin: 0 auto;
  padding: 12px;
  border-radius: 44px;
  background: var(--ink-900);
  box-shadow: var(--shadow-xl);
}

.device-screen {
  overflow: hidden;
  border-radius: 34px;
  background: var(--paper);
}

.route-map {
  position: relative;
  height: 410px;
  background: #e6dfd0;
  overflow: hidden;
}

.road,
.block,
.route-line,
.pin,
.rider-pulse,
.rider-badge {
  position: absolute;
}

.road {
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
}

.road-a,
.road-b,
.road-c {
  left: -8%;
  width: 116%;
  height: 14px;
}

.road-a { top: 78px; transform: rotate(4deg); }
.road-b { top: 194px; transform: rotate(-4deg); }
.road-c { top: 318px; transform: rotate(2deg); }
.road-d,
.road-e {
  top: -8%;
  width: 14px;
  height: 116%;
}

.road-d { left: 36%; transform: rotate(6deg); }
.road-e { left: 69%; transform: rotate(-4deg); }

.block {
  background: #cfc5ae;
  opacity: 0.92;
}

.block-a { inset: 96px auto auto 94px; width: 64px; height: 84px; }
.block-b { inset: 208px auto auto 178px; width: 84px; height: 104px; }
.block-c { inset: 92px auto auto 270px; width: 58px; height: 68px; }

.route-line {
  left: 72px;
  top: 310px;
  width: 246px;
  height: 168px;
  border-top: 4px dashed var(--boda-500);
  border-right: 4px dashed var(--boda-500);
  border-radius: 0 132px 0 0;
  transform: translateY(-50%) rotate(-18deg);
  transform-origin: left top;
  animation: routeDash 1.4s linear infinite;
}

.pin {
  width: 18px;
  height: 18px;
}

.pin-start {
  left: 68px;
  top: 322px;
  border-radius: 999px;
  background: var(--boda-500);
  box-shadow: 0 0 0 8px rgba(255, 90, 31, 0.18);
}

.pin-stop {
  right: 78px;
  top: 98px;
  background: var(--ink-900);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.9);
}

.rider-pulse {
  left: 216px;
  top: 182px;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(255, 90, 31, 0.55);
  border-radius: 999px;
  animation: riderPulse 1.8s ease-out infinite;
}

.rider-badge {
  left: 221px;
  top: 187px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--ink-900);
  color: #fff;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
}

.device-sheet {
  padding: 22px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  background: var(--ink-900);
  color: var(--spark-400);
  font-size: var(--fs-12);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
  animation: signalPulse 1.8s ease-in-out infinite;
}

.device-heading {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.device-copy {
  margin: 8px 0 0;
  font-size: var(--fs-14);
  color: var(--fg-muted);
}

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

.device-stats div {
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--ink-900);
  color: var(--paper);
}

.device-stats span {
  display: block;
  font-size: var(--fs-12);
  color: rgba(251, 248, 242, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.device-stats strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 800;
  font-style: italic;
  color: var(--spark-400);
  font-variant-numeric: tabular-nums;
}

.floating-card {
  position: absolute;
  width: min(290px, 46%);
  padding: 18px 18px 20px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.floating-card strong {
  display: block;
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: var(--fs-20);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.floating-card span {
  display: block;
  margin-top: 8px;
  font-size: var(--fs-13);
  color: var(--fg-muted);
}

.floating-business {
  left: 0;
  bottom: 24px;
}

.floating-coverage {
  right: 0;
  top: 40px;
}

.floating-label,
.panel-kicker,
.contact-kicker,
.rider-card-label,
.footer-heading {
  margin: 0;
  font-size: var(--fs-12);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signal-bar {
  background: var(--ink-900);
  color: var(--paper);
  padding: 28px 0;
}

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

.signal-item {
  padding: 18px 22px 20px;
  border-radius: var(--radius-lg);
  background: rgba(251, 248, 242, 0.04);
  border: 1px solid rgba(251, 248, 242, 0.1);
}

.signal-value {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--fs-24);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.signal-item p {
  margin: 10px 0 0;
  color: rgba(251, 248, 242, 0.7);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin: 10px 0 0;
}

.section-copy {
  margin: 16px 0 0;
  font-size: var(--fs-18);
  color: var(--fg-muted);
  max-width: 40rem;
}

.service-grid,
.steps-grid,
.pricing-grid,
.contact-grid {
  display: grid;
  gap: 20px;
}

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

.service-card,
.step-card,
.price-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid var(--border);
}

.service-index,
.step-number {
  font-family: var(--font-mono);
  font-size: var(--fs-13);
  font-weight: 600;
  color: var(--boda-500);
}

.service-card h3,
.step-card h3,
.price-name {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.service-card p,
.step-card p {
  margin: 12px 0 0;
  color: var(--fg-muted);
}

.eyebrow-dark,
.dark-title,
.dark-copy {
  color: var(--paper);
}

.eyebrow-dark {
  opacity: 0.74;
}

.dark-copy {
  color: rgba(251, 248, 242, 0.74);
}

.business-grid,
.rider-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.business-points,
.rider-points {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.business-points li,
.rider-points li {
  position: relative;
  padding-left: 26px;
  color: rgba(251, 248, 242, 0.82);
}

.business-points li::before,
.rider-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--spark-400);
}

.business-panel {
  padding: 28px;
  border-radius: var(--radius-2xl);
  background: rgba(251, 248, 242, 0.04);
  border: 1px solid rgba(251, 248, 242, 0.1);
}

.business-panel-top strong,
.rider-earnings strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 74px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-style: italic;
  font-weight: 800;
  color: var(--spark-400);
  font-variant-numeric: tabular-nums;
}

.business-panel-chart,
.earnings-bars {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: end;
  gap: 10px;
  height: 160px;
  margin-top: 26px;
}

.business-panel-chart span,
.earnings-bars span {
  border-radius: 8px 8px 0 0;
  background: rgba(212, 255, 79, 0.8);
}

.business-panel-chart span:nth-child(4),
.business-panel-chart span:nth-child(6),
.earnings-bars span:nth-child(6) {
  background: var(--boda-500);
}

.business-panel-metrics {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.business-panel-metrics span,
.rider-earnings span {
  display: block;
  color: rgba(251, 248, 242, 0.64);
  font-size: var(--fs-14);
}

.business-panel-metrics strong {
  display: block;
  margin-top: 4px;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.price-card {
  display: flex;
  flex-direction: column;
}

.price-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
  color: var(--fg-muted);
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--boda-500);
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 18px;
}

.price-line span {
  font-family: var(--font-mono);
  font-size: var(--fs-14);
  color: var(--fg-muted);
}

.price-line strong {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-style: italic;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.price-copy {
  margin: 14px 0 0;
  color: var(--fg-muted);
}

.price-card-featured {
  background: var(--ink-900);
  color: var(--paper);
  box-shadow: var(--shadow-lg);
}

.price-card-featured .price-line strong {
  color: var(--spark-400);
}

.price-card-featured .price-copy,
.price-card-featured li,
.price-card-featured .price-line span {
  color: rgba(251, 248, 242, 0.72);
}

.price-card-featured li::before {
  background: var(--spark-400);
}

.rider-section {
  background: var(--boda-500);
  color: #fff;
}

.rider-title,
.rider-copy {
  color: #fff;
}

.rider-copy {
  color: rgba(255, 255, 255, 0.9);
}

.rider-points li {
  color: rgba(255, 255, 255, 0.88);
}

.rider-points li::before {
  background: var(--ink-900);
}

.rider-earnings {
  padding: 28px;
  border-radius: var(--radius-2xl);
  background: var(--ink-900);
  box-shadow: 0 30px 60px -18px rgba(11, 14, 17, 0.48);
}

.faq-shell {
  max-width: 880px;
}

.faq-list {
  display: grid;
}

.faq-item {
  border-top: 1px solid var(--border);
  padding: 18px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 700;
}

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

.faq-item summary::after {
  content: "+";
  flex: none;
  color: var(--boda-500);
  font-size: 30px;
}

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

.faq-item p {
  margin: 14px 0 0;
  color: var(--fg-muted);
  max-width: 44rem;
}

.final-cta {
  background: var(--ink-900);
}

.final-cta-shell {
  display: grid;
  gap: 32px;
}

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

.contact-card {
  display: block;
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(251, 248, 242, 0.12);
  background: rgba(251, 248, 242, 0.05);
  text-decoration: none;
  transition: transform var(--dur-fast) ease, border-color var(--dur-fast) var(--ease-snap), background var(--dur-fast) var(--ease-snap);
}

.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(251, 248, 242, 0.22);
  background: rgba(251, 248, 242, 0.08);
}

.contact-card strong {
  display: block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--paper);
}

.contact-card span:last-child {
  display: block;
  margin-top: 10px;
  color: rgba(251, 248, 242, 0.68);
}

.site-footer {
  padding: 48px 0 22px;
  background: var(--ink-900);
  color: var(--paper);
  border-top: 1px solid rgba(251, 248, 242, 0.08);
}

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

.footer-brand p {
  max-width: 26rem;
  margin: 16px 0 0;
  color: rgba(251, 248, 242, 0.64);
}

.site-footer a {
  display: block;
  margin-top: 10px;
  color: rgba(251, 248, 242, 0.78);
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  margin-top: 28px;
  border-top: 1px solid rgba(251, 248, 242, 0.08);
  color: rgba(251, 248, 242, 0.54);
  font-size: var(--fs-13);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 520ms var(--ease-snap),
    transform 520ms var(--ease-snap);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes signalPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.42; }
}

@keyframes routeDash {
  to { border-top-style: dashed; }
}

@keyframes riderPulse {
  0% {
    transform: scale(0.8);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .business-grid,
  .rider-grid,
  .footer-grid,
  .contact-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-art {
    min-height: 0;
  }

  .floating-business {
    left: 18px;
    bottom: 18px;
  }

  .floating-coverage {
    right: 18px;
    top: 18px;
  }
}

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

  .header-shell {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 10px 0 4px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 16px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.65);
  }

  .nav-cta {
    text-align: center;
  }

  .hero-meta,
  .service-grid,
  .steps-grid,
  .signal-grid {
    grid-template-columns: 1fr;
  }

  .hero-device {
    width: min(100%, 380px);
  }

  .floating-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .brand-wordmark {
    height: 24px;
  }

  .hero-title {
    max-width: none;
  }

  .route-map {
    height: 320px;
  }

  .route-line {
    left: 54px;
    top: 248px;
    width: 192px;
    height: 138px;
  }

  .pin-start {
    left: 48px;
    top: 258px;
  }

  .pin-stop {
    right: 52px;
    top: 82px;
  }

  .rider-pulse {
    left: 176px;
    top: 152px;
  }

  .rider-badge {
    left: 181px;
    top: 157px;
  }

  .service-card,
  .step-card,
  .price-card,
  .business-panel,
  .rider-earnings,
  .contact-card {
    padding: 22px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
