:root {
    --bg: #0f1525;
    --bg-2: #111937;
    --bg-3: #0b1020;
    --navy: #292e93;
    --blue: #0575f3;
    --light-blue: #8bcbff;
    --white: #ffffff;
    --muted: rgba(255, 255, 255, 0.72);
    --muted-2: rgba(255, 255, 255, 0.55);
    --border: rgba(255, 255, 255, 0.1);
    --card: rgba(255, 255, 255, 0.05);
    --shadow: 0 0 30px rgba(5, 117, 243, 0.28);
    --radius: 28px;
  }

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    font-family: Montserrat, Arial, Helvetica, sans-serif;
    color: var(--white);
    background:
      radial-gradient(circle at top, rgba(5, 117, 243, 0.22), transparent 35%),
      linear-gradient(180deg, #111937 0%, #0f1525 60%, #0b1020 100%);
  }

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

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

  .container {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    background: rgba(15, 21, 37, 0.78);
    border-bottom: 1px solid var(--border);
  }

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

  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(5, 117, 243, 0.3);
    background: rgba(5, 117, 243, 0.18);
    color: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
  }

  .brand-title {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.02em;
  }

  .brand-subtitle {
    font-size: 11px;
    letter-spacing: 0.32em;
    color: var(--muted-2);
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    font-size: 14px;
    font-weight: 400;
  }

  .nav-links a {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 500;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    padding: 15px 22px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.02em;
    transition: transform 0.18s ease, background 0.18s ease;
    cursor: pointer;
    border: 0;
  }

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

  .btn-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: var(--shadow);
  }

  .btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border);
  }

  .section {
    padding: 42px 0;
  }

  .hero {
    padding-top: 26px;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: center;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(139, 203, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
    color: var(--light-blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
  }

  h1,
  h2,
  h3 {
    margin: 0;
    line-height: 0.96;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(52px, 8vw, 96px);
    font-weight: 900;
    letter-spacing: -0.04em;
  }

  .hero h1 span {
    display: block;
    color: var(--light-blue);
  }

  .hero-copy {
    margin-top: 18px;
    max-width: 720px;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.6;
  }

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

  .stat-card,
  .glass-card {
    border: 1px solid var(--border);
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
  }

  .stat-card {
    padding: 22px;
  }

  .stat-value {
    font-size: 36px;
    font-weight: 900;
  }

  .stat-label {
    margin-top: 6px;
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--muted-2);
  }

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

  .hero-visual-wrap {
    position: relative;
  }

  .hero-visual-glow {
    position: absolute;
    inset: -18px;
    border-radius: 40px;
    background: rgba(5, 117, 243, 0.24);
    filter: blur(36px);
  }

  .hero-visual {
    position: relative;
    overflow: hidden;
    padding: 16px;
  }

  .hero-visual img {
    border-radius: 24px;
    width: 100%;
    object-fit: cover;
  }

  .speed-note {
    position: absolute;
    left: 28px;
    bottom: 28px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(15, 21, 37, 0.82);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
  }

  .speed-note .label,
  .section-label {
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--light-blue);
    font-weight: 800;
  }

  .speed-note .value {
    margin-top: 6px;
    font-size: 34px;
    font-weight: 900;
  }

  .map-shell,
  .sponsor-shell {
    padding: 26px;
  }

  .section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
  }

  .section-title {
    margin-top: 10px;
    font-size: clamp(34px, 5vw, 54px);
    font-weight: 900;
    letter-spacing: -0.03em;
  }

  .section-description {
    margin-top: 14px;
    max-width: 760px;
    color: var(--muted);
    line-height: 1.65;
    font-size: 18px;
  }

  .filters {
    display: grid;
    grid-template-columns: repeat(4, minmax(160px, 1fr));
    gap: 12px;
    width: 100%;
    max-width: 720px;
  }

  .filter {
    min-height: 52px;
    display: flex;
    align-items: center;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--bg-2);
    padding: 0 16px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
  }

  .map-grid,
  .about-grid,
  .sponsor-grid,
  .request-grid {
    display: grid;
    gap: 22px;
  }

  .map-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }

  .map-canvas {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: var(--bg-3);
  }

  .map-canvas img {
    width: 100%;
  }

  .stack {
    display: grid;
    gap: 16px;
  }

  .info-card {
    padding: 22px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    border-radius: 24px;
  }

  .info-card strong {
    display: block;
    margin-top: 10px;
    font-size: 32px;
    font-weight: 900;
  }

  .info-card p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.6;
  }

  .status-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
  }

  .status-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
  }

  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
  }

  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .content-card {
    padding: 30px;
    height: 600px;
  }

  .content-card p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 17px;
  }

  .feature-list,
  .stop-list,
  .package-list {
    display: grid;
    gap: 12px;
  }

  .feature,
  .stop,
  .package,
  .launch-note {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 20px;
  }

  .feature {
    padding: 16px 18px;
    color: rgba(255, 255, 255, 0.8);
  }

  .stop-list {
    margin-top: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-height: 64%;
    overflow: auto;
    padding-right: 6px;

  }

  .stop {
    padding: 14px 16px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
  }

  .stop-index {
    color: var(--light-blue);
    font-weight: 800;
    margin-right: 8px;
  }

  .sponsor-shell {
    background: linear-gradient(180deg, rgba(17, 25, 55, 1), rgba(11, 16, 32, 1));
  }

  .sponsor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 26px;
  }

  .package {
    padding: 24px;
  }

  .package .name {
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--light-blue);
    font-weight: 800;
  }

  .package .price {
    margin-top: 12px;
    font-size: 42px;
    font-weight: 900;
  }

  .package-list {
    margin-top: 16px;
  }

  .package-list li {
    list-style: none;
    display: flex;
    gap: 10px;
    color: var(--muted);
    line-height: 1.5;
  }

  .package-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    margin-top: 8px;
    border-radius: 50%;
    background: var(--blue);
    flex: 0 0 auto;
  }

  .request-grid {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .form-card,
  .launch-note {
    padding: 24px;
  }

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

  .form-grid .full {
    grid-column: 1 / -1;
    height: 100px;
  }


  .roadshow-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
  }

  .roadshow-field--full {
    grid-column: 1 / -1;
  }

  input, textarea {
    width: 100%;
    min-height: 52px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.04);
    color: var(--white);
    font: inherit;
  }

  input::placeholder,
  textarea::placeholder {
    color: rgba(255, 255, 255, 0.42);
  }

  textarea {
    min-height: 120px;
    resize: vertical;
    padding-top: 16px;
  }

  input:focus,
  textarea:focus {
    outline: none;
    border-color: rgba(139, 203, 255, 0.45);
    box-shadow: 0 0 0 4px rgba(5, 117, 243, 0.14);
  }

  .roadshow-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .roadshow-form-status {
    min-height: 22px;
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--muted);
  }

  .roadshow-form-status.is-loading {
    color: var(--light-blue);
  }

  .roadshow-form-status.is-success {
    color: #9ef0c8;
  }

  .roadshow-form-status.is-error {
    color: #ffb3b3;
  }


  input.is-invalid,
  textarea.is-invalid {
    border-color: rgba(255, 107, 107, 0.9);
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.14);
  }

  .roadshow-field-error {
    margin-top: 0;
    font-size: 13px;
    line-height: 1.4;
    color: #ffb3b3;
  }

  .roadshow-form-success-message {
    margin-top: 12px;
    padding: 16px 18px;
    border: 1px solid rgba(158, 240, 200, 0.25);
    border-radius: 16px;
    background: rgba(158, 240, 200, 0.08);
    color: #9ef0c8;
    font-weight: 600;
    line-height: 1.5;
  }

  button:disabled {
    cursor: wait;
    opacity: 0.8;
  }

  .launch-note p,
  .launch-note code {
    color: var(--muted);
  }

  code {
    display: block;
    margin-top: 8px;
    color: var(--light-blue);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 13px;
  }

  .site-footer {
    padding: 20px 0 40px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    text-align: center;
  }

  @media (max-width: 1100px) {
    .hero-grid,
    .map-grid,
    .about-grid,
    .request-grid {
      grid-template-columns: 1fr;
    }

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

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

    .section-head {
      flex-direction: column;
      align-items: start;
    }
  }

  @media (max-width: 760px) {
    .nav-links {
      display: none;
    }

    .stats-grid,
    .sponsor-grid,
    .stop-list,
    .form-grid,
    .filters {
      grid-template-columns: 1fr;
    }

    .container {
      width: min(100% - 24px, 1240px);
    }

    .map-shell,
    .content-card,
    .sponsor-shell,
    .form-card,
    .launch-note {
      padding: 20px;
    }

    .content-card.about-section {
      height: 724px;
      padding-bottom: 20px;
    }

    .hero-copy,
    .section-description {
      font-size: 16px;
    }

    .speed-note {
      position: static;
      margin-top: 14px;
    }
  }


  .map-shell,
  .sponsor-shell { padding: 26px; }
  
  .section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
  }
  .section-title {
    margin-top: 10px;
    font-size: clamp(34px, 5vw, 54px);
    font-weight: 900;
    letter-spacing: -0.03em;
  }
  .section-description {
    margin-top: 14px;
    max-width: 820px;
    color: var(--muted);
    line-height: 1.65;
    font-size: 18px;
  }
  
  .map-grid--fullwidth { grid-template-columns: 1fr; }
  .map-canvas {
    width: 100%;
    min-height: 580px;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: var(--bg-3);
    position: relative;
  }
  .roadshow-map {
    width: 100%;
    height: 100%;
    min-height: 580px;
    border-radius: inherit;
    overflow: hidden;
  }
  .stack { display: grid; gap: 16px; }
  .stack--row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
  .info-card {
    min-height: 100%;
    padding: 22px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    border-radius: 24px;
  }
  .info-card strong {
    display: block;
    margin-top: 10px;
    font-size: 32px;
    font-weight: 900;
  }
  .info-card p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.6;
  }
  .status-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
  }
  .status-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
  }
  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
  }
  
  .roadshow-marker {
    display: block;
    width: 30px;
    height: 38px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    transform: translateZ(0);
    transition: transform 160ms ease, filter 160ms ease, opacity 160ms ease;
  }
  .roadshow-marker svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
  }
  .roadshow-marker:hover,
  .roadshow-marker:focus-visible {
    transform: translateY(-2px) scale(1.08);
    filter: brightness(1.08);
    outline: none;
  }
  .roadshow-marker:active {
    transform: translateY(0) scale(0.98);
  }
  
  /* Modal */
  .roadshow-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease;
    overflow-y: scroll;
  }
  .roadshow-modal[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .roadshow-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 11, 24, 0.72);
    backdrop-filter: blur(8px);
  }
  .roadshow-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(560px, 100%);
    padding: 28px;
    border-radius: 28px;
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(17,25,55,0.96), rgba(11,16,32,0.96));
    box-shadow: 0 30px 80px rgba(0,0,0,0.45);


  }
  .roadshow-moda__header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    align-items: center;
    width: 85%;
    margin: auto;
  }
  .roadshow-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.05);
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
  }
  .roadshow-modal__title {
    margin: 12px 0 0;
    font-size: 34px;
    line-height: 1.05;
    font-weight: 900;
  }
  .roadshow-modal__note {
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.6;
    text-align: center;
  }
  .roadshow-modal__form {
    margin-top: 20px;
    display: grid;
    gap: 14px;
  }
  .roadshow-modal__form textarea { min-height: 120px; }

  .roadshow-modal__success {
    margin-top: 20px;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(52,211,153,0.35);
    background: rgba(52,211,153,0.12);
    color: #c8ffe6;
  }
  
  @media (max-width: 900px) {
    .stack--row {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 760px) {
    .map-shell { padding: 20px; }
    .map-canvas,
    .roadshow-map { min-height: 460px; }
  }



  /* Scorllbar in Cities List */

  .stop-list::-webkit-scrollbar {
    width: 10px;
  }
  
  .stop-list::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
  }
  
  .stop-list::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg,#4da3ff,#1f6fff);
    border-radius: 10px;
  }
  
  .stop-list::-webkit-scrollbar-thumb:hover {
    background: #3a8dff;
  }



