:root {
  --blue: #2468ff;
  --purple: #6337ff;
  --black: #030303;
  --muted: #4b5563;
  --shadow: 0 18px 48px rgba(15, 23, 42, .09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--black);
  background: #fff;
  overflow-x: hidden;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: #fff;
  transition: opacity .5s ease, visibility .5s ease;
}

.loader.done {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  display: grid;
  place-items: center;
  gap: 14px;
}

.loader-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  font-size: 24px;
  box-shadow: 0 18px 44px rgba(36, 104, 255, .28);
}

.loader-text {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  color: #475569;
}

.loader-track {
  width: min(340px, 65vw);
  height: 7px;
  border-radius: 999px;
  overflow: hidden;
  background: #edf2ff;
}

.loader-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  animation: loaderFill 1s cubic-bezier(.2, .8, .2, 1) forwards;
}

@keyframes loaderFill {
  to {
    width: 100%;
  }
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 24px clamp(26px, 5vw, 82px) 14px;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at 82% 6%, rgba(36, 104, 255, .13), transparent 30%), linear-gradient(135deg, #fff 0%, #fff 56%, #f7faff 100%);
  overflow: hidden;
}

.skyline {
  position: absolute;
  z-index: 1;
  left: 45%;
  top: 95px;
  display: flex;
  align-items: flex-end;
  gap: 24px;
  opacity: .77;
}

.skyline span {
  width: 43px;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(to bottom, #dce8ff, rgba(240, 246, 255, 0));
}

.hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(470px, .88fr) minmax(540px, 1.12fr);
  align-items: start;
  gap: 20px;
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
  flex: 1;
  min-height: 0;
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #475569;
  font-size: clamp(11px, .92vw, 14px);
  font-weight: 900;
}

.eyebrow span {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  transform: rotate(45deg);
}

.logo-title {
  position: relative;
  width: max-content;
  max-width: 100%;
}

.the {
  position: absolute;
  top: -5px;
  left: -5px;
  z-index: 4;
  font-family: "Nothing You Could Do", cursive;
  color: var(--blue);
  font-size: clamp(30px, 3.7vw, 52px);
  font-weight: 700;
  line-height: .7;
  letter-spacing: -.06em;
  transform: rotate(-8deg);
}

.the:after {
  content: "";
  position: absolute;
  left: 7%;
  bottom: -5px;
  width: 72%;
  height: 5px;
  border-radius: 999px;
  background: var(--blue);
  transform: rotate(-7deg);
}

h1 {
  margin: 0;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -.09em;
  line-height: .78;
}

h1 span {
  display: block;
  font-size: clamp(50px, 6.55vw, 96px);
}

h1 strong {
  display: block;
  margin-top: 8px;
  color: var(--blue);
  font-size: clamp(34px, 4.45vw, 64px);
  line-height: .84;
  letter-spacing: -.075em;
}

.subcopy {
  margin: 12px 0 14px;
  max-width: 480px;
  color: var(--muted);
  font-weight: 800;
  font-size: clamp(16px, 1.28vw, 19px);
  line-height: 1.18;
}

.subcopy em {
  color: var(--blue);
  font-weight: 900;
}

.actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.btn {
  height: 50px;
  min-width: 154px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 14px;
  transition: transform .22s ease, box-shadow .22s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow: 0 16px 32px rgba(36, 104, 255, .22);
}

.btn-ghost {
  color: #050505;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .09);
  box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #475569;
  font-size: 15px;
  font-weight: 800;
}

.faces,
.mini-faces {
  display: flex;
}

.faces span,
.mini-faces span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-left: -8px;
  border-radius: 50%;
  background: #eef4ff;
  border: 2px solid #fff;
  box-shadow: 0 6px 14px rgba(15, 23, 42, .12);
  font-size: 13px;
}

.faces span:first-child,
.mini-faces span:first-child {
  margin-left: 0;
}

.stars {
  color: #f5ae00;
  letter-spacing: 2px;
  font-size: 18px;
}

.route-card {
  width: min(560px, 100%);
  margin-top: 14px;
  padding: 13px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .84);
  border: 1px solid rgba(36, 104, 255, .11);
  box-shadow: 0 18px 46px rgba(15, 23, 42, .08);
  backdrop-filter: blur(18px);
}

.route-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 2px 4px 11px;
}

