:root {
  --ink: #061552;
  --muted: #43517c;
  --blue: #0b63ff;
  --blue-2: #2f83ff;
  --sky: #eaf3ff;
  --line: #dbe8ff;
  --panel: rgba(255, 255, 255, 0.86);
  --shadow: 0 20px 60px rgba(14, 74, 175, 0.12);
  --green: #10b981;
  --orange: #ff4d22;
  --page-max: 1240px;
  --page-pad: max(32px, calc((100vw - var(--page-max)) / 2));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 22% 6%, rgba(151, 197, 255, 0.32), transparent 25rem),
    radial-gradient(circle at 82% 7%, rgba(210, 194, 255, 0.34), transparent 22rem),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 44%, #f8fbff 100%);
  line-height: 1.5;
  overflow-x: hidden;
}

body,
button,
select,
a,
p,
h1,
h2,
h3,
span {
  overflow-wrap: anywhere;
}

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

button,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 80px;
  padding-right: var(--page-pad);
  padding-left: var(--page-pad);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(219, 232, 255, 0.7);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 42px;
  font-weight: 700;
  font-size: 15px;
}

.desktop-nav a,
.mobile-nav a,
.site-footer a {
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.site-footer a:hover {
  color: var(--blue);
}

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

.language-picker {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}

.language-picker svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.language-picker select {
  max-width: 132px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 700;
  cursor: pointer;
}

.button,
.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  border-radius: 8px;
  font-weight: 800;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #0752df);
  box-shadow: 0 12px 24px rgba(11, 99, 255, 0.2);
}

.button.small {
  min-height: 46px;
  padding: 0 20px;
}

.button:not(.small) {
  padding: 0 20px;
}

.text-link {
  min-height: 34px;
  padding: 0 12px;
  color: var(--blue);
  border: 1px solid rgba(11, 99, 255, 0.35);
}

.button.primary:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.button.primary[href*="#download"],
.text-link[href*="#download"] {
  gap: 10px;
  isolation: isolate;
}

.button.primary[href*="#download"]::before,
.text-link[href*="#download"]::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: url("assets/app-icon.png") center / cover no-repeat;
  border-radius: 6px;
  box-shadow: 0 6px 14px rgba(6, 21, 82, 0.16);
}

.button.primary[href*="#download"] {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 38%),
    linear-gradient(135deg, var(--blue), #0752df);
  box-shadow:
    0 13px 28px rgba(11, 99, 255, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.button.primary[href*="#download"]:hover {
  box-shadow:
    0 16px 34px rgba(11, 99, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.text-link[href*="#download"] {
  min-height: 42px;
  padding: 0 16px;
  color: var(--ink);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(11, 99, 255, 0.52), rgba(16, 185, 129, 0.34)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 12px 26px rgba(14, 74, 175, 0.1);
}

.text-link[href*="#download"]:hover {
  color: var(--blue);
  box-shadow: 0 16px 34px rgba(11, 99, 255, 0.16);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: visible;
  min-height: 660px;
  padding: 56px var(--page-pad);
  isolation: isolate;
  background:
    radial-gradient(circle at 72% 45%, rgba(47, 109, 246, 0.16) 0%, rgba(47, 109, 246, 0.08) 28%, transparent 58%),
    linear-gradient(180deg, #f8fbff 0%, #eef6ff 58%, #ffffff 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 26px;
  max-width: var(--page-max);
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 140px;
  overflow: visible;
}

.hero-copy {
  position: relative;
  z-index: 4;
  padding-top: 40px;
}

.hero h1 {
  max-width: 600px;
  margin: 0 0 18px;
  font-size: 58px;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 span,
.hero h1 strong {
  display: inline;
}

.hero h1 strong {
  color: var(--blue);
  font-weight: 900;
}

.hero p {
  max-width: 500px;
  margin: 0 0 30px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 166px;
  min-height: 54px;
  padding: 8px 13px;
  color: var(--ink);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.94)),
    #fff;
  border: 1px solid rgba(219, 232, 255, 0.95);
  border-radius: 8px;
  box-shadow: 0 13px 28px rgba(14, 74, 175, 0.11);
  transform-origin: left center;
  isolation: isolate;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.store-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 14% 18%, rgba(11, 99, 255, 0.12), transparent 8rem),
    radial-gradient(circle at 92% 80%, rgba(16, 185, 129, 0.1), transparent 7rem);
  opacity: 0.95;
}

.store-badge:hover {
  border-color: rgba(11, 99, 255, 0.42);
  box-shadow: 0 17px 38px rgba(11, 99, 255, 0.18);
  transform: translateY(-2px);
}

.store-badge svg {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.store-badge[href*="apps.apple.com"] svg {
  width: 30px;
  height: 30px;
  padding: 5px;
  color: #fff;
  background: #050505;
  border-radius: 8px;
}

.store-badge[href*="play.google.com"] svg {
  width: 30px;
  height: 30px;
  padding: 5px;
  background: #fff;
  border: 1px solid rgba(219, 232, 255, 0.95);
  border-radius: 8px;
}

.store-badge small,
.store-badge b {
  display: block;
  line-height: 1.02;
}

.store-badge small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0;
}

.store-badge b {
  color: var(--ink);
  font-size: 16px;
  letter-spacing: 0;
}

.play-blue {
  fill: #38bdf8;
}

.play-green {
  fill: #22c55e;
}

.play-yellow {
  fill: #facc15;
}

.play-red {
  fill: #f97316;
}

.floating-cta {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 70;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  width: 200px;
  min-height: 72px;
  padding: 13px 14px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.42)),
    linear-gradient(135deg, rgba(11, 99, 255, 0.14), rgba(16, 185, 129, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 18px;
  box-shadow:
    0 20px 52px rgba(6, 21, 82, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 16px, 0) scale(0.98);
  transition:
    opacity 0.26s ease,
    transform 0.26s ease,
    width 0.28s ease,
    min-height 0.28s ease,
    padding 0.28s ease,
    box-shadow 0.2s ease;
}

.floating-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.floating-cta:hover {
  box-shadow:
    0 24px 60px rgba(11, 99, 255, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  transform: translate3d(0, -2px, 0) scale(1);
}

.floating-cta-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(6, 21, 82, 0.14);
}

.floating-cta-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-cta-copy {
  display: grid;
  min-width: 0;
  gap: 1px;
  transition:
    opacity 0.2s ease,
    transform 0.24s ease;
}

.floating-cta-copy small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
}

.floating-cta-copy strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.15;
}

.download-dialog {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.download-dialog.is-open {
  opacity: 1;
  pointer-events: auto;
}

.download-dialog[hidden] {
  display: none;
}

.download-dialog-open {
  overflow: hidden;
}

.download-dialog-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 48% 36%, rgba(47, 131, 255, 0.24), transparent 26rem),
    rgba(6, 21, 82, 0.36);
  backdrop-filter: blur(16px);
}

.download-dialog-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  padding: 26px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 255, 0.96)),
    var(--panel);
  border: 1px solid rgba(219, 232, 255, 0.92);
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(6, 21, 82, 0.24);
  transform: translateY(10px) scale(0.98);
  transition: transform 0.18s ease;
  animation: dialog-breathe 5.8s ease-in-out infinite;
}

.download-dialog.is-open .download-dialog-panel {
  transform: translateY(0) scale(1);
}

.download-dialog-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--green), var(--orange));
}

.download-dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.download-dialog-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
}

.download-dialog-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 46px;
}

.download-dialog-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  overflow: hidden;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(11, 99, 255, 0.16);
}

.download-dialog-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.download-dialog-kicker,
.download-dialog-hint {
  margin: 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.download-dialog h2 {
  margin: 3px 0 0;
  font-size: 28px;
  line-height: 1.12;
}

.download-dialog-intro {
  margin: 16px 0 20px;
  max-width: 440px;
  color: var(--muted);
  font-weight: 650;
}

.download-qr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}

.download-qr-card {
  position: relative;
  display: grid;
  gap: 9px;
  justify-items: center;
  padding: 18px 16px 16px;
  color: var(--ink);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.95)),
    #fff;
  border: 1px solid rgba(219, 232, 255, 0.95);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(14, 74, 175, 0.1);
  isolation: isolate;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.download-qr-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.72;
}

.download-qr-card.ios::before {
  background: linear-gradient(135deg, rgba(5, 5, 5, 0.08), transparent 44%);
}

.download-qr-card.google::before {
  background:
    linear-gradient(135deg, rgba(56, 189, 248, 0.13), transparent 38%),
    linear-gradient(315deg, rgba(34, 197, 94, 0.12), transparent 42%);
}

.download-qr-card:hover {
  border-color: rgba(11, 99, 255, 0.5);
  box-shadow: 0 18px 42px rgba(11, 99, 255, 0.16);
  transform: translateY(-2px);
}

.download-store-logo {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: #050505;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(6, 21, 82, 0.14);
}

.download-qr-card.google .download-store-logo {
  background: #fff;
  border: 1px solid rgba(219, 232, 255, 0.95);
}

.download-store-logo svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.download-qr-card strong {
  font-size: 17px;
  font-weight: 900;
}

.download-qr-frame {
  display: grid;
  place-items: center;
  width: min(100%, 180px);
  aspect-ratio: 1;
  margin-top: 2px;
  padding: 9px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(145deg, rgba(11, 99, 255, 0.38), rgba(16, 185, 129, 0.24), rgba(255, 77, 34, 0.28)) border-box;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.82);
  animation: qr-breathe 4.8s ease-in-out infinite;
}

.download-qr-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 4px;
}

.download-qr-card small {
  color: var(--muted);
  font-weight: 800;
}

.download-dialog-hint {
  margin-top: 16px;
  color: var(--muted);
  text-transform: none;
}

@keyframes dialog-breathe {
  0%,
  100% {
    box-shadow: 0 34px 90px rgba(6, 21, 82, 0.24);
  }

  50% {
    box-shadow: 0 38px 104px rgba(11, 99, 255, 0.28);
  }
}

@keyframes qr-breathe {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.018);
  }
}

@media (prefers-reduced-motion: reduce) {
  .download-dialog-panel,
  .download-qr-frame,
  .floating-cta,
  .floating-cta-copy {
    animation: none;
    transition: none;
  }
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-height: 560px;
  overflow: visible;
}