.hero-bold {
  margin-bottom: 215px;
}

#hero-bus {
  width: 100%;
  height: 800px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.2);
}

#hero-sunset {
  width: 100%;
  height: 425px;
  object-fit: cover;
  object-position: bottom;
  box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.2);
  display: none;
}

#hero-badge {
  position: absolute;
  top: 700px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
}


@media (max-width: 450px) {
  #hero-bus {
    height: 500px;
    object-position: left;
  }

  #hero-badge {
    top: 470px;
  }

  .hero-bold {
    margin-bottom: 120px;
  }

  .nav-cta {
    font-size: 12px;
    padding: 10px 12px;
    border-radius: 8px;
  }

}


@media (max-width: 760px) {
  #hero-bus {
    height: 500px;
    object-position: left;
  }

  #hero-badge {
    top: 470px;
    width: 400px;
  }

  .hero-bold {
    margin-bottom: 120px;
  }

  .roadshow-modal {
    padding: 8px 12px;
    /* place-items: flex-start; */
  }

  .roadshow-modal__backdrop {
    height: 150vh;
  }

  .roadshow-modal__dialog {
    padding: 8px;
  }

  .roadshow-form-status {
    min-height: unset;
    margin-top: unset;
  }

}


.merch-shell {
  background:
    radial-gradient(circle at top right, rgba(5, 117, 243, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(17, 25, 55, 1), rgba(11, 16, 32, 1));
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}

.merch-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}

.merch-thumb {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #ffffff;
}

.merch-thumb img {
  width: 90%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.25s ease;
  margin:auto;
}

.merch-card:hover .merch-thumb img {
  transform: scale(1.03);
}

.merch-copy {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.merch-copy .name {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light-blue);
  font-weight: 800;
}

.merch-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}

.merch-link {
  width: 100%;
}

@media (max-width: 1200px) {
  .merch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .merch-grid {
    grid-template-columns: 1fr;
  }
}