.route-head small {
  display: block;
  color: #697386;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.route-head b {
  display: block;
  margin-top: 2px;
  color: #111827;
  font-size: 19px;
  line-height: 1;
  letter-spacing: -.045em;
}

.route-reset {
  border: 0;
  border-radius: 999px;
  padding: 9px 13px;
  background: #eef4ff;
  color: var(--blue);
  font-weight: 900;
  cursor: pointer;
}

.route-window {
  position: relative;
  height: 122px;
  overflow: hidden;
  cursor: grab;
  border-radius: 18px;
  background: linear-gradient(135deg, #f8fbff, #eef4ff);
  border: 1px solid rgba(36, 104, 255, .09);
  touch-action: none;
  user-select: none;
}

.route-window:active {
  cursor: grabbing;
}

.route-canvas {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 860px;
  height: 150px;
  transform: translate(calc(-50% + var(--map-x, 0px)), calc(-50% + var(--map-y, 0px)));
  transition: transform .12s ease-out;
}

.route-window.dragging .route-canvas {
  transition: none;
}

.map-grid {
  position: absolute;
  inset: -40px;
  opacity: .35;
  background: linear-gradient(rgba(36, 104, 255, .075) 1px, transparent 1px), linear-gradient(90deg, rgba(36, 104, 255, .075) 1px, transparent 1px);
  background-size: 38px 38px;
  transform: rotate(-8deg) scale(1.15);
}

.route-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.route-svg path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 12 15;
  opacity: .72;
  filter: drop-shadow(0 5px 10px rgba(36, 104, 255, .18));
  animation: routeMove 3.2s linear infinite;
}

@keyframes routeMove {
  to {
    stroke-dashoffset: -54;
  }
}

.stop {
  position: absolute;
  z-index: 5;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(36, 104, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 25px rgba(15, 23, 42, .09);
  padding: 9px 11px;
  color: #334155;
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.stop i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #90b4ff;
}

.stop em {
  font-style: normal;
  text-transform: uppercase;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  padding: 5px 7px;
  font-size: 10px;
}

.stop.current i {
  background: #55ce35;
  box-shadow: 0 0 0 6px rgba(85, 206, 53, .14);
}

.stop.current span {
  color: var(--blue);
}

.stop.tomorrow {
  transform: translate(-50%, -50%) scale(1.04);
  box-shadow: 0 16px 30px rgba(36, 104, 255, .14);
}

.drag-hint {
  position: absolute;
  right: 10px;
  bottom: 9px;
  z-index: 6;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: #697386;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.hero-art {
  position: relative;
  min-height: 520px; /* increase this */
  display: flex;
  align-items: flex-end; /* pushes van down */
}


.arrival-badge {
  display: none;
}

.van-img {
  position: absolute;
  left: 55%;
  top: 10px; /* increase this number to move van down */
  bottom: auto;
  width: min(980px, 92vw);
  max-height: 620px;
  object-fit: contain;
  transform: translateX(-50%);
  filter: drop-shadow(0 30px 34px rgba(15, 23, 42, .18));
}

@keyframes floatCentered {
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

.van-img.missing {
  display: none;
}

@keyframes float {
  50% {
    transform: translateY(-10px);
  }
}

.bottom-panel {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.12fr .54fr .74fr;
  gap: 22px;
  align-items: stretch;
  max-width: 1420px;
  width: 100%;
  margin: 0 auto;
}

.info-card,
.promo-card {
  min-height: 82px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(15, 23, 42, .07);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.availability-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 24px;
}

.round-icon {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  font-size: 22px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
}

.split-info {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  gap: 22px;
  width: 100%;
}

.divider {
  height: 54px;
  background: rgba(15, 23, 42, .08);
}

.info-card small,
.promo-card small {
  display: block;
  text-transform: uppercase;
  color: #697386;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .02em;
}

.split-info b {
  display: block;
  margin-top: 4px;
  color: var(--blue);
  font-size: 21px;
  line-height: 1.05;
}

.live i {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 9px;
  border-radius: 50%;
  background: #55ce35;
  vertical-align: -1px;
}

.active-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 22px;
}

.people-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  font-size: 27px;
  flex: 0 0 auto;
}

.active-copy b {
  display: block;
  font-size: 23px;
  line-height: .95;
  letter-spacing: -.055em;
}

.active-copy small {
  font-size: 12px;
}