.hero-visual::before {
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 0;
  width: 520px;
  height: 520px;
  content: "";
  background: radial-gradient(circle, rgba(47, 109, 246, 0.16) 0%, rgba(47, 109, 246, 0.08) 42%, transparent 72%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-skyline {
  position: absolute;
  right: 80px;
  bottom: 36px;
  z-index: 0;
  width: 680px;
  height: 180px;
  opacity: 0.1;
  pointer-events: none;
}

.hero-skyline path,
.hero-skyline circle {
  fill: none;
  stroke: #b9d4ff;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-skyline path:first-child {
  fill: #d8e8ff;
  stroke: none;
}

.phone {
  position: absolute;
  z-index: 3;
  width: 280px;
  height: auto;
  aspect-ratio: 260 / 540;
  padding: 8px;
  background: linear-gradient(145deg, #111, #333);
  border-radius: 42px;
  box-shadow: 0 28px 60px rgba(12, 30, 80, 0.22);
}

.phone-left {
  top: 48px;
  left: 80px;
  transform: rotate(-5deg);
}

.phone-right {
  top: 68px;
  left: 320px;
  transform: rotate(5deg);
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 5;
  width: 86px;
  height: 26px;
  background: #050505;
  border-radius: 999px;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding: 0;
  background: #fff;
  border-radius: 34px;
}

.phone-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.screen-map {
  position: absolute;
  inset: 0 0 210px;
  background:
    linear-gradient(130deg, transparent 28%, rgba(11, 99, 255, 0.16) 28% 30%, transparent 30%),
    linear-gradient(35deg, transparent 38%, rgba(16, 185, 129, 0.16) 38% 42%, transparent 42%),
    radial-gradient(circle at 40% 44%, #ff6a3d 0 8px, #fff 9px 14px, transparent 15px),
    #eef6ff;
}

.trip-card {
  position: absolute;
  right: 11px;
  bottom: 11px;
  left: 11px;
  padding: 11px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(10, 60, 140, 0.13);
}

.trip-top,
.arrival-list li,
.route-header {
  display: flex;
  align-items: center;
}

.trip-top {
  gap: 8px;
}

.trip-top b,
.arrival-list b,
.route-box b {
  font-size: 9px;
}

.bus-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #fff;
  background: var(--green);
  border-radius: 9px;
  font-weight: 900;
}

.trip-top em {
  margin-left: auto;
  padding: 7px 8px;
  color: #fff;
  background: var(--orange);
  border-radius: 8px;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.arrival-list {
  display: grid;
  gap: 8px;
  padding: 10px 0 0;
  margin: 0;
  list-style: none;
}

.arrival-list li {
  gap: 8px;
  font-size: 10px;
}

.arrival-list li span {
  color: var(--blue);
  font-weight: 900;
}

.arrival-list em {
  margin-left: auto;
  padding: 4px 6px;
  color: #fff;
  background: var(--orange);
  border-radius: 999px;
  font-size: 9px;
  font-style: normal;
}

.arrival-list small {
  margin-left: auto;
  color: var(--blue);
  font-weight: 800;
}

.route-header {
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 900;
}

.route-box {
  display: grid;
  gap: 9px;
  padding: 12px;
  background: #fff;
  border: 1px solid #e6efff;
  border-radius: 14px;
}

.route-box p {
  display: grid;
  grid-template-columns: 9px 1fr;
  gap: 2px 8px;
  margin: 0;
}

.route-box p span {
  grid-row: 1 / 3;
  width: 8px;
  height: 8px;
  margin-top: 4px;
  background: var(--green);
  border-radius: 50%;
}

.route-box p + p span {
  background: var(--blue);
}

.route-box small {
  color: var(--muted);
  font-size: 9px;
}

.tabs {
  display: flex;
  gap: 5px;
  margin: 12px 0;
}

.tabs span {
  padding: 5px 7px;
  color: #5f6d92;
  background: #eef5ff;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
}

.tabs span:first-child {
  color: #fff;
  background: var(--blue);
}

.route-result {
  margin: 9px 0;
  padding: 10px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 8px 16px rgba(10, 60, 140, 0.08);
}

.route-result b {
  font-size: 12px;
}

.route-result p {
  display: flex;
  gap: 6px;
  margin: 8px 0 0;
}

.route-result span {
  width: 18px;
  height: 8px;
  background: var(--green);
  border-radius: 999px;
}

.route-result span:nth-child(2n) {
  background: #ef4444;
}

.route-result span:nth-child(3n) {
  background: var(--blue);
}

.bottom-nav {
  position: absolute;
  right: 18px;
  bottom: 14px;
  left: 18px;
  display: flex;
  justify-content: space-around;
}

.bottom-nav span {
  width: 22px;
  height: 4px;
  background: #b8c7e5;
  border-radius: 999px;
}

.feature-panel,
.section,
.stats-band,
.market-coverage-band,
.commuter-band,
.faq-section,
.site-footer {
  width: min(var(--page-max), calc(100% - 48px));
  margin: 0 auto;
}

.feature-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 36px;
  background: var(--panel);
  border: 1px solid rgba(219, 232, 255, 0.9);
  border-radius: 12px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.feature-panel article {
  display: grid;
  justify-items: center;
  min-height: 150px;
  padding: 20px 20px 18px;
  text-align: center;
}

.feature-panel article + article {
  border-left: 1px solid var(--line);
}

.icon-wrap {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--blue);
  background: #f5f9ff;
  border: 1px solid rgba(11, 99, 255, 0.18);
  border-radius: 50%;
}

.feature-panel .icon-wrap {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
}

.icon-wrap svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-panel h3,
.blog-card h3,
.site-footer h3 {
  margin: 0;
}

.feature-panel h3 {
  font-size: 13px;
}

.feature-panel p {
  justify-self: stretch;
  width: 100%;
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
}

.section,
.stats-band,
.market-coverage-band,
.commuter-band,
.faq-section {
  margin-top: 28px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.section-heading h2,
.stats-band h2,
.commuter-band h2,
.faq-section h2 {
  margin: 0;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.15;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.city-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 168px;
  border-radius: 9px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 14px 28px rgba(1, 15, 56, 0.16);
}

.city-card h3 {
  position: absolute;
  left: 14px;
  bottom: 12px;
  margin: 0;
  color: #fff;
  font-size: 17px;
  text-shadow: 0 2px 10px rgba(1, 15, 56, 0.72);
}

.blog-image::before {
  position: absolute;
  inset: 0;
  content: "";
}

.singapore {
  background-image: url("https://images.unsplash.com/photo-1525625293386-3f8f99389edd?auto=format&fit=crop&w=700&q=80");
}

.hongkong {
  background-image: url("https://images.unsplash.com/photo-1536599018102-9f803c140fc1?auto=format&fit=crop&w=700&q=80");
}

.taipei {
  background-image: url("assets/cities/taipei-city.jpg");
}

.sydney {
  background-image: url("https://images.unsplash.com/photo-1523428096881-5bd79d043006?auto=format&fit=crop&w=700&q=80");
}

.melbourne {
  background-image: url("https://images.unsplash.com/photo-1514395462725-fb4566210144?auto=format&fit=crop&w=700&q=80");
}

.cities-page,
.city-detail-page {
  background:
    radial-gradient(circle at 18% 4%, rgba(11, 99, 255, 0.14), transparent 28rem),
    radial-gradient(circle at 82% 12%, rgba(16, 185, 129, 0.12), transparent 26rem),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 48%, #f7fbff 100%);
}

.nav-active {
  color: var(--blue);
}

.city-main,
.city-directory-hero,
.city-region,
.city-seo-band,
.city-hub-hero,
.city-priority-grid,
.city-content-split,
.city-service-band {
  width: min(var(--page-max), calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.city-main {
  padding-top: 38px;
}

.city-directory-hero,
.city-hub-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 34px;
  align-items: stretch;
  min-height: 430px;
  padding: 54px;
  overflow: hidden;
  border: 1px solid rgba(219, 232, 255, 0.92);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(245, 250, 255, 0.8)),
    linear-gradient(135deg, rgba(11, 99, 255, 0.1), rgba(16, 185, 129, 0.08));
  box-shadow: 0 22px 64px rgba(14, 74, 175, 0.1);
}

.city-directory-hero h1,
.city-hub-hero h1 {
  max-width: 760px;
  margin: 10px 0 18px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: 0;
}

.city-directory-hero p,
.city-hub-copy > p,
.city-service-band p,
.city-seo-band h2 {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}

.breadcrumb-link {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.city-search {
  align-self: end;
  display: grid;
  gap: 12px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(219, 232, 255, 0.94);
  border-radius: 12px;
  box-shadow: 0 16px 38px rgba(14, 74, 175, 0.09);
}

.city-search label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.city-search div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.city-search input {
  width: 100%;
  min-height: 48px;
  padding: 0 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 700;
}

.city-search input:focus {
  border-color: rgba(11, 99, 255, 0.62);
  box-shadow: 0 0 0 4px rgba(11, 99, 255, 0.1);
  outline: 0;
}

.city-region,
.city-seo-band,
.city-priority-grid,
.city-content-split,
.city-service-band {
  margin-top: 34px;
}

.city-directory-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(2, minmax(0, 1fr));
  gap: 18px;
}

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

.city-directory-card {
  display: grid;
  grid-template-rows: 220px minmax(0, 1fr);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(219, 232, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 16px 42px rgba(14, 74, 175, 0.08);
}

.city-directory-card.featured {
  grid-row: span 1;
}

.city-card-image {
  display: block;
  min-height: 220px;
  background-position: center;
  background-size: cover;
}

.city-directory-card > div {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.city-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.city-card-heading h3 {
  margin: 0;
  font-size: 22px;
}

.city-card-heading span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: var(--green);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.18);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.city-directory-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.deep-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.region-city-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.deep-link-row a,
.region-city-row a,
.city-quick-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  color: var(--blue);
  background: #f6faff;
  border: 1px solid rgba(11, 99, 255, 0.18);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.city-seo-band,
.city-service-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(219, 232, 255, 0.9);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(14, 74, 175, 0.07);
}

.city-seo-band h2,
.city-service-band h2 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

.url-pattern-list {
  display: grid;
  gap: 10px;
}

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

.coverage-model-list article {
  min-height: 150px;
  padding: 18px;
  background: #f7fbff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.coverage-model-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}

.coverage-model-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.url-pattern-list code {
  display: block;
  padding: 13px 14px;
  color: #0d235f;
  background: #f5f9ff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  white-space: normal;
}

.city-hub-hero {
  grid-template-columns: minmax(0, 1fr) 380px;
  background:
    linear-gradient(180deg, rgba(3, 15, 54, 0.14), rgba(3, 15, 54, 0.46)),
    url("https://images.unsplash.com/photo-1525625293386-3f8f99389edd?auto=format&fit=crop&w=1600&q=82") center / cover;
}

.taiwan-hub-hero {
  background:
    linear-gradient(180deg, rgba(3, 15, 54, 0.18), rgba(3, 15, 54, 0.5)),
    url("assets/cities/taipei-city.jpg") center / cover;
}

.australia-hub-hero {
  background:
    linear-gradient(180deg, rgba(3, 15, 54, 0.16), rgba(3, 15, 54, 0.48)),
    url("https://images.unsplash.com/photo-1523428096881-5bd79d043006?auto=format&fit=crop&w=1600&q=82") center / cover;
}

.city-hub-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.city-hub-copy .eyebrow,
.city-hub-copy h1,
.city-hub-copy > p,
.city-hub-copy .breadcrumb-link {
  color: #fff;
}

.city-hub-copy > p {
  text-shadow: 0 2px 16px rgba(1, 15, 56, 0.34);
}

.city-hub-search {
  width: min(100%, 640px);
  margin-top: 26px;
}

.city-hub-panel {
  display: grid;
  align-content: end;
  gap: 14px;
}

.city-live-card {
  position: relative;
  min-height: 200px;
  padding: 24px;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(245, 250, 255, 0.82)),
    rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 14px;
  box-shadow:
    0 18px 44px rgba(1, 15, 56, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
}

.city-live-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  content: "";
}

.city-live-card span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: var(--blue);
  background: rgba(11, 99, 255, 0.1);
  border: 1px solid rgba(11, 99, 255, 0.16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.city-live-card strong {
  display: block;
  margin-top: 10px;
  font-size: 34px;
  line-height: 1.06;
}

.city-live-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.city-quick-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.city-quick-actions a {
  justify-content: center;
  min-height: 42px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
}

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

.priority-link {
  display: grid;
  gap: 9px;
  min-height: 166px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(219, 232, 255, 0.92);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(14, 74, 175, 0.08);
}

.priority-link span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.priority-link strong {
  font-size: 24px;
  line-height: 1.16;
}

.priority-link small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.city-content-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.transit-route-groups,
.transit-directory {
  width: min(var(--page-max), calc(100% - 48px));
  margin: 34px auto 0;
}

.route-group-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(219, 232, 255, 0.92);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(14, 74, 175, 0.07);
}

.route-group-grid article {
  display: grid;
  align-content: start;
  gap: 9px;
  min-width: 0;
}

.route-group-grid h3 {
  margin: 0 0 2px;
  font-size: 17px;
  line-height: 1.2;
}

.route-group-grid a {
  color: #2557a8;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.route-group-grid a:hover,
.route-chip-grid a:hover {
  color: var(--blue);
}

.transit-directory {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(219, 232, 255, 0.92);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(14, 74, 175, 0.07);
}

.transit-directory > .section-heading {
  padding: 22px 22px 0;
}

.directory-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 18px 22px 14px;
  border-bottom: 1px solid var(--line);
}

.directory-tab {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 16px;
  color: var(--ink);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
}

.directory-tab.is-active {
  color: var(--blue);
  background: #eaf3ff;
  border-color: rgba(11, 99, 255, 0.14);
}

.directory-panel {
  padding: 22px;
}

.directory-panel h3 {
  margin: 0 0 18px;
  font-size: 22px;
}

.operator-grid {
  display: grid;
  gap: 24px;
}

.operator-grid article {
  display: grid;
  gap: 12px;
}

.operator-grid h4 {
  margin: 0;
  font-size: 18px;
}

.route-chip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(56px, 1fr));
  gap: 8px;
}

.route-chip-grid.wide {
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
}

.route-chip-grid a,
.route-chip-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 10px;
  color: #2557a8;
  background: #f7fbff;
  border: 1px solid rgba(219, 232, 255, 0.94);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 850;
  text-align: center;
}

.route-chip-grid span {
  color: #6b7c99;
  background: #f8fafc;
}

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

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

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

.region-city-card {
  display: grid;
  gap: 8px;
  min-height: 130px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(219, 232, 255, 0.92);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(14, 74, 175, 0.07);
}

.region-city-card strong {
  font-size: 22px;
  line-height: 1.16;
}

.region-city-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.city-link-section {
  min-width: 0;
}

.route-list,
.station-list,
.city-update-list {
  display: grid;
  gap: 10px;
}

.route-list a,
.station-list a,
.route-list .coming-soon-item,
.station-list .coming-soon-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 72px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(219, 232, 255, 0.92);
  border-radius: 10px;
  box-shadow: 0 10px 26px rgba(14, 74, 175, 0.06);
}

.station-list a,
.station-list .coming-soon-item {
  grid-template-columns: minmax(0, 1fr) auto;
}

.route-list span {
  display: grid;
  place-items: center;
  min-height: 44px;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
  font-weight: 900;
}

.route-list strong,
.station-list strong {
  min-width: 0;
  font-size: 16px;
  line-height: 1.25;
}

.route-list small,
.station-list small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

.coming-soon-item {
  color: #53657f;
}

.route-group-grid .coming-soon-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  color: #31527d;
  font-weight: 800;
  border-bottom: 1px solid rgba(219, 232, 255, 0.74);
}

.route-group-grid .coming-soon-item small {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.city-coming-soon {
  display: grid;
  gap: 12px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(219, 232, 255, 0.9);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(14, 74, 175, 0.08);
}

.city-coming-soon h2,
.city-coming-soon p {
  margin: 0;
}

.city-coming-soon p {
  max-width: 760px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.7;
}

.city-detail-page .city-priority-grid,
.city-detail-page .transit-route-groups,
.city-detail-page .transit-directory,
.city-detail-page .city-service-band,
.region-detail-page .city-region,
.region-detail-page .city-content-split {
  display: none;
}

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

.city-update-list article {
  padding: 18px;
  background: #f7fbff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.city-update-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}

.city-update-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.stats-band,
.market-coverage-band,
.commuter-band,
.faq-section {
  border: 1px solid rgba(219, 232, 255, 0.9);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 50px rgba(14, 74, 175, 0.07);
  backdrop-filter: blur(16px);
}

.stats-band {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
  min-height: 184px;
  padding: 28px 32px;
  border-radius: 10px;
}

.stats-band p,
.commuter-band p {
  color: var(--ink);
  font-weight: 500;
}

.stats-band > div p {
  max-width: 395px;
  margin: 14px 0 0;
  font-size: 18px;
}

.stats-band article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 2px 20px;
  align-items: center;
}

.stats-band article .icon-wrap {
  grid-row: 1 / 3;
}

.stats-band b {
  font-size: 30px;
}

.stats-band article p {
  margin: 0;
  font-weight: 800;
}

.market-coverage-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  min-height: 142px;
  padding: 24px 30px;
  overflow: hidden;
  border-radius: 10px;
  background:
    radial-gradient(circle at 88% 50%, rgba(11, 99, 255, 0.07), transparent 23rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(247, 251, 255, 0.76));
  box-shadow:
    0 18px 50px rgba(14, 74, 175, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.market-coverage-band::before {
  display: none;
}

.coverage-copy h2,
.coverage-copy p {
  margin: 0;
}

.coverage-copy {
  position: relative;
  z-index: 1;
}

.coverage-copy h2 {
  max-width: 330px;
  margin-top: 7px;
  font-size: clamp(22px, 1.65vw, 28px);
  line-height: 1.15;
}

.coverage-copy p {
  max-width: 390px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.58;
}

.coverage-chips {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  padding: 10px 12px;
  overflow: hidden;
  background: rgba(247, 251, 255, 0.78);
  border: 1px solid rgba(219, 232, 255, 0.86);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.coverage-chips::before {
  position: absolute;
  top: 30px;
  right: 38px;
  left: 38px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(11, 99, 255, 0.14), rgba(16, 185, 129, 0.2), rgba(11, 99, 255, 0.14));
}

.coverage-chips span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 22px 10px 0;
  color: #254a8f;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
}

.coverage-chips span::before {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 9px;
  height: 9px;
  content: "";
  background: #fff;
  border: 2px solid rgba(11, 99, 255, 0.58);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(11, 99, 255, 0.06);
  transform: translateX(-50%);
}

.coverage-chips span:nth-child(2n)::before {
  border-color: rgba(16, 185, 129, 0.56);
  box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.06);
}

.commuter-band {
  position: relative;
  display: grid;
  grid-template-columns: 430px 1fr;
  column-gap: 32px;
  align-items: center;
  min-height: 300px;
  overflow: hidden;
  padding: 40px 48px;
  border: 1px solid rgba(207, 225, 255, 0.9);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 24px 60px rgba(30, 80, 160, 0.06);
}

.commuter-band h2 {
  max-width: 380px;
  font-size: 34px;
  line-height: 1.12;
  margin-bottom: 18px;
}

.commuter-band p {
  max-width: 520px;
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.55;
}

.commuter-band .button {
  width: fit-content;
  min-width: 260px;
  height: 56px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 10px;
  font-size: 18px;
}

.transport-illustration {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  width: min(100%, 720px);
  height: 240px;
  overflow: visible;
  background: transparent;
  transform: translateX(-20px);
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

.transport-illustration img {
  display: block;
  width: 720px;
  max-width: 100%;
  height: auto;
  background: transparent;
  object-fit: contain;
}

.faq-section {
  padding: 20px;
  border-radius: 10px;
}

.faq-page {
  background:
    radial-gradient(circle at 18% 8%, rgba(151, 197, 255, 0.34), transparent 24rem),
    radial-gradient(circle at 82% 4%, rgba(16, 185, 129, 0.14), transparent 20rem),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 42%, #f7fbff 100%);
}

.faq-main {
  padding-top: 42px;
}

.faq-hero,
.faq-content,
.faq-cta {
  width: min(1180px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.faq-hero {
  position: relative;
  display: grid;
  gap: 42px;
  min-height: 0;
  overflow: visible;
  padding: 72px 72px 62px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(239, 248, 255, 0.82)),
    radial-gradient(circle at 88% 10%, rgba(16, 185, 129, 0.12), transparent 18rem),
    radial-gradient(circle at 76% 88%, rgba(11, 99, 255, 0.13), transparent 18rem);
  border: 1px solid rgba(219, 232, 255, 0.92);
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(14, 74, 175, 0.1);
  isolation: isolate;
}

.faq-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(36px, 3.8vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

.faq-hero-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 56px;
  align-items: center;
}

.faq-hero-copy p {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.55;
}

.faq-hero-visual {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(219, 232, 255, 0.96);
  border-radius: 18px;
  box-shadow: 0 24px 58px rgba(14, 74, 175, 0.09);
  backdrop-filter: blur(18px);
}

.faq-visual-header {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(219, 232, 255, 0.86);
}

.faq-visual-logo {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(219, 232, 255, 0.9);
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(11, 99, 255, 0.12);
}

.faq-visual-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-visual-header strong {
  display: block;
  color: #061552;
  font-size: 20px;
  line-height: 1.1;
}

.faq-visual-header small,
.faq-visual-list small {
  color: var(--muted);
  font-weight: 750;
}

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

.faq-visual-list article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 18px;
  align-items: center;
  padding: 15px 16px;
  background: rgba(248, 251, 255, 0.88);
  border: 1px solid rgba(219, 232, 255, 0.9);
  border-radius: 12px;
}

.faq-visual-list span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.faq-visual-list strong {
  grid-row: 1 / 3;
  grid-column: 2;
  color: var(--blue);
  font-size: 20px;
  line-height: 1;
  white-space: nowrap;
}

.faq-topic-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.faq-topic-row a,
.faq-sidebar a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(219, 232, 255, 0.95);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 10px 28px rgba(14, 74, 175, 0.06);
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.faq-topic-row a:hover,
.faq-sidebar a:hover {
  color: var(--blue);
  border-color: rgba(11, 99, 255, 0.35);
  transform: translateY(-1px);
}

.faq-hero-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.faq-hero-summary article {
  min-height: 150px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(219, 232, 255, 0.96);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(14, 74, 175, 0.07);
  backdrop-filter: blur(16px);
}

.faq-hero-summary span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
}

.faq-hero-summary strong {
  display: block;
  color: #061552;
  font-size: 20px;
  line-height: 1.18;
}

.faq-hero-summary p {
  margin: 0;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.55;
}

.faq-content {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  margin-top: 48px;
}

.faq-sidebar {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(219, 232, 255, 0.88);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(14, 74, 175, 0.06);
  backdrop-filter: blur(14px);
}

.faq-sidebar a {
  justify-content: flex-start;
  min-height: 44px;
  padding: 0 14px;
  background: transparent;
  box-shadow: none;
}

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

.faq-group {
  counter-reset: faq-item;
  display: grid;
  gap: 14px;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 251, 255, 0.78)),
    radial-gradient(circle at 98% 0%, rgba(11, 99, 255, 0.08), transparent 18rem);
  border: 1px solid rgba(219, 232, 255, 0.92);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(14, 74, 175, 0.07);
  backdrop-filter: blur(16px);
}

.faq-group-header {
  display: grid;
  gap: 8px;
  margin-bottom: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(219, 232, 255, 0.86);
}

.faq-group-header .eyebrow {
  margin: 0;
}

.faq-group-header h2 {
  margin: 0;
  color: #061552;
  font-size: 26px;
  line-height: 1.18;
  letter-spacing: 0;
}

