.landing-page {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0;
  --landing-content-max: 1160px;
}

.landing-page > .landing-card + .landing-card {
  margin-top: 12px;
}

.landing-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.landing-page > .landing-card:not(.landing-hero) {
  width: min(var(--landing-content-max), 100%);
  margin-left: auto;
  margin-right: auto;
}

.landing-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -12px;
  min-height: 520px;
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: var(--brand-navy);
}

@supports (width: 100dvw) {
  .landing-hero {
    width: 100dvw;
    margin-left: calc(50% - 50dvw);
    margin-right: calc(50% - 50dvw);
  }
}

.landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(112deg, rgba(26, 38, 83, 0.82) 0%, rgba(26, 38, 83, 0.72) 36%, rgba(26, 38, 83, 0.48) 56%, rgba(26, 38, 83, 0.68) 100%),
    linear-gradient(90deg, rgba(26, 38, 83, 0.7) 0%, rgba(26, 38, 83, 0.06) 47%, rgba(26, 38, 83, 0.06) 53%, rgba(26, 38, 83, 0.72) 100%),
    url("../assets/images/landing/HeroLeft.png"),
    url("../assets/images/landing/HeroRight.png");
  background-size: cover, 100% 100%, 50% 100%, 50% 100%;
  background-position: center, center, left center, right center;
  background-repeat: no-repeat;
}

.landing-hero-inner {
  width: min(var(--landing-content-max), calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 40px 0;
  text-align: left;
}

.landing-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 7px 12px;
}

.landing-hero h1 {
  margin: 12px 0 10px;
  color: #fff;
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  line-height: 1.04;
  max-width: 13.5ch;
  text-wrap: balance;
}

.landing-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  max-width: 52ch;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.landing-hero-ctas {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.landing-hero-actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.landing-hero .landing-btn-primary {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}

.landing-hero .landing-btn-primary:hover {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
}

.landing-hero .landing-btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
}

.landing-hero .landing-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: #fff;
}

.landing-section {
  padding: 20px;
}

.landing-section h2 {
  margin: 0 0 8px;
  color: var(--brand-navy);
}

.landing-section .help {
  margin-bottom: 14px;
}

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

.landing-value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.landing-feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
}

.landing-feature img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 6px;
}

.landing-feature h3 {
  margin: 10px 0 6px;
  color: var(--brand-navy);
  font-size: 17px;
}

.landing-feature p {
  margin: 0;
  color: var(--text-muted);
}

.landing-steps {
  counter-reset: landing-step;
}

.landing-step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
}

.landing-step::before {
  counter-increment: landing-step;
  content: counter(landing-step);
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--brand-primary);
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-weight: 700;
}

.landing-step h3 {
  margin: 10px 0 6px;
  color: var(--brand-navy);
  font-size: 17px;
}

.landing-step p {
  margin: 0;
  color: var(--text-muted);
}

.landing-howitworks .how-flow + .how-flow {
  margin-top: 18px;
}

.landing-howitworks .landing-how-group-title {
  margin: 4px 0 10px;
  color: var(--brand-navy);
  font-size: 18px;
}

.landing-howitworks .how-flow-subtitle {
  margin: 0 0 12px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
}

.landing-howitworks .landing-steps {
  counter-reset: none;
}

.landing-howitworks .landing-step::before {
  content: none;
  display: none;
}

.landing-howitworks .how-flow-steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18px minmax(0, 1fr) 18px minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
}

.landing-howitworks .how-step {
  display: flex;
  flex-direction: column;
}

.landing-howitworks .how-step-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(45, 59, 218, 0.12);
  border: 1px solid rgba(45, 59, 218, 0.24);
  color: var(--brand-primary);
}

.landing-howitworks .how-step-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.landing-howitworks .how-step-chevron {
  display: grid;
  place-items: center;
  color: rgba(26, 38, 83, 0.34);
  align-self: center;
  pointer-events: none;
}

.landing-howitworks .how-step-chevron svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.how-steps {
  opacity: 1;
  transition: opacity 180ms ease;
}

.how-steps.is-fading {
  opacity: 0;
}

.landing-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.landing-pill {
  border: 1px solid var(--border);
  background: var(--chip);
  color: var(--brand-navy);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.landing-pill:hover {
  border-color: var(--brand-primary);
  background: #fff;
}

.landing-pill:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--focus);
}

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

.landing-bike-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  padding: 12px;
}

.landing-bike-card img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 6px;
}

.landing-bike-card h3 {
  margin: 10px 0 0;
  color: var(--brand-navy);
  font-size: 16px;
}

.landing-bike-card .btn {
  margin-top: 10px;
}

.landing-cost-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.landing-cost-copy h2 {
  margin: 0 0 8px;
}

.landing-cost-lead {
  margin: 0;
  color: var(--brand-navy);
  font-weight: 700;
}

.landing-cost-main {
  margin: 6px 0 0;
  color: var(--text);
}

.landing-cost-footnote {
  margin: 6px 0 0;
  color: var(--text-muted);
  font-size: 13px;
}

.landing-cost-cta-wrap {
  flex: 0 0 auto;
}

.landing-cost-cta {
  white-space: nowrap;
}

.landing-inline-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.landing-inline-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.landing-final-cta {
  text-align: center;
}

.landing-final-cta .landing-hero-actions {
  justify-content: center;
}

@media (max-width: 960px) {
  .landing-hero {
    min-height: 600px;
  }

  .landing-hero::before {
    background-image:
      linear-gradient(180deg, rgba(26, 38, 83, 0.78) 0%, rgba(26, 38, 83, 0.84) 100%),
      url("../assets/images/landing/HeroLeft.png");
    background-size: cover, cover;
    background-position: center, center;
  }

  .landing-hero-inner {
    width: min(680px, calc(100% - 32px));
    text-align: center;
    padding: 34px 0;
  }

  .landing-hero h1 {
    max-width: 16ch;
    margin-left: auto;
    margin-right: auto;
  }

  .landing-hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .landing-hero-ctas {
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
  }

  .landing-hero-ctas .btn {
    width: 100%;
  }

  .landing-grid-3 {
    grid-template-columns: 1fr;
  }

  .landing-howitworks .how-flow-steps {
    grid-template-columns: 1fr;
  }

  .landing-howitworks .how-step-chevron {
    display: none;
  }

  .landing-value-grid {
    grid-template-columns: 1fr;
  }

  .landing-bike-grid {
    grid-template-columns: 1fr;
  }

  .landing-cost-layout {
    flex-direction: column;
    align-items: flex-start;
  }

  .landing-cost-cta {
    width: auto;
  }
}