.mini-faces {
  margin-top: 7px;
  align-items: center;
}

.mini-faces span {
  width: 24px;
  height: 24px;
  font-size: 11px;
}

.mini-faces em {
  width: 27px;
  height: 27px;
  margin-left: -8px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  background: var(--blue);
  color: #fff;
  font-style: normal;
  font-weight: 900;
  font-size: 10px;
}

.promo-card {
  display: grid;
  grid-template-columns: 54px 1fr 42px;
  align-items: center;
  gap: 16px;
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
}

.percent {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, .16);
  font-size: 31px;
  font-weight: 900;
}

.promo-copy {
  height: 58px;
  border: 1.5px dashed rgba(255, 255, 255, .45);
  border-radius: 13px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
}

.promo-card small {
  color: #fff;
  font-size: 12px;
}

.promo-card b {
  font-size: 20px;
  text-transform: uppercase;
}

.copy-code {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .35);
  background: transparent;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.copy-code:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .12);
}

.copy-code.copied {
  background: rgba(255, 255, 255, .24);
}

.trust-row {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 38px;
  max-width: 900px;
  width: 100%;
  margin: 11px auto 0;
  color: #667085;
  font-size: 13px;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2, .8, .2, 1);
}

body.ready .reveal {
  opacity: 1;
  transform: translateY(0);
}

.spacer {
  min-height: 55vh;
  padding: 80px 24px;
  background: #f8faff;
}

.spacer.alt {
  background: #fff;
}

.spacer h2 {
  text-align: center;
  color: #334155;
}

@media (max-height: 820px) and (min-width: 900px) {
  .hero {
    padding-top: 20px;
  }

  .hero-art {
    min-height: 340px;
  }

  .route-card {
    margin-top: 12px;
  }

  .route-window {
    height: 112px;
  }

  .bottom-panel {
    gap: 18px;
  }

  .info-card,
  .promo-card {
    min-height: 78px;
  }
}

@media (max-width: 1200px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 230px;
  }

.blue-streak {
  display: none;
}

  .arrival-badge {
    right: 4%;
    top: 0;
  }

  .van-img {
    width: min(760px, 88vw);
  }

  .bottom-panel {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .trust-row {
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 22px 18px;
    min-height: auto;
  }

  .skyline {
    display: none;
  }

  .the {
    top: -8px;
    left: -6px;
    font-size: 40px;
  }

  h1 span {
    font-size: clamp(48px, 16vw, 72px);
  }

  h1 strong {
    font-size: clamp(34px, 11vw, 50px);
  }

  .subcopy {
    font-size: 16px;
  }

  .actions {
    flex-wrap: wrap;
    gap: 12px;
  }

  .btn {
    height: 52px;
    min-width: 142px;
  }

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

  .route-card {
    width: 100%;
    padding: 12px;
  }

  .route-window {
    height: 126px;
  }

  .route-canvas {
    width: 760px;
  }

  .hero-art {
    min-height: 205px;
  }

  .blue-streak {
    right: -360px;
    top: 6px;
    height: 210px;
  }

  .arrival-badge {
    width: 108px;
    height: 108px;
  }

  .bottom-panel {
    gap: 14px;
    margin-top: 10px;
  }

  .availability-card,
  .active-card,
  .promo-card {
    padding: 15px;
  }

  .split-info {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .divider {
    display: none;
  }

  .promo-card {
    grid-template-columns: 50px 1fr;
  }

  .copy-code {
    display: none;
  }

  .trust-row {
    gap: 12px 20px;
    font-size: 12px;
  }
}

/* Shared section shell */
.site-section {
  position: relative;
  padding: clamp(72px, 9vw, 120px) clamp(20px, 5vw, 82px);
  overflow: hidden;
}

.section-label {
  width: fit-content;
  margin: 0 auto 16px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-label.left {
  margin-left: 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: #050505;
  font-size: clamp(42px, 5.4vw, 78px);
  line-height: .9;
  letter-spacing: -.075em;
}

.section-heading p {
  color: #64748b;
  font-weight: 700;
  line-height: 1.55;
}

@media (max-width: 620px) {
  .site-section {
    padding: 68px 18px;
  }
}

.spacer {
  display: none !important;
}

/* Section reveal animation shared by dynamically loaded modules */
.reveal-section {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.2,.8,.2,1);
}
.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal-section { opacity: 1; transform: none; transition: none; }
}