.faq-item {
  counter-increment: faq-item;
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 0 18px;
  padding: 22px 24px 22px 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(219, 232, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(14, 74, 175, 0.045);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.faq-item::before {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--blue);
  background: rgba(11, 99, 255, 0.08);
  border: 1px solid rgba(11, 99, 255, 0.12);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 950;
  content: counter(faq-item, decimal-leading-zero);
}

.faq-item:hover {
  border-color: rgba(11, 99, 255, 0.26);
  box-shadow: 0 18px 38px rgba(14, 74, 175, 0.075);
  transform: translateY(-1px);
}

.faq-item h3 {
  grid-column: 2;
  margin: 0;
  color: #061552;
  font-size: 17px;
  line-height: 1.35;
}

.faq-item p {
  grid-column: 2;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.65;
}

.faq-cta {
  margin-top: 42px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 36px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 0 16px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "⌄";
  color: var(--ink);
  font-size: 18px;
  transition: transform 0.2s ease;
}

details[open] summary::after {
  transform: rotate(180deg);
}

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

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

.blog-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 24px rgba(14, 74, 175, 0.06);
}

.blog-image {
  position: relative;
  height: 82px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #f4f9ff;
}

.blog-image::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(3, 14, 50, 0.18)),
    radial-gradient(circle at 16% 12%, rgba(11, 99, 246, 0.18), transparent 8rem);
}

.blog-one {
  background-image: url("assets/blog/transitnow-overview-cover.png");
  background-position: center;
}

.blog-two {
  background-image: url("assets/blog/transitnow-live-arrivals-cover.png");
  background-position: center;
}

.blog-three {
  background-image: url("assets/blog/transitnow-coverage-cover.png");
  background-position: center;
}

.blog-four {
  background-image: url("assets/blog/transitnow-product-update-cover.png");
  background-position: center;
}

.blog-body {
  padding: 14px 15px 18px;
}

.blog-body span {
  display: inline-flex;
  margin-right: 10px;
  padding: 3px 7px;
  color: var(--blue);
  background: #e9f2ff;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
}

.blog-body small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.blog-body h3 {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.2;
}

.blog-body p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.blog-page {
  background:
    radial-gradient(circle at 16% 8%, rgba(151, 197, 255, 0.34), transparent 24rem),
    radial-gradient(circle at 82% 6%, rgba(16, 185, 129, 0.12), transparent 22rem),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 42%, #f7fbff 100%);
}

.blog-main {
  padding-top: 42px;
}

.blog-hero,
.blog-featured,
.blog-content,
.blog-cta {
  width: min(1180px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.blog-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 54px;
  align-items: center;
  min-height: 430px;
  overflow: hidden;
  padding: 70px 68px 64px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 247, 255, 0.78)),
    radial-gradient(circle at 80% 20%, rgba(11, 99, 255, 0.18), transparent 18rem);
  border: 1px solid rgba(219, 232, 255, 0.92);
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(14, 74, 175, 0.1);
  isolation: isolate;
}

.blog-hero::after {
  position: absolute;
  right: 34px;
  bottom: 30px;
  z-index: -1;
  width: 520px;
  height: 118px;
  content: "";
  opacity: 0.12;
  background:
    linear-gradient(90deg, transparent 0 8%, #0b63ff 8% 10%, transparent 10% 18%, #10b981 18% 20%, transparent 20% 30%, #ff4d22 30% 32%, transparent 32%),
    linear-gradient(#0b63ff, #0b63ff);
  background-size: 120px 4px, 100% 2px;
  background-repeat: repeat-x, no-repeat;
  background-position: left 28px, left 72px;
  pointer-events: none;
}

.blog-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.04;
  letter-spacing: 0;
}

.blog-hero-copy p {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
}

.blog-topic-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.blog-topic-row a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(219, 232, 255, 0.95);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(14, 74, 175, 0.06);
  font-size: 13px;
  font-weight: 850;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.blog-topic-row a:hover {
  color: var(--blue);
  border-color: rgba(11, 99, 255, 0.35);
  transform: translateY(-1px);
}

.blog-hero-visual {
  min-width: 0;
}

.blog-signal-card {
  position: relative;
  display: grid;
  gap: 22px;
  padding: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(219, 232, 255, 0.96);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(6, 21, 82, 0.13);
  backdrop-filter: blur(18px);
}

.blog-signal-card > * {
  position: relative;
  z-index: 1;
}

.blog-signal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.blog-signal-header span,
.blog-signal-list small,
.article-meta small,
.featured-copy small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.blog-signal-header strong {
  font-size: 20px;
  line-height: 1.2;
}

.blog-signal-chart {
  position: relative;
  min-height: 184px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(11, 99, 246, 0.08)),
    url("assets/commuter-vehicles.png") center 70% / 112% no-repeat,
    #f5faff;
  border: 1px solid rgba(219, 232, 255, 0.9);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.blog-signal-list {
  display: grid;
  gap: 10px;
}

.blog-signal-list p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 12px 0 0;
  border-top: 1px solid rgba(219, 232, 255, 0.92);
}

.blog-featured,
.blog-content,
.blog-cta {
  margin-top: 42px;
}

.featured-article {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1fr);
  gap: 36px;
  align-items: stretch;
  overflow: hidden;
  min-height: 360px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(219, 232, 255, 0.92);
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(14, 74, 175, 0.08);
  backdrop-filter: blur(16px);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.featured-article:hover,
.article-card:hover {
  border-color: rgba(11, 99, 255, 0.38);
  box-shadow: 0 28px 72px rgba(11, 99, 255, 0.13);
  transform: translateY(-2px);
}

.featured-image,
.article-image {
  position: relative;
  display: block;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.featured-image {
  min-height: 320px;
  border-radius: 14px;
  background-color: #f6fbff;
  background-image: url("assets/blog/transitnow-overview-cover.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.featured-image::after,
.article-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(11, 99, 246, 0.08)),
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.58), transparent 14rem);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
}

.featured-copy {
  align-self: center;
  padding: 30px 24px 30px 0;
}

.featured-copy h2,
.blog-section-heading h2,
.blog-cta h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.1;
}

.featured-copy p,
.blog-section-heading p,
.blog-cta p {
  max-width: 560px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.62;
}

.blog-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 22px;
}

.blog-section-heading p {
  max-width: 420px;
  margin: 0;
}

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

.article-card {
  display: grid;
  align-content: start;
  overflow: hidden;
  min-height: 370px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(219, 232, 255, 0.92);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(14, 74, 175, 0.07);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.article-image {
  height: 176px;
  background-color: #f4f9ff;
  background-size: cover;
  background-repeat: no-repeat;
}

.article-one {
  background-image: url("assets/blog/transitnow-overview-cover.png");
  background-position: center;
}

.article-two {
  background-image: url("assets/blog/transitnow-live-arrivals-cover.png");
  background-position: center;
}

.article-three {
  background-image: url("assets/blog/transitnow-coverage-cover.png");
  background-position: center;
}

.article-four {
  background-image: url("assets/blog/transitnow-product-update-cover.png");
  background-position: center;
}

.article-five {
  background-image: url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=700&q=80");
}

.article-six {
  background-image: url("https://images.unsplash.com/photo-1494515843206-f3117d3f51b7?auto=format&fit=crop&w=700&q=80");
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px 0;
}

.article-meta b {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  color: var(--blue);
  background: #e9f2ff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.article-card h3 {
  margin: 12px 20px 0;
  font-size: 21px;
  line-height: 1.18;
}

.article-card p {
  margin: 10px 20px 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.58;
}

.article-page {
  background:
    radial-gradient(circle at 18% 8%, rgba(151, 197, 255, 0.32), transparent 24rem),
    radial-gradient(circle at 82% 6%, rgba(16, 185, 129, 0.1), transparent 22rem),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 42%, #f7fbff 100%);
}

.article-main {
  padding-top: 42px;
}

.article-hero,
.article-layout,
.article-related {
  width: min(980px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.article-hero {
  display: grid;
  gap: 22px;
  padding: 64px 68px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 247, 255, 0.8)),
    radial-gradient(circle at 86% 18%, rgba(11, 99, 255, 0.16), transparent 17rem);
  border: 1px solid rgba(219, 232, 255, 0.92);
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(14, 74, 175, 0.1);
}

.article-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
}

.article-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.62;
}

.article-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 42px;
  align-items: start;
  margin-top: 42px;
}

.article-body {
  padding: 36px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(219, 232, 255, 0.92);
  border-radius: 18px;
  box-shadow: 0 20px 58px rgba(14, 74, 175, 0.08);
  backdrop-filter: blur(16px);
}

.article-body h2 {
  margin: 34px 0 12px;
  font-size: 28px;
  line-height: 1.18;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 16px;
  font-weight: 620;
  line-height: 1.78;
}

.article-body p {
  margin: 0 0 18px;
}

.article-body ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.article-body strong {
  color: var(--ink);
}

.article-download-box,
.article-toc,
.article-related {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(219, 232, 255, 0.92);
  border-radius: 14px;
  box-shadow: 0 16px 44px rgba(14, 74, 175, 0.07);
}

.article-download-box {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  padding: 18px;
}

.article-download-box b,
.article-toc b,
.article-related h2 {
  color: var(--ink);
}

.article-download-box p {
  margin: 0;
  font-size: 14px;
}

.article-download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}

.article-download-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(11, 99, 246, 0.1);
  color: var(--blue);
  font-weight: 850;
}

.article-download-actions a:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-1px);
}

.article-toc {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 12px;
  padding: 18px;
}

.article-toc a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.article-toc a:hover {
  color: var(--blue);
}

.article-related {
  display: grid;
  gap: 14px;
  margin-top: 42px;
  padding: 28px;
}

.article-related h2 {
  margin: 0;
  font-size: 24px;
}

.article-related a {
  color: var(--blue);
  font-weight: 850;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1.55fr) repeat(5, minmax(105px, 0.72fr)) minmax(160px, 0.9fr);
  gap: 24px;
  margin-top: 34px;
  padding: 24px 8px 34px;
  border-top: 1px solid var(--line);
}

.site-footer .brand {
  font-size: 25px;
}

.site-footer .brand-mark {
  width: 34px;
  height: 34px;
}

.footer-brand p {
  max-width: 330px;
  margin: 8px 0;
  color: var(--muted);
  font-weight: 600;
}

.copyright {
  font-size: 12px;
}

.site-footer h3 {
  margin-bottom: 10px;
  font-size: 14px;
}

.site-footer div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}

.site-footer .footer-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.site-footer .footer-icon-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.store-buttons.compact {
  gap: 9px;
}

.compact .store-badge {
  min-width: 158px;
  min-height: 46px;
  padding: 7px 10px;
  box-shadow: 0 10px 22px rgba(14, 74, 175, 0.1);
  transform: none;
}

.compact .store-badge b {
  font-size: 14px;
}

.compact .store-badge svg {
  width: 26px;
  height: 26px;
}

.compact .store-badge[href*="apps.apple.com"] svg,
.compact .store-badge[href*="play.google.com"] svg {
  width: 27px;
  height: 27px;
  padding: 5px;
}

.nav-active {
  position: relative;
  color: var(--blue);
}

.nav-active::after {
  position: absolute;
  right: 0;
  bottom: -28px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue);
  border-radius: 999px;
}

.page-breadcrumb {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 22px;
  padding-top: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.city-main > .page-breadcrumb {
  width: 100%;
  padding-top: 0;
}

.page-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.page-breadcrumb li {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.page-breadcrumb li + li::before {
  width: 18px;
  color: rgba(67, 81, 124, 0.68);
  text-align: center;
  content: "/";
}

.page-breadcrumb a {
  color: var(--blue);
  transition: color 0.2s ease;
}

.page-breadcrumb a:hover {
  color: var(--ink);
}

.page-breadcrumb [aria-current="page"] {
  color: var(--ink);
}

.about-main > .page-breadcrumb {
  width: min(1160px, calc(100% - 64px));
  margin-bottom: 0;
  padding-top: 24px;
}

.features-main {
  background:
    radial-gradient(circle at 74% 8%, rgba(47, 109, 246, 0.12), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 30%);
}

.features-hero,
.feature-story,
.coverage-band,
.service-alerts,
.features-cta {
  width: min(1180px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.features-hero {
  position: relative;
  display: grid;
  gap: 34px;
  min-height: 0;
  overflow: visible;
  background: transparent;
  border-radius: 0;
}

.features-skyline {
  position: absolute;
  right: 0;
  bottom: 16px;
  width: 620px;
  height: 180px;
  opacity: 0.16;
}

.features-skyline path,
.features-skyline circle {
  fill: none;
  stroke: #b9d4ff;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.features-skyline path:first-child {
  fill: #d8e8ff;
  stroke: none;
}

.fp-phone {
  position: relative;
  overflow: hidden;
  width: 250px;
  aspect-ratio: 260 / 540;
  padding: 8px;
  background: linear-gradient(145deg, #111, #333);
  border-radius: 42px;
  box-shadow: 0 30px 70px rgba(12, 30, 80, 0.18);
}

.fp-phone img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 34px;
}

.fp-phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 2;
  width: 86px;
  height: 26px;
  background: #050505;
  border-radius: 999px;
  transform: translateX(-50%);
}

.hero-phone {
  position: absolute;
  right: 122px;
  bottom: -205px;
  width: 275px;
  transform: rotate(-5deg);
}

.feature-story {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 44px;
  align-items: center;
  min-height: 430px;
  margin-top: 36px;
  overflow: hidden;
  padding: 40px 48px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  border: 1px solid rgba(219, 232, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(30, 80, 160, 0.06);
}

.feature-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.eyebrow.green {
  color: #10a965;
}

.eyebrow.purple {
  color: #7c3aed;
}

.eyebrow.amber {
  color: #f59e0b;
}

.feature-copy h2,
.service-alerts h2,
.features-cta h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.12;
}

.feature-copy p,
.service-alerts p,
.features-cta p {
  max-width: 390px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  font-weight: 800;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  content: "✓";
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-size: 12px;
}

.check-list.green li::before {
  background: #20b46b;
}

.map-panel {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  background:
    linear-gradient(120deg, transparent 0 35%, rgba(47, 109, 246, 0.16) 35% 36%, transparent 36%),
    linear-gradient(30deg, transparent 0 42%, rgba(16, 185, 129, 0.14) 42% 44%, transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.72)),
    #eaf4ff;
  border-radius: 18px;
}

.realtime-story {
  min-height: 430px;
  align-items: center;
}

.feature-section-image,
.realtime-section-image {
  display: block;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 22px;
  box-shadow: none;
}

.feature-section-image img,
.realtime-section-image img {
  display: block;
  width: 100%;
  height: auto;
  margin-left: 0;
  object-fit: contain;
  transform: scale(1.035);
  transform-origin: center;
}

.nearby-stops-section-image {
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 22px;
}

.nearby-stops-section-image img {
  width: 100%;
  margin-left: 0;
}

.realtime-story .feature-copy {
  align-self: center;
}

.realtime-map {
  min-height: 340px;
  background:
    linear-gradient(120deg, transparent 0 34%, rgba(47, 109, 246, 0.09) 34% 35%, transparent 35%),
    linear-gradient(30deg, transparent 0 42%, rgba(16, 185, 129, 0.08) 42% 44%, transparent 44%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.55), rgba(238, 247, 255, 0.7)),
    #eef7ff;
}

.realtime-ui-panel {
  position: absolute;
  top: 50%;
  right: 38px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: min(520px, 74%);
  min-height: 292px;
  padding: 26px 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  transform: translateY(-50%);
}

.realtime-map::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: rgba(245, 250, 255, 0.7);
  pointer-events: none;
}

.map-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.24;
  background-image:
    linear-gradient(90deg, #bdd4f5 1px, transparent 1px),
    linear-gradient(#bdd4f5 1px, transparent 1px);
  background-size: 54px 54px;
}

.map-dot {
  position: absolute;
  top: 50%;
  left: 18%;
  z-index: 2;
  width: 26px;
  height: 26px;
  background: var(--blue);
  border: 6px solid #fff;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(47, 109, 246, 0.25);
}

.map-dot::before,
.map-dot::after {
  position: absolute;
  inset: -16px;
  content: "";
  border: 1px solid rgba(47, 109, 246, 0.16);
  border-radius: 50%;
}

.map-dot::after {
  inset: -30px;
  background: rgba(47, 109, 246, 0.06);
}

.transit-card-header {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 16px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.station-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: #edf5ff;
  border-radius: 12px;
}

.station-icon::before {
  width: 20px;
  height: 16px;
  content: "";
  border: 2px solid var(--blue);
  border-radius: 5px;
}

.station-icon::after {
  position: absolute;
  bottom: 10px;
  width: 14px;
  height: 2px;
  content: "";
  background: var(--blue);
  box-shadow: -5px 5px 0 -1px var(--blue), 5px 5px 0 -1px var(--blue);
}

.transit-card-header strong {
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
}

.station-arrow {
  color: #94a3b8;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.transit-arrivals {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.transit-arrival {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
}

.transit-arrival + .transit-arrival {
  padding-top: 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.07);
}

.route-pill,
.route-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  height: 30px;
  color: var(--blue);
  background: #fff;
  border: 2px solid rgba(43, 133, 216, 0.48);
  border-radius: 999px;
  font-size: 18px;
  font-weight: 900;
}

