:root {
  --ink: #111827;
  --muted: #5e6776;
  --line: #dfe8e8;
  --surface: #ffffff;
  --surface-soft: #f5fbf9;
  --surface-mint: #e9f7ef;
  --teal: #006d6b;
  --teal-dark: #06454a;
  --green: #30b863;
  --mint: #92d8b3;
  --sun: #f4b63f;
  --coral: #ef5d4f;
  --shadow: 0 24px 70px rgba(8, 39, 48, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

:focus-visible {
  outline: 3px solid rgba(48, 184, 99, 0.42);
  outline-offset: 4px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 82px;
  padding: 14px clamp(24px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 232, 232, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 185px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
  color: #151d2c;
  font-size: 15px;
  font-weight: 650;
}

.site-nav a {
  padding: 10px 0;
}

.site-nav a:hover,
.header-link:hover,
.footer-links a:hover {
  color: var(--teal);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-link {
  color: #172033;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button--dark {
  color: #fff;
  background: var(--teal-dark);
  box-shadow: 0 12px 28px rgba(6, 69, 74, 0.2);
}

.button:hover,
.app-cta:hover,
.route-card a:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.74fr);
  align-items: center;
  gap: 42px;
  min-height: 0;
  padding: 30px 0 24px;
}

.hero__content {
  padding-top: 12px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 660px;
  margin-bottom: 18px;
  font-size: 64px;
  line-height: 1.05;
  font-weight: 900;
}

.hero__intro {
  max-width: 540px;
  margin-bottom: 34px;
  color: #4c5668;
  font-size: 22px;
  line-height: 1.45;
}

.ride-modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 640px;
  margin-bottom: 34px;
}

.ride-mode,
.flow-title {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.ride-mode + .ride-mode {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.mode-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--green));
  font-weight: 900;
  box-shadow: 0 14px 26px rgba(0, 109, 107, 0.22);
}

.mode-mark--sun {
  color: #33260a;
  background: linear-gradient(135deg, var(--sun), #f8cf69);
}

.ride-mode h2,
.flow-title h3 {
  margin-bottom: 4px;
  font-size: 18px;
}

.ride-mode p,
.flow-title p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.access-panel {
  max-width: 640px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.access-panel > p {
  margin-bottom: 14px;
  color: #3d4758;
  font-size: 14px;
  font-weight: 800;
}

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

.app-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 74px;
  padding: 15px 18px;
  border: 1px solid #cddadd;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(12, 36, 43, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.app-cta span {
  font-size: 17px;
  font-weight: 900;
}

.app-cta small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.app-cta--primary {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #009b93, var(--teal-dark));
}

.app-cta--primary small,
.app-cta--ink small {
  color: rgba(255, 255, 255, 0.82);
}

.app-cta--ink {
  color: #fff;
  border-color: transparent;
  background: #111827;
}

.hero-proof {
  display: flex;
  gap: 26px;
  max-width: 640px;
  margin-top: 28px;
}

.hero-proof div {
  flex: 1;
}

.hero-proof strong,
.trust-strip strong,
.route-card h3,
.safety-grid h3 {
  display: block;
  margin-bottom: 4px;
}

.hero-proof span,
.trust-strip span,
.route-card p,
.safety-grid p {
  color: var(--muted);
  font-size: 14px;
}

.hero__media {
  position: relative;
  overflow: hidden;
  align-self: center;
  height: 720px;
  min-height: 0;
  border-radius: 0 0 0 68px;
  box-shadow: var(--shadow);
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 28px clamp(24px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(248, 253, 251, 0.92);
}

.trust-strip div {
  padding: 0 26px;
  border-left: 1px solid var(--line);
}

.trust-strip div:first-child {
  border-left: 0;
}

.how-it-works,
.routes,
.safety,
.faq {
  padding: 82px 0;
}

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

.section-heading h2,
.routes__intro h2,
.faq__intro h2 {
  margin-bottom: 10px;
  font-size: 40px;
  line-height: 1.15;
}

.section-heading p:last-child,
.routes__intro p {
  color: var(--muted);
  font-size: 18px;
}

.flow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}

.flow-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 28px 0 0;
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  counter-increment: step;
}