.route-pill::before {
  margin-right: 7px;
  content: "";
  width: 13px;
  height: 11px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.transit-arrival p {
  margin: 10px 0 0;
  color: #6b7280;
  font-size: 17px;
  font-weight: 800;
}

.arrival-time {
  display: grid;
  justify-items: end;
  gap: 10px;
  min-width: 142px;
}

.arrival-time strong {
  position: relative;
  color: var(--blue);
  font-size: 24px;
  line-height: 1;
}

.arrival-time strong::before {
  position: absolute;
  top: 6px;
  left: -28px;
  width: 16px;
  height: 16px;
  content: "";
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  border-radius: 0 12px 0 0;
  opacity: 0.45;
}

.arrival-time span {
  color: #858b98;
  font-size: 17px;
  font-weight: 800;
}

.arrival-time.orange strong {
  color: #f05a28;
}

.route-tags {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: auto;
  padding-top: 22px;
}

.route-tags span {
  min-width: 56px;
  height: 28px;
  font-size: 17px;
}

.route-tags em {
  color: #6b7280;
  font-size: 17px;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.features-main .realtime-story {
  grid-template-columns: 42% 58%;
  gap: 0;
  min-height: 520px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(219, 232, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(30, 80, 160, 0.06);
}

.features-main .realtime-story .feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 74px 28px 74px 52px;
}

.features-main .realtime-story .eyebrow {
  margin-bottom: 28px;
  color: #0866ff;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.features-main .realtime-story .feature-copy h2 {
  max-width: 450px;
  font-size: 39px;
  line-height: 1.16;
  letter-spacing: 0;
}

.features-main .realtime-story .feature-copy p {
  max-width: 390px;
  margin-top: 34px;
  color: #4a5575;
  font-size: 21px;
  line-height: 1.7;
}

.features-main .realtime-story .check-list {
  gap: 22px;
  margin-top: 46px;
  font-size: 19px;
}

.features-main .realtime-story .check-list li {
  padding-left: 42px;
}

.features-main .realtime-story .check-list li::before {
  top: -1px;
  width: 26px;
  height: 26px;
  font-size: 15px;
}

.features-main .realtime-map {
  height: 100%;
  min-height: 520px;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.42) 0%, rgba(238, 247, 255, 0.56) 100%),
    radial-gradient(circle at 23% 52%, rgba(47, 109, 246, 0.14) 0 0, transparent 17%),
    linear-gradient(118deg, transparent 0 31%, rgba(47, 109, 246, 0.08) 31.2% 31.8%, transparent 32%),
    linear-gradient(36deg, transparent 0 47%, rgba(16, 185, 129, 0.07) 47.2% 48.4%, transparent 48.8%),
    #eff8ff;
}

.features-main .realtime-map::before {
  opacity: 0.16;
  background-image:
    linear-gradient(104deg, transparent 0 18%, rgba(142, 198, 238, 0.28) 18.2% 18.8%, transparent 19%),
    linear-gradient(76deg, transparent 0 55%, rgba(142, 198, 238, 0.22) 55.2% 55.9%, transparent 56%),
    linear-gradient(90deg, #bdd4f5 1px, transparent 1px),
    linear-gradient(#bdd4f5 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 48px 48px, 48px 48px;
}

.features-main .realtime-map::after {
  background: rgba(247, 251, 255, 0.42);
}

.features-main .realtime-map .map-dot {
  top: 53%;
  left: 13%;
  width: 28px;
  height: 28px;
  border-width: 5px;
}

.features-main .realtime-map .map-dot::before {
  inset: -20px;
  background: rgba(47, 109, 246, 0.08);
  border: 0;
}

.features-main .realtime-map .map-dot::after {
  inset: -42px;
  background: rgba(47, 109, 246, 0.05);
  border: 0;
}

.features-main .realtime-ui-panel {
  right: 48px;
  width: 500px;
  min-height: 326px;
  padding: 28px 32px;
  border: 0;
  border-radius: 24px;
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.09);
}

.features-main .transit-card-header {
  grid-template-columns: 44px 1fr auto;
  gap: 18px;
  padding-bottom: 24px;
}

.features-main .station-icon {
  width: 44px;
  height: 44px;
  color: #fff;
  background: linear-gradient(180deg, #2f7bff 0%, #0866ff 100%);
  border-radius: 10px;
}

.features-main .station-icon::before {
  width: 20px;
  height: 16px;
  border-color: #fff;
}

.features-main .station-icon::after {
  background: #fff;
  box-shadow: -5px 5px 0 -1px #fff, 5px 5px 0 -1px #fff;
}

.features-main .transit-card-header strong {
  font-size: 26px;
}

.features-main .transit-arrivals {
  gap: 20px;
  margin-top: 20px;
}

.features-main .transit-arrival + .transit-arrival {
  padding-top: 20px;
}

.features-main .route-pill,
.features-main .route-tags span {
  min-width: 66px;
  height: 32px;
  border-color: #2174ff;
  font-size: 19px;
}

.features-main .transit-arrival p {
  margin-top: 12px;
  font-size: 18px;
}

.features-main .arrival-time {
  gap: 12px;
  min-width: 154px;
}

.features-main .arrival-time strong {
  font-size: 27px;
}

.features-main .arrival-time span {
  font-size: 17px;
}

.features-main .route-tags {
  gap: 10px;
  padding-top: 26px;
}

.features-main .route-tags span {
  min-width: 58px;
  height: 30px;
  font-size: 18px;
}

.features-main .route-tags em {
  font-size: 18px;
}

.features-main .realtime-story {
  grid-template-columns: 42% 58%;
  gap: 0;
  min-height: 640px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(219, 232, 255, 0.9);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(30, 80, 160, 0.06);
}

.features-main .realtime-story .feature-copy {
  justify-content: center;
  padding: 86px 20px 86px 52px;
}

.features-main .realtime-story .eyebrow {
  margin-bottom: 30px;
  color: #0866ff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
}

.features-main .realtime-story .feature-copy h2 {
  max-width: 470px;
  color: #050d3f;
  font-size: 42px;
  line-height: 1.16;
  letter-spacing: 0;
  white-space: pre-line;
}

.features-main .realtime-story .feature-copy p {
  max-width: 420px;
  margin-top: 34px;
  color: #4b5574;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.62;
}

.features-main .realtime-story .check-list {
  gap: 21px;
  margin-top: 48px;
  color: #050d3f;
  font-size: 20px;
  font-weight: 900;
}

.features-main .realtime-story .check-list li {
  padding-left: 48px;
}

.features-main .realtime-story .check-list li::before {
  top: 0;
  width: 28px;
  height: 28px;
  background: #1373ff;
  font-size: 16px;
}

.features-main .realtime-story .realtime-map {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-end;
  justify-content: center;
  min-height: 640px;
  padding: 58px 50px 58px 0;
  overflow: hidden;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, rgba(238, 247, 255, 0.48) 48%, rgba(247, 251, 255, 0.72) 100%),
    radial-gradient(circle at 23% 50%, rgba(47, 109, 246, 0.12) 0 0, transparent 18%),
    linear-gradient(104deg, transparent 0 31%, rgba(78, 147, 222, 0.13) 31.2% 31.9%, transparent 32.2%),
    linear-gradient(78deg, transparent 0 58%, rgba(78, 147, 222, 0.10) 58.2% 58.8%, transparent 59%),
    linear-gradient(36deg, transparent 0 46%, rgba(36, 180, 115, 0.10) 46.2% 47.2%, transparent 47.6%),
    #f2f9ff;
}

.features-main .realtime-story .realtime-map::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(90deg, #b9d4f8 1px, transparent 1px),
    linear-gradient(#b9d4f8 1px, transparent 1px),
    linear-gradient(116deg, transparent 0 18%, rgba(110, 180, 232, 0.48) 18.2% 18.7%, transparent 19%),
    linear-gradient(76deg, transparent 0 52%, rgba(110, 180, 232, 0.42) 52.2% 52.9%, transparent 53%);
  background-size: 52px 52px, 52px 52px, 100% 100%, 100% 100%;
}

.features-main .realtime-story .realtime-map::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(248, 252, 255, 0.46)),
    rgba(247, 251, 255, 0.24);
  pointer-events: none;
}

.features-main .realtime-story .map-dot {
  top: 51%;
  left: 22%;
  z-index: 2;
  width: 30px;
  height: 30px;
  border: 5px solid #fff;
  background: #1373ff;
  box-shadow: 0 16px 34px rgba(47, 109, 246, 0.26);
}

.features-main .realtime-story .map-dot::before {
  inset: -22px;
  background: rgba(47, 109, 246, 0.09);
  border: 0;
}

.features-main .realtime-story .map-dot::after {
  inset: -48px;
  background: rgba(47, 109, 246, 0.055);
  border: 0;
}

.arrival-station-card {
  position: relative;
  z-index: 2;
  width: min(590px, 86%);
  padding: 30px 34px 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(37, 99, 235, 0.06);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.arrival-station-header {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 20px;
  align-items: center;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.arrival-station-header strong {
  color: #050d3f;
  font-size: 29px;
  font-weight: 900;
  line-height: 1;
}

.arrival-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 24px 0;
}

.arrival-row + .arrival-row {
  border-top: 1px solid rgba(15, 23, 42, 0.07);
}

.arrival-row p {
  margin: 12px 0 0;
  color: #68718d;
  font-size: 19px;
  font-weight: 800;
}

.features-main .arrival-station-card .route-pill,
.features-main .arrival-station-card .route-tags span {
  min-width: 66px;
  height: 32px;
  color: #1373ff;
  background: #fff;
  border: 2px solid rgba(19, 115, 255, 0.58);
  border-radius: 999px;
  font-size: 19px;
  font-weight: 900;
}

.features-main .arrival-station-card .route-pill::before {
  width: 13px;
  height: 11px;
  margin-right: 7px;
}

.features-main .arrival-station-card .arrival-time {
  gap: 12px;
  min-width: 150px;
}

.features-main .arrival-station-card .arrival-time strong {
  color: #1373ff;
  font-size: 27px;
  font-weight: 900;
}

.features-main .arrival-station-card .arrival-time strong::before {
  top: 7px;
  left: -28px;
  width: 16px;
  height: 16px;
}

.features-main .arrival-station-card .arrival-time span {
  color: #68718d;
  font-size: 17px;
  font-weight: 800;
}

.features-main .arrival-station-card .arrival-time.orange strong {
  color: #f05a28;
}

.features-main .arrival-station-card .route-tags {
  gap: 11px;
  padding-top: 0;
}

.features-main .arrival-station-card .route-tags span {
  min-width: 59px;
  height: 30px;
  font-size: 18px;
}

.features-main .arrival-station-card .route-tags em {
  color: #68718d;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
}

.features-main .realtime-story {
  grid-template-columns: 38% 62%;
  min-height: 0;
  aspect-ratio: 3072 / 2048;
  background: #fff;
}

.features-main .realtime-story .feature-copy {
  padding: 0 34px 0 58px;
}

.features-main .realtime-story .feature-copy h2 {
  max-width: 430px;
  font-size: 40px;
}

.features-main .realtime-story .feature-copy p {
  max-width: 370px;
  font-size: 19px;
}

.features-main .realtime-story .check-list {
  margin-top: 50px;
  font-size: 19px;
}

.features-main .realtime-story .realtime-image-visual {
  position: relative;
  min-height: 0;
  height: 100%;
  padding: 0;
  overflow: hidden;
  background: #fff;
}

.features-main .realtime-story .realtime-image-visual::before,
.features-main .realtime-story .realtime-image-visual::after {
  display: none;
}

.features-main .realtime-story .realtime-image-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateZ(0);
}

.hybrid-feature {
  grid-template-columns: 38% 62%;
  gap: 0;
  min-height: 590px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(219, 232, 255, 0.9);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(30, 80, 160, 0.06);
}

.hybrid-feature.visual-first {
  grid-template-columns: 64% 36%;
}

.hybrid-feature .feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 62px 48px;
}

.hybrid-feature .feature-copy h2 {
  max-width: 480px;
  color: #050d3f;
  font-size: 44px;
  line-height: 1.14;
  white-space: pre-line;
}

.hybrid-feature .feature-copy h3 {
  margin: 24px 0 0;
  color: #0866ff;
  font-size: 27px;
  line-height: 1.18;
}

.hybrid-feature .feature-copy p {
  max-width: 430px;
  margin-top: 28px;
  color: #4b5574;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.58;
}

.hybrid-feature .check-list {
  gap: 20px;
  margin-top: 44px;
  color: #050d3f;
  font-size: 20px;
  font-weight: 900;
}

.hybrid-feature .check-list li {
  padding-left: 42px;
}

.hybrid-feature .check-list li::before {
  top: -1px;
  width: 26px;
  height: 26px;
  font-size: 15px;
}

.feature-visual {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: #fff;
}

.feature-visual::before {
  display: none;
}

.feature-visual img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateZ(0);
}

.feature-visual.crop-right img {
  transform: translateZ(0);
}

.smart-route-visual img {
  object-position: center;
}

.alerts-visual img,
.stop-details-visual img {
  object-position: center;
}

.nearby-stops-visual img {
  object-position: center;
}

.smart-route-story {
  min-height: 760px;
}

.alerts-story,
.nearby-stops-story,
.stop-details-story {
  min-height: 760px;
}

.alerts-story .feature-copy,
.stop-details-story .feature-copy {
  padding-left: 58px;
  padding-right: 28px;
}

.nearby-stops-story .feature-copy,
.smart-route-story .feature-copy {
  padding-left: 54px;
}

.feature-list {
  display: grid;
  gap: 28px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  align-items: center;
}

.feature-list strong {
  display: block;
  color: #050d3f;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.feature-list p {
  max-width: 340px;
  margin: 8px 0 0;
  color: #4b5574;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.feature-list-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: #0866ff;
  background: #ecf3ff;
  border-radius: 50%;
  font-size: 21px;
  font-weight: 900;
}

.feature-list-icon.orange {
  color: #ff5a18;
  background: #fff0e8;
}

.feature-list-icon.purple {
  color: #7c3aed;
  background: #f2eaff;
}

.feature-list-icon.blue,
.feature-list-icon.pale-blue {
  color: #0866ff;
  background: #edf4ff;
}

.feature-list-icon.green {
  color: #18a957;
  background: #eaf8ef;
}

.compact-list {
  gap: 12px;
  margin-top: 34px;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 42px;
  padding: 12px 22px;
  color: #0866ff;
  background: #edf4ff;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.feature-badge::before {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  content: "";
  background: #0866ff;
  border-radius: 6px;
  box-shadow: inset 0 0 0 6px #fff;
}

.features-page {
  background:
    linear-gradient(180deg, #f7fbff 0%, #ffffff 36%, #f8fbff 100%);
}

.features-page .features-main {
  padding: 0 0 96px;
  background:
    radial-gradient(circle at 14% 6%, rgba(11, 99, 255, 0.12), transparent 30rem),
    radial-gradient(circle at 88% 24%, rgba(16, 185, 129, 0.08), transparent 25rem),
    linear-gradient(180deg, #f6faff 0%, #ffffff 30%, #f8fbff 100%);
}

.features-page .features-main > .page-breadcrumb {
  display: none;
}

.features-page .feature-story,
.features-page .market-coverage-band,
.features-page .features-cta {
  width: min(var(--page-max), calc(100% - 48px));
}

.features-page .features-hero {
  position: relative;
  display: grid;
  grid-template-columns: 560px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  width: 100%;
  min-height: 852px;
  margin-top: 0;
  padding: 56px var(--page-pad) 106px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(11, 99, 255, 0.13), transparent 24rem),
    radial-gradient(circle at 92% 84%, rgba(16, 185, 129, 0.1), transparent 22rem),
    linear-gradient(180deg, #f8fbff 0%, #eef6ff 58%, #ffffff 100%);
}

.features-market-coverage-band {
  margin-top: 26px;
}

.features-page .features-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.56), transparent 46%),
    radial-gradient(circle at 82% 62%, rgba(11, 99, 255, 0.12), transparent 34rem);
  pointer-events: none;
}

.features-page .features-hero::after {
  position: absolute;
  right: -14%;
  bottom: -28%;
  width: 54%;
  aspect-ratio: 1;
  content: "";
  background: radial-gradient(circle, rgba(11, 99, 255, 0.13), transparent 68%);
  pointer-events: none;
}

.features-page .features-hero-copy,
.features-page .features-hero-visual {
  position: relative;
  z-index: 1;
}

.features-page .features-hero-copy {
  max-width: 600px;
  align-self: start;
  padding-top: 35px;
}

.features-page .features-hero h1 {
  max-width: 600px;
  margin: 0;
  color: #050d3f;
  font-size: 58px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.features-page .features-hero-copy > p {
  max-width: 500px;
  margin: 24px 0 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
}

.features-page .features-hero .store-buttons {
  margin-top: 30px;
}

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

.features-hero-points li {
  min-height: 118px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(219, 232, 255, 0.86);
  border-radius: 16px;
  box-shadow: 0 18px 46px rgba(18, 52, 116, 0.08);
}

.features-hero-points strong,
.features-hero-points span {
  display: block;
}

.features-hero-points strong {
  color: #061552;
  font-size: 15px;
  line-height: 1.2;
}

.features-hero-points span {
  margin-top: 10px;
  color: #5c6688;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.features-page .features-hero-visual {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
}

.hero-feature-cloud {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 654px);
  isolation: isolate;
}

.hero-feature-cloud::before {
  position: absolute;
  inset: 42px 28px;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(11, 99, 255, 0.16) 1px, transparent 1px),
    linear-gradient(rgba(11, 99, 255, 0.1) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 50% 50%, #000 0 42%, transparent 72%);
  opacity: 0.62;
}

.hero-feature-card {
  min-height: 178px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(219, 232, 255, 0.88);
  border-radius: 22px;
  box-shadow:
    0 24px 60px rgba(18, 52, 116, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.hero-feature-card-main {
  grid-column: span 2;
  min-height: 210px;
  padding: 28px;
  background:
    radial-gradient(circle at 82% 16%, rgba(11, 99, 255, 0.14), transparent 16rem),
    rgba(255, 255, 255, 0.84);
}

.hero-feature-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: #0b63ff;
  background: #edf5ff;
  border: 1px solid rgba(167, 199, 255, 0.7);
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(11, 99, 255, 0.1);
}

.hero-feature-card:nth-child(3) .hero-feature-icon {
  color: #ff4d22;
  background: #fff1ec;
  border-color: rgba(255, 158, 123, 0.55);
}

.hero-feature-card:nth-child(4) .hero-feature-icon,
.hero-feature-card:nth-child(5) .hero-feature-icon {
  color: #14a866;
  background: #edfdf5;
  border-color: rgba(126, 218, 170, 0.56);
}

.hero-feature-card strong {
  display: block;
  max-width: 380px;
  color: #061552;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
}

.hero-feature-card p {
  max-width: 430px;
  margin: 12px 0 0;
  color: #526080;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
}

.hero-feature-card-main strong {
  font-size: 32px;
}

.hero-feature-card-main p {
  font-size: 16px;
}

.hero-feature-icon::before,
.hero-feature-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.hero-feature-icon.hero-icon-clock::before {
  width: 25px;
  height: 25px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.hero-feature-icon.hero-icon-clock::after {
  width: 10px;
  height: 10px;
  border-bottom: 3px solid currentColor;
  border-left: 3px solid currentColor;
  transform: translate(-30%, -58%);
}

.hero-feature-icon.hero-icon-routes::before {
  width: 28px;
  height: 28px;
  border: 3px solid currentColor;
  border-radius: 9px;
}

.hero-feature-icon.hero-icon-routes::after {
  width: 20px;
  height: 20px;
  background:
    radial-gradient(circle at 2px 2px, currentColor 0 2px, transparent 3px),
    radial-gradient(circle at 18px 2px, currentColor 0 2px, transparent 3px),
    radial-gradient(circle at 18px 18px, currentColor 0 2px, transparent 3px),
    radial-gradient(circle at 2px 18px, currentColor 0 2px, transparent 3px);
}

.hero-feature-icon.hero-icon-alert::before {
  width: 22px;
  height: 22px;
  background: currentColor;
  border-radius: 50%;
}

.hero-feature-icon.hero-icon-alert::after {
  width: 11px;
  height: 4px;
  margin-top: 16px;
  background: currentColor;
  border-radius: 999px;
}

.hero-feature-icon.hero-icon-location::before {
  width: 23px;
  height: 23px;
  background: currentColor;
  border-radius: 50% 50% 50% 8px;
  transform: translate(-50%, -58%) rotate(-45deg);
}

.hero-feature-icon.hero-icon-location::after {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}

.hero-feature-icon.hero-icon-stop-board::before {
  width: 28px;
  height: 22px;
  border: 3px solid currentColor;
  border-radius: 8px;
}

.hero-feature-icon.hero-icon-stop-board::after {
  width: 20px;
  height: 3px;
  margin-top: 15px;
  background: currentColor;
  border-radius: 999px;
}

.features-page .feature-story {
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.features-page .feature-story:hover {
  border-color: rgba(187, 211, 248, 0.96);
  box-shadow:
    0 42px 105px rgba(18, 52, 116, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transform: translateY(-2px);
}

.features-page .feature-story {
  position: relative;
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 5vw, 78px);
  min-height: 0;
  margin-top: clamp(52px, 7vw, 96px);
  padding: clamp(42px, 5.6vw, 76px);
  overflow: visible;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.92));
  border: 1px solid rgba(218, 230, 250, 0.88);
  border-radius: 32px;
  box-shadow:
    0 34px 90px rgba(18, 52, 116, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.features-page .feature-story::before {
  position: absolute;
  inset: 16px;
  z-index: 0;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  pointer-events: none;
}

.features-page .feature-copy {
  align-self: center;
  padding: 0;
}

.features-page .feature-copy h2,
.features-page .hybrid-feature .feature-copy h2 {
  max-width: 560px;
  color: #061552;
  font-size: clamp(36px, 3.2vw, 46px);
  line-height: 1.1;
  letter-spacing: 0;
}

.features-page .features-main .realtime-story .feature-copy h2 {
  max-width: 560px;
  font-size: clamp(36px, 3.2vw, 46px);
  line-height: 1.1;
  white-space: normal;
}

.features-page .feature-copy h3,
.features-page .hybrid-feature .feature-copy h3 {
  margin-top: 18px;
  color: var(--blue);
  font-size: clamp(21px, 1.7vw, 26px);
  line-height: 1.18;
}

.features-page .feature-copy p,
.features-page .hybrid-feature .feature-copy p {
  max-width: 500px;
  margin-top: 28px;
  color: #465579;
  font-size: clamp(18px, 1.65vw, 24px);
  font-weight: 650;
  line-height: 1.62;
}

.features-page .eyebrow,
.features-page .feature-badge {
  margin-bottom: 28px;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.features-page .feature-badge {
  padding: 14px 24px;
  background: rgba(237, 244, 255, 0.82);
}

.features-page .check-list,
.features-page .hybrid-feature .check-list,
.features-page .feature-list,
.features-page .compact-list {
  gap: 12px;
  margin-top: 34px;
}

.features-page .check-list,
.features-page .hybrid-feature .check-list {
  font-size: clamp(18px, 1.55vw, 22px);
}

.features-page .feature-list li {
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(219, 232, 255, 0.82);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(18, 52, 116, 0.055);
}

.features-page .feature-list li > div {
  padding-top: 0;
}

.features-page .feature-list strong,
.features-page .hybrid-feature .feature-list strong {
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.2;
}

.features-page .feature-list p,
.features-page .hybrid-feature .feature-list p {
  max-width: 340px;
  margin-top: 6px;
  color: #53607f;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.42;
}

.features-page .feature-list-icon {
  position: relative;
  width: 42px;
  height: 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 36% 30%, rgba(255, 255, 255, 0.95), transparent 30%),
    color-mix(in srgb, currentColor 12%, #ffffff);
  border: 1px solid color-mix(in srgb, currentColor 12%, transparent);
  box-shadow:
    0 10px 22px color-mix(in srgb, currentColor 12%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font-size: 0;
  transform: translateY(0);
}

.features-page .feature-list-icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.features-page .feature-list-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.features-page .icon-alert::before {
  width: 20px;
  height: 20px;
  background: currentColor;
  border-radius: 50%;
}

.features-page .icon-alert::after {
  width: 10px;
  height: 4px;
  margin-top: 15px;
  background: currentColor;
  border-radius: 999px;
}

.features-page .icon-pin::before,
.features-page .icon-location::before {
  width: 21px;
  height: 21px;
  background: currentColor;
  border-radius: 50% 50% 50% 8px;
  transform: translate(-50%, -58%) rotate(-45deg);
}

.features-page .icon-pin::after,
.features-page .icon-location::after {
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
}

.features-page .icon-routes::before {
  width: 28px;
  height: 28px;
  border: 2px solid currentColor;
  background: transparent;
  border-radius: 8px;
}

.features-page .icon-routes::after {
  width: 20px;
  height: 20px;
  background:
    radial-gradient(circle at 2px 2px, currentColor 0 2px, transparent 3px),
    radial-gradient(circle at 18px 2px, currentColor 0 2px, transparent 3px),
    radial-gradient(circle at 18px 18px, currentColor 0 2px, transparent 3px),
    radial-gradient(circle at 2px 18px, currentColor 0 2px, transparent 3px);
}

.features-page .icon-clock::before {
  width: 25px;
  height: 25px;
  border: 2px solid currentColor;
  background: transparent;
  border-radius: 50%;
}

.features-page .icon-clock::after {
  width: 10px;
  height: 10px;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: translate(-31%, -56%);
}

.features-page .realtime-story,
.features-page .hybrid-feature,
.features-page .hybrid-feature.visual-first,
.features-page .smart-route-story,
.features-page .alerts-story,
.features-page .nearby-stops-story,
.features-page .stop-details-story {
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
  aspect-ratio: auto;
  min-height: 0;
}

.features-page .hybrid-feature.visual-first {
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
}

.features-page .realtime-story .feature-copy,
.features-page .hybrid-feature .feature-copy,
.features-page .alerts-story .feature-copy,
.features-page .stop-details-story .feature-copy,
.features-page .nearby-stops-story .feature-copy,
.features-page .smart-route-story .feature-copy {
  padding: 0;
}

.features-page .realtime-image-visual,
.features-page .feature-visual {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 0;
  padding: clamp(10px, 1.4vw, 20px);
  overflow: visible;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(237, 245, 255, 0.52));
  border: 1px solid rgba(220, 232, 252, 0.82);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(19, 54, 120, 0.1);
}

.features-page .realtime-image-visual img,
.features-page .feature-visual img {
  position: static;
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  border-radius: 20px;
  transform: none;
  filter: saturate(1.03) contrast(1.01);
}

.features-page .realtime-image-visual::before,
.features-page .realtime-image-visual::after,
.features-page .feature-visual::before,
.features-page .feature-visual::after {
  display: none;
}

.features-page .realtime-story .realtime-image-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.features-page .stop-details-story .feature-copy h2 {
  font-size: clamp(36px, 3.2vw, 46px);
}

.arrival-card {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 10px;
  align-items: center;
  width: min(360px, 82%);
  margin: 34px 36px 0 auto;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(219, 232, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(6, 21, 82, 0.08);
}

.arrival-card b,
.arrival-card strong {
  font-size: 22px;
}

.arrival-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.arrival-card strong {
  color: var(--blue);
}

.arrival-card.green strong {
  color: #16a35f;
}

.arrival-card.line b {
  font-size: 20px;
}

.split-phone {
  grid-template-columns: 1.1fr 0.9fr;
}

.phone-stage {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.phone-stage::before {
  position: absolute;
  inset: 30px 0 auto;
  height: 280px;
  content: "";
  background: radial-gradient(circle, rgba(47, 109, 246, 0.1), transparent 70%);
}

.section-phone {
  margin: 0 auto;
  width: 245px;
}

.alert-flow {
  grid-template-columns: 0.8fr 1.2fr;
  background: linear-gradient(90deg, #fff 0%, #f7f1ff 100%);
}

.flow-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.flow-steps::before {
  position: absolute;
  top: 64px;
  right: 14%;
  left: 14%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.28), transparent);
}

.flow-steps article {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.flow-steps span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: #7c3aed;
  background: #efe5ff;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 900;
}

.flow-steps p {
  max-width: 150px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.stop-map {
  min-height: 300px;
}

.transit-pin {
  position: absolute;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--blue);
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(6, 21, 82, 0.12);
  font-weight: 900;
}

.transit-pin.bus {
  top: 58px;
  left: 24%;
  color: #16a35f;
}

.transit-pin.train {
  top: 142px;
  left: 42%;
}

.transit-pin.stop {
  top: 72px;
  right: 18%;
}

.transit-pin.purple {
  right: 30%;
  bottom: 58px;
  color: #7c3aed;
}

.map-dot.center {
  top: 48%;
  left: 58%;
}

.coverage-band,
.service-alerts,
.features-cta {
  margin-top: 36px;
  padding: 38px 44px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid rgba(219, 232, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(30, 80, 160, 0.06);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.coverage-grid article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 3px 18px;
  align-items: center;
}

.metric-icon,
.alert-icon,
.cta-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--blue);
  background: #eaf3ff;
  border-radius: 16px;
  font-weight: 900;
}

.cta-icon {
  width: 72px;
  height: 72px;
  padding: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(219, 232, 255, 0.9);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(11, 99, 255, 0.14);
}

.cta-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.metric-icon {
  grid-row: 1 / 3;
}

.metric-icon.green {
  color: #16a35f;
  background: #e8f8ef;
}

.metric-icon.purple {
  color: #7c3aed;
  background: #f1e8ff;
}

.metric-icon.amber {
  color: #f59e0b;
  background: #fff4dc;
}

.coverage-grid b {
  font-size: 28px;
}

.coverage-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.service-alerts {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: center;
}

.alert-list {
  display: grid;
  gap: 16px;
}

.alert-list article {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(219, 232, 255, 0.9);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(6, 21, 82, 0.06);
}

.alert-icon.red {
  color: #ef4444;
  background: #fee2e2;
}

.alert-icon.amber {
  color: #f59e0b;
  background: #fff4dc;
}

.alert-list small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 600;
}

.alert-list strong {
  padding: 6px 10px;
  color: #ef4444;
  background: #fee2e2;
  border-radius: 999px;
  font-size: 12px;
}

.features-cta {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 34px;
}

.features-cta h2 {
  font-size: 28px;
}

.features-cta p {
  margin-top: 8px;
}

.about-main {
  padding-bottom: 1px;
  background:
    radial-gradient(circle at 70% 5%, rgba(47, 109, 246, 0.13), transparent 32rem),
    radial-gradient(circle at 20% 16%, rgba(16, 185, 129, 0.1), transparent 24rem),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 42%, #f8fbff 100%);
}

.about-hero,
.about-numbers,
.about-intel,
.about-belief,
.about-cta {
  width: min(1160px, calc(100% - 64px));
  margin-right: auto;
  margin-left: auto;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(410px, 0.92fr);
  gap: 76px;
  align-items: center;
  min-height: 560px;
  padding: 44px 0 54px;
}

.about-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: #050d3f;
  font-size: clamp(36px, 3.15vw, 44px);
  line-height: 1.14;
  white-space: nowrap;
}

.about-hero-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.72;
}

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

.about-hero-copy .button,
.about-hero-copy .text-link,
.about-cta-actions .button,
.about-cta-actions .text-link {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 9px;
}

.about-cta-actions .text-link[href*="#download"] {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
}

.about-hero-copy .eyebrow {
  margin-bottom: 22px;
}

.about-hero-lede {
  max-width: 560px;
  margin-top: 56px;
  color: #1b45a8;
  font-size: 18px;
  font-weight: 750;
  line-height: 1.62;
}

.about-hero-copy [data-i18n="about.hero.body"] {
  margin-top: 24px;
}

.about-orbit {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 440px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(16, 185, 129, 0.08), transparent 15rem),
    radial-gradient(circle at 86% 16%, rgba(11, 99, 255, 0.12), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.94));
  border: 1px solid rgba(219, 232, 255, 0.9);
  border-radius: 30px;
  box-shadow: 0 34px 92px rgba(14, 74, 175, 0.08);
}

.about-orbit::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.36;
  background-image:
    linear-gradient(90deg, #cfe2ff 1px, transparent 1px),
    linear-gradient(#cfe2ff 1px, transparent 1px);
  background-size: 56px 56px;
}

.network-panel {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 28px;
  width: min(82%, 460px);
  padding: 34px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(219, 232, 255, 0.96);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(6, 21, 82, 0.08);
  backdrop-filter: blur(18px);
}

.network-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}

.network-panel-header span,
.network-insight span,
.network-kpis small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.network-panel-header strong {
  color: #050d3f;
  font-size: 20px;
  line-height: 1.1;
}

.network-signal {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  align-items: end;
  height: 142px;
  padding: 0 4px;
}

.network-signal span {
  display: block;
  min-height: 34px;
  background: linear-gradient(180deg, rgba(11, 99, 255, 0.72), rgba(16, 185, 129, 0.16));
  border-radius: 999px 999px 12px 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.network-signal span:nth-child(1) {
  height: 46%;
}

.network-signal span:nth-child(2) {
  height: 72%;
}

.network-signal span:nth-child(3) {
  height: 58%;
}

.network-signal span:nth-child(4) {
  height: 88%;
}

.network-signal span:nth-child(5) {
  height: 64%;
}

.network-kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.network-kpis article {
  padding: 20px;
  background: rgba(246, 250, 255, 0.88);
  border: 1px solid rgba(219, 232, 255, 0.95);
  border-radius: 18px;
}

.network-kpis b {
  display: block;
  margin-bottom: 7px;
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
}

.network-insight {
  display: grid;
  gap: 9px;
  padding-top: 24px;
  border-top: 1px solid rgba(219, 232, 255, 0.95);
}

.network-insight b {
  color: #050d3f;
  font-size: 22px;
  line-height: 1.18;
}

.about-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.about-numbers article,
.audience-card,
.about-belief {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(219, 232, 255, 0.9);
  box-shadow: 0 24px 64px rgba(14, 74, 175, 0.065);
  backdrop-filter: blur(16px);
}

.about-numbers article {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 190px;
  padding: 30px 32px;
  overflow: hidden;
  border-radius: 22px;
}

.about-numbers article::before {
  position: absolute;
  top: 0;
  right: 32px;
  left: 32px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, rgba(11, 99, 255, 0.72), rgba(16, 185, 129, 0.32));
  border-radius: 999px;
}