.steps li::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 50%;
  color: var(--teal-dark);
  background: var(--surface-mint);
  font-weight: 900;
}

.steps strong {
  display: block;
  margin-bottom: 5px;
}

.steps span {
  color: var(--muted);
  font-size: 14px;
}

.routes {
  background: transparent;
}

.routes__intro {
  max-width: 680px;
  margin-bottom: 34px;
}

.route-list {
  display: grid;
  gap: 14px;
}

.route-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  min-height: 140px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(11, 43, 49, 0.08);
}

.route-card img {
  width: 190px;
  height: 112px;
  object-fit: cover;
  border-radius: 8px;
}

.route-date {
  display: block;
  margin-bottom: 6px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.route-card h3 {
  margin-bottom: 4px;
  font-size: 24px;
}

.route-card p {
  margin-bottom: 0;
}

.route-card strong {
  color: var(--teal-dark);
  font-size: 22px;
}

.route-card a {
  min-width: 112px;
  padding: 13px 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-weight: 900;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease;
}

.route-card a:hover {
  background: #249c52;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.safety-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.safety-grid h3 {
  font-size: 19px;
}

.safety-grid p {
  margin-bottom: 0;
}

.faq {
  padding-top: 20px;
}

.faq__intro {
  margin-bottom: 24px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--ink);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 36px clamp(24px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #f7fbfa;
}

.site-footer img {
  width: 165px;
  margin-bottom: 12px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 18px;
  font-weight: 900;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
    position: relative;
    z-index: 22;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .nav-open .site-nav {
    position: fixed;
    top: 82px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 4px;
    justify-content: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-open .site-nav a {
    padding: 14px;
    border-radius: 8px;
    background: var(--surface-soft);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 38px;
    min-width: 0;
  }

  .hero__content {
    min-width: 0;
  }

  .hero__media {
    height: auto;
    min-height: 620px;
    border-radius: 8px;
  }

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

  .trust-strip div:nth-child(odd) {
    border-left: 0;
  }

  .route-card {
    grid-template-columns: 160px minmax(0, 1fr) auto;
  }

  .route-card a {
    grid-column: 2 / -1;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .section-shell {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    min-height: 74px;
    padding: 12px 16px;
  }

  .brand img {
    width: 158px;
  }

  .nav-open .site-nav {
    top: 74px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.08;
    text-wrap: balance;
  }

  .hero__intro {
    font-size: 17px;
  }

  .ride-modes,
  .cta-row,
  .flow-grid,
  .steps,
  .trust-strip,
  .safety-grid {
    grid-template-columns: 1fr;
  }

  .ride-mode + .ride-mode {
    padding-left: 0;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-proof {
    flex-direction: column;
    gap: 12px;
  }

  .hero__media {
    min-height: 520px;
  }

  .trust-strip {
    padding: 20px 16px;
  }

  .trust-strip div {
    padding: 18px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .trust-strip div:first-child {
    border-top: 0;
  }

  .how-it-works,
  .routes,
  .safety,
  .faq {
    padding: 58px 0;
  }

  .section-heading h2,
  .routes__intro h2,
  .faq__intro h2 {
    font-size: 32px;
  }

  .flow-card {
    padding: 24px;
  }

  .route-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .route-card img {
    width: 100%;
    height: 180px;
  }

  .route-card a {
    grid-column: auto;
    justify-self: stretch;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .site-header {
    width: min(100%, 390px);
  }

  .nav-open .site-nav {
    right: auto;
    left: 16px;
    width: min(calc(100% - 32px), 358px);
  }

  .section-shell {
    width: min(calc(100% - 32px), 358px);
    margin-left: 16px;
    margin-right: auto;
  }

  h1 {
    font-size: 34px;
  }

  .hero__intro {
    font-size: 16px;
  }

  .hero__media {
    min-height: 430px;
  }

  .app-cta {
    min-height: 66px;
  }
}