.about-numbers article > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-numbers b {
  display: block;
  margin-top: 26px;
  color: #050d3f;
  font-size: clamp(44px, 4vw, 58px);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: 0;
}

.about-numbers p {
  max-width: 290px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.55;
}

.about-intel {
  margin-top: 104px;
}

.about-intel .section-heading {
  align-items: end;
  margin-bottom: 30px;
}

.about-intel .section-heading h2 {
  max-width: 540px;
  color: #050d3f;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}

.about-intel .section-heading p {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.72;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 0;
}

.audience-card {
  min-height: 610px;
  overflow: hidden;
  padding: 56px;
  border-radius: 26px;
}

.audience-card h3 {
  max-width: 490px;
  margin: 0;
  color: #050d3f;
  font-size: 36px;
  line-height: 1.12;
}

.audience-card > p {
  max-width: 520px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.72;
}

.commuters-card {
  background:
    radial-gradient(circle at 88% 18%, rgba(16, 185, 129, 0.13), transparent 15rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 252, 249, 0.92));
}

.cities-card {
  background:
    radial-gradient(circle at 86% 16%, rgba(124, 58, 237, 0.1), transparent 15rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 247, 255, 0.92));
}

.audience-card .feature-list {
  gap: 22px;
  margin-top: 42px;
}

.audience-card .feature-list li {
  grid-template-columns: 58px 1fr;
  gap: 18px;
}

.audience-card .feature-list-icon {
  width: 52px;
  height: 52px;
  font-size: 16px;
}

.audience-card .feature-list p {
  max-width: 380px;
}

.about-belief {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 72px;
  align-items: start;
  margin-top: 104px;
  padding: 64px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(11, 99, 255, 0.08), transparent 22rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(247, 251, 255, 0.94)),
    #fff;
}

.belief-copy {
  position: sticky;
  top: 118px;
}

.about-belief h2 {
  max-width: 460px;
  margin: 0;
  color: #050d3f;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.1;
}

.about-belief p {
  max-width: 470px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.72;
}

.belief-grid {
  display: grid;
  gap: 18px;
}

.belief-grid article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 8px 24px;
  align-items: start;
  padding: 26px 0;
  border-top: 1px solid rgba(219, 232, 255, 0.95);
}

.belief-grid article:first-child {
  border-top: 0;
  padding-top: 0;
}

.belief-grid span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--blue);
  background: #eef5ff;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 950;
}

.belief-grid h3 {
  margin: 0;
  color: #050d3f;
  font-size: 22px;
  line-height: 1.2;
}

.belief-grid p {
  grid-column: 2;
  max-width: 520px;
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.58;
}

.about-cta {
  grid-template-columns: 72px 1fr auto;
  margin-top: 56px;
  padding: 44px 48px;
}

.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

@media (max-width: 1180px) {
  .site-header {
    padding: 0 4vw;
  }

  .desktop-nav {
    gap: 22px;
  }

  .hero {
    padding-inline: 4vw;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 28px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .phone-left {
    left: 24%;
  }

  .phone-right {
    left: 49%;
  }

  .feature-panel {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-panel article + article {
    border-left: 0;
  }

  .feature-panel article {
    border-top: 1px solid var(--line);
  }

  .city-grid,
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .city-directory-hero,
  .city-hub-hero,
  .city-seo-band,
  .city-service-band {
    grid-template-columns: 1fr;
  }

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

  .city-directory-card.featured {
    grid-column: 1 / -1;
  }

  .city-priority-grid,
  .city-content-split,
  .city-update-list,
  .coverage-model-list {
    grid-template-columns: 1fr;
  }

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

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

  .stats-band,
  .commuter-band,
  .site-footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-hero,
  .about-belief,
  .about-cta {
    grid-template-columns: 1fr;
  }

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

  .about-orbit {
    min-height: 430px;
  }

  .about-cta-actions {
    justify-content: flex-start;
  }

  .faq-hero {
    gap: 34px;
    padding: 54px 42px;
  }

  .faq-hero-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-hero-visual {
    max-width: 620px;
  }

  .faq-hero-summary {
    grid-template-columns: 1fr;
  }

  .blog-hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 54px 42px;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-toc {
    position: static;
    order: -1;
  }

  .blog-hero-visual {
    max-width: 560px;
  }

  .featured-article {
    grid-template-columns: 1fr;
  }

  .featured-copy {
    padding: 4px 10px 18px;
  }

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

  .faq-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq-sidebar {
    position: static;
    display: flex;
    flex-wrap: wrap;
  }

  .features-page .feature-story,
  .features-page .market-coverage-band,
  .features-page .features-cta {
    width: calc(100% - 48px);
  }

  .features-page .features-hero {
    grid-template-columns: 1fr;
    width: 100%;
    min-height: 0;
  }

  .features-page .features-hero-copy {
    max-width: 760px;
    padding-top: 0;
  }

  .features-page .features-hero-visual {
    min-height: 520px;
    justify-content: flex-start;
  }

  .hero-feature-cloud {
    width: min(100%, 680px);
  }

  .features-page .feature-story,
  .features-page .realtime-story,
  .features-page .hybrid-feature,
  .features-page .hybrid-feature.visual-first {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .features-page .hybrid-feature.visual-first .feature-visual {
    order: 2;
  }

  .features-page .hybrid-feature.visual-first .feature-copy {
    order: 1;
  }

  .features-page .feature-copy h2,
  .features-page .hybrid-feature .feature-copy h2 {
    max-width: 680px;
  }

  .features-page .feature-copy p,
  .features-page .hybrid-feature .feature-copy p {
    max-width: 620px;
  }
}

@media (max-width: 820px) {
  .desktop-nav,
  .header-actions .button.small {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header {
    min-height: 66px;
    padding: 0 18px;
  }

  .brand {
    font-size: 23px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .language-picker select {
    width: 108px;
  }

  .mobile-nav {
    position: sticky;
    top: 66px;
    z-index: 19;
    flex-direction: column;
    gap: 12px;
    padding: 16px 22px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    font-weight: 800;
  }

  .mobile-nav.open {
    display: flex;
  }

  .download-dialog {
    display: none;
  }

  .floating-cta {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    width: 150px;
    height: 52px;
    min-height: 52px;
    max-height: 52px;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 8px;
    padding: 9px 10px;
    border-radius: 999px;
    overflow: hidden;
    transform-origin: right bottom;
    transition:
      opacity 0.24s ease,
      transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
      width 0.38s cubic-bezier(0.22, 1, 0.36, 1),
      height 0.38s cubic-bezier(0.22, 1, 0.36, 1),
      min-height 0.38s cubic-bezier(0.22, 1, 0.36, 1),
      padding 0.38s cubic-bezier(0.22, 1, 0.36, 1),
      border-radius 0.38s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.28s ease;
  }

  .floating-cta::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
      radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.9), transparent 34%),
      linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 48%);
    opacity: 0.55;
    pointer-events: none;
  }

  .floating-cta.is-visible.is-scrolling {
    width: 44px;
    height: 44px;
    min-height: 44px;
    max-height: 44px;
    grid-template-columns: 28px 0;
    padding: 7px;
    gap: 0;
    border-radius: 999px;
    pointer-events: none;
    transform: translate3d(5px, 7px, 0) scale(0.94);
    box-shadow:
      0 14px 32px rgba(6, 21, 82, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.74);
    transition:
      opacity 0.14s ease,
      transform 0.2s cubic-bezier(0.32, 0.72, 0, 1),
      width 0.18s cubic-bezier(0.32, 0.72, 0, 1),
      height 0.18s cubic-bezier(0.32, 0.72, 0, 1),
      min-height 0.18s cubic-bezier(0.32, 0.72, 0, 1),
      padding 0.18s cubic-bezier(0.32, 0.72, 0, 1),
      border-radius 0.18s ease,
      box-shadow 0.16s ease;
  }

  .floating-cta.is-visible.is-scrolling .floating-cta-copy {
    width: 0;
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    transform: translate3d(10px, 0, 0) scale(0.96);
    transition:
      max-width 0.16s ease,
      opacity 0.12s ease,
      transform 0.16s ease;
  }

  .floating-cta.is-visible.is-scrolling .floating-cta-icon {
    box-shadow: 0 8px 18px rgba(6, 21, 82, 0.12);
  }

  .floating-cta-icon {
    width: 30px;
    height: 30px;
    border-radius: 12px;
  }

  .floating-cta-copy {
    max-width: 88px;
    overflow: hidden;
    white-space: nowrap;
    transition:
      max-width 0.36s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.24s ease 0.08s,
      transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .floating-cta-copy small {
    font-size: 9px;
    white-space: nowrap;
  }

  .floating-cta-copy strong {
    font-size: 12px;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    padding: 28px 18px 20px;
  }

  .hero h1 {
    margin-top: 28px;
    font-size: 48px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-visual {
    min-height: 420px;
    margin-top: 12px;
  }

  .hero-skyline {
    display: none;
  }

  .phone {
    width: 205px;
    height: 380px;
  }

  .phone-left {
    left: 7%;
  }

  .phone-right {
    left: 42%;
  }

  .feature-panel,
  .stats-band,
  .market-coverage-band,
  .commuter-band,
  .faq-section,
  .section,
  .site-footer {
    width: calc(100% - 28px);
  }

  .feature-panel,
  .stats-band,
  .market-coverage-band,
  .commuter-band,
  .faq-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .coverage-chips::before {
    display: none;
  }

  .coverage-chips span {
    min-height: 46px;
    padding: 0 10px 0 24px;
    justify-content: flex-start;
    text-align: left;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(219, 232, 255, 0.72);
    border-radius: 8px;
  }

  .coverage-chips span::before {
    top: 50%;
    left: 12px;
    width: 7px;
    height: 7px;
    box-shadow: none;
    transform: translateY(-50%);
  }

  .feature-panel article {
    min-height: 0;
    padding: 22px 18px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .city-grid {
    display: flex;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .city-card {
    flex: 0 0 245px;
    scroll-snap-align: start;
  }

  .stats-band,
  .market-coverage-band,
  .commuter-band {
    padding: 24px 20px;
  }

  .about-hero,
  .about-numbers,
  .about-intel,
  .about-belief,
  .about-cta {
    width: calc(100% - 28px);
  }

  .about-hero {
    gap: 24px;
    padding-top: 38px;
  }

  .about-numbers,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .about-intel .section-heading {
    align-items: flex-start;
  }

  .audience-card,
  .about-belief {
    min-height: 0;
    padding: 28px 22px;
  }

  .belief-copy {
    position: static;
  }

  .belief-grid article {
    grid-template-columns: 58px 1fr;
    gap: 8px 18px;
  }

  .belief-grid p {
    grid-column: 1 / -1;
  }

  .about-cta {
    grid-template-columns: 1fr;
  }

  .faq-main {
    padding-top: 18px;
  }

  .faq-hero,
  .faq-content,
  .faq-cta {
    width: calc(100% - 28px);
  }

  .blog-main {
    padding-top: 18px;
  }

  .blog-hero,
  .blog-featured,
  .blog-content,
  .blog-cta,
  .article-hero,
  .article-layout,
  .article-related {
    width: calc(100% - 28px);
  }

  .blog-hero {
    min-height: 0;
    padding: 38px 22px;
    border-radius: 18px;
  }

  .article-main {
    padding-top: 18px;
  }

  .article-hero,
  .article-body,
  .article-related {
    padding: 28px 22px;
    border-radius: 18px;
  }

  .article-hero h1 {
    font-size: 38px;
  }

  .article-hero p {
    font-size: 16px;
  }

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

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

  .blog-topic-row {
    margin-top: 24px;
  }

  .blog-signal-card {
    padding: 22px;
  }

  .blog-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .blog-section-heading p {
    max-width: 640px;
  }

  .faq-hero {
    min-height: 0;
    padding: 38px 22px;
    border-radius: 18px;
  }

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

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

  .faq-topic-row {
    margin-top: 24px;
  }

  .faq-hero-visual {
    padding: 18px;
  }

  .faq-visual-list article {
    padding: 14px;
  }

  .faq-group {
    padding: 22px;
  }

  .faq-sidebar a {
    min-height: 40px;
  }

  .faq-item {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 0 14px;
    padding: 18px;
  }

  .faq-item::before {
    width: 32px;
    height: 32px;
    border-radius: 9px;
  }

  .faq-group-header h2 {
    font-size: 23px;
  }

  .transport-illustration {
    height: 160px;
  }

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

  .blog-page-grid {
    grid-template-columns: 1fr;
  }

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

  .features-page .features-main {
    padding-bottom: 54px;
  }

  .features-page .feature-story,
  .features-page .market-coverage-band,
  .features-page .features-cta {
    width: calc(100% - 28px);
  }

  .features-page .features-hero {
    gap: 26px;
    padding: 34px 22px;
    width: 100%;
    border-radius: 0;
  }

  .features-page .features-hero::before {
    inset: 10px;
    border-radius: 18px;
  }

  .features-page .features-hero h1 {
    font-size: 40px;
    line-height: 1.08;
  }

  .features-page .features-hero-copy > p {
    font-size: 17px;
  }

  .features-page .features-hero .store-buttons {
    margin-top: 26px;
  }

  .features-hero-points {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 28px;
  }

  .features-hero-points li {
    min-height: 0;
    padding: 16px;
  }

  .features-page .features-hero-visual {
    min-height: 0;
  }

  .hero-feature-cloud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .hero-feature-card {
    min-height: 150px;
    padding: 18px;
  }

  .hero-feature-card-main {
    min-height: 170px;
    padding: 22px;
  }

  .hero-feature-card strong {
    font-size: 18px;
  }

  .hero-feature-card-main strong {
    font-size: 24px;
  }

  .hero-feature-card p {
    font-size: 13px;
  }

  .features-page .feature-story {
    margin-top: 42px;
    padding: 28px 22px;
    border-radius: 24px;
  }

  .features-page .feature-story::before {
    inset: 10px;
    border-radius: 18px;
  }

  .features-page .realtime-image-visual,
  .features-page .feature-visual {
    padding: 8px;
    border-radius: 20px;
  }

  .features-page .realtime-image-visual img,
  .features-page .feature-visual img {
    border-radius: 15px;
  }

  .features-page .feature-list {
    gap: 12px;
  }

  .features-page .feature-list li {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .features-page .feature-list-icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 560px) {
  main,
  .hero,
  .hero-inner,
  .hero-copy,
  .feature-panel,
  .feature-panel article {
    max-width: 100%;
    min-width: 0;
  }

  .site-header {
    gap: 10px;
  }

  .brand span:last-child {
    font-size: 21px;
  }

  .language-picker svg {
    display: none;
  }

  .language-picker select {
    width: 100px;
    font-size: 13px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .store-buttons {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: min(100%, 260px);
  }

  .store-badge {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding-inline: 10px;
  }

  .store-badge b {
    font-size: 16px;
  }

  .store-badge small {
    font-size: 8px;
  }

  .store-badge svg {
    width: 28px;
    height: 28px;
  }

  .store-badge[href*="apps.apple.com"] svg,
  .store-badge[href*="play.google.com"] svg {
    width: 30px;
    height: 30px;
  }

  .button.primary[href*="#download"],
  .text-link[href*="#download"] {
    min-height: 44px;
    padding-inline: 14px;
  }

  .download-dialog-panel {
    padding: 22px 18px;
  }

  .download-dialog-heading {
    align-items: flex-start;
  }

  .download-dialog h2 {
    font-size: 24px;
  }

  .download-qr-grid {
    grid-template-columns: 1fr;
  }

  .feature-panel article {
    overflow: hidden;
  }

  .feature-panel p {
    max-width: 300px;
    word-break: break-all;
    line-break: anywhere;
    white-space: normal;
  }

  .hero-visual {
    min-height: 360px;
  }

  .phone {
    width: 178px;
    height: 330px;
    padding: 10px;
    border-radius: 30px;
  }

  .phone-screen {
    padding: 20px 12px 12px;
    border-radius: 22px;
  }

  .phone-left {
    left: -2%;
  }

  .phone-right {
    left: 39%;
  }

  .trip-card {
    padding: 11px;
  }

  .arrival-list li:nth-child(n + 4),
  .tabs span:nth-child(n + 3) {
    display: none;
  }

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

  .stats-band article {
    grid-template-columns: 56px 1fr;
  }

  .about-hero-copy h1 {
    font-size: 36px;
    line-height: 1.08;
    white-space: normal;
  }

  .about-hero-lede {
    margin-top: 40px;
    font-size: 18px;
  }

  .about-orbit {
    min-height: 420px;
  }

  .network-panel {
    width: calc(100% - 28px);
    padding: 22px;
    gap: 22px;
  }

  .network-panel-header {
    display: grid;
    gap: 8px;
  }

  .network-signal {
    height: 110px;
    gap: 9px;
  }

  .network-kpis {
    grid-template-columns: 1fr;
  }

  .network-kpis article {
    padding: 16px;
  }

  .about-numbers article {
    grid-template-columns: 58px 1fr;
    padding: 18px;
  }

  .faq-hero h1 {
    font-size: 34px;
  }

  .blog-hero h1 {
    font-size: 34px;
  }

  .article-hero h1 {
    font-size: 32px;
  }

  .article-body {
    padding: 24px 18px;
  }

  .article-body h2 {
    font-size: 24px;
  }

  .article-body p,
  .article-body li {
    font-size: 15px;
  }

  .faq-topic-row,
  .faq-sidebar,
  .blog-topic-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .faq-topic-row a,
  .faq-sidebar a,
  .blog-topic-row a {
    justify-content: center;
    width: 100%;
  }

  .blog-hero::after {
    display: none;
  }

  .blog-signal-header,
  .article-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .featured-article {
    padding: 14px;
  }

  .featured-image {
    min-height: 230px;
  }

  .featured-copy h2,
  .blog-section-heading h2 {
    font-size: 28px;
  }

  .audience-card h3,
  .about-belief h2 {
    font-size: 28px;
  }

  .features-page .features-hero {
    gap: 18px;
    margin-top: 0;
    padding: 26px 16px 22px;
    width: 100%;
  }

  .features-page .features-hero h1 {
    font-size: 34px;
  }

  .features-page .features-hero .store-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 100%;
    margin-top: 22px;
  }

  .features-page .features-hero .store-badge {
    width: 100%;
    min-height: 48px;
    padding-inline: 8px;
  }

  .features-page .features-hero .store-badge b {
    font-size: 14px;
  }

  .features-page .features-hero .store-badge svg {
    width: 20px;
    height: 20px;
  }

  .features-page .features-hero .features-hero-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }

  .features-page .features-hero .features-hero-points li {
    min-height: 0;
    padding: 10px 8px;
    text-align: center;
    border-radius: 14px;
  }

  .features-page .features-hero .features-hero-points strong {
    font-size: 11px;
  }

  .features-page .features-hero .features-hero-points span {
    display: none;
  }

  .features-page .features-hero-visual {
    min-height: 0;
  }

  .hero-feature-cloud {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-feature-card,
  .hero-feature-card-main {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 8px 12px;
    min-height: 0;
    padding: 14px;
    border-radius: 16px;
  }

  .hero-feature-card-main {
    grid-column: auto;
  }

  .hero-feature-icon {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    margin-bottom: 0;
    border-radius: 13px;
  }

  .hero-feature-card strong,
  .hero-feature-card-main strong {
    font-size: 15px;
  }

  .hero-feature-card p,
  .hero-feature-card-main p {
    display: none;
  }

  .features-page .feature-story {
    margin-top: 30px;
    padding: 24px 16px;
  }

  .features-page .feature-copy h2,
  .features-page .hybrid-feature .feature-copy h2,
  .features-page .features-main .realtime-story .feature-copy h2,
  .features-page .stop-details-story .feature-copy h2 {
    font-size: 30px;
    line-height: 1.12;
  }

  .features-page .feature-copy p,
  .features-page .hybrid-feature .feature-copy p {
    font-size: 17px;
  }

  .features-page .check-list,
  .features-page .hybrid-feature .check-list,
  .features-page .feature-list,
  .features-page .compact-list {
    margin-top: 30px;
  }

  .features-page .feature-list p {
    max-width: none;
  }
}

@media (max-width: 820px) {
  :root {
    --mobile-gutter: 16px;
  }

  body {
    min-width: 0;
  }

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

  .site-header {
    gap: 10px;
    min-width: 0;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand span:last-child {
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .header-actions {
    flex-shrink: 0;
    gap: 8px;
  }

  .language-picker {
    flex-shrink: 1;
    min-width: 0;
  }

  .language-picker select {
    max-width: 30vw;
    min-width: 86px;
  }

  .menu-button {
    flex: 0 0 42px;
  }

  .mobile-nav {
    max-height: calc(100dvh - 66px);
    overflow-y: auto;
    box-shadow: 0 18px 40px rgba(14, 74, 175, 0.08);
  }

  .mobile-nav a {
    min-height: 42px;
    display: flex;
    align-items: center;
  }

  .hero-inner {
    gap: 18px;
    padding-top: 0;
    padding-bottom: 34px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero h1 {
    margin-top: 12px;
  }

  .hero-visual {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .feature-panel,
  .section,
  .stats-band,
  .commuter-band,
  .faq-section,
  .site-footer,
  .city-main,
  .city-directory-hero,
  .city-region,
  .city-seo-band,
  .city-hub-hero,
  .city-priority-grid,
  .city-content-split,
  .city-service-band,
  .transit-route-groups,
  .transit-directory,
  .faq-hero,
  .faq-content,
  .faq-cta,
  .blog-hero,
  .blog-featured,
  .blog-content,
  .blog-cta,
  .about-hero,
  .about-numbers,
  .about-intel,
  .about-belief,
  .about-cta,
  .features-page .feature-story,
  .features-page .market-coverage-band,
  .features-page .features-cta {
    width: calc(100% - (var(--mobile-gutter) * 2));
  }

  .feature-panel {
    overflow: hidden;
    border-radius: 14px;
  }

  .feature-panel article:first-child {
    border-top: 0;
  }

  .section-heading .text-link {
    width: fit-content;
  }

  .city-main {
    padding-top: 20px;
  }

  .city-directory-hero,
  .city-hub-hero {
    min-height: 0;
    padding: 30px 22px;
    border-radius: 14px;
  }

  .city-directory-hero h1,
  .city-hub-hero h1 {
    font-size: 34px;
  }

  .city-directory-hero p,
  .city-hub-copy > p {
    font-size: 16px;
  }

  .city-search {
    padding: 16px;
  }

  .city-search div {
    grid-template-columns: 1fr;
  }

  .city-search .button {
    width: 100%;
  }

  .city-directory-grid,
  .city-directory-grid.compact {
    grid-template-columns: 1fr;
  }

  .coverage-model-list,
  .region-city-grid,
  .route-group-grid,
  .compact-directory {
    grid-template-columns: 1fr;
  }

  .route-group-grid,
  .directory-panel {
    padding: 18px;
  }

  .transit-directory > .section-heading {
    padding: 18px 18px 0;
  }

  .directory-tabs {
    padding: 14px 18px;
  }

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

  .city-directory-card {
    grid-template-rows: 180px minmax(0, 1fr);
  }

  .city-card-image {
    min-height: 180px;
  }

  .city-seo-band,
  .city-service-band {
    gap: 20px;
    padding: 24px 20px;
  }

  .city-quick-actions {
    grid-template-columns: 1fr;
  }

  .priority-link {
    min-height: 0;
  }

  .route-list a,
  .station-list a {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .station-list a {
    grid-template-columns: minmax(0, 1fr);
  }

  .route-list small,
  .station-list small {
    grid-column: 2;
    text-align: left;
  }

  .station-list small {
    grid-column: 1;
  }

  .city-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .city-card {
    min-height: 156px;
    scroll-snap-align: none;
  }

  .stats-band article {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .stats-band b {
    font-size: 26px;
    line-height: 1.08;
  }

  .market-coverage-band {
    gap: 18px;
  }

  .coverage-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    padding: 9px;
  }

  .coverage-chips span {
    min-height: 42px;
    padding: 0 10px 0 24px;
    font-size: 13px;
  }

  .commuter-band {
    gap: 20px;
  }

  .commuter-band .button,
  .about-hero-copy .button,
  .about-hero-copy .text-link,
  .about-cta-actions .button,
  .about-cta-actions .text-link {
    width: 100%;
    min-width: 0;
  }

  .transport-illustration {
    justify-self: stretch;
    justify-content: center;
    width: 100%;
    height: auto;
    min-height: 132px;
    transform: none;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .transport-illustration img {
    width: min(100%, 560px);
  }

  .faq-topic-row a,
  .faq-sidebar a,
  .blog-topic-row a {
    text-align: center;
  }

  .faq-item,
  .blog-signal-card,
  .article-card,
  .featured-article,
  .audience-card,
  .about-belief,
  .features-cta {
    overflow: hidden;
  }

  .featured-article {
    gap: 22px;
  }

  .featured-copy {
    padding-inline: 4px;
  }

  .features-cta,
  .about-cta {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .features-cta .store-buttons,
  .blog-cta .store-buttons,
  .site-footer .store-buttons,
  .hero .store-buttons {
    width: 100%;
    max-width: 360px;
  }

  .features-cta .store-badge,
  .blog-cta .store-badge,
  .site-footer .store-badge {
    width: 100%;
  }

  .cta-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
  }

  .about-hero-actions,
  .about-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .about-orbit {
    border-radius: 22px;
  }

  .network-panel {
    max-width: 100%;
  }

  .features-page .realtime-image-visual,
  .features-page .feature-visual {
    overflow: hidden;
  }

  .features-page .feature-copy,
  .features-page .feature-copy h2,
  .features-page .hybrid-feature .feature-copy h2,
  .features-page .feature-copy p,
  .features-page .hybrid-feature .feature-copy p {
    max-width: 100%;
  }

  .site-footer {
    gap: 22px 18px;
    padding-bottom: 28px;
  }

  .footer-brand p {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  :root {
    --mobile-gutter: 14px;
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .brand span:last-child {
    max-width: 132px;
    font-size: 19px;
  }

  .language-picker select {
    width: 88px;
    min-width: 0;
    max-width: 88px;
  }

  .menu-button {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .hero {
    padding-inline: var(--mobile-gutter);
  }

  .hero h1,
  .about-hero-copy h1,
  .faq-hero h1,
  .blog-hero h1,
  .features-page .features-hero h1 {
    font-size: 32px;
    line-height: 1.1;
  }

  .hero p,
  .about-hero-copy p,
  .faq-hero-copy p,
  .blog-hero-copy p,
  .features-page .features-hero-copy > p {
    font-size: 16px;
    line-height: 1.6;
  }

  .store-buttons,
  .features-cta .store-buttons,
  .blog-cta .store-buttons,
  .site-footer .store-buttons,
  .hero .store-buttons {
    width: 100%;
    max-width: none;
  }

  .store-badge {
    justify-content: flex-start;
  }

  .button,
  .text-link {
    max-width: 100%;
    text-align: center;
  }

  .hero-visual {
    min-height: 332px;
  }

  .phone {
    width: 168px;
    height: 312px;
  }

  .phone-left {
    left: 0;
  }

  .phone-right {
    right: 0;
    left: auto;
  }

  .section-heading {
    gap: 12px;
  }

  .section-heading h2,
  .stats-band h2,
  .coverage-copy h2,
  .commuter-band h2,
  .faq-section h2,
  .features-cta h2 {
    font-size: 26px;
  }

  .feature-panel p {
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .stats-band,
  .market-coverage-band,
  .commuter-band,
  .faq-section,
  .faq-hero,
  .blog-hero,
  .features-cta,
  .about-belief,
  .about-cta {
    padding: 22px 18px;
  }

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

  .city-card {
    min-height: 178px;
  }

  .blog-signal-chart {
    height: 108px;
    gap: 7px;
    padding: 12px;
  }

  .featured-image {
    min-height: 210px;
  }

  .article-image {
    height: 158px;
  }

  .article-card h3 {
    font-size: 19px;
  }

  .faq-item p {
    line-height: 1.62;
  }

  .about-orbit {
    min-height: 360px;
  }

  .network-panel {
    width: calc(100% - 20px);
    padding: 18px;
  }

  .network-signal {
    height: 92px;
  }

  .belief-grid article,
  .about-numbers article {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .features-page .feature-story {
    padding: 24px 18px;
  }

  .features-page .feature-copy h2,
  .features-page .hybrid-feature .feature-copy h2,
  .features-page .features-main .realtime-story .feature-copy h2,
  .features-page .stop-details-story .feature-copy h2 {
    font-size: 29px;
  }

  .features-page .feature-list li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
  }

  .features-page .feature-list-icon {
    width: 38px;
    height: 38px;
  }

  .features-page .check-list,
  .features-page .hybrid-feature .check-list {
    font-size: 16px;
  }

  .site-footer {
    padding-inline: 0;
  }
}

@media (max-width: 380px) {
  .brand span:last-child {
    max-width: 112px;
    font-size: 18px;
  }

  .language-picker select {
    width: 78px;
    max-width: 78px;
    font-size: 12px;
  }

  .hero-visual {
    min-height: 300px;
  }

  .phone {
    width: 150px;
    height: 280px;
    padding: 8px;
  }

  .phone-screen {
    border-radius: 20px;
  }

  .hero h1,
  .about-hero-copy h1,
  .faq-hero h1,
  .blog-hero h1,
  .features-page .features-hero h1 {
    font-size: 30px;
  }

  .store-badge b {
    font-size: 15px;
  }

  .features-page .feature-copy h2,
  .features-page .hybrid-feature .feature-copy h2,
  .features-page .features-main .realtime-story .feature-copy h2,
  .features-page .stop-details-story .feature-copy h2 {
    font-size: 27px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 34px 18px 0;
    overflow: hidden;
    background:
      radial-gradient(circle at 20% 18%, rgba(151, 197, 255, 0.24), transparent 18rem),
      radial-gradient(circle at 88% 38%, rgba(16, 185, 129, 0.1), transparent 16rem),
      linear-gradient(180deg, #f8fbff 0%, #edf5ff 62%, #ffffff 100%);
  }

  .hero-inner {
    width: min(100%, 430px);
    gap: 24px;
    padding: 0 0 38px;
  }

  .hero-copy {
    display: grid;
    justify-items: start;
    padding-top: 0;
  }

  .hero h1 {
    max-width: 11em;
    margin: 0;
    font-size: clamp(34px, 8.7vw, 40px);
    line-height: 1.12;
  }

  .hero p {
    max-width: 25em;
    margin: 18px 0 0;
    color: #16245f;
    font-size: 16px;
    line-height: 1.72;
    font-weight: 680;
  }

  .hero .store-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    margin-top: 28px;
  }

  .hero .store-badge {
    min-height: 58px;
    padding: 9px 10px;
    gap: 9px;
    border-color: rgba(196, 219, 255, 0.88);
    border-radius: 14px;
    box-shadow:
      0 16px 34px rgba(14, 74, 175, 0.09),
      inset 0 1px 0 rgba(255, 255, 255, 0.86);
  }

  .hero .store-badge::before {
    background:
      radial-gradient(circle at 14% 18%, rgba(11, 99, 255, 0.1), transparent 7rem),
      radial-gradient(circle at 100% 88%, rgba(16, 185, 129, 0.09), transparent 6rem);
  }

  .hero .store-badge[href*="apps.apple.com"] svg,
  .hero .store-badge[href*="play.google.com"] svg {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .hero .store-badge span {
    min-width: 0;
  }

  .hero .store-badge small {
    font-size: 8px;
    line-height: 1.05;
  }

  .hero .store-badge b {
    font-size: clamp(15px, 4.2vw, 18px);
    line-height: 1.04;
  }

  .hero-visual {
    position: relative;
    width: calc(100% + 12px);
    min-height: 318px;
    margin: 0 -6px;
    overflow: hidden;
    border-radius: 30px 30px 0 0;
    background:
      radial-gradient(circle at 50% 24%, rgba(11, 99, 255, 0.13), transparent 12rem),
      linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(207, 223, 251, 0.5));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
  }

  .hero-visual::before {
    top: 12px;
    left: 50%;
    right: auto;
    width: 290px;
    height: 290px;
    opacity: 0.9;
    transform: translateX(-50%);
  }

  .phone {
    top: 46px;
    width: 150px;
    height: auto;
    padding: 3px;
    background:
      linear-gradient(150deg, rgba(255, 255, 255, 0.34), transparent 18%),
      linear-gradient(145deg, #273047 0%, #111827 45%, #26314a 100%);
    border: 1px solid rgba(15, 23, 42, 0.36);
    border-radius: 25px;
    box-shadow:
      0 22px 46px rgba(12, 30, 80, 0.18),
      0 8px 18px rgba(12, 30, 80, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.16);
  }

  .phone-notch {
    top: 8px;
    width: 58px;
    height: 17px;
    background: linear-gradient(180deg, #05070c, #0c111c);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.08),
      0 7px 14px rgba(2, 6, 23, 0.16);
  }

  .phone-screen {
    padding: 0;
    border-radius: 21px;
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.72),
      inset 0 0 0 2px rgba(226, 235, 248, 0.64);
  }

  .phone-left {
    left: calc(50% - 154px);
    transform: rotate(-4deg);
  }

  .phone-right {
    right: auto;
    left: calc(50% + 4px);
    transform: rotate(4deg);
  }
}

@media (max-width: 380px) {
  .hero {
    padding-inline: 14px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero .store-buttons {
    gap: 8px;
  }

  .hero .store-badge {
    min-height: 56px;
    padding-inline: 8px;
  }

  .hero .store-badge[href*="apps.apple.com"] svg,
  .hero .store-badge[href*="play.google.com"] svg {
    width: 31px;
    height: 31px;
  }

  .hero .store-badge b {
    font-size: 15px;
  }

  .hero-visual {
    min-height: 294px;
  }

  .phone {
    width: 132px;
  }

  .phone-left {
    left: calc(50% - 140px);
  }

  .phone-right {
    left: calc(50% + 2px);
  }
}

@media (max-width: 340px) {
  .hero .store-buttons {
    grid-template-columns: 1fr;
    max-width: 260px;
  }

  .hero h1 {
    font-size: 29px;
  }

  .hero .store-badge {
    min-height: 54px;
  }
}

@media (max-width: 820px) {
  .site-footer {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: calc(100% - 28px);
    margin-top: 52px;
    scroll-margin-top: 82px;
    padding: 18px;
    overflow: hidden;
    background:
      radial-gradient(circle at 18% 0%, rgba(151, 197, 255, 0.28), transparent 17rem),
      radial-gradient(circle at 90% 18%, rgba(16, 185, 129, 0.12), transparent 16rem),
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 255, 0.96));
    border: 1px solid rgba(205, 224, 255, 0.9);
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -18px 56px rgba(14, 74, 175, 0.08);
    backdrop-filter: blur(18px);
  }

  .site-footer::before {
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    content: "";
    background: linear-gradient(90deg, var(--blue), var(--green), var(--orange));
  }

  .site-footer > * {
    position: relative;
    z-index: 1;
  }

  .footer-brand {
    display: grid;
    grid-column: 1 / -1;
    gap: 10px;
    padding: 18px 18px 16px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(247, 251, 255, 0.82)),
      rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(219, 232, 255, 0.92);
    border-radius: 18px;
    box-shadow: 0 16px 38px rgba(14, 74, 175, 0.07);
  }

  .site-footer .brand {
    gap: 10px;
    font-size: 23px;
  }

  .site-footer .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .footer-brand p {
    max-width: 34em;
    margin: 0;
    color: #465579;
    font-size: 14px;
    line-height: 1.62;
    font-weight: 650;
  }

  .footer-brand .copyright {
    padding-top: 8px;
    margin-top: 2px;
    color: #6a7592;
    border-top: 1px solid rgba(219, 232, 255, 0.86);
    font-size: 12px;
  }

  .site-footer > div:not(.footer-brand) {
    display: flex;
    flex-direction: column;
    gap: 9px;
    min-width: 0;
    min-height: 132px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(219, 232, 255, 0.86);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(14, 74, 175, 0.055);
    font-size: 13px;
  }

  .site-footer h3 {
    margin: 0 0 2px;
    color: #061552;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .site-footer a {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    width: fit-content;
    max-width: 100%;
    color: #334166;
    line-height: 1.2;
  }

  .site-footer a:hover {
    color: var(--blue);
  }

  .site-footer .footer-icon-link {
    width: 100%;
    min-height: 38px;
    padding: 0 10px;
    gap: 9px;
    color: #061552;
    background: rgba(246, 250, 255, 0.8);
    border: 1px solid rgba(219, 232, 255, 0.9);
    border-radius: 11px;
  }

  .site-footer .footer-icon-link svg {
    flex: 0 0 17px;
  }

  .site-footer > div:last-child {
    grid-column: 1 / -1;
    min-height: 0;
    padding: 16px;
    background:
      radial-gradient(circle at 92% 18%, rgba(16, 185, 129, 0.12), transparent 10rem),
      linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(238, 246, 255, 0.86));
    border-color: rgba(196, 219, 255, 0.95);
  }

  .site-footer > div:last-child h3 {
    font-size: 13px;
  }

  .site-footer > div:nth-last-child(2) {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
  }

  .site-footer > div:nth-last-child(2) h3 {
    grid-column: 1 / -1;
  }

  .site-footer > div:nth-last-child(2) .footer-icon-link {
    justify-content: center;
    min-width: 0;
    padding-inline: 8px;
    white-space: nowrap;
  }

  .site-footer > div:nth-last-child(2) .footer-icon-link:last-child {
    grid-column: 1 / -1;
  }

  .site-footer .store-buttons.compact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    max-width: none;
    margin-top: 2px;
  }

  .site-footer .compact .store-badge {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    padding: 9px 10px;
    border-radius: 14px;
    box-shadow:
      0 14px 30px rgba(14, 74, 175, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.86);
  }

  .site-footer .compact .store-badge b {
    font-size: 16px;
  }

  .site-footer .compact .store-badge small {
    font-size: 8px;
  }
}

@media (max-width: 560px) {
  .site-footer {
    width: calc(100% - 24px);
    gap: 10px;
    padding: 14px;
    border-radius: 22px 22px 0 0;
  }

  .footer-brand {
    padding: 16px;
  }

  .site-footer > div:not(.footer-brand) {
    min-height: 122px;
    padding: 14px;
  }
}

@media (max-width: 360px) {
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer > div:not(.footer-brand),
  .site-footer > div:last-child {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .site-footer .store-buttons.compact {
    grid-template-columns: 1fr;
  }

  .site-footer > div:nth-last-child(2) {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .commuter-band {
    position: relative;
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
    padding: 30px 28px 34px;
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 250, 255, 0.9)),
      #fff;
    border-radius: 22px;
  }

  .commuter-band::before {
    position: absolute;
    right: -30px;
    top: 142px;
    z-index: 0;
    width: min(108%, 560px);
    height: 180px;
    content: "";
    background: url("assets/commuter-vehicles.png") right top / contain no-repeat;
    opacity: 0.22;
    pointer-events: none;
  }

  .commuter-band::after {
    position: absolute;
    inset: 42% 0 0;
    z-index: 0;
    height: auto;
    content: "";
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(238, 246, 255, 0.94));
    pointer-events: none;
  }

  .commuter-band > div:first-child {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: start;
  }

  .commuter-band h2 {
    max-width: 9.5em;
    font-size: clamp(30px, 8vw, 40px);
    line-height: 1.12;
  }

  .commuter-band p {
    max-width: 25em;
    margin-bottom: 26px;
    color: #16245f;
    font-size: 17px;
    line-height: 1.68;
    font-weight: 680;
  }

  .commuter-band .button {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 54px;
    border-radius: 14px;
    box-shadow:
      0 18px 34px rgba(11, 99, 255, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  .transport-illustration {
    display: none;
  }
}

@media (max-width: 560px) {
  .commuter-band {
    padding: 28px 22px 30px;
  }

  .commuter-band::before {
    right: -24px;
    top: 118px;
    width: 112%;
    height: 132px;
    opacity: 0.2;
  }

  .commuter-band h2 {
    font-size: 34px;
  }

  .commuter-band p {
    font-size: 16px;
  }
}

/* Feature page final scale alignment */
.features-page {
  --page-max: 1808px;
  --page-pad: max(32px, calc((100vw - var(--page-max)) / 2));
}

.features-page .features-main {
  padding: 0 0 104px;
  background:
    radial-gradient(circle at 78% 10%, rgba(11, 99, 255, 0.13), transparent 30rem),
    linear-gradient(180deg, #f8fbff 0%, #eef6ff 31%, #ffffff 58%, #f8fbff 100%);
}

.features-page .features-main > .page-breadcrumb {
  display: block;
  width: auto;
  margin: 0 var(--page-pad);
  padding-top: 28px;
  padding-bottom: 0;
}

.features-page .features-hero {
  display: grid;
  grid-template-columns: minmax(520px, 720px) minmax(420px, 650px);
  gap: clamp(44px, 5vw, 96px);
  align-items: center;
  width: 100%;
  min-height: 720px;
  margin: 0;
  padding: 34px var(--page-pad) 84px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 42%, rgba(11, 99, 255, 0.12), transparent 29rem),
    linear-gradient(180deg, rgba(248, 251, 255, 0.68) 0%, rgba(238, 246, 255, 0.72) 64%, rgba(255, 255, 255, 0.92) 100%);
}

.features-page .features-hero::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.52), transparent 52%),
    radial-gradient(circle at 91% 68%, rgba(16, 185, 129, 0.1), transparent 24rem);
}

.features-page .features-hero::after {
  display: none;
}

.features-page .features-hero-copy {
  align-self: center;
  max-width: 720px;
  padding-top: 0;
}

.features-page .features-hero h1 {
  max-width: 720px;
  font-size: clamp(58px, 4.25vw, 78px);
  line-height: 1.05;
}

.features-page .features-hero-copy > p {
  max-width: 660px;
  margin-top: 26px;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.48;
}

.features-page .features-hero .store-buttons {
  margin-top: 34px;
}

.features-page .features-hero-visual {
  align-self: center;
  min-height: 0;
  justify-content: stretch;
}

.features-page .hero-feature-cloud {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  width: 100%;
  max-width: 650px;
}

.features-page .hero-feature-cloud::before {
  inset: -28px 56px;
  background:
    linear-gradient(90deg, rgba(11, 99, 255, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(11, 99, 255, 0.08) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.55;
}

.features-page .hero-feature-card,
.features-page .hero-feature-card-main {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 0 22px;
  align-items: center;
  min-height: 138px;
  padding: 26px 30px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(219, 232, 255, 0.88);
  border-radius: 24px;
  box-shadow:
    0 24px 64px rgba(18, 52, 116, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.features-page .hero-feature-icon {
  grid-row: span 2;
  width: 58px;
  height: 58px;
  margin: 0;
  border-radius: 18px;
}

.features-page .hero-feature-card strong,
.features-page .hero-feature-card-main strong {
  max-width: none;
  font-size: clamp(22px, 1.55vw, 30px);
  line-height: 1.14;
}

.features-page .hero-feature-card p,
.features-page .hero-feature-card-main p {
  display: block;
  max-width: 460px;
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.42;
}

.features-page .feature-story,
.features-page .market-coverage-band,
.features-page .features-cta {
  width: min(1500px, calc(100% - 2 * var(--page-pad)));
}

@media (max-width: 1180px) {
  .features-page {
    --page-max: 1240px;
    --page-pad: max(32px, calc((100vw - var(--page-max)) / 2));
  }

  .features-page .features-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 34px var(--page-pad) 64px;
  }

  .features-page .features-hero-copy {
    max-width: 760px;
  }

  .features-page .features-hero h1 {
    max-width: 760px;
    font-size: 52px;
  }

  .features-page .features-hero-visual {
    max-width: 760px;
  }

  .features-page .hero-feature-cloud {
    max-width: 760px;
  }

  .features-page .feature-story,
  .features-page .market-coverage-band,
  .features-page .features-cta {
    width: calc(100% - 48px);
  }
}

@media (max-width: 760px) {
  .features-page .features-main > .page-breadcrumb {
    margin: 0 16px;
    padding-top: 18px;
  }

  .features-page .features-hero {
    gap: 24px;
    padding: 28px 16px 42px;
  }

  .features-page .features-hero h1 {
    font-size: 38px;
  }

  .features-page .features-hero-copy > p {
    font-size: 17px;
  }

  .features-page .features-hero .store-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 100%;
  }

  .features-page .hero-feature-cloud {
    gap: 12px;
  }

  .features-page .hero-feature-card,
  .features-page .hero-feature-card-main {
    grid-template-columns: 46px minmax(0, 1fr);
    min-height: 0;
    padding: 16px;
    border-radius: 18px;
  }

  .features-page .hero-feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .features-page .hero-feature-card strong,
  .features-page .hero-feature-card-main strong {
    font-size: 17px;
  }

  .features-page .hero-feature-card p,
  .features-page .hero-feature-card-main p {
    display: none;
  }
}

/* Feature page parity pass: match the site shell and homepage scale */
.features-page {
  --page-max: 1240px;
  --page-pad: max(32px, calc((100vw - var(--page-max)) / 2));
}

.features-page .features-main {
  padding: 0 0 96px;
  background:
    radial-gradient(circle at 72% 18%, rgba(47, 109, 246, 0.12), transparent 31rem),
    linear-gradient(180deg, #f8fbff 0%, #eef6ff 34%, #ffffff 62%, #f8fbff 100%);
}

.features-page .features-main > .page-breadcrumb {
  display: block;
  width: min(var(--page-max), calc(100% - 48px));
  margin: 0 auto;
  padding-top: 28px;
  padding-bottom: 0;
}

.features-page .features-hero {
  grid-template-columns: 560px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  width: 100%;
  min-height: 660px;
  margin: 0;
  padding: 96px var(--page-pad) 140px;
  background:
    radial-gradient(circle at 72% 45%, rgba(47, 109, 246, 0.16) 0%, rgba(47, 109, 246, 0.08) 28%, transparent 58%),
    linear-gradient(180deg, #f8fbff 0%, #eef6ff 58%, #ffffff 100%);
}

.features-page .features-hero::before {
  background:
    radial-gradient(circle at 84% 50%, rgba(16, 185, 129, 0.1), transparent 24rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5), transparent 52%);
}

.features-page .features-hero-copy {
  align-self: center;
  max-width: 600px;
  padding-top: 0;
}

.features-page .features-hero h1 {
  max-width: 600px;
  font-size: 58px;
  line-height: 1.08;
}

.features-page .features-hero-copy > p {
  max-width: 500px;
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.55;
}

.features-page .features-hero .store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: auto;
  max-width: 500px;
  margin-top: 30px;
}

.features-page .features-hero .store-badge {
  min-width: 166px;
  min-height: 54px;
  padding: 8px 13px;
  gap: 11px;
  border-radius: 8px;
}

.features-page .features-hero .store-badge[href*="apps.apple.com"] svg,
.features-page .features-hero .store-badge[href*="play.google.com"] svg {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.features-page .features-hero .store-badge small {
  font-size: 9px;
}

.features-page .features-hero .store-badge b {
  font-size: 18px;
  line-height: 1.02;
}

.features-page .features-hero-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  min-height: 430px;
}

.features-page .hero-feature-cloud {
  width: min(100%, 654px);
  max-width: 654px;
  margin-left: auto;
}

.features-page .hero-feature-card,
.features-page .hero-feature-card-main {
  min-height: 132px;
  padding: 24px 28px;
}

.features-page .feature-story,
.features-page .market-coverage-band,
.features-page .features-cta {
  width: min(var(--page-max), calc(100% - 48px));
}

@media (max-width: 1180px) {
  .features-page .features-hero {
    grid-template-columns: 1fr;
    padding: 34px var(--page-pad) 64px;
  }

  .features-page .features-hero h1 {
    font-size: 52px;
  }

  .features-page .features-hero-visual {
    justify-content: flex-start;
    max-width: 760px;
    min-height: 0;
  }

  .features-page .hero-feature-cloud {
    width: 100%;
    max-width: 760px;
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .features-page .features-main > .page-breadcrumb {
    width: calc(100% - 32px);
    margin: 0 16px;
    padding-top: 18px;
  }

  .features-page .features-hero {
    gap: 24px;
    padding: 28px 16px 42px;
  }

  .features-page .features-hero h1 {
    font-size: 38px;
  }

  .features-page .features-hero-copy > p {
    font-size: 17px;
  }

  .features-page .features-hero .store-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 100%;
  }

  .features-page .features-hero .store-badge {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    padding: 8px;
    border-radius: 14px;
  }

  .features-page .features-hero .store-badge[href*="apps.apple.com"] svg,
  .features-page .features-hero .store-badge[href*="play.google.com"] svg {
    width: 31px;
    height: 31px;
    border-radius: 10px;
  }

  .features-page .features-hero .store-badge b {
    font-size: 15px;
  }

  .features-page .hero-feature-card,
  .features-page .hero-feature-card-main {
    min-height: 0;
    padding: 16px;
  }
}

/* Feature page shell parity: keep the top chrome visually identical to the rest of the site. */
.features-page .site-header {
  min-height: 80px;
  padding-right: var(--page-pad);
  padding-left: var(--page-pad);
}

.features-page .brand {
  gap: 12px;
  font-size: 30px;
  font-weight: 800;
}

.features-page .brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.features-page .desktop-nav {
  gap: 42px;
  font-size: 15px;
  font-weight: 700;
}

.features-page .language-picker {
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}

.features-page .language-picker svg {
  width: 20px;
  height: 20px;
}

.features-page .header-actions .button.small {
  min-height: 46px;
  padding: 0 20px;
  font-size: 16px;
}

.features-page .button.primary[href*="#download"]::before {
  width: 22px;
  height: 22px;
}

.features-page .features-main > .page-breadcrumb {
  min-height: 70px;
  padding-top: 26px;
  font-size: 15px;
  line-height: 1.25;
}

@media (max-width: 820px) {
  .features-page .site-header {
    min-height: 66px;
    padding: 0 14px;
  }

  .features-page .brand {
    gap: 8px;
  }

  .features-page .brand span:last-child {
    font-size: 21px;
  }

  .features-page .brand-mark {
    width: 34px;
    height: 34px;
  }

  .features-page .header-actions .button.small {
    display: none;
  }

  .features-page .features-main > .page-breadcrumb {
    min-height: 44px;
    padding-top: 14px;
    font-size: 14px;
  }
}
